Commit ed61271a authored by Geliang Tang's avatar Geliang Tang Committed by Martin KaFai Lau

selftests/bpf: Use start_server_str in do_test in bpf_tcp_ca

This patch uses new helper start_server_str() in do_test() in bpf_tcp_ca.c
to accept a struct network_helper_opts argument instead of using
start_server() and settcpca(). Then change the type of the first paramenter
of do_test() into a struct network_helper_opts one.

Define its own cb_opts and opts for each test, set its own cc name into
cb_opts.cc, and cc_cb() into post_socket_cb callback, then pass it to
do_test().
Signed-off-by: default avatarGeliang Tang <tanggeliang@kylinos.cn>
Link: https://lore.kernel.org/r/6e1b6555e3284e77c8aa60668c61a66c5f99aa37.1716638248.git.tanggeliang@kylinos.cnSigned-off-by: default avatarMartin KaFai Lau <martin.lau@kernel.org>
parent 79b330c5
...@@ -38,12 +38,14 @@ static int settcpca(int fd, const char *tcp_ca) ...@@ -38,12 +38,14 @@ static int settcpca(int fd, const char *tcp_ca)
return 0; return 0;
} }
static void do_test(const char *tcp_ca, const struct bpf_map *sk_stg_map) static void do_test(const struct network_helper_opts *opts,
const struct bpf_map *sk_stg_map)
{ {
struct cb_opts *cb_opts = (struct cb_opts *)opts->cb_opts;
int lfd = -1, fd = -1; int lfd = -1, fd = -1;
int err; int err;
lfd = start_server(AF_INET6, SOCK_STREAM, NULL, 0, 0); lfd = start_server_str(AF_INET6, SOCK_STREAM, NULL, 0, opts);
if (!ASSERT_NEQ(lfd, -1, "socket")) if (!ASSERT_NEQ(lfd, -1, "socket"))
return; return;
...@@ -53,7 +55,7 @@ static void do_test(const char *tcp_ca, const struct bpf_map *sk_stg_map) ...@@ -53,7 +55,7 @@ static void do_test(const char *tcp_ca, const struct bpf_map *sk_stg_map)
return; return;
} }
if (settcpca(lfd, tcp_ca) || settcpca(fd, tcp_ca)) if (settcpca(fd, cb_opts->cc))
goto done; goto done;
if (sk_stg_map) { if (sk_stg_map) {
...@@ -94,6 +96,13 @@ static int cc_cb(int fd, void *opts) ...@@ -94,6 +96,13 @@ static int cc_cb(int fd, void *opts)
static void test_cubic(void) static void test_cubic(void)
{ {
struct cb_opts cb_opts = {
.cc = "bpf_cubic",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct bpf_cubic *cubic_skel; struct bpf_cubic *cubic_skel;
struct bpf_link *link; struct bpf_link *link;
...@@ -107,7 +116,7 @@ static void test_cubic(void) ...@@ -107,7 +116,7 @@ static void test_cubic(void)
return; return;
} }
do_test("bpf_cubic", NULL); do_test(&opts, NULL);
ASSERT_EQ(cubic_skel->bss->bpf_cubic_acked_called, 1, "pkts_acked called"); ASSERT_EQ(cubic_skel->bss->bpf_cubic_acked_called, 1, "pkts_acked called");
...@@ -117,6 +126,13 @@ static void test_cubic(void) ...@@ -117,6 +126,13 @@ static void test_cubic(void)
static void test_dctcp(void) static void test_dctcp(void)
{ {
struct cb_opts cb_opts = {
.cc = "bpf_dctcp",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct bpf_dctcp *dctcp_skel; struct bpf_dctcp *dctcp_skel;
struct bpf_link *link; struct bpf_link *link;
...@@ -130,7 +146,7 @@ static void test_dctcp(void) ...@@ -130,7 +146,7 @@ static void test_dctcp(void)
return; return;
} }
do_test("bpf_dctcp", dctcp_skel->maps.sk_stg_map); do_test(&opts, dctcp_skel->maps.sk_stg_map);
ASSERT_EQ(dctcp_skel->bss->stg_result, expected_stg, "stg_result"); ASSERT_EQ(dctcp_skel->bss->stg_result, expected_stg, "stg_result");
bpf_link__destroy(link); bpf_link__destroy(link);
...@@ -315,6 +331,13 @@ static void test_unsupp_cong_op(void) ...@@ -315,6 +331,13 @@ static void test_unsupp_cong_op(void)
static void test_update_ca(void) static void test_update_ca(void)
{ {
struct cb_opts cb_opts = {
.cc = "tcp_ca_update",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct tcp_ca_update *skel; struct tcp_ca_update *skel;
struct bpf_link *link; struct bpf_link *link;
int saved_ca1_cnt; int saved_ca1_cnt;
...@@ -327,14 +350,14 @@ static void test_update_ca(void) ...@@ -327,14 +350,14 @@ static void test_update_ca(void)
link = bpf_map__attach_struct_ops(skel->maps.ca_update_1); link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
ASSERT_OK_PTR(link, "attach_struct_ops"); ASSERT_OK_PTR(link, "attach_struct_ops");
do_test("tcp_ca_update", NULL); do_test(&opts, NULL);
saved_ca1_cnt = skel->bss->ca1_cnt; saved_ca1_cnt = skel->bss->ca1_cnt;
ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt"); ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt");
err = bpf_link__update_map(link, skel->maps.ca_update_2); err = bpf_link__update_map(link, skel->maps.ca_update_2);
ASSERT_OK(err, "update_map"); ASSERT_OK(err, "update_map");
do_test("tcp_ca_update", NULL); do_test(&opts, NULL);
ASSERT_EQ(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt"); ASSERT_EQ(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt");
ASSERT_GT(skel->bss->ca2_cnt, 0, "ca2_ca2_cnt"); ASSERT_GT(skel->bss->ca2_cnt, 0, "ca2_ca2_cnt");
...@@ -344,6 +367,13 @@ static void test_update_ca(void) ...@@ -344,6 +367,13 @@ static void test_update_ca(void)
static void test_update_wrong(void) static void test_update_wrong(void)
{ {
struct cb_opts cb_opts = {
.cc = "tcp_ca_update",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct tcp_ca_update *skel; struct tcp_ca_update *skel;
struct bpf_link *link; struct bpf_link *link;
int saved_ca1_cnt; int saved_ca1_cnt;
...@@ -356,14 +386,14 @@ static void test_update_wrong(void) ...@@ -356,14 +386,14 @@ static void test_update_wrong(void)
link = bpf_map__attach_struct_ops(skel->maps.ca_update_1); link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
ASSERT_OK_PTR(link, "attach_struct_ops"); ASSERT_OK_PTR(link, "attach_struct_ops");
do_test("tcp_ca_update", NULL); do_test(&opts, NULL);
saved_ca1_cnt = skel->bss->ca1_cnt; saved_ca1_cnt = skel->bss->ca1_cnt;
ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt"); ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt");
err = bpf_link__update_map(link, skel->maps.ca_wrong); err = bpf_link__update_map(link, skel->maps.ca_wrong);
ASSERT_ERR(err, "update_map"); ASSERT_ERR(err, "update_map");
do_test("tcp_ca_update", NULL); do_test(&opts, NULL);
ASSERT_GT(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt"); ASSERT_GT(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt");
bpf_link__destroy(link); bpf_link__destroy(link);
...@@ -372,6 +402,13 @@ static void test_update_wrong(void) ...@@ -372,6 +402,13 @@ static void test_update_wrong(void)
static void test_mixed_links(void) static void test_mixed_links(void)
{ {
struct cb_opts cb_opts = {
.cc = "tcp_ca_update",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct tcp_ca_update *skel; struct tcp_ca_update *skel;
struct bpf_link *link, *link_nl; struct bpf_link *link, *link_nl;
int err; int err;
...@@ -386,7 +423,7 @@ static void test_mixed_links(void) ...@@ -386,7 +423,7 @@ static void test_mixed_links(void)
link = bpf_map__attach_struct_ops(skel->maps.ca_update_1); link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
ASSERT_OK_PTR(link, "attach_struct_ops"); ASSERT_OK_PTR(link, "attach_struct_ops");
do_test("tcp_ca_update", NULL); do_test(&opts, NULL);
ASSERT_GT(skel->bss->ca1_cnt, 0, "ca1_ca1_cnt"); ASSERT_GT(skel->bss->ca1_cnt, 0, "ca1_ca1_cnt");
err = bpf_link__update_map(link, skel->maps.ca_no_link); err = bpf_link__update_map(link, skel->maps.ca_no_link);
...@@ -473,6 +510,13 @@ static void test_tcp_ca_kfunc(void) ...@@ -473,6 +510,13 @@ static void test_tcp_ca_kfunc(void)
static void test_cc_cubic(void) static void test_cc_cubic(void)
{ {
struct cb_opts cb_opts = {
.cc = "bpf_cc_cubic",
};
struct network_helper_opts opts = {
.post_socket_cb = cc_cb,
.cb_opts = &cb_opts,
};
struct bpf_cc_cubic *cc_cubic_skel; struct bpf_cc_cubic *cc_cubic_skel;
struct bpf_link *link; struct bpf_link *link;
...@@ -486,7 +530,7 @@ static void test_cc_cubic(void) ...@@ -486,7 +530,7 @@ static void test_cc_cubic(void)
return; return;
} }
do_test("bpf_cc_cubic", NULL); do_test(&opts, NULL);
bpf_link__destroy(link); bpf_link__destroy(link);
bpf_cc_cubic__destroy(cc_cubic_skel); bpf_cc_cubic__destroy(cc_cubic_skel);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment