HomeFreeBSD

nfsd: fix a NFSv4.1 Linux client mount stuck in CLOSE_WAIT

Description

nfsd: fix a NFSv4.1 Linux client mount stuck in CLOSE_WAIT

It was reported that a NFSv4.1 Linux client mount against
a FreeBSD12 server was hung, with the TCP connection in
CLOSE_WAIT state on the server.
When a NFSv4.1/4.2 mount is done and the back channel is
bound to the TCP connection, the soclose() is delayed until
a new TCP connection is bound to the back channel, due to
a reference count being held on the SVCXPRT structure in
the krpc for the socket. Without the soclose() call, the socket
will remain in CLOSE_WAIT and this somehow caused the Linux
client to hang.

This patch adds calls to soshutdown(.., SHUT_WR) that
are performed when the server side krpc sees that the
socket is no longer usable. Since this can be done
before the back channel is bound to a new TCP connection,
it allows the TCP connection to proceed to CLOSED state.

PR: 254590
Reported by: jbreitman@tildenparkcapital.com
Reviewed by: tuexen
Comments by: kevans
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D29526

Details

Provenance
rmacklemAuthored on Apr 27 2021, 10:32 PM
Reviewer
tuexen
Differential Revision
D29526: add soshutdown() calls to the server side krpc whenever a socket is no longer usable
Parents
rGeea55de7b108: e1000: Rework em_msi_link interrupt filter
Branches
Unknown
Tags
Unknown