public inbox for mptcp@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time
@ 2026-04-11  3:48 Gang Yan
  2026-04-11  3:48 ` [PATCH mptcp-net v4 1/2] " Gang Yan
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Gang Yan @ 2026-04-11  3:48 UTC (permalink / raw)
  To: mptcp; +Cc: Gang Yan

From: Gang Yan <yangang@kylinos.cn>

Changelog:
v4:
  - Update the coomit log to show the root cause.
  - Remove the '__mptcp_propagate_sndbuf' in 'mptcp_sk_clone_init'
    according to Paolo's advice.
  - Replace 'grep' with 'sed' according to AI's suggestions.
  - Crete a packetdrill PR for test:
    https://github.com/multipath-tcp/packetdrill/pull/193
v3:
  - Add a check in diag.sh to check the sndbuf of the server side.

Gang Yan (2):
  mptcp: sync the msk->sndbuf at accept() time
  selftests: mptcp: add a check for sndbuf of S/C

 net/mptcp/protocol.c                      |  2 +-
 tools/testing/selftests/net/mptcp/diag.sh | 28 +++++++++++++++++++++++
 2 files changed, 29 insertions(+), 1 deletion(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH mptcp-net v4 1/2] mptcp: sync the msk->sndbuf at accept() time
  2026-04-11  3:48 [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time Gang Yan
@ 2026-04-11  3:48 ` Gang Yan
  2026-04-11  3:49 ` [PATCH mptcp-net v4 2/2] selftests: mptcp: add a check for sndbuf of S/C Gang Yan
  2026-04-11  5:00 ` [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time MPTCP CI
  2 siblings, 0 replies; 4+ messages in thread
From: Gang Yan @ 2026-04-11  3:48 UTC (permalink / raw)
  To: mptcp; +Cc: Gang Yan, Paolo Abeni

From: Gang Yan <yangang@kylinos.cn>

On passive MPTCP connections, the msk sndbuf is not updated correctly.

The root cause is a timing issue in the accept path:
- tcp_check_req() -> subflow_syn_recv_sock() -> mptcp_sk_clone_init()
  calls __mptcp_propagate_sndbuf() to copy the ssk sndbuf into msk
- Later, tcp_child_process() -> tcp_init_transfer() ->
  tcp_sndbuf_expand() grows the ssk sndbuf.

So __mptcp_propagate_sndbuf() runs before the ssk sndbuf has been
expanded and the msk ends up with a much smaller sndbuf than the
subflow:
  MPTCP: msk->sndbuf:20480, msk->first->sndbuf:2626560

Fix this by removing the __mptcp_propagate_sndbuf() call in
mptcp_sk_clone_init(), as the ssk sndbuf is not yet finalized there.
Instead, call __mptcp_propagate_sndbuf() at accept() time, when the
ssk sndbuf has been fully expanded by tcp_sndbuf_expand().

Fixes: 8005184fd1ca ("mptcp: refactor sndbuf auto-tuning")
Closes: https://github.com/multipath-tcp/mptcp_net-next/issues/602
Signed-off-by: Gang Yan <yangang@kylinos.cn>
Acked-by: Paolo Abeni <pabeni@redhat.com>
---
 net/mptcp/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index 17b9a8c13ebf..6b486fc94c16 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -3594,7 +3594,6 @@ struct sock *mptcp_sk_clone_init(const struct sock *sk,
 	 * uses the correct data
 	 */
 	mptcp_copy_inaddrs(nsk, ssk);
-	__mptcp_propagate_sndbuf(nsk, ssk);
 
 	mptcp_rcv_space_init(msk, ssk);
 	msk->rcvq_space.time = mptcp_stamp();
@@ -4252,6 +4251,7 @@ static int mptcp_stream_accept(struct socket *sock, struct socket *newsock,
 
 		mptcp_graft_subflows(newsk);
 		mptcp_rps_record_subflows(msk);
+		__mptcp_propagate_sndbuf(newsk, mptcp_subflow_tcp_sock(subflow));
 
 		/* Do late cleanup for the first subflow as necessary. Also
 		 * deal with bad peers not doing a complete shutdown.
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH mptcp-net v4 2/2] selftests: mptcp: add a check for sndbuf of S/C
  2026-04-11  3:48 [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time Gang Yan
  2026-04-11  3:48 ` [PATCH mptcp-net v4 1/2] " Gang Yan
@ 2026-04-11  3:49 ` Gang Yan
  2026-04-11  5:00 ` [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time MPTCP CI
  2 siblings, 0 replies; 4+ messages in thread
From: Gang Yan @ 2026-04-11  3:49 UTC (permalink / raw)
  To: mptcp; +Cc: Gang Yan

From: Gang Yan <yangang@kylinos.cn>

Add a new chk_sndbuf() helper to diag.sh that extracts the sndbuf
(the 'tb' field from 'ss -m' skmem output) for both server and
client MPTCP sockets, and verifies they are equal.

Without the previous patch, it will fail:

'''
07 ....chk sndbuf server/client    [FAIL] sndbuf S=20480 != C=2630656
'''

Signed-off-by: Gang Yan <yangang@kylinos.cn>
---
 tools/testing/selftests/net/mptcp/diag.sh | 28 +++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/tools/testing/selftests/net/mptcp/diag.sh b/tools/testing/selftests/net/mptcp/diag.sh
index d847ff1737c3..27cbda68144e 100755
--- a/tools/testing/selftests/net/mptcp/diag.sh
+++ b/tools/testing/selftests/net/mptcp/diag.sh
@@ -322,6 +322,33 @@ wait_connected()
 	done
 }
 
+chk_sndbuf()
+{
+	local server_sndbuf client_sndbuf msg
+	local port=${1}
+
+	msg="....chk sndbuf server/client"
+	server_sndbuf=$(ss -N "${ns}" -inmHM "sport" "${port}" | \
+			sed -n 's/.*tb\([0-9]\+\).*/\1/p')
+	client_sndbuf=$(ss -N "${ns}" -inmHM "dport" "${port}" | \
+			sed -n 's/.*tb\([0-9]\+\).*/\1/p')
+
+	mptcp_lib_print_title "${msg}"
+	if [ -z "${server_sndbuf}" ] || [ -z "${client_sndbuf}" ]; then
+		mptcp_lib_pr_fail "sndbuf S=${server_sndbuf} C=${client_sndbuf}"
+		mptcp_lib_result_fail "${msg}"
+		ret=${KSFT_FAIL}
+	elif [ "${server_sndbuf}" != "${client_sndbuf}" ]; then
+		mptcp_lib_pr_fail "sndbuf S=${server_sndbuf} != C=${client_sndbuf}"
+		mptcp_lib_result_fail "${msg}"
+		ret=${KSFT_FAIL}
+	else
+		mptcp_lib_pr_ok
+		mptcp_lib_result_pass "${msg}"
+	fi
+}
+
+
 trap cleanup EXIT
 mptcp_lib_ns_init ns
 
@@ -341,6 +368,7 @@ echo "b" | \
 				127.0.0.1 >/dev/null &
 wait_connected $ns 10000
 chk_msk_nr 2 "after MPC handshake"
+chk_sndbuf 10000
 chk_last_time_info 10000
 chk_msk_remote_key_nr 2 "....chk remote_key"
 chk_msk_fallback_nr 0 "....chk no fallback"
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time
  2026-04-11  3:48 [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time Gang Yan
  2026-04-11  3:48 ` [PATCH mptcp-net v4 1/2] " Gang Yan
  2026-04-11  3:49 ` [PATCH mptcp-net v4 2/2] selftests: mptcp: add a check for sndbuf of S/C Gang Yan
@ 2026-04-11  5:00 ` MPTCP CI
  2 siblings, 0 replies; 4+ messages in thread
From: MPTCP CI @ 2026-04-11  5:00 UTC (permalink / raw)
  To: Gang Yan; +Cc: mptcp

Hi Gang,

Thank you for your modifications, that's great!

Our CI did some validations and here is its report:

- KVM Validation: normal (except selftest_mptcp_join): Unstable: 1 failed test(s): packetdrill_mp_reset ⚠️ 
- KVM Validation: normal (only selftest_mptcp_join): Success! ✅
- KVM Validation: debug (except selftest_mptcp_join): Success! ✅
- KVM Validation: debug (only selftest_mptcp_join): Success! ✅
- KVM Validation: btf-normal (only bpftest_all): Success! ✅
- KVM Validation: btf-debug (only bpftest_all): Success! ✅
- Task: https://github.com/multipath-tcp/mptcp_net-next/actions/runs/24274365063

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/414e68b0e64e
Patchwork: https://patchwork.kernel.org/project/mptcp/list/?series=1080031


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:[~2026-04-11  5:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-11  3:48 [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time Gang Yan
2026-04-11  3:48 ` [PATCH mptcp-net v4 1/2] " Gang Yan
2026-04-11  3:49 ` [PATCH mptcp-net v4 2/2] selftests: mptcp: add a check for sndbuf of S/C Gang Yan
2026-04-11  5:00 ` [PATCH mptcp-net v4 0/2] mptcp: sync the msk->sndbuf at accept() time MPTCP CI

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox