aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2021-10-31 23:31:31 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2021-11-18 23:55:39 +0000
commit82d04e93821d537ab5776c90f73855d5b0367b13 (patch)
tree8c3f929cbdde339c4953626966a18c80a1f65040
parent5d9215b315a9e2b90d36ba90c4a8c84306bcfee4 (diff)
downloadsrc-82d04e93821d537ab5776c90f73855d5b0367b13.tar.gz
src-82d04e93821d537ab5776c90f73855d5b0367b13.zip
nfscl: Do pNFS layout return_on_close synchronously
For pNFS servers that specify that Layouts are to be returned upon close, they may expect that LayoutReturn to happen before the associated Close. This patch modifies the NFSv4.1/4.2 pNFS client so that this is done. This only affects a pNFS mount against a non-FreeBSD NFSv4.1/4.2 server that specifies return_on_close in LayoutGet replies. Found during a recent IETF NFSv4 working group testing event. (cherry picked from commit d5d2ce1c8550a41e7374893ccd864c172461221f)
-rw-r--r--sys/fs/nfs/nfsclstate.h1
-rw-r--r--sys/fs/nfsclient/nfs_clstate.c63
2 files changed, 47 insertions, 17 deletions
diff --git a/sys/fs/nfs/nfsclstate.h b/sys/fs/nfs/nfsclstate.h
index 2ada4bfc5540..7f10c058697a 100644
--- a/sys/fs/nfs/nfsclstate.h
+++ b/sys/fs/nfs/nfsclstate.h
@@ -263,6 +263,7 @@ struct nfscllayout {
#define NFSLY_RETONCLOSE 0x0080
#define NFSLY_WRITTEN 0x0100 /* Has been used to write to a DS. */
#define NFSLY_FLEXFILE 0x0200
+#define NFSLY_RETURNED 0x0400
/*
* Flex file layout mirror specific stuff for nfsclflayout.
diff --git a/sys/fs/nfsclient/nfs_clstate.c b/sys/fs/nfsclient/nfs_clstate.c
index 9bd9b8759c51..279f7e38c346 100644
--- a/sys/fs/nfsclient/nfs_clstate.c
+++ b/sys/fs/nfsclient/nfs_clstate.c
@@ -122,7 +122,7 @@ static struct nfsclclient *nfscl_getclntsess(uint8_t *);
static struct nfscldeleg *nfscl_finddeleg(struct nfsclclient *, u_int8_t *,
int);
static void nfscl_retoncloselayout(vnode_t, struct nfsclclient *, uint8_t *,
- int, struct nfsclrecalllayout **);
+ int, struct nfsclrecalllayout **, struct nfscllayout **);
static void nfscl_reldevinfo_locked(struct nfscldevinfo *);
static struct nfscllayout *nfscl_findlayout(struct nfsclclient *, u_int8_t *,
int);
@@ -2817,7 +2817,8 @@ tryagain2:
while (lyp != NULL) {
nlyp = TAILQ_PREV(lyp, nfscllayouthead, nfsly_list);
if (lyp->nfsly_timestamp < NFSD_MONOSEC &&
- (lyp->nfsly_flags & NFSLY_RECALL) == 0 &&
+ (lyp->nfsly_flags & (NFSLY_RECALL |
+ NFSLY_RETONCLOSE)) == 0 &&
lyp->nfsly_lock.nfslock_usecnt == 0 &&
lyp->nfsly_lock.nfslock_lock == 0) {
NFSCL_DEBUG(4, "ret stale lay=%d\n",
@@ -2852,7 +2853,13 @@ tryagain2:
TAILQ_REMOVE(&rlh, lyp, nfsly_list);
NFSCL_DEBUG(4, "ret layout\n");
nfscl_layoutreturn(clp->nfsc_nmp, lyp, cred, p);
- nfscl_freelayout(lyp);
+ if ((lyp->nfsly_flags & NFSLY_RETONCLOSE) != 0) {
+ NFSLOCKCLSTATE();
+ lyp->nfsly_flags |= NFSLY_RETURNED;
+ wakeup(lyp);
+ NFSUNLOCKCLSTATE();
+ } else
+ nfscl_freelayout(lyp);
}
/*
@@ -3217,6 +3224,7 @@ nfscl_doclose(vnode_t vp, struct nfsclclient **clpp, NFSPROC_T *p)
struct nfscldeleg *dp;
struct nfsfh *nfhp;
struct nfsclrecalllayout *recallp;
+ struct nfscllayout *lyp;
int error;
error = nfscl_getcl(vnode_mount(vp), NULL, NULL, 1, true, &clp);
@@ -3245,7 +3253,8 @@ nfscl_doclose(vnode_t vp, struct nfsclclient **clpp, NFSPROC_T *p)
}
/* Return any layouts marked return on close. */
- nfscl_retoncloselayout(vp, clp, nfhp->nfh_fh, nfhp->nfh_len, &recallp);
+ nfscl_retoncloselayout(vp, clp, nfhp->nfh_fh, nfhp->nfh_len, &recallp,
+ &lyp);
/* Now process the opens against the server. */
lookformore:
@@ -3268,6 +3277,20 @@ lookformore:
}
}
nfscl_clrelease(clp);
+
+ /* Now, wait for any layout that is returned upon close. */
+ if (lyp != NULL) {
+ while ((lyp->nfsly_flags & NFSLY_RETURNED) == 0) {
+ if (NFSCL_FORCEDISM(vnode_mount(vp))) {
+ lyp = NULL;
+ break;
+ }
+ msleep(lyp, NFSCLSTATEMUTEXPTR, PZERO, "nfslroc", hz);
+ }
+ if (lyp != NULL)
+ nfscl_freelayout(lyp);
+ }
+
NFSUNLOCKCLSTATE();
/*
* recallp has been set NULL by nfscl_retoncloselayout() if it was
@@ -5054,28 +5077,34 @@ nfscl_getlayout(struct nfsclclient *clp, uint8_t *fhp, int fhlen,
*/
static void
nfscl_retoncloselayout(vnode_t vp, struct nfsclclient *clp, uint8_t *fhp,
- int fhlen, struct nfsclrecalllayout **recallpp)
+ int fhlen, struct nfsclrecalllayout **recallpp, struct nfscllayout **lypp)
{
struct nfscllayout *lyp;
uint32_t iomode;
+ *lypp = NULL;
if (vp->v_type != VREG || !NFSHASPNFS(VFSTONFS(vnode_mount(vp))) ||
nfscl_enablecallb == 0 || nfs_numnfscbd == 0 ||
(VTONFS(vp)->n_flag & NNOLAYOUT) != 0)
return;
lyp = nfscl_findlayout(clp, fhp, fhlen);
- if (lyp != NULL && (lyp->nfsly_flags & (NFSLY_RETONCLOSE |
- NFSLY_RECALL)) == NFSLY_RETONCLOSE) {
- iomode = 0;
- if (!LIST_EMPTY(&lyp->nfsly_flayread))
- iomode |= NFSLAYOUTIOMODE_READ;
- if (!LIST_EMPTY(&lyp->nfsly_flayrw))
- iomode |= NFSLAYOUTIOMODE_RW;
- (void)nfscl_layoutrecall(NFSLAYOUTRETURN_FILE, lyp, iomode,
- 0, UINT64_MAX, lyp->nfsly_stateid.seqid, 0, 0, NULL,
- *recallpp);
- NFSCL_DEBUG(4, "retoncls recall iomode=%d\n", iomode);
- *recallpp = NULL;
+ if (lyp != NULL && (lyp->nfsly_flags & NFSLY_RETONCLOSE) != 0) {
+ if ((lyp->nfsly_flags & NFSLY_RECALL) == 0) {
+ iomode = 0;
+ if (!LIST_EMPTY(&lyp->nfsly_flayread))
+ iomode |= NFSLAYOUTIOMODE_READ;
+ if (!LIST_EMPTY(&lyp->nfsly_flayrw))
+ iomode |= NFSLAYOUTIOMODE_RW;
+ nfscl_layoutrecall(NFSLAYOUTRETURN_FILE, lyp, iomode,
+ 0, UINT64_MAX, lyp->nfsly_stateid.seqid, 0, 0, NULL,
+ *recallpp);
+ NFSCL_DEBUG(4, "retoncls recall iomode=%d\n", iomode);
+ *recallpp = NULL;
+ }
+
+ /* Now, wake up renew thread to do LayoutReturn. */
+ wakeup(clp);
+ *lypp = lyp;
}
}