Commit 2005f5b9 authored by Jeff Layton's avatar Jeff Layton Committed by Chuck Lever

lockd: fix races in client GRANTED_MSG wait logic

After the wait for a grant is done (for whatever reason), nlmclnt_block
updates the status of the nlm_rqst with the status of the block. At the
point it does this, however, the block is still queued its status could
change at any time.

This is particularly a problem when the waiting task is signaled during
the wait. We can end up giving up on the lock just before the GRANTED_MSG
callback comes in, and accept it even though the lock request gets back
an error, leaving a dangling lock on the server.

Since the nlm_wait never lives beyond the end of nlmclnt_lock, put it on
the stack and add functions to allow us to enqueue and dequeue the
block. Enqueue it just before the lock/wait loop, and dequeue it
just after we exit the loop instead of waiting until the end of
the function. Also, scrape the status at the time that we dequeue it to
ensure that it's final.
Reported-by: default avatarYongcheng Yang <yoyang@redhat.com>
Link: https://bugzilla.redhat.com/show_bug.cgi?id=2063818Signed-off-by: default avatarJeff Layton <jlayton@kernel.org>
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent f0aa4852
...@@ -82,41 +82,42 @@ void nlmclnt_done(struct nlm_host *host) ...@@ -82,41 +82,42 @@ void nlmclnt_done(struct nlm_host *host)
} }
EXPORT_SYMBOL_GPL(nlmclnt_done); EXPORT_SYMBOL_GPL(nlmclnt_done);
void nlmclnt_prepare_block(struct nlm_wait *block, struct nlm_host *host, struct file_lock *fl)
{
block->b_host = host;
block->b_lock = fl;
init_waitqueue_head(&block->b_wait);
block->b_status = nlm_lck_blocked;
}
/* /*
* Queue up a lock for blocking so that the GRANTED request can see it * Queue up a lock for blocking so that the GRANTED request can see it
*/ */
struct nlm_wait *nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl) void nlmclnt_queue_block(struct nlm_wait *block)
{ {
struct nlm_wait *block; spin_lock(&nlm_blocked_lock);
list_add(&block->b_list, &nlm_blocked);
block = kmalloc(sizeof(*block), GFP_KERNEL); spin_unlock(&nlm_blocked_lock);
if (block != NULL) {
block->b_host = host;
block->b_lock = fl;
init_waitqueue_head(&block->b_wait);
block->b_status = nlm_lck_blocked;
spin_lock(&nlm_blocked_lock);
list_add(&block->b_list, &nlm_blocked);
spin_unlock(&nlm_blocked_lock);
}
return block;
} }
void nlmclnt_finish_block(struct nlm_wait *block) /*
* Dequeue the block and return its final status
*/
__be32 nlmclnt_dequeue_block(struct nlm_wait *block)
{ {
if (block == NULL) __be32 status;
return;
spin_lock(&nlm_blocked_lock); spin_lock(&nlm_blocked_lock);
list_del(&block->b_list); list_del(&block->b_list);
status = block->b_status;
spin_unlock(&nlm_blocked_lock); spin_unlock(&nlm_blocked_lock);
kfree(block); return status;
} }
/* /*
* Block on a lock * Block on a lock
*/ */
int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout) int nlmclnt_wait(struct nlm_wait *block, struct nlm_rqst *req, long timeout)
{ {
long ret; long ret;
...@@ -142,7 +143,6 @@ int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout) ...@@ -142,7 +143,6 @@ int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout)
/* Reset the lock status after a server reboot so we resend */ /* Reset the lock status after a server reboot so we resend */
if (block->b_status == nlm_lck_denied_grace_period) if (block->b_status == nlm_lck_denied_grace_period)
block->b_status = nlm_lck_blocked; block->b_status = nlm_lck_blocked;
req->a_res.status = block->b_status;
return 0; return 0;
} }
......
...@@ -516,9 +516,10 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) ...@@ -516,9 +516,10 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl)
const struct cred *cred = nfs_file_cred(fl->fl_file); const struct cred *cred = nfs_file_cred(fl->fl_file);
struct nlm_host *host = req->a_host; struct nlm_host *host = req->a_host;
struct nlm_res *resp = &req->a_res; struct nlm_res *resp = &req->a_res;
struct nlm_wait *block = NULL; struct nlm_wait block;
unsigned char fl_flags = fl->fl_flags; unsigned char fl_flags = fl->fl_flags;
unsigned char fl_type; unsigned char fl_type;
__be32 b_status;
int status = -ENOLCK; int status = -ENOLCK;
if (nsm_monitor(host) < 0) if (nsm_monitor(host) < 0)
...@@ -531,31 +532,41 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) ...@@ -531,31 +532,41 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl)
if (status < 0) if (status < 0)
goto out; goto out;
block = nlmclnt_prepare_block(host, fl); nlmclnt_prepare_block(&block, host, fl);
again: again:
/* /*
* Initialise resp->status to a valid non-zero value, * Initialise resp->status to a valid non-zero value,
* since 0 == nlm_lck_granted * since 0 == nlm_lck_granted
*/ */
resp->status = nlm_lck_blocked; resp->status = nlm_lck_blocked;
for(;;) {
/*
* A GRANTED callback can come at any time -- even before the reply
* to the LOCK request arrives, so we queue the wait before
* requesting the lock.
*/
nlmclnt_queue_block(&block);
for (;;) {
/* Reboot protection */ /* Reboot protection */
fl->fl_u.nfs_fl.state = host->h_state; fl->fl_u.nfs_fl.state = host->h_state;
status = nlmclnt_call(cred, req, NLMPROC_LOCK); status = nlmclnt_call(cred, req, NLMPROC_LOCK);
if (status < 0) if (status < 0)
break; break;
/* Did a reclaimer thread notify us of a server reboot? */ /* Did a reclaimer thread notify us of a server reboot? */
if (resp->status == nlm_lck_denied_grace_period) if (resp->status == nlm_lck_denied_grace_period)
continue; continue;
if (resp->status != nlm_lck_blocked) if (resp->status != nlm_lck_blocked)
break; break;
/* Wait on an NLM blocking lock */ /* Wait on an NLM blocking lock */
status = nlmclnt_block(block, req, NLMCLNT_POLL_TIMEOUT); status = nlmclnt_wait(&block, req, NLMCLNT_POLL_TIMEOUT);
if (status < 0) if (status < 0)
break; break;
if (resp->status != nlm_lck_blocked) if (block.b_status != nlm_lck_blocked)
break; break;
} }
b_status = nlmclnt_dequeue_block(&block);
if (resp->status == nlm_lck_blocked)
resp->status = b_status;
/* if we were interrupted while blocking, then cancel the lock request /* if we were interrupted while blocking, then cancel the lock request
* and exit * and exit
...@@ -564,7 +575,7 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) ...@@ -564,7 +575,7 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl)
if (!req->a_args.block) if (!req->a_args.block)
goto out_unlock; goto out_unlock;
if (nlmclnt_cancel(host, req->a_args.block, fl) == 0) if (nlmclnt_cancel(host, req->a_args.block, fl) == 0)
goto out_unblock; goto out;
} }
if (resp->status == nlm_granted) { if (resp->status == nlm_granted) {
...@@ -593,8 +604,6 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) ...@@ -593,8 +604,6 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl)
status = -ENOLCK; status = -ENOLCK;
else else
status = nlm_stat_to_errno(resp->status); status = nlm_stat_to_errno(resp->status);
out_unblock:
nlmclnt_finish_block(block);
out: out:
nlmclnt_release_call(req); nlmclnt_release_call(req);
return status; return status;
...@@ -602,7 +611,6 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) ...@@ -602,7 +611,6 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl)
/* Fatal error: ensure that we remove the lock altogether */ /* Fatal error: ensure that we remove the lock altogether */
dprintk("lockd: lock attempt ended in fatal error.\n" dprintk("lockd: lock attempt ended in fatal error.\n"
" Attempting to unlock.\n"); " Attempting to unlock.\n");
nlmclnt_finish_block(block);
fl_type = fl->fl_type; fl_type = fl->fl_type;
fl->fl_type = F_UNLCK; fl->fl_type = F_UNLCK;
down_read(&host->h_rwsem); down_read(&host->h_rwsem);
......
...@@ -211,9 +211,11 @@ struct nlm_rqst * nlm_alloc_call(struct nlm_host *host); ...@@ -211,9 +211,11 @@ struct nlm_rqst * nlm_alloc_call(struct nlm_host *host);
int nlm_async_call(struct nlm_rqst *, u32, const struct rpc_call_ops *); int nlm_async_call(struct nlm_rqst *, u32, const struct rpc_call_ops *);
int nlm_async_reply(struct nlm_rqst *, u32, const struct rpc_call_ops *); int nlm_async_reply(struct nlm_rqst *, u32, const struct rpc_call_ops *);
void nlmclnt_release_call(struct nlm_rqst *); void nlmclnt_release_call(struct nlm_rqst *);
struct nlm_wait * nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl); void nlmclnt_prepare_block(struct nlm_wait *block, struct nlm_host *host,
void nlmclnt_finish_block(struct nlm_wait *block); struct file_lock *fl);
int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout); void nlmclnt_queue_block(struct nlm_wait *block);
__be32 nlmclnt_dequeue_block(struct nlm_wait *block);
int nlmclnt_wait(struct nlm_wait *block, struct nlm_rqst *req, long timeout);
__be32 nlmclnt_grant(const struct sockaddr *addr, __be32 nlmclnt_grant(const struct sockaddr *addr,
const struct nlm_lock *lock); const struct nlm_lock *lock);
void nlmclnt_recovery(struct nlm_host *); void nlmclnt_recovery(struct nlm_host *);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment