public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, Jon Maloy <jmaloy@redhat.com>
Subject: Re: [PATCH] tcp: Implement conservative zero-window probe on ACK timeout
Date: Wed, 12 Feb 2025 11:44:13 +1100	[thread overview]
Message-ID: <Z6vu3STYD8VBVvsl@zatzit> (raw)
In-Reply-To: <20250211195100.197876-1-sbrivio@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1600 bytes --]

On Tue, Feb 11, 2025 at 08:51:00PM +0100, Stefano Brivio wrote:
> This probably doesn't cover all the cases where we should send a
> zero-window probe, but it's rather unobtrusive and obvious, so start
> from here, also because I just observed this case (without the fix
> from the previous patch, to take into account window information from
> keep-alive segments).
> 
> If we hit the ACK timeout, and try re-sending data from the socket,
> if the window is zero, we'll just fail again, go back to the timer,
> and so on, until we hit the maximum number of re-transmissions and
> reset the connection.
> 
> Don't do that: forcibly try to send something by implementing the
> equivalent of a zero-window probe in this case.
> 
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>

Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

> ---
>  tcp.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tcp.c b/tcp.c
> index 2addf4a..b87478f 100644
> --- a/tcp.c
> +++ b/tcp.c
> @@ -2175,6 +2175,8 @@ void tcp_timer_handler(const struct ctx *c, union epoll_ref ref)
>  			flow_dbg(conn, "ACK timeout, retry");
>  			conn->retrans++;
>  			conn->seq_to_tap = conn->seq_ack_from_tap;
> +			if (!conn->wnd_from_tap)
> +				conn->wnd_from_tap = 1; /* Zero-window probe */
>  			if (tcp_set_peek_offset(conn->sock, 0)) {
>  				tcp_rst(c, conn);
>  			} else {

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2025-02-12  0:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-11 19:51 [PATCH] tcp: Implement conservative zero-window probe on ACK timeout Stefano Brivio
2025-02-12  0:44 ` David Gibson [this message]

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=Z6vu3STYD8VBVvsl@zatzit \
    --to=david@gibson.dropbear.id.au \
    --cc=jmaloy@redhat.com \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /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.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).