Bug 266720 - Sending mountd(8) SIGHUP to reload exports is disruptive
Summary: Sending mountd(8) SIGHUP to reload exports is disruptive
Status: New
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 13.1-RELEASE
Hardware: Any Any
: --- Affects Some People
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-09-30 11:03 UTC by Björn Fischer
Modified: 2022-09-30 20:19 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Björn Fischer 2022-09-30 11:03:49 UTC
NFSv4 server is FreeBSD-13.1, problem occurs at least on Linux and Solaris clients.

The seems to be a small time window triggered by reloading /etc/exports (using SIGHUP @mountd, or 'service mountd reload') causing valid client requests getting EPERM. We can reliably reproduce the glitch by running this little Perl script on a client:

#!/usr/bin/perl

while (1) {
    open my $fh, $0 or warn($!);
    sysread $fh, my $s, 64, 0 or warn($!);
    close $fh
}

and SIGHUPing the mountd on the FreeBSD server. Many entries in /etc/exports help hitting the critical time window.

For our use case this problem has show-stopper qualities since we manage export ACLs on a per-volume basis, and we have lots of volumes.