NFSD: Support write delegations in LAYOUTGET

I noticed LAYOUTGET(LAYOUTIOMODE4_RW) returning NFS4ERR_ACCESS
unexpectedly. The NFS client had created a file with mode 0444, and
the server had returned a write delegation on the OPEN(CREATE). The
client was requesting a RW layout using the write delegation stateid
so that it could flush file modifications.

Creating a read-only file does not seem to be problematic for
NFSv4.1 without pNFS, so I began looking at NFSD's implementation of
LAYOUTGET.

The failure was because fh_verify() was doing a permission check as
part of verifying the FH presented during the LAYOUTGET. It uses the
loga_iomode value to specify the @accmode argument to fh_verify().
fh_verify(MAY_WRITE) on a file whose mode is 0444 fails with -EACCES.

To permit LAYOUT* operations in this case, add OWNER_OVERRIDE when
checking the access permission of the incoming file handle for
LAYOUTGET and LAYOUTCOMMIT.

Cc: Christoph Hellwig <hch@lst.de>
Cc: stable@vger.kernel.org # v6.6+
Message-Id: 4E9C0D74-A06D-4DC3-A48A-73034DC40395@oracle.com
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

+3 -2
+3 -2
fs/nfsd/nfs4proc.c
··· 2269 2269 const struct nfsd4_layout_ops *ops; 2270 2270 struct nfs4_layout_stateid *ls; 2271 2271 __be32 nfserr; 2272 - int accmode = NFSD_MAY_READ_IF_EXEC; 2272 + int accmode = NFSD_MAY_READ_IF_EXEC | NFSD_MAY_OWNER_OVERRIDE; 2273 2273 2274 2274 switch (lgp->lg_seg.iomode) { 2275 2275 case IOMODE_READ: ··· 2359 2359 struct nfs4_layout_stateid *ls; 2360 2360 __be32 nfserr; 2361 2361 2362 - nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE); 2362 + nfserr = fh_verify(rqstp, current_fh, 0, 2363 + NFSD_MAY_WRITE | NFSD_MAY_OWNER_OVERRIDE); 2363 2364 if (nfserr) 2364 2365 goto out; 2365 2366