nfsd: Handle file systems without a VOP_VPTOFH()

Unlike NFSv3, the NFSv4 server follows mount points
within the file system tree below the NFSv4 root directory.
If there is a file system mounted within this subtree
that returns EOPNOTSUPP for VOP_VPTOFH(), the NFSv4 server
would return an error for the mount point entry.
This resulted in an "I/O error" report from the Linux NFSv4
client.  It also put an error code in the Readdir reply
that is not defined in the NFSv4 RFCs.

For the FreeBSD NFSv4 client, the entry with the error would
be ignored, which I think is reasonable behaviour for a
mounted file system that can never be exported.

This patch changes the NFSv4 server behaviour to ignore the
mount point entry and not send it in the Readdir reply.
It also changes the behaviour of Lookup for the entry so
that it replies ENOENT for the mount point directory, so
that it is consistent with no entry in the Readdir reply.

With these two changes, the Linux client behaviour is the
same as the FreeBSD client behaviour.  It also avoids
putting an unknown error on the wire to the client.

MFC after:	1 week
This commit is contained in:
Rick Macklem 2022-12-23 15:17:34 -08:00
parent c89209c674
commit 6fd6a0e342
2 changed files with 17 additions and 3 deletions

View File

@ -2699,15 +2699,22 @@ nfsrvd_readdirplus(struct nfsrv_descript *nd, int isdgram,
* For NFSv4 the behavior is controlled by
* RDATTRERROR: we either ignore the error or
* fail the request.
* The exception is EOPNOTSUPP, which can be
* returned by nfsvno_getfh() for certain
* file systems, such as devfs. This indicates
* that the file system cannot be exported,
* so just skip over the entry.
* Note that RDATTRERROR is never set for NFSv3.
*/
if (r != 0) {
if (!NFSISSET_ATTRBIT(&attrbits,
NFSATTRBIT_RDATTRERROR)) {
NFSATTRBIT_RDATTRERROR) ||
r == EOPNOTSUPP) {
vput(nvp);
if (needs_unbusy != 0)
vfs_unbusy(new_mp);
if ((nd->nd_flag & ND_NFSV3))
if ((nd->nd_flag & ND_NFSV3) ||
r == EOPNOTSUPP)
goto invalid;
nd->nd_repstat = r;
break;

View File

@ -645,8 +645,15 @@ nfsrvd_lookup(struct nfsrv_descript *nd, __unused int isdgram,
* non-exported volumes during NFSv4 mounting.
*/
nd->nd_repstat = ENOENT;
if (nd->nd_repstat == 0)
if (nd->nd_repstat == 0) {
nd->nd_repstat = nfsvno_getfh(vp, fhp, p);
/*
* EOPNOTSUPP indicates the file system cannot be exported,
* so just pretend the entry does not exist.
*/
if (nd->nd_repstat == EOPNOTSUPP)
nd->nd_repstat = ENOENT;
}
if (!(nd->nd_flag & ND_NFSV4) && !nd->nd_repstat)
nd->nd_repstat = nfsvno_getattr(vp, &nva, nd, p, 1, NULL);
if (vpp != NULL && nd->nd_repstat == 0)