From: Geliang Tang <geliang@kernel.org>
To: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>, mptcp@lists.linux.dev
Subject: Re: [PATCH mptcp-next v3 2/8] mptcp: MIB counters for sent MP_JOIN
Date: Thu, 08 Aug 2024 10:46:57 +0800 [thread overview]
Message-ID: <88fa2fcc26d43988d897b306df39df5c3b41afd6.camel@kernel.org> (raw)
In-Reply-To: <20240806-mptcp-join-tx-mib-v3-2-c3b54d2099e9@kernel.org>
On Tue, 2024-08-06 at 13:18 +0200, Matthieu Baerts (NGI0) wrote:
> Recently, a few issues have been discovered around the creation of
> additional subflows. Without these counters, it was difficult to
> point
> out the reason why some subflows were not created as expected.
>
> These counters should have been added earlier, because there is no
> other
> simple ways to extract such information from the kernel, and
> understand
> why subflows have not been created.
>
> While at it, some pr_debug() have been added, just in case the errno
> needs to be printed.
>
> Closes: https://github.com/multipath-tcp/mptcp_net-next/issues/509
> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
> ---
> Notes:
> - v2:
> - Add "ERR" suffix in variable names. (Geliang)
> - v3:
> - removed Fully Established Error counter: should only happen
> with
> the userspace PM, which will propagate the error in this case
> (ENOTCONN). (Geliang)
> ---
> net/mptcp/mib.c | 4 ++++
> net/mptcp/mib.h | 4 ++++
> net/mptcp/subflow.c | 21 ++++++++++++++++++---
> 3 files changed, 26 insertions(+), 3 deletions(-)
>
> diff --git a/net/mptcp/mib.c b/net/mptcp/mib.c
> index 7884217f33eb..ec0d461cb921 100644
> --- a/net/mptcp/mib.c
> +++ b/net/mptcp/mib.c
> @@ -25,6 +25,10 @@ static const struct snmp_mib mptcp_snmp_list[] = {
> SNMP_MIB_ITEM("MPJoinSynAckHMacFailure",
> MPTCP_MIB_JOINSYNACKMAC),
> SNMP_MIB_ITEM("MPJoinAckRx", MPTCP_MIB_JOINACKRX),
> SNMP_MIB_ITEM("MPJoinAckHMacFailure", MPTCP_MIB_JOINACKMAC),
> + SNMP_MIB_ITEM("MPJoinSynTx", MPTCP_MIB_JOINSYNTX),
> + SNMP_MIB_ITEM("MPJoinSynTxCreatSkErr",
> MPTCP_MIB_JOINSYNTXCREATSKERR),
> + SNMP_MIB_ITEM("MPJoinSynTxBindErr",
> MPTCP_MIB_JOINSYNTXBINDERR),
> + SNMP_MIB_ITEM("MPJoinSynTxConnectErr",
> MPTCP_MIB_JOINSYNTXCONNECTERR),
> SNMP_MIB_ITEM("DSSNotMatching", MPTCP_MIB_DSSNOMATCH),
> SNMP_MIB_ITEM("InfiniteMapTx", MPTCP_MIB_INFINITEMAPTX),
> SNMP_MIB_ITEM("InfiniteMapRx", MPTCP_MIB_INFINITEMAPRX),
> diff --git a/net/mptcp/mib.h b/net/mptcp/mib.h
> index 66aa67f49d03..d68136f93dac 100644
> --- a/net/mptcp/mib.h
> +++ b/net/mptcp/mib.h
> @@ -20,6 +20,10 @@ enum linux_mptcp_mib_field {
> MPTCP_MIB_JOINSYNACKMAC, /* HMAC was wrong on SYN/ACK
> + MP_JOIN */
> MPTCP_MIB_JOINACKRX, /* Received an ACK + MP_JOIN
> */
> MPTCP_MIB_JOINACKMAC, /* HMAC was wrong on ACK +
> MP_JOIN */
> + MPTCP_MIB_JOINSYNTX, /* Sending a SYN + MP_JOIN
> */
> + MPTCP_MIB_JOINSYNTXCREATSKERR, /* Not able to create a
> socket when sending a SYN + MP_JOIN */
> + MPTCP_MIB_JOINSYNTXBINDERR, /* Not able to bind() the
> address when sending a SYN + MP_JOIN */
> + MPTCP_MIB_JOINSYNTXCONNECTERR, /* Not able to connect()
> when sending a SYN + MP_JOIN */
> MPTCP_MIB_DSSNOMATCH, /* Received a new mapping
> that did not match the previous one */
> MPTCP_MIB_INFINITEMAPTX, /* Sent an infinite mapping
> */
> MPTCP_MIB_INFINITEMAPRX, /* Received an infinite
> mapping */
> diff --git a/net/mptcp/subflow.c b/net/mptcp/subflow.c
> index a7fb4d46e024..fdeb7df8b095 100644
> --- a/net/mptcp/subflow.c
> +++ b/net/mptcp/subflow.c
> @@ -1575,12 +1575,17 @@ int __mptcp_subflow_connect(struct sock *sk,
> const struct mptcp_pm_local *local,
> u32 remote_token;
> int addrlen;
>
> + /* The userspace PM sent the request too early? */
> if (!mptcp_is_fully_established(sk))
> goto err_out;
>
> err = mptcp_subflow_create_socket(sk, local->addr.family,
> &sf);
> - if (err)
> + if (err) {
> + MPTCP_INC_STATS(sock_net(sk),
> MPTCP_MIB_JOINSYNTXCREATSKERR);
> + pr_debug("msk=%p local=%d remote:%d create sock
> error: %d\n",
It's better to use "remote=%d" instead of "remote:%d" I guess. Same
below.
> + msk, local_id, remote_id, err);
> goto err_out;
> + }
>
> ssk = sf->sk;
> subflow = mptcp_subflow_ctx(ssk);
> @@ -1615,8 +1620,12 @@ int __mptcp_subflow_connect(struct sock *sk,
> const struct mptcp_pm_local *local,
> #endif
> ssk->sk_bound_dev_if = local->ifindex;
> err = kernel_bind(sf, (struct sockaddr *)&addr, addrlen);
> - if (err)
> + if (err) {
> + MPTCP_INC_STATS(sock_net(sk),
> MPTCP_MIB_JOINSYNTXBINDERR);
> + pr_debug("msk=%p local=%d remote:%d bind error:
> %d\n",
> + msk, local_id, remote_id, err);
> goto failed;
> + }
>
> mptcp_crypto_key_sha(subflow->remote_key, &remote_token,
> NULL);
> pr_debug("msk=%p remote_token=%u local_id=%d remote_id=%d",
> msk,
> @@ -1631,8 +1640,14 @@ int __mptcp_subflow_connect(struct sock *sk,
> const struct mptcp_pm_local *local,
> sock_hold(ssk);
> list_add_tail(&subflow->node, &msk->conn_list);
> err = kernel_connect(sf, (struct sockaddr *)&addr, addrlen,
> O_NONBLOCK);
> - if (err && err != -EINPROGRESS)
> + if (err && err != -EINPROGRESS) {
> + MPTCP_INC_STATS(sock_net(sk),
> MPTCP_MIB_JOINSYNTXCONNECTERR);
> + pr_debug("msk=%p local=%d remote:%d connect error:
> %d\n",
> + msk, local_id, remote_id, err);
> goto failed_unlink;
> + }
> +
> + MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_JOINSYNTX);
>
> /* discard the subflow socket */
> mptcp_sock_graft(ssk, sk->sk_socket);
>
next prev parent reply other threads:[~2024-08-08 2:47 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-06 11:18 [PATCH mptcp-next v3 0/8] mptcp: MIB counters for sent MP_JOIN Matthieu Baerts (NGI0)
2024-08-06 11:18 ` [PATCH mptcp-next v3 1/8] selftests: mptcp: join: no extra msg if no counter Matthieu Baerts (NGI0)
2024-08-08 2:38 ` Geliang Tang
2024-08-08 10:17 ` Matthieu Baerts
2024-08-09 2:30 ` Geliang Tang
2024-08-09 11:32 ` Matthieu Baerts
2024-08-09 11:52 ` Geliang Tang
2024-08-06 11:18 ` [PATCH mptcp-next v3 2/8] mptcp: MIB counters for sent MP_JOIN Matthieu Baerts (NGI0)
2024-08-08 2:46 ` Geliang Tang [this message]
2024-08-08 10:18 ` Matthieu Baerts
2024-08-06 11:18 ` [PATCH mptcp-next v3 3/8] selftests: mptcp: join: reduce join_nr params Matthieu Baerts (NGI0)
2024-08-08 3:28 ` Geliang Tang
2024-08-08 10:22 ` Matthieu Baerts
2024-08-09 2:32 ` Geliang Tang
2024-08-06 11:18 ` [PATCH mptcp-next v3 4/8] selftests: mptcp: join: one line for join check Matthieu Baerts (NGI0)
2024-08-09 2:10 ` Geliang Tang
2024-08-09 11:39 ` Matthieu Baerts
2024-08-06 11:18 ` [PATCH mptcp-next v3 5/8] selftests: mptcp: join: validate MPJ SYN TX MIB counters Matthieu Baerts (NGI0)
2024-08-09 2:21 ` Geliang Tang
2024-08-09 11:42 ` Matthieu Baerts
2024-08-06 11:18 ` [PATCH mptcp-next v3 6/8] selftests: mptcp: join: more explicit check name Matthieu Baerts (NGI0)
2024-08-09 2:00 ` Geliang Tang
2024-08-06 11:18 ` [PATCH mptcp-next v3 7/8] selftests: mptcp: join: specify host being checked Matthieu Baerts (NGI0)
2024-08-06 11:18 ` [PATCH mptcp-next v3 8/8] selftests: mptcp: join: mute errors when ran in the background Matthieu Baerts (NGI0)
2024-08-06 12:08 ` [PATCH mptcp-next v3 0/8] mptcp: MIB counters for sent MP_JOIN MPTCP CI
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=88fa2fcc26d43988d897b306df39df5c3b41afd6.camel@kernel.org \
--to=geliang@kernel.org \
--cc=matttbe@kernel.org \
--cc=mptcp@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox