selftests/bpf: wq: add bpf_wq_init() checks
authorBenjamin Tissoires <bentiss@kernel.org>
Sat, 20 Apr 2024 09:09:12 +0000 (11:09 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Wed, 24 Apr 2024 02:46:57 +0000 (19:46 -0700)
Allows to test if allocation/free works

Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Link: https://lore.kernel.org/r/20240420-bpf_wq-v2-12-6c986a5a741f@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/testing/selftests/bpf/bpf_experimental.h
tools/testing/selftests/bpf/prog_tests/wq.c
tools/testing/selftests/bpf/progs/wq.c
tools/testing/selftests/bpf/progs/wq_failures.c [new file with mode: 0644]

index 3329ea0808659c16cc0182453fd1bd36d7ad7fe1..785b91b629be925cc2cc0e2ce0785c3a889c37b9 100644 (file)
@@ -470,4 +470,5 @@ extern int bpf_iter_css_new(struct bpf_iter_css *it,
 extern struct cgroup_subsys_state *bpf_iter_css_next(struct bpf_iter_css *it) __weak __ksym;
 extern void bpf_iter_css_destroy(struct bpf_iter_css *it) __weak __ksym;
 
+extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym;
 #endif
index 9a07b8bc2c526fd095a11df66c0268d0d30053e7..26ab69796103d7cb4f8c01b7deba6858feb894a4 100644 (file)
@@ -2,6 +2,7 @@
 /* Copyright (c) 2024 Benjamin Tissoires */
 #include <test_progs.h>
 #include "wq.skel.h"
+#include "wq_failures.skel.h"
 
 void serial_test_wq(void)
 {
@@ -9,3 +10,10 @@ void serial_test_wq(void)
 
        RUN_TESTS(wq);
 }
+
+void serial_test_failures_wq(void)
+{
+       LIBBPF_OPTS(bpf_test_run_opts, topts);
+
+       RUN_TESTS(wq_failures);
+}
index 833f54aa8fdf89622e2c16b58d9a47d6b05aa7e8..ed2fe26e14eff4c2168b0993f2e3159a1beaf178 100644 (file)
@@ -52,6 +52,7 @@ struct {
 static int test_elem_callback(void *map, int *key)
 {
        struct elem init = {}, *val;
+       struct bpf_wq *wq;
 
        if (map == &lru &&
            bpf_map_update_elem(map, key, &init, 0))
@@ -61,12 +62,17 @@ static int test_elem_callback(void *map, int *key)
        if (!val)
                return -2;
 
+       wq = &val->w;
+       if (bpf_wq_init(wq, map, 0) != 0)
+               return -3;
+
        return 0;
 }
 
 static int test_hmap_elem_callback(void *map, int *key)
 {
        struct hmap_elem init = {}, *val;
+       struct bpf_wq *wq;
 
        if (bpf_map_update_elem(map, key, &init, 0))
                return -1;
@@ -75,6 +81,10 @@ static int test_hmap_elem_callback(void *map, int *key)
        if (!val)
                return -2;
 
+       wq = &val->work;
+       if (bpf_wq_init(wq, map, 0) != 0)
+               return -3;
+
        return 0;
 }
 
diff --git a/tools/testing/selftests/bpf/progs/wq_failures.c b/tools/testing/selftests/bpf/progs/wq_failures.c
new file mode 100644 (file)
index 0000000..db7015c
--- /dev/null
@@ -0,0 +1,78 @@
+// SPDX-License-Identifier: GPL-2.0
+/* Copyright (c) 2024 Benjamin Tissoires
+ */
+
+#include "bpf_experimental.h"
+#include <bpf/bpf_helpers.h>
+#include "bpf_misc.h"
+#include "../bpf_testmod/bpf_testmod_kfunc.h"
+
+char _license[] SEC("license") = "GPL";
+
+struct elem {
+       struct bpf_wq w;
+};
+
+struct {
+       __uint(type, BPF_MAP_TYPE_ARRAY);
+       __uint(max_entries, 2);
+       __type(key, int);
+       __type(value, struct elem);
+} array SEC(".maps");
+
+struct {
+       __uint(type, BPF_MAP_TYPE_LRU_HASH);
+       __uint(max_entries, 4);
+       __type(key, int);
+       __type(value, struct elem);
+} lru SEC(".maps");
+
+SEC("tc")
+/* test that bpf_wq_init takes a map as a second argument
+ */
+__log_level(2)
+__flag(BPF_F_TEST_STATE_FREQ)
+__failure
+__msg(": (85) call bpf_wq_init#") /* anchor message */
+__msg("pointer in R2 isn't map pointer")
+long test_wq_init_nomap(void *ctx)
+{
+       struct bpf_wq *wq;
+       struct elem *val;
+       int key = 0;
+
+       val = bpf_map_lookup_elem(&array, &key);
+       if (!val)
+               return -1;
+
+       wq = &val->w;
+       if (bpf_wq_init(wq, &key, 0) != 0)
+               return -3;
+
+       return 0;
+}
+
+SEC("tc")
+/* test that the workqueue is part of the map in bpf_wq_init
+ */
+__log_level(2)
+__flag(BPF_F_TEST_STATE_FREQ)
+__failure
+__msg(": (85) call bpf_wq_init#") /* anchor message */
+__msg("workqueue pointer in R1 map_uid=0 doesn't match map pointer in R2 map_uid=0")
+long test_wq_init_wrong_map(void *ctx)
+{
+       struct bpf_wq *wq;
+       struct elem *val;
+       int key = 0;
+
+       val = bpf_map_lookup_elem(&array, &key);
+       if (!val)
+               return -1;
+
+       wq = &val->w;
+       if (bpf_wq_init(wq, &lru, 0) != 0)
+               return -3;
+
+       return 0;
+}