From: Stefano Brivio <sbrivio@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top, Paul Holzinger <pholzing@redhat.com>
Subject: Re: [PATCH 6/6] tcp_splice: Simplify shutdown(2) handling
Date: Thu, 21 May 2026 07:40:36 +0200 (CEST) [thread overview]
Message-ID: <20260521074035.0fe217d5@elisabeth> (raw)
In-Reply-To: <ag5p5STsHYHF8GVE@zatzit>
On Thu, 21 May 2026 12:11:49 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:
> On Wed, May 20, 2026 at 10:30:23PM +0200, Stefano Brivio wrote:
> > On Wed, 20 May 2026 23:08:51 +1000
> > David Gibson <david@gibson.dropbear.id.au> wrote:
> >
> > > At the end of tcp_splice_forward(), we check for half-closed connections
> > > and propagate the FIN to the other side with a shutdown(2). Currently we
> > > check for a half closed connection in either direction. That's unnecessary
> > > here, because tcp_splice_forward() will already be called for each
> > > direction if there are any relevant events.
> >
> > True, but do we have the guarantee that tcp_splice_forward() will also
> > be called once all relevant FIN_RCVD / FIN_SENT flags have been sent?
>
> Yes, because tcp_splice_forward() is (now) the only place that *sets*
> FIN_RCVD (or FIN_SENT).
>
> > The reason why we check both sides here is that we might have updated
> > flags for one side, and now we need to double check if it's time to
> > call shutdown() as a consequence.
> >
> > Maybe we never have to, but I think it's not really obvious to prove.
>
> tcp_splice_forward() only touches FIN_RCVD(fromsidei). So, we only
> need to examine FIN_RCVD(fromsidei). If FIN_RCVD is set for the other
> side, it must be in another call to tcp_splice_forward() which will
> also examine that other flag and shutdown() as necessary.
Okay, fair. That's what I call "not really obvious" but it's probably
obvious enough.
> > > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > > ---
> > > tcp_splice.c | 22 ++++++++--------------
> > > 1 file changed, 8 insertions(+), 14 deletions(-)
> > >
> > > diff --git a/tcp_splice.c b/tcp_splice.c
> > > index b45f0060..e5018f2e 100644
> > > --- a/tcp_splice.c
> > > +++ b/tcp_splice.c
> > > @@ -582,21 +582,15 @@ retry:
> > > break;
> > > }
> > >
> > > - if (!conn->pending[fromsidei] &&
> > > - conn->events & FIN_RCVD(fromsidei)) {
> > > - unsigned sidei;
> > > -
> > > - flow_foreach_sidei(sidei) {
> > > - if ((conn->events & FIN_RCVD(sidei)) &&
> > > - !(conn->events & FIN_SENT(!sidei))) {
> > > - if (shutdown(conn->s[!sidei], SHUT_WR) < 0) {
> > > - flow_perror(conn, "shutdown() on %s",
> > > - pif_name(conn->f.pif[!sidei]));
> > > - return -1;
> > > - }
> > > - conn_event(conn, FIN_SENT(!sidei));
> > > - }
> > > + if ((conn->events & FIN_RCVD(fromsidei)) &&
> > > + !(conn->events & FIN_SENT(!fromsidei)) &&
> > > + !conn->pending[fromsidei]) {
> > > + if (shutdown(conn->s[!fromsidei], SHUT_WR) < 0) {
> > > + flow_perror(conn, "shutdown() on %s",
> > > + pif_name(conn->f.pif[!fromsidei]));
> > > + return -1;
> > > }
> > > + conn_event(conn, FIN_SENT(!fromsidei));
> > > }
> > >
> > > return 0;
--
Stefano
prev parent reply other threads:[~2026-05-21 5:40 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-20 13:08 [PATCH 0/6] Fix race condition while closing spliced connections David Gibson
2026-05-20 13:08 ` [PATCH 1/6] tcp_splice: Improve error reporting David Gibson
2026-05-20 14:31 ` Stefano Brivio
2026-05-21 0:43 ` David Gibson
2026-05-21 5:08 ` Stefano Brivio
2026-05-20 13:08 ` [PATCH 2/6] tcp_splice: Avoid missing EOF recognition while forwarding David Gibson
2026-05-20 20:28 ` Stefano Brivio
2026-05-21 0:46 ` David Gibson
2026-05-20 13:08 ` [PATCH 3/6] tcp_splice: Clean up flow control path for splice forwarding David Gibson
2026-05-20 20:28 ` Stefano Brivio
2026-05-21 0:50 ` David Gibson
2026-05-20 13:08 ` [PATCH 4/6] tcp_splice: Simplify tracking of read/written bytes David Gibson
2026-05-20 20:29 ` Stefano Brivio
2026-05-21 0:54 ` David Gibson
2026-05-20 13:08 ` [PATCH 5/6] tcp_splice: Simplify EPOLLRDHUP / eof / FIN handling David Gibson
2026-05-20 20:30 ` Stefano Brivio
2026-05-21 2:03 ` David Gibson
2026-05-21 5:40 ` Stefano Brivio
2026-05-21 6:56 ` David Gibson
2026-05-21 7:15 ` Stefano Brivio
2026-05-21 13:51 ` David Gibson
2026-05-21 15:18 ` Stefano Brivio
2026-05-22 1:29 ` David Gibson
2026-05-20 13:08 ` [PATCH 6/6] tcp_splice: Simplify shutdown(2) handling David Gibson
2026-05-20 20:30 ` Stefano Brivio
2026-05-21 2:11 ` David Gibson
2026-05-21 5:40 ` Stefano Brivio [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=20260521074035.0fe217d5@elisabeth \
--to=sbrivio@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
--cc=pholzing@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).