mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: netdev-bot+sashiko@kernel.org
To: dhowells@redhat.com
Cc: netdev@vger.kernel.org, marc.dionne@auristor.com,
	kuba@kernel.org, davem@davemloft.net, edumazet@google.com,
	pabeni@redhat.com, horms@kernel.org,
	linux-afs@lists.infradead.org, linux-kernel@vger.kernel.org,
	nicoyip.dev@gmail.com, stable@vger.kernel.org
Subject: Re: [PATCH net v9 03/14] rxrpc: Fix lack of loop around reply send in rxperf server
Date: Tue, 08 Sep 2026 20:49:39 +0000	[thread overview]
Message-ID: <178890057952.219967.6823866558237895199@kernel.org> (raw)
In-Reply-To: <20260907113743.1453210-4-dhowells@redhat.com>

Thank you for your contribution! Sashiko AI review found 1 potential
issue(s) to consider:

Critical: 0 · High: 0 · Medium: 0 · Low: 1

- [Low] Claimed infinite loop in the new `do { ... } while (n >= 0 &&
  msg_data_left(&msg) > 0)` retry loop in rxperf_process_call()…

--

rxrpc: Fix lack of loop around reply send in rxperf server

This wraps the magic-cookie send in rxperf_process_call() in a loop so a
short send is retried, and changes the error path to always propose an
abort with the send error rather than only on -ENOMEM.  The
rxperf_abort_oom trace enum is replaced by rxperf_abort_send_error.

Link: https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260824091645.415423-1-dhowells%40redhat.com

> diff --git a/net/rxrpc/rxperf.c b/net/rxrpc/rxperf.c
> index b8df6d22314d6..ebd54222c64ef 100644
> --- a/net/rxrpc/rxperf.c
> +++ b/net/rxrpc/rxperf.c
> @@ -538,15 +538,18 @@ static int rxperf_process_call(struct rxperf_call *call)
>  	iov[0].iov_len	= len;
>  	iov_iter_kvec(&msg.msg_iter, WRITE, iov, 1, len);
>  	msg.msg_flags = 0;
> -	n = rxrpc_kernel_send_data(rxperf_socket, call->rxcall, &msg, len,
> -				   rxperf_notify_end_reply_tx);
> +	do {
> +		n = rxrpc_kernel_send_data(rxperf_socket, call->rxcall,
> +					   &msg, msg_data_left(&msg),
> +					   rxperf_notify_end_reply_tx);
> +	} while (n >= 0 && msg_data_left(&msg) > 0);

[Severity: Low]
This isn't a bug as far as I could tell, but should the new loop also treat
a zero return as a failure the way the reply-payload loop just above it in
rxperf_process_call() does?

The earlier loop in the same function bails out explicitly:

	n = rxrpc_kernel_send_data(rxperf_socket, call->rxcall, &msg,
				   len, rxperf_notify_end_reply_tx);
	if (n < 0)
		return n;
	if (n == 0)
		return -EIO;

whereas the new loop counts n == 0 as progress and re-enters
rxrpc_kernel_send_data() while msg_data_left(&msg) is still non-zero.

I tried to construct a path where rxrpc_kernel_send_data() returns exactly 0
with the four cookie bytes still pending and could not find one in this tree.
A positive return is the number of bytes copied out of msg->msg_iter, every
error path in rxrpc_send_data() returns a strictly negative value, and the
only routes to a zero return are:

net/rxrpc/sendmsg.c:rxrpc_kernel_send_data() {
	...
	if (ret == -ESHUTDOWN)
		ret = call->error;
	...
}

and the call_terminated path returning call->error, both of which need
call->error == 0, i.e. RXRPC_CALL_SUCCEEDED.  For a service call that state
is only reached from RXRPC_CALL_SERVER_AWAIT_ACK in
rxrpc_end_tx_phase()->rxrpc_call_completed(), and AWAIT_ACK is only entered
by rxrpc_close_tx_phase() once a txb carrying RXRPC_LAST_PACKET has been
transmitted, which itself requires the caller's iterator to have been fully
consumed.  So the two conditions look mutually exclusive and the loop
terminates today.

Given that, would adding the same zero-progress escape make the new loop
match its sibling and not depend on that implicit state-machine property?

	do {
		n = rxrpc_kernel_send_data(rxperf_socket, call->rxcall,
					   &msg, msg_data_left(&msg),
					   rxperf_notify_end_reply_tx);
		if (n == 0) {
			n = -EIO;
			break;
		}
	} while (n > 0 && msg_data_left(&msg) > 0);

For reference, the later patch "rxrpc: Fix sendmsg to not return an error if
last packet queued" documents the return contract as the number of bytes
buffered, which can be 0 when the iterator holds 0 bytes; that is consistent
with the loop terminating here.  rxperf.c is not touched again later in the
series, so the loop stays as introduced.

-- 
Sashiko AI review · https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260907113743.1453210-1-dhowells%40redhat.com

  reply	other threads:[~2026-09-08 20:49 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-07 11:37 [PATCH net v9 00/14] rxrpc: Miscellaneous fixes David Howells
2026-09-07 11:37 ` [PATCH net v9 01/14] afs: Fix lack of loop around sendmsg() to rxrpc David Howells
2026-09-07 13:06   ` David Laight
2026-09-10 10:18   ` David Howells
2026-09-07 11:37 ` [PATCH net v9 02/14] afs: Fix afs to abort the rxrpc call on send error David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 03/14] rxrpc: Fix lack of loop around reply send in rxperf server David Howells
2026-09-08 20:49   ` netdev-bot+sashiko [this message]
2026-09-07 11:37 ` [PATCH net v9 04/14] rxrpc: Fix sendmsg to not return an error if last packet queued David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 05/14] rxrpc: Fix sendmsg length David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 06/14] rxrpc: Fix packet encryption error handling David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 07/14] rxrpc: Fix update of call->tx_pending without holding lock David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 08/14] rxrpc: Fix double IRQ enablement David Howells
2026-09-07 11:37 ` [PATCH net v9 09/14] rxrpc: Fix generation of notifications after call completion David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 10/14] rxrpc: Fix RxGK key parser to check enctype is supported David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 11/14] afs: Fix creation of RxGK CM channel token to have right size David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 12/14] afs: Fix lack of setting call->server when doing FS.InlineBulkStatus David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 13/14] rxrpc: fix use-after-free in rxrpc_poke_conn() David Howells
2026-09-08 20:49   ` netdev-bot+sashiko
2026-09-07 11:37 ` [PATCH net v9 14/14] rxrpc: Take write lock when publishing the initial RxGK key David Howells
2026-09-08 20:49   ` netdev-bot+sashiko

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=178890057952.219967.6823866558237895199@kernel.org \
    --to=netdev-bot+sashiko@kernel.org \
    --cc=davem@davemloft.net \
    --cc=dhowells@redhat.com \
    --cc=edumazet@google.com \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-afs@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marc.dionne@auristor.com \
    --cc=netdev@vger.kernel.org \
    --cc=nicoyip.dev@gmail.com \
    --cc=pabeni@redhat.com \
    --cc=stable@vger.kernel.org \
    /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

all inboxes | Powered by JetHome®