[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <aDBLgh7UoMwA1H5P@kodidev-ubuntu>
Date: Fri, 23 May 2025 03:18:42 -0700
From: Tony Ambardar <tony.ambardar@...il.com>
To: Amery Hung <ameryhung@...il.com>
Cc: bpf@...r.kernel.org, netdev@...r.kernel.org,
alexei.starovoitov@...il.com, andrii@...nel.org,
daniel@...earbox.net, tj@...nel.org, memxor@...il.com,
martin.lau@...nel.org, kernel-team@...a.com
Subject: Re: [PATCH bpf-next v4 2/3] selftests/bpf: Test basic task local
data operations
On Thu, May 15, 2025 at 02:16:01PM -0700, Amery Hung wrote:
> Test basic operations of task local data with valid and invalid
> tld_create_key(). For invalid calls, make sure they return the right
> error code, and verifiy that no TLDs are inserted by trying fetching
> keys in the bpf program. For valid calls, first make sure the TLDs
> are created using tld_fetch_key(). Then, verify that they are task-
> specific with multiple user threads. This done by writing values unique
> to each thread to TLDs, reading them from both user space and bpf, and
> checking if the value read back are the same as the value written.
>
> Signed-off-by: Amery Hung <ameryhung@...il.com>
> ---
> .../bpf/prog_tests/test_task_local_data.c | 163 ++++++++++++++++++
> .../bpf/progs/test_task_local_data.c | 81 +++++++++
> 2 files changed, 244 insertions(+)
> create mode 100644 tools/testing/selftests/bpf/prog_tests/test_task_local_data.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_task_local_data.c
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/test_task_local_data.c b/tools/testing/selftests/bpf/prog_tests/test_task_local_data.c
> new file mode 100644
> index 000000000000..738fc1c9d8a4
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/prog_tests/test_task_local_data.c
> @@ -0,0 +1,163 @@
> +// SPDX-License-Identifier: GPL-2.0
> +#include <pthread.h>
> +#include <bpf/btf.h>
> +#include <test_progs.h>
> +
> +struct test_struct {
> + __u64 a;
> + __u64 b;
> + __u64 c;
> + __u64 d;
> +};
> +
> +#include "test_task_local_data.skel.h"
> +#include "task_local_data.h"
> +
> +/*
> + * Reset task local data between subtests by clearing metadata. This is only safe
> + * in selftests as subtests run sequentially. Users of task local data libraries
> + * should not do this.
> + */
> +static void reset_tld(void)
> +{
> + if (tld_metadata_p)
> + memset(tld_metadata_p, 0, PAGE_SIZE);
> +}
> +
> +/* Serialize access to bpf program's global variables */
> +static pthread_mutex_t global_mutex;
> +
> +#define TEST_BASIC_THREAD_NUM 63
> +static tld_key_t tld_keys[TEST_BASIC_THREAD_NUM];
> +
> +void *test_task_local_data_basic_thread(void *arg)
> +{
> + LIBBPF_OPTS(bpf_test_run_opts, opts);
> + struct test_task_local_data *skel = (struct test_task_local_data *)arg;
> + struct test_struct *value2;
> + int fd, err, tid, *value1;
> +
> + fd = bpf_map__fd(skel->maps.tld_data_map);
> +
> + value1 = tld_get_data(fd, tld_keys[0]);
> + if (!ASSERT_OK_PTR(value1, "tld_get_data"))
> + goto out;
> +
> + value2 = tld_get_data(fd, tld_keys[1]);
> + if (!ASSERT_OK_PTR(value1, "tld_get_data"))
Should this be 'value2'?
> + goto out;
> +
> + tid = gettid();
> +
> + *value1 = tid + 0;
> + value2->a = tid + 1;
> + value2->b = tid + 2;
> + value2->c = tid + 3;
> + value2->d = tid + 4;
> +
> + pthread_mutex_lock(&global_mutex);
> + /*
> + * Run task_init which simulates an initialization bpf prog that runs once
> + * for every new task. The program saves keys for subsequent bpf programs.
> + */
> + err = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.task_init), &opts);
> + ASSERT_OK(err, "run task_init");
> + ASSERT_OK(opts.retval, "task_init retval");
> + /* Run task_main that read task local data and save to global variables */
> + err = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.task_main), &opts);
> + ASSERT_OK(err, "run task_main");
> + ASSERT_OK(opts.retval, "task_main retval");
> +
> + ASSERT_EQ(skel->bss->test_value1, tid + 0, "tld_get_data value1");
> + ASSERT_EQ(skel->bss->test_value2.a, tid + 1, "tld_get_data value2.a");
> + ASSERT_EQ(skel->bss->test_value2.b, tid + 2, "tld_get_data value2.b");
> + ASSERT_EQ(skel->bss->test_value2.c, tid + 3, "tld_get_data value2.c");
> + ASSERT_EQ(skel->bss->test_value2.d, tid + 4, "tld_get_data value2.d");
> + pthread_mutex_unlock(&global_mutex);
> +
> + /* Make sure valueX are indeed local to threads */
> + ASSERT_EQ(*value1, tid + 0, "value1");
> + ASSERT_EQ(value2->a, tid + 1, "value2.a");
> + ASSERT_EQ(value2->b, tid + 2, "value2.b");
> + ASSERT_EQ(value2->c, tid + 3, "value2.c");
> + ASSERT_EQ(value2->d, tid + 4, "value2.d");
> +
> + *value1 = tid + 4;
> + value2->a = tid + 3;
> + value2->b = tid + 2;
> + value2->c = tid + 1;
> + value2->d = tid + 0;
> +
> + /* Run task_main again */
> + pthread_mutex_lock(&global_mutex);
> + err = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.task_main), &opts);
> + ASSERT_OK(err, "run task_main");
> + ASSERT_OK(opts.retval, "task_main retval");
> +
> + ASSERT_EQ(skel->bss->test_value1, tid + 4, "tld_get_data value1");
> + ASSERT_EQ(skel->bss->test_value2.a, tid + 3, "tld_get_data value2.a");
> + ASSERT_EQ(skel->bss->test_value2.b, tid + 2, "tld_get_data value2.b");
> + ASSERT_EQ(skel->bss->test_value2.c, tid + 1, "tld_get_data value2.c");
> + ASSERT_EQ(skel->bss->test_value2.d, tid + 0, "tld_get_data value2.d");
> + pthread_mutex_unlock(&global_mutex);
> +
> + tld_free();
> +out:
> + pthread_exit(NULL);
> +}
> +
> +static void test_task_local_data_basic(void)
> +{
> + struct test_task_local_data *skel;
> + pthread_t thread[TEST_BASIC_THREAD_NUM];
> + char dummy_key_name[TLD_NAME_LEN];
> + tld_key_t key;
> + int i, fd, err;
> +
> + reset_tld();
> +
> + ASSERT_OK(pthread_mutex_init(&global_mutex, NULL), "pthread_mutex_init");
> +
> + skel = test_task_local_data__open_and_load();
> + if (!ASSERT_OK_PTR(skel, "skel_open_and_load"))
> + return;
> +
> + fd = bpf_map__fd(skel->maps.tld_data_map);
> +
> + tld_keys[0] = tld_create_key(fd, "value1", sizeof(int));
> + ASSERT_FALSE(tld_key_is_err(tld_keys[0]), "tld_create_key");
> + tld_keys[1] = tld_create_key(fd, "value2", sizeof(struct test_struct));
> + ASSERT_FALSE(tld_key_is_err(tld_keys[1]), "tld_create_key");
> +
> + key = tld_create_key(fd, "value_not_exist",
> + PAGE_SIZE - sizeof(int) - sizeof(struct test_struct) + 1);
> + ASSERT_EQ(tld_key_err_or_zero(key), -E2BIG, "tld_create_key");
> +
> + key = tld_create_key(fd, "value2", sizeof(struct test_struct));
> + ASSERT_EQ(tld_key_err_or_zero(key), -EEXIST, "tld_create_key");
> +
> + for (i = 2; i < TLD_DATA_CNT; i++) {
> + snprintf(dummy_key_name, TLD_NAME_LEN, "dummy_value%d", i);
> + tld_keys[i] = tld_create_key(fd, dummy_key_name, sizeof(int));
> + ASSERT_FALSE(tld_key_is_err(tld_keys[i]), "tld_create_key");
> + }
> +
> + key = tld_create_key(fd, "value_not_exist", sizeof(struct test_struct));
> + ASSERT_EQ(tld_key_err_or_zero(key), -ENOSPC, "tld_create_key");
> +
> + for (i = 0; i < TEST_BASIC_THREAD_NUM; i++) {
> + err = pthread_create(&thread[i], NULL, test_task_local_data_basic_thread, skel);
> + if (!ASSERT_OK(err, "pthread_create"))
> + goto out;
> + }
> +
> +out:
> + for (i = 0; i < TEST_BASIC_THREAD_NUM; i++)
> + pthread_join(thread[i], NULL);
> +}
> +
> +void test_task_local_data(void)
> +{
> + if (test__start_subtest("task_local_data_basic"))
> + test_task_local_data_basic();
> +}
> diff --git a/tools/testing/selftests/bpf/progs/test_task_local_data.c b/tools/testing/selftests/bpf/progs/test_task_local_data.c
> new file mode 100644
> index 000000000000..4cf0630b19bd
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_task_local_data.c
> @@ -0,0 +1,81 @@
> +// SPDX-License-Identifier: GPL-2.0
> +#include <vmlinux.h>
> +#include <errno.h>
> +#include <bpf/bpf_helpers.h>
> +
> +#include "task_local_data.bpf.h"
> +
> +struct tld_keys {
> + tld_key_t value1;
> + tld_key_t value2;
> + tld_key_t value_not_exist;
> +};
> +
> +struct test_struct {
> + unsigned long a;
> + unsigned long b;
> + unsigned long c;
> + unsigned long d;
> +};
> +
> +int test_value1;
> +struct test_struct test_value2;
> +
> +SEC("syscall")
> +int task_init(void *ctx)
> +{
> + struct tld_object tld_obj;
> + struct task_struct *task;
> + int err;
> +
> + task = bpf_get_current_task_btf();
> + err = tld_object_init(task, &tld_obj);
> + if (err)
> + return 1;
> +
> + if (!tld_fetch_key(&tld_obj, "value1", value1))
> + return 2;
> +
> + if (!tld_fetch_key(&tld_obj, "value2", value2))
> + return 3;
> +
> + if (tld_fetch_key(&tld_obj, "value_not_exist", value_not_exist))
> + return 6;
> +
> + return 0;
> +}
> +
> +SEC("syscall")
> +int task_main(void *ctx)
> +{
> + struct tld_object tld_obj;
> + struct test_struct *struct_p;
> + struct task_struct *task;
> + int err, *int_p;
> +
> + task = bpf_get_current_task_btf();
> + err = tld_object_init(task, &tld_obj);
> + if (err)
> + return 1;
> +
> + int_p = tld_get_data(&tld_obj, value1, sizeof(int));
> + if (int_p)
> + test_value1 = *int_p;
> + else
> + return 2;
> +
> + struct_p = tld_get_data(&tld_obj, value2, sizeof(struct test_struct));
> + if (struct_p)
> + test_value2 = *struct_p;
> + else
> + return 3;
> +
> + int_p = tld_get_data(&tld_obj, value_not_exist, sizeof(int));
> + if (int_p)
> + return 4;
> +
> + return 0;
> +}
> +
> +char _license[] SEC("license") = "GPL";
> +
> --
> 2.47.1
>
Powered by blists - more mailing lists