From: Yonghong Song <yhs@fb.com>
To: Hou Tao <houtao@huaweicloud.com>, bpf@vger.kernel.org
Cc: Andrii Nakryiko <andrii@kernel.org>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Martin KaFai Lau <kafai@fb.com>, Song Liu <songliubraving@fb.com>,
KP Singh <kpsingh@kernel.org>,
"David S . Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Stanislav Fomichev <sdf@google.com>, Hao Luo <haoluo@google.com>,
Jiri Olsa <jolsa@kernel.org>,
John Fastabend <john.fastabend@gmail.com>,
houtao1@huawei.com
Subject: Re: [PATCH bpf 8/9] selftests/bpf: Add write tests for sk storage map iterator
Date: Mon, 8 Aug 2022 08:27:30 -0700 [thread overview]
Message-ID: <eb3836ee-2830-83a9-2081-4527fa4141d0@fb.com> (raw)
In-Reply-To: <20220806074019.2756957-9-houtao@huaweicloud.com>
On 8/6/22 12:40 AM, Hou Tao wrote:
> From: Hou Tao <houtao1@huawei.com>
>
> Add test to validate the overwrite of sock storage map value in map
> iterator and another one to ensure out-of-bound value writing is
> rejected.
>
> Signed-off-by: Hou Tao <houtao1@huawei.com>
One nit below.
Acked-by: Yonghong Song <yhs@fb.com>
> ---
> .../selftests/bpf/prog_tests/bpf_iter.c | 20 +++++++++++++++++--
> .../bpf/progs/bpf_iter_bpf_sk_storage_map.c | 20 ++++++++++++++++++-
> 2 files changed, 37 insertions(+), 3 deletions(-)
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/bpf_iter.c b/tools/testing/selftests/bpf/prog_tests/bpf_iter.c
> index 94c2c8df3fe4..f75308d75570 100644
> --- a/tools/testing/selftests/bpf/prog_tests/bpf_iter.c
> +++ b/tools/testing/selftests/bpf/prog_tests/bpf_iter.c
> @@ -1074,7 +1074,7 @@ static void test_bpf_sk_stoarge_map_iter_fd(void)
> if (!ASSERT_OK_PTR(skel, "bpf_iter_bpf_sk_storage_map__open_and_load"))
> return;
>
> - do_read_map_iter_fd(&skel->skeleton, skel->progs.dump_bpf_sk_storage_map,
> + do_read_map_iter_fd(&skel->skeleton, skel->progs.rw_bpf_sk_storage_map,
> skel->maps.sk_stg_map);
>
> bpf_iter_bpf_sk_storage_map__destroy(skel);
> @@ -1115,7 +1115,15 @@ static void test_bpf_sk_storage_map(void)
> linfo.map.map_fd = map_fd;
> opts.link_info = &linfo;
> opts.link_info_len = sizeof(linfo);
> - link = bpf_program__attach_iter(skel->progs.dump_bpf_sk_storage_map, &opts);
> + link = bpf_program__attach_iter(skel->progs.oob_write_bpf_sk_storage_map, &opts);
> + err = libbpf_get_error(link);
> + if (!ASSERT_EQ(err, -EACCES, "attach_oob_write_iter")) {
> + if (!err)
> + bpf_link__destroy(link);
> + goto out;
> + }
> +
> + link = bpf_program__attach_iter(skel->progs.rw_bpf_sk_storage_map, &opts);
> if (!ASSERT_OK_PTR(link, "attach_iter"))
> goto out;
>
> @@ -1123,6 +1131,7 @@ static void test_bpf_sk_storage_map(void)
> if (!ASSERT_GE(iter_fd, 0, "create_iter"))
> goto free_link;
>
> + skel->bss->to_add_val = time(NULL);
> /* do some tests */
> while ((len = read(iter_fd, buf, sizeof(buf))) > 0)
> ;
> @@ -1136,6 +1145,13 @@ static void test_bpf_sk_storage_map(void)
> if (!ASSERT_EQ(skel->bss->val_sum, expected_val, "val_sum"))
> goto close_iter;
>
> + for (i = 0; i < num_sockets; i++) {
> + err = bpf_map_lookup_elem(map_fd, &sock_fd[i], &val);
> + if (!ASSERT_OK(err, "map_lookup") ||
> + !ASSERT_EQ(val, i + 1 + skel->bss->to_add_val, "check_map_value"))
> + break;
> + }
> +
> close_iter:
> close(iter_fd);
> free_link:
> diff --git a/tools/testing/selftests/bpf/progs/bpf_iter_bpf_sk_storage_map.c b/tools/testing/selftests/bpf/progs/bpf_iter_bpf_sk_storage_map.c
> index 6b70ccaba301..6a82f8b0c0fa 100644
> --- a/tools/testing/selftests/bpf/progs/bpf_iter_bpf_sk_storage_map.c
> +++ b/tools/testing/selftests/bpf/progs/bpf_iter_bpf_sk_storage_map.c
> @@ -16,9 +16,10 @@ struct {
>
> __u32 val_sum = 0;
> __u32 ipv6_sk_count = 0;
> +__u32 to_add_val = 0;
>
> SEC("iter/bpf_sk_storage_map")
> -int dump_bpf_sk_storage_map(struct bpf_iter__bpf_sk_storage_map *ctx)
> +int rw_bpf_sk_storage_map(struct bpf_iter__bpf_sk_storage_map *ctx)
> {
> struct sock *sk = ctx->sk;
> __u32 *val = ctx->value;
> @@ -30,5 +31,22 @@ int dump_bpf_sk_storage_map(struct bpf_iter__bpf_sk_storage_map *ctx)
> ipv6_sk_count++;
>
> val_sum += *val;
> +
> + *val += to_add_val;
> +
> + return 0;
> +}
> +
> +SEC("iter/bpf_sk_storage_map")
> +int oob_write_bpf_sk_storage_map(struct bpf_iter__bpf_sk_storage_map *ctx)
> +{
> + struct sock *sk = ctx->sk;
> + __u32 *val = ctx->value;
> +
> + if (sk == (void *)0 || val == (void *)0)
Newer bpf_helpers.h provides NULL for (void *)0, you can use NULL now.
> + return 0;
> +
> + *(val + 1) = 0xdeadbeef;
> +
> return 0;
> }
next prev parent reply other threads:[~2022-08-08 15:28 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-06 7:40 [PATCH bpf 0/9] fixes for bpf map iterator Hou Tao
2022-08-06 7:40 ` [PATCH bpf 1/9] bpf: Acquire map uref in .init_seq_private for array " Hou Tao
2022-08-08 14:53 ` Yonghong Song
2022-08-09 1:07 ` houtao
2022-08-06 7:40 ` [PATCH bpf 2/9] bpf: Acquire map uref in .init_seq_private for hash " Hou Tao
2022-08-08 14:54 ` Yonghong Song
2022-08-06 7:40 ` [PATCH bpf 3/9] bpf: Acquire map uref in .init_seq_private for sock local storage " Hou Tao
2022-08-08 14:54 ` Yonghong Song
2022-08-06 7:40 ` [PATCH bpf 4/9] bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator Hou Tao
2022-08-08 14:55 ` Yonghong Song
2022-08-06 7:40 ` [PATCH bpf 5/9] bpf: Check the validity of max_rdwr_access for sk storage map iterator Hou Tao
2022-08-08 14:56 ` Yonghong Song
2022-08-09 18:46 ` Martin KaFai Lau
2022-08-10 1:34 ` Hou Tao
2022-08-06 7:40 ` [PATCH bpf 6/9] bpf: Only allow sleepable program for resched-able iterator Hou Tao
2022-08-08 15:07 ` Yonghong Song
2022-08-06 7:40 ` [PATCH bpf 7/9] selftests/bpf: Add tests for reading a dangling map iter fd Hou Tao
2022-08-08 15:15 ` Yonghong Song
2022-08-09 1:23 ` houtao
2022-08-09 19:13 ` Martin KaFai Lau
2022-08-10 0:18 ` Yonghong Song
2022-08-06 7:40 ` [PATCH bpf 8/9] selftests/bpf: Add write tests for sk storage map iterator Hou Tao
2022-08-08 15:27 ` Yonghong Song [this message]
2022-08-09 1:26 ` houtao
2022-08-06 7:40 ` [PATCH bpf 9/9] selftests/bpf: Ensure sleepable program is rejected by hash map iter Hou Tao
2022-08-08 15:30 ` Yonghong Song
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=eb3836ee-2830-83a9-2081-4527fa4141d0@fb.com \
--to=yhs@fb.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=haoluo@google.com \
--cc=houtao1@huawei.com \
--cc=houtao@huaweicloud.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kafai@fb.com \
--cc=kpsingh@kernel.org \
--cc=kuba@kernel.org \
--cc=sdf@google.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