Skip to content

Commit

Permalink
NFSv4: nfs4_state_manager() vs. nfs_server_remove_lists()
Browse files Browse the repository at this point in the history
There is a race between nfs4_state_manager() and
nfs_server_remove_lists() that happens during a nfsv3 mount.

The v3 mount notices there is already a supper block so
nfs_server_remove_lists() called which uses the nfs_client_lock
spin lock to synchronize access to the client list.

At the same time nfs4_state_manager() is running through
the client list looking for work to do, using the same
lock. When nfs4_state_manager() wins the race to the
list, a v3 client pointer is found and not ignored
properly which causes the panic.

Moving some protocol checks before the state checking
avoids the panic.

CC: Stable Tree <stable@vger.kernel.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
  • Loading branch information
Steve Dickson authored and Trond Myklebust committed Sep 18, 2014
1 parent f39c010 commit 080af20
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions fs/nfs/nfs4client.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,16 @@ int nfs40_walk_client_list(struct nfs_client *new,

spin_lock(&nn->nfs_client_lock);
list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {

if (pos->rpc_ops != new->rpc_ops)
continue;

if (pos->cl_proto != new->cl_proto)
continue;

if (pos->cl_minorversion != new->cl_minorversion)
continue;

/* If "pos" isn't marked ready, we can't trust the
* remaining fields in "pos" */
if (pos->cl_cons_state > NFS_CS_READY) {
Expand All @@ -501,15 +511,6 @@ int nfs40_walk_client_list(struct nfs_client *new,
if (pos->cl_cons_state != NFS_CS_READY)
continue;

if (pos->rpc_ops != new->rpc_ops)
continue;

if (pos->cl_proto != new->cl_proto)
continue;

if (pos->cl_minorversion != new->cl_minorversion)
continue;

if (pos->cl_clientid != new->cl_clientid)
continue;

Expand Down Expand Up @@ -622,6 +623,16 @@ int nfs41_walk_client_list(struct nfs_client *new,

spin_lock(&nn->nfs_client_lock);
list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {

if (pos->rpc_ops != new->rpc_ops)
continue;

if (pos->cl_proto != new->cl_proto)
continue;

if (pos->cl_minorversion != new->cl_minorversion)
continue;

/* If "pos" isn't marked ready, we can't trust the
* remaining fields in "pos", especially the client
* ID and serverowner fields. Wait for CREATE_SESSION
Expand All @@ -647,15 +658,6 @@ int nfs41_walk_client_list(struct nfs_client *new,
if (pos->cl_cons_state != NFS_CS_READY)
continue;

if (pos->rpc_ops != new->rpc_ops)
continue;

if (pos->cl_proto != new->cl_proto)
continue;

if (pos->cl_minorversion != new->cl_minorversion)
continue;

if (!nfs4_match_clientids(pos, new))
continue;

Expand Down

0 comments on commit 080af20

Please sign in to comment.