* [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest
@ 2024-05-11 12:42 Geliang Tang
2024-05-11 12:42 ` [PATCH mptcp-next v2 1/2] selftests/bpf: Add mptcp pm_nl_ctl link Geliang Tang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Geliang Tang @ 2024-05-11 12:42 UTC (permalink / raw)
To: mptcp; +Cc: Geliang Tang
From: Geliang Tang <tanggeliang@kylinos.cn>
v2:
- rename pm_nl_ctl to mptcp_pm_nl_ctl.
Geliang Tang (2):
selftests/bpf: Add mptcp pm_nl_ctl link
Squash to "selftests/bpf: Add mptcp subflow subtest"
tools/testing/selftests/bpf/Makefile | 2 +-
tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c | 1 +
tools/testing/selftests/bpf/prog_tests/mptcp.c | 17 ++++++-----------
3 files changed, 8 insertions(+), 12 deletions(-)
create mode 120000 tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH mptcp-next v2 1/2] selftests/bpf: Add mptcp pm_nl_ctl link 2024-05-11 12:42 [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest Geliang Tang @ 2024-05-11 12:42 ` Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 2/2] Squash to "selftests/bpf: Add mptcp subflow subtest" Geliang Tang 2024-05-11 13:31 ` [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest MPTCP CI 2 siblings, 0 replies; 4+ messages in thread From: Geliang Tang @ 2024-05-11 12:42 UTC (permalink / raw) To: mptcp; +Cc: Geliang Tang From: Geliang Tang <tanggeliang@kylinos.cn> This patch adds a link of mptcp pm_nl_ctl tool into bpf selftests, and updates Makefile to compile it. This is useful to run mptcp bpf selftests on a system with an old version of IPRoite2 is installed. When 'ip mptcp' is not supported, this tool pm_nl_ctl can be used instead. Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn> --- tools/testing/selftests/bpf/Makefile | 2 +- tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 120000 tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile index b90c718218ae..6fe242275e14 100644 --- a/tools/testing/selftests/bpf/Makefile +++ b/tools/testing/selftests/bpf/Makefile @@ -131,7 +131,7 @@ TEST_GEN_PROGS_EXTENDED = test_sock_addr test_skb_cgroup_id_user \ flow_dissector_load test_flow_dissector test_tcp_check_syncookie_user \ test_lirc_mode2_user xdping test_cpp runqslower bench bpf_testmod.ko \ xskxceiver xdp_redirect_multi xdp_synproxy veristat xdp_hw_metadata \ - xdp_features bpf_test_no_cfi.ko + xdp_features bpf_test_no_cfi.ko mptcp_pm_nl_ctl TEST_GEN_FILES += liburandom_read.so urandom_read sign-file uprobe_multi diff --git a/tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c b/tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c new file mode 120000 index 000000000000..5a08c255b278 --- /dev/null +++ b/tools/testing/selftests/bpf/mptcp_pm_nl_ctl.c @@ -0,0 +1 @@ +../net/mptcp/pm_nl_ctl.c \ No newline at end of file -- 2.43.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH mptcp-next v2 2/2] Squash to "selftests/bpf: Add mptcp subflow subtest" 2024-05-11 12:42 [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 1/2] selftests/bpf: Add mptcp pm_nl_ctl link Geliang Tang @ 2024-05-11 12:42 ` Geliang Tang 2024-05-11 13:31 ` [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest MPTCP CI 2 siblings, 0 replies; 4+ messages in thread From: Geliang Tang @ 2024-05-11 12:42 UTC (permalink / raw) To: mptcp; +Cc: Geliang Tang From: Geliang Tang <tanggeliang@kylinos.cn> Use pm_nl_ctl when 'ip mptcp' fails. Use SYS_NOFAIL in _ss_search(). Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn> --- tools/testing/selftests/bpf/prog_tests/mptcp.c | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/tools/testing/selftests/bpf/prog_tests/mptcp.c b/tools/testing/selftests/bpf/prog_tests/mptcp.c index 793b4b9c2bd2..18e311a556ae 100644 --- a/tools/testing/selftests/bpf/prog_tests/mptcp.c +++ b/tools/testing/selftests/bpf/prog_tests/mptcp.c @@ -362,7 +362,10 @@ static int endpoint_init(char *flags) SYS(fail, "ip -net %s link set dev veth1 up", NS_TEST); SYS(fail, "ip -net %s addr add %s/24 dev veth2", NS_TEST, ADDR_2); SYS(fail, "ip -net %s link set dev veth2 up", NS_TEST); - SYS(fail, "ip -net %s mptcp endpoint add %s %s", NS_TEST, ADDR_2, flags); + if (SYS_NOFAIL("ip -net %s mptcp endpoint add %s %s", NS_TEST, ADDR_2, flags)) { + SYS(fail, "ip netns exec %s ./mptcp_pm_nl_ctl add %s flags %s", + NS_TEST, ADDR_2, flags); + } return 0; fail: @@ -371,16 +374,8 @@ static int endpoint_init(char *flags) static int _ss_search(char *src, char *dst, char *port, char *keyword) { - char cmd[128]; - int n; - - n = snprintf(cmd, sizeof(cmd), - "ip netns exec %s ss -Menita src %s dst %s %s %d | grep -q '%s'", - NS_TEST, src, dst, port, PORT_1, keyword); - if (n < 0 || n >= sizeof(cmd)) - return -1; - - return system(cmd); + return SYS_NOFAIL("ip netns exec %s ss -Menita src %s dst %s %s %d | grep -q '%s'", + NS_TEST, src, dst, port, PORT_1, keyword); } static int ss_search(char *src, char *keyword) -- 2.43.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest 2024-05-11 12:42 [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 1/2] selftests/bpf: Add mptcp pm_nl_ctl link Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 2/2] Squash to "selftests/bpf: Add mptcp subflow subtest" Geliang Tang @ 2024-05-11 13:31 ` MPTCP CI 2 siblings, 0 replies; 4+ messages in thread From: MPTCP CI @ 2024-05-11 13:31 UTC (permalink / raw) To: Geliang Tang; +Cc: mptcp Hi Geliang, Thank you for your modifications, that's great! Our CI did some validations and here is its report: - KVM Validation: normal: Success! ✅ - KVM Validation: debug: Success! ✅ - KVM Validation: btf (only bpftest_all): Success! ✅ - Task: https://github.com/multipath-tcp/mptcp_net-next/actions/runs/9043831394 Initiator: Patchew Applier Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/a97ca4e44f71 Patchwork: https://patchwork.kernel.org/project/mptcp/list/?series=852530 If there are some issues, you can reproduce them using the same environment as the one used by the CI thanks to a docker image, e.g.: $ cd [kernel source code] $ docker run -v "${PWD}:${PWD}:rw" -w "${PWD}" --privileged --rm -it \ --pull always mptcp/mptcp-upstream-virtme-docker:latest \ auto-normal For more details: https://github.com/multipath-tcp/mptcp-upstream-virtme-docker Please note that despite all the efforts that have been already done to have a stable tests suite when executed on a public CI like here, it is possible some reported issues are not due to your modifications. Still, do not hesitate to help us improve that ;-) Cheers, MPTCP GH Action bot Bot operated by Matthieu Baerts (NGI0 Core) ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-11 13:31 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-05-11 12:42 [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 1/2] selftests/bpf: Add mptcp pm_nl_ctl link Geliang Tang 2024-05-11 12:42 ` [PATCH mptcp-next v2 2/2] Squash to "selftests/bpf: Add mptcp subflow subtest" Geliang Tang 2024-05-11 13:31 ` [PATCH mptcp-next v2 0/2] patches for new MPTCP subflow subtest MPTCP CI
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox