From: Dai Ngo <dai.ngo@oracle.com>
To: chuck.lever@oracle.com, jlayton@kernel.org, neilb@suse.de,
okorniev@redhat.com, tom@talpey.com
Cc: linux-nfs@vger.kernel.org, sagi@grimberg.me
Subject: [PATCH V2 2/2] NFSD: allow client to use write delegation stateid for READ
Date: Fri, 21 Feb 2025 15:42:20 -0800 [thread overview]
Message-ID: <1740181340-14562-3-git-send-email-dai.ngo@oracle.com> (raw)
In-Reply-To: <1740181340-14562-1-git-send-email-dai.ngo@oracle.com>
Allow READ using write delegation stateid granted on OPENs with
OPEN4_SHARE_ACCESS_WRITE only, to accommodate clients whose WRITE
implementation may unavoidably do (e.g., due to buffer cache
constraints).
When the server offers a write delegation for an OPEN with
OPEN4_SHARE_ACCESS_WRITE, the file access mode, the nfs4_file
and nfs4_ol_stateid are upgraded as if the OPEN was sent with
OPEN4_SHARE_ACCESS_BOTH.
When this delegation is returned or revoked, the corresponding open
stateid is looked up and if it's found then the file access mode,
the nfs4_file and nfs4_ol_stateid are downgraded to remove the read
access.
Signed-off-by: Dai Ngo <dai.ngo@oracle.com>
---
fs/nfsd/nfs4state.c | 62 +++++++++++++++++++++++++++++++++++++++++++++
fs/nfsd/state.h | 2 ++
2 files changed, 64 insertions(+)
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index b533225e57cf..0c14f902c54c 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -6126,6 +6126,51 @@ nfs4_delegation_stat(struct nfs4_delegation *dp, struct svc_fh *currentfh,
return rc == 0;
}
+/*
+ * Upgrade file access mode to include FMODE_READ. This is called only when
+ * a write delegation is granted for an OPEN with OPEN4_SHARE_ACCESS_WRITE.
+ */
+static void
+nfs4_upgrade_rdwr_file_access(struct nfs4_ol_stateid *stp)
+{
+ struct nfs4_file *fp = stp->st_stid.sc_file;
+ struct nfsd_file *nflp;
+ struct file *file;
+
+ spin_lock(&fp->fi_lock);
+ nflp = fp->fi_fds[O_WRONLY];
+ file = nflp->nf_file;
+ file->f_mode |= FMODE_READ;
+ swap(fp->fi_fds[O_RDWR], fp->fi_fds[O_WRONLY]);
+ clear_access(NFS4_SHARE_ACCESS_WRITE, stp);
+ set_access(NFS4_SHARE_ACCESS_BOTH, stp);
+ __nfs4_file_get_access(fp, NFS4_SHARE_ACCESS_READ); /* incr fi_access[O_RDONLY] */
+ spin_unlock(&fp->fi_lock);
+}
+
+/*
+ * Downgrade file access mode to remove FMODE_READ. This is called when
+ * a write delegation, granted for an OPEN with OPEN4_SHARE_ACCESS_WRITE,
+ * is returned.
+ */
+static void
+nfs4_downgrade_wronly_file_access(struct nfs4_ol_stateid *stp)
+{
+ struct nfs4_file *fp = stp->st_stid.sc_file;
+ struct nfsd_file *nflp;
+ struct file *file;
+
+ spin_lock(&fp->fi_lock);
+ nflp = fp->fi_fds[O_RDWR];
+ file = nflp->nf_file;
+ file->f_mode &= ~FMODE_READ;
+ swap(fp->fi_fds[O_WRONLY], fp->fi_fds[O_RDWR]);
+ clear_access(NFS4_SHARE_ACCESS_BOTH, stp);
+ set_access(NFS4_SHARE_ACCESS_WRITE, stp);
+ spin_unlock(&fp->fi_lock);
+ nfs4_file_put_access(fp, NFS4_SHARE_ACCESS_READ); /* decr. fi_access[O_RDONLY] */
+}
+
/*
* The Linux NFS server does not offer write delegations to NFSv4.0
* clients in order to avoid conflicts between write delegations and
@@ -6207,6 +6252,11 @@ nfs4_open_delegation(struct nfsd4_open *open, struct nfs4_ol_stateid *stp,
dp->dl_cb_fattr.ncf_cur_fsize = stat.size;
dp->dl_cb_fattr.ncf_initial_cinfo = nfsd4_change_attribute(&stat);
trace_nfsd_deleg_write(&dp->dl_stid.sc_stateid);
+
+ if ((open->op_share_access & NFS4_SHARE_ACCESS_BOTH) == NFS4_SHARE_ACCESS_WRITE) {
+ dp->dl_stateid = stp->st_stid.sc_stateid;
+ nfs4_upgrade_rdwr_file_access(stp);
+ }
} else {
open->op_delegate_type = deleg_ts ? OPEN_DELEGATE_READ_ATTRS_DELEG :
OPEN_DELEGATE_READ;
@@ -7710,6 +7760,8 @@ nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
struct nfs4_stid *s;
__be32 status;
struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
+ struct nfs4_ol_stateid *stp;
+ struct nfs4_stid *stid;
if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
return status;
@@ -7724,6 +7776,16 @@ nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
trace_nfsd_deleg_return(stateid);
destroy_delegation(dp);
+
+ if (dp->dl_stateid.si_generation && dp->dl_stateid.si_opaque.so_id) {
+ if (!nfsd4_lookup_stateid(cstate, &dp->dl_stateid,
+ SC_TYPE_OPEN, 0, &stid, nn)) {
+ stp = openlockstateid(stid);
+ nfs4_downgrade_wronly_file_access(stp);
+ nfs4_put_stid(stid);
+ }
+ }
+
smp_mb__after_atomic();
wake_up_var(d_inode(cstate->current_fh.fh_dentry));
put_stateid:
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h
index 74d2d7b42676..3f2f1b92db66 100644
--- a/fs/nfsd/state.h
+++ b/fs/nfsd/state.h
@@ -207,6 +207,8 @@ struct nfs4_delegation {
/* for CB_GETATTR */
struct nfs4_cb_fattr dl_cb_fattr;
+
+ stateid_t dl_stateid; /* open stateid */
};
static inline bool deleg_is_read(u32 dl_type)
--
2.43.5
next prev parent reply other threads:[~2025-02-21 23:42 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-21 23:42 [PATCH V2 0/2] NFSD: offer write delegation for OPEN with OPEN4_SHARE_ACCESS only Dai Ngo
2025-02-21 23:42 ` [PATCH V2 1/2] NFSD: Offer write delegation for OPEN with OPEN4_SHARE_ACCESS_WRITE Dai Ngo
2025-02-21 23:42 ` Dai Ngo [this message]
2025-02-24 14:48 ` [PATCH V2 2/2] NFSD: allow client to use write delegation stateid for READ Chuck Lever
2025-02-24 21:11 ` Dai Ngo
2025-02-24 21:38 ` Chuck Lever
2025-02-24 15:48 ` Jeff Layton
2025-02-25 1:10 ` Dai Ngo
2025-02-25 12:31 ` Jeff Layton
2025-02-26 0:31 ` Dai Ngo
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=1740181340-14562-3-git-send-email-dai.ngo@oracle.com \
--to=dai.ngo@oracle.com \
--cc=chuck.lever@oracle.com \
--cc=jlayton@kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
--cc=okorniev@redhat.com \
--cc=sagi@grimberg.me \
--cc=tom@talpey.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox