From: Jeff Layton <jlayton@primarydata.com>
To: bfields@fieldses.org
Cc: linux-nfs@vger.kernel.org, hch@infradead.org
Subject: [PATCH v2 23/38] nfsd: clean up lockowner refcounting when finding them
Date: Tue, 29 Jul 2014 16:34:06 -0400 [thread overview]
Message-ID: <1406666061-14175-24-git-send-email-jlayton@primarydata.com> (raw)
In-Reply-To: <1406666061-14175-1-git-send-email-jlayton@primarydata.com>
Ensure that when finding or creating a lockowner, that we get a
reference to it. For now, we also take an extra reference when a
lockowner is created that can be put when release_lockowner is called,
but we'll remove that in a later patch once we change how references are
held.
Since we no longer destroy lockowners in the event of an error in
nfsd4_lock, we must change how the seqid gets bumped in the lk_is_new
case. Instead of doing so on creation, do it manually in nfsd4_lock.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
---
fs/nfsd/nfs4state.c | 45 +++++++++++++++++++++++++++++++++------------
1 file changed, 33 insertions(+), 12 deletions(-)
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index ec93f27fe64f..3b56431590c2 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -4754,6 +4754,7 @@ find_lockowner_str(clientid_t *clid, struct xdr_netobj *owner,
continue;
if (!same_owner_str(so, owner, clid))
continue;
+ atomic_inc(&so->so_count);
return lockowner(so);
}
return NULL;
@@ -4787,9 +4788,7 @@ alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, str
return NULL;
INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
lo->lo_owner.so_is_open_owner = 0;
- /* It is the openowner seqid that will be incremented in encode in the
- * case of new lockowners; so increment the lock seqid manually: */
- lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
+ lo->lo_owner.so_seqid = lock->lk_new_lock_seqid;
lo->lo_owner.so_ops = &lockowner_ops;
list_add(&lo->lo_owner.so_strhash, &nn->ownerstr_hashtbl[strhashval]);
return lo;
@@ -4895,6 +4894,7 @@ lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
struct nfsd4_lock *lock,
struct nfs4_ol_stateid **lst, bool *new)
{
+ __be32 status;
struct nfs4_file *fi = ost->st_stid.sc_file;
struct nfs4_openowner *oo = openowner(ost->st_stateowner);
struct nfs4_client *cl = oo->oo_owner.so_client;
@@ -4910,19 +4910,26 @@ lookup_or_create_lock_state(struct nfsd4_compound_state *cstate,
lo = alloc_init_lock_stateowner(strhashval, cl, ost, lock);
if (lo == NULL)
return nfserr_jukebox;
+ /* FIXME: extra reference for new lockowners for the client */
+ atomic_inc(&lo->lo_owner.so_count);
} else {
/* with an existing lockowner, seqids must be the same */
+ status = nfserr_bad_seqid;
if (!cstate->minorversion &&
lock->lk_new_lock_seqid != lo->lo_owner.so_seqid)
- return nfserr_bad_seqid;
+ goto out;
}
*lst = find_or_create_lock_stateid(lo, fi, inode, ost, new);
if (*lst == NULL) {
release_lockowner_if_empty(lo);
- return nfserr_jukebox;
+ status = nfserr_jukebox;
+ goto out;
}
- return nfs_ok;
+ status = nfs_ok;
+out:
+ nfs4_put_stateowner(&lo->lo_owner);
+ return status;
}
/*
@@ -4941,9 +4948,9 @@ nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
struct file_lock *file_lock = NULL;
struct file_lock *conflock = NULL;
__be32 status = 0;
- bool new_state = false;
int lkflg;
int err;
+ bool new = false;
struct net *net = SVC_NET(rqstp);
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
@@ -4986,7 +4993,7 @@ nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
&lock->v.new.clientid))
goto out;
status = lookup_or_create_lock_state(cstate, open_stp, lock,
- &lock_stp, &new_state);
+ &lock_stp, &new);
} else {
status = nfs4_preprocess_seqid_op(cstate,
lock->lk_old_lock_seqid,
@@ -5085,12 +5092,24 @@ nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
out:
if (filp)
fput(filp);
- if (lock_stp)
+ if (lock_stp) {
+ /* Bump seqid manually if the 4.0 replay owner is openowner */
+ if (cstate->replay_owner &&
+ cstate->replay_owner != &lock_sop->lo_owner &&
+ seqid_mutating_err(ntohl(status)))
+ lock_sop->lo_owner.so_seqid++;
+
+ /*
+ * If this is a new, never-before-used stateid, and we are
+ * returning an error, then just go ahead and release it.
+ */
+ if (status && new)
+ release_lock_stateid(lock_stp);
+
nfs4_put_stid(&lock_stp->st_stid);
+ }
if (open_stp)
nfs4_put_stid(&open_stp->st_stid);
- if (status && new_state)
- release_lock_stateid(lock_stp);
nfsd4_bump_seqid(cstate, status);
nfs4_unlock_state();
if (file_lock)
@@ -5125,7 +5144,7 @@ nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
struct nfsd4_lockt *lockt)
{
struct file_lock *file_lock = NULL;
- struct nfs4_lockowner *lo;
+ struct nfs4_lockowner *lo = NULL;
__be32 status;
struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
@@ -5188,6 +5207,8 @@ nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
nfs4_set_lock_denied(file_lock, &lockt->lt_denied);
}
out:
+ if (lo)
+ nfs4_put_stateowner(&lo->lo_owner);
nfs4_unlock_state();
if (file_lock)
locks_free_lock(file_lock);
--
1.9.3
next prev parent reply other threads:[~2014-07-29 20:35 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-29 20:33 [PATCH v2 00/38] nfsd: stateid and stateowner refcounting overhaul Jeff Layton
2014-07-29 20:33 ` [PATCH v2 01/38] nfsd: Add reference counting to the lock and open stateids Jeff Layton
2014-07-29 20:33 ` [PATCH v2 02/38] nfsd: Cleanup the freeing of stateids Jeff Layton
2014-07-29 20:33 ` [PATCH v2 03/38] nfsd: Add a struct nfs4_file field to struct nfs4_stid Jeff Layton
2014-07-30 0:54 ` J. Bruce Fields
2014-07-30 1:28 ` Jeff Layton
2014-07-29 20:33 ` [PATCH v2 04/38] nfsd: Replace nfs4_ol_stateid->st_file with the st_stid.sc_file Jeff Layton
2014-07-29 20:33 ` [PATCH v2 05/38] nfsd4: use cl_lock to synchronize all stateid idr calls Jeff Layton
2014-07-29 20:33 ` [PATCH v2 06/38] nfsd: do filp_close in sc_free callback for lock stateids Jeff Layton
2014-07-29 20:33 ` [PATCH v2 07/38] nfsd: Add locking to protect the state owner lists Jeff Layton
2014-07-29 20:33 ` [PATCH v2 08/38] nfsd: clean up races in lock stateid searching and creation Jeff Layton
2014-07-29 20:33 ` [PATCH v2 09/38] nfsd: ensure atomicity in nfsd4_free_stateid and nfsd4_validate_stateid Jeff Layton
2014-07-29 20:33 ` [PATCH v2 10/38] nfsd: Add reference counting to lock stateids Jeff Layton
2014-07-29 20:33 ` [PATCH v2 11/38] nfsd: nfsd4_locku() must reference the lock stateid Jeff Layton
2014-07-29 20:33 ` [PATCH v2 12/38] nfsd: Ensure that nfs4_open_delegation() references the delegation stateid Jeff Layton
2014-07-29 20:33 ` [PATCH v2 13/38] nfsd: nfsd4_process_open2() must reference " Jeff Layton
2014-07-29 20:33 ` [PATCH v2 14/38] nfsd: nfsd4_process_open2() must reference the open stateid Jeff Layton
2014-07-29 20:33 ` [PATCH v2 15/38] nfsd: Prepare nfsd4_close() for open stateid referencing Jeff Layton
2014-07-29 20:33 ` [PATCH v2 16/38] nfsd: nfsd4_open_confirm() must reference the open stateid Jeff Layton
2014-07-29 20:34 ` [PATCH v2 17/38] nfsd: Add reference counting to nfs4_preprocess_confirmed_seqid_op Jeff Layton
2014-07-29 20:34 ` [PATCH v2 18/38] nfsd: Migrate the stateid reference into nfs4_preprocess_seqid_op Jeff Layton
2014-07-29 20:34 ` [PATCH v2 19/38] nfsd: Migrate the stateid reference into nfs4_lookup_stateid() Jeff Layton
2014-07-29 20:34 ` [PATCH v2 20/38] nfsd: Migrate the stateid reference into nfs4_find_stateid_by_type() Jeff Layton
2014-07-29 20:34 ` [PATCH v2 21/38] nfsd: Add reference counting to state owners Jeff Layton
2014-07-29 20:34 ` [PATCH v2 22/38] nfsd: Add a mutex to protect the NFSv4.0 open owner replay cache Jeff Layton
2014-07-29 20:34 ` Jeff Layton [this message]
2014-07-29 20:34 ` [PATCH v2 24/38] nfsd: add an operation for unhashing a stateowner Jeff Layton
2014-07-29 20:34 ` [PATCH v2 25/38] nfsd: Make lock stateid take a reference to the lockowner Jeff Layton
2014-07-29 20:34 ` [PATCH v2 26/38] nfsd: clean up refcounting for lockowners Jeff Layton
2014-07-29 20:34 ` [PATCH v2 27/38] nfsd: make openstateids hold references to their openowners Jeff Layton
2014-07-29 20:34 ` [PATCH v2 28/38] nfsd: don't allow CLOSE to proceed until refcount on stateid drops Jeff Layton
2014-07-29 20:34 ` [PATCH v2 29/38] nfsd: Protect adding/removing open state owners using client_lock Jeff Layton
2014-07-29 20:34 ` [PATCH v2 30/38] nfsd: Protect adding/removing lock " Jeff Layton
2014-07-29 20:34 ` [PATCH v2 31/38] nfsd: Move the open owner hash table into struct nfs4_client Jeff Layton
2014-07-29 20:34 ` [PATCH v2 32/38] nfsd: clean up and reorganize release_lockowner Jeff Layton
2014-07-29 20:34 ` [PATCH v2 33/38] nfsd: add locking to stateowner release Jeff Layton
2014-07-29 20:34 ` [PATCH v2 34/38] nfsd: optimize destroy_lockowner cl_lock thrashing Jeff Layton
2014-07-29 20:34 ` [PATCH v2 35/38] nfsd: close potential race in nfsd4_free_stateid Jeff Layton
2014-07-29 20:34 ` [PATCH v2 36/38] nfsd: reduce cl_lock thrashing in release_openowner Jeff Layton
2014-07-29 20:34 ` [PATCH v2 37/38] nfsd: don't thrash the cl_lock while freeing an open stateid Jeff Layton
2014-07-29 20:34 ` [PATCH v2 38/38] nfsd: rename unhash_generic_stateid to unhash_ol_stateid Jeff Layton
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=1406666061-14175-24-git-send-email-jlayton@primarydata.com \
--to=jlayton@primarydata.com \
--cc=bfields@fieldses.org \
--cc=hch@infradead.org \
--cc=linux-nfs@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).