Commit 221a6876 authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: don't destroy in-use clients

When a setclientid_confirm or create_session confirms a client after a
client reboot, it also destroys any previous state held by that client.

The shutdown of that previous state must be careful not to free the
client out from under threads processing other requests that refer to
the client.

This is a particular problem in the NFSv4.1 case when we hold a
reference to a session (hence a client) throughout compound processing.

The server attempts to handle this by unhashing the client at the time
it's destroyed, then delaying the final free to the end.  But this still
leaves some races in the current code.

I believe it's simpler just to fail the attempt to destroy the client by
returning NFS4ERR_DELAY.  This is a case that should never happen
anyway.
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 4f6e6c17
...@@ -113,6 +113,90 @@ nfs4_unlock_state(void) ...@@ -113,6 +113,90 @@ nfs4_unlock_state(void)
mutex_unlock(&client_mutex); mutex_unlock(&client_mutex);
} }
static bool is_client_expired(struct nfs4_client *clp)
{
return clp->cl_time == 0;
}
static __be32 mark_client_expired_locked(struct nfs4_client *clp)
{
if (atomic_read(&clp->cl_refcount))
return nfserr_jukebox;
clp->cl_time = 0;
return nfs_ok;
}
static __be32 mark_client_expired(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
__be32 ret;
spin_lock(&nn->client_lock);
ret = mark_client_expired_locked(clp);
spin_unlock(&nn->client_lock);
return ret;
}
static __be32 get_client_locked(struct nfs4_client *clp)
{
if (is_client_expired(clp))
return nfserr_expired;
atomic_inc(&clp->cl_refcount);
return nfs_ok;
}
/* must be called under the client_lock */
static inline void
renew_client_locked(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
if (is_client_expired(clp)) {
WARN_ON(1);
printk("%s: client (clientid %08x/%08x) already expired\n",
__func__,
clp->cl_clientid.cl_boot,
clp->cl_clientid.cl_id);
return;
}
dprintk("renewing client (clientid %08x/%08x)\n",
clp->cl_clientid.cl_boot,
clp->cl_clientid.cl_id);
list_move_tail(&clp->cl_lru, &nn->client_lru);
clp->cl_time = get_seconds();
}
static inline void
renew_client(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
spin_lock(&nn->client_lock);
renew_client_locked(clp);
spin_unlock(&nn->client_lock);
}
void put_client_renew_locked(struct nfs4_client *clp)
{
if (!atomic_dec_and_test(&clp->cl_refcount))
return;
if (!is_client_expired(clp))
renew_client_locked(clp);
}
void put_client_renew(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
return;
if (!is_client_expired(clp))
renew_client_locked(clp);
spin_unlock(&nn->client_lock);
}
static inline u32 static inline u32
opaque_hashval(const void *ptr, int nbytes) opaque_hashval(const void *ptr, int nbytes)
{ {
...@@ -864,7 +948,7 @@ static void free_session(struct kref *kref) ...@@ -864,7 +948,7 @@ static void free_session(struct kref *kref)
__free_session(ses); __free_session(ses);
} }
static void nfsd4_put_session(struct nfsd4_session *ses) void nfsd4_put_session(struct nfsd4_session *ses)
{ {
struct nfsd_net *nn = net_generic(ses->se_client->net, nfsd_net_id); struct nfsd_net *nn = net_generic(ses->se_client->net, nfsd_net_id);
...@@ -968,38 +1052,6 @@ unhash_session(struct nfsd4_session *ses) ...@@ -968,38 +1052,6 @@ unhash_session(struct nfsd4_session *ses)
spin_unlock(&ses->se_client->cl_lock); spin_unlock(&ses->se_client->cl_lock);
} }
/* must be called under the client_lock */
static inline void
renew_client_locked(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
if (is_client_expired(clp)) {
WARN_ON(1);
printk("%s: client (clientid %08x/%08x) already expired\n",
__func__,
clp->cl_clientid.cl_boot,
clp->cl_clientid.cl_id);
return;
}
dprintk("renewing client (clientid %08x/%08x)\n",
clp->cl_clientid.cl_boot,
clp->cl_clientid.cl_id);
list_move_tail(&clp->cl_lru, &nn->client_lru);
clp->cl_time = get_seconds();
}
static inline void
renew_client(struct nfs4_client *clp)
{
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
spin_lock(&nn->client_lock);
renew_client_locked(clp);
spin_unlock(&nn->client_lock);
}
/* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */ /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
static int static int
STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn) STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
...@@ -1051,33 +1103,12 @@ free_client(struct nfs4_client *clp) ...@@ -1051,33 +1103,12 @@ free_client(struct nfs4_client *clp)
kfree(clp); kfree(clp);
} }
void
release_session_client(struct nfsd4_session *session)
{
struct nfs4_client *clp = session->se_client;
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
nfsd4_put_session(session);
if (!atomic_dec_and_lock(&clp->cl_refcount, &nn->client_lock))
return;
/*
* At this point we also know all sessions have refcnt 1,
* so free_client will delete them all if necessary:
*/
if (is_client_expired(clp))
free_client(clp);
else
renew_client_locked(clp);
spin_unlock(&nn->client_lock);
}
/* must be called under the client_lock */ /* must be called under the client_lock */
static inline void static inline void
unhash_client_locked(struct nfs4_client *clp) unhash_client_locked(struct nfs4_client *clp)
{ {
struct nfsd4_session *ses; struct nfsd4_session *ses;
mark_client_expired(clp);
list_del(&clp->cl_lru); list_del(&clp->cl_lru);
spin_lock(&clp->cl_lock); spin_lock(&clp->cl_lock);
list_for_each_entry(ses, &clp->cl_sessions, se_perclnt) list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
...@@ -1119,8 +1150,8 @@ destroy_client(struct nfs4_client *clp) ...@@ -1119,8 +1150,8 @@ destroy_client(struct nfs4_client *clp)
rb_erase(&clp->cl_namenode, &nn->unconf_name_tree); rb_erase(&clp->cl_namenode, &nn->unconf_name_tree);
spin_lock(&nn->client_lock); spin_lock(&nn->client_lock);
unhash_client_locked(clp); unhash_client_locked(clp);
if (atomic_read(&clp->cl_refcount) == 0) WARN_ON_ONCE(atomic_read(&clp->cl_refcount));
free_client(clp); free_client(clp);
spin_unlock(&nn->client_lock); spin_unlock(&nn->client_lock);
} }
...@@ -1815,8 +1846,12 @@ nfsd4_create_session(struct svc_rqst *rqstp, ...@@ -1815,8 +1846,12 @@ nfsd4_create_session(struct svc_rqst *rqstp,
goto out_free_conn; goto out_free_conn;
} }
old = find_confirmed_client_by_name(&unconf->cl_name, nn); old = find_confirmed_client_by_name(&unconf->cl_name, nn);
if (old) if (old) {
status = mark_client_expired(old);
if (status)
goto out_free_conn;
expire_client(old); expire_client(old);
}
move_to_confirmed(unconf); move_to_confirmed(unconf);
conf = unconf; conf = unconf;
} else { } else {
...@@ -2014,6 +2049,7 @@ nfsd4_sequence(struct svc_rqst *rqstp, ...@@ -2014,6 +2049,7 @@ nfsd4_sequence(struct svc_rqst *rqstp,
{ {
struct nfsd4_compoundres *resp = rqstp->rq_resp; struct nfsd4_compoundres *resp = rqstp->rq_resp;
struct nfsd4_session *session; struct nfsd4_session *session;
struct nfs4_client *clp;
struct nfsd4_slot *slot; struct nfsd4_slot *slot;
struct nfsd4_conn *conn; struct nfsd4_conn *conn;
__be32 status; __be32 status;
...@@ -2034,19 +2070,23 @@ nfsd4_sequence(struct svc_rqst *rqstp, ...@@ -2034,19 +2070,23 @@ nfsd4_sequence(struct svc_rqst *rqstp,
status = nfserr_badsession; status = nfserr_badsession;
session = find_in_sessionid_hashtbl(&seq->sessionid, SVC_NET(rqstp)); session = find_in_sessionid_hashtbl(&seq->sessionid, SVC_NET(rqstp));
if (!session) if (!session)
goto out; goto out_no_session;
clp = session->se_client;
status = get_client_locked(clp);
if (status)
goto out_no_session;
status = nfserr_too_many_ops; status = nfserr_too_many_ops;
if (nfsd4_session_too_many_ops(rqstp, session)) if (nfsd4_session_too_many_ops(rqstp, session))
goto out; goto out_put_client;
status = nfserr_req_too_big; status = nfserr_req_too_big;
if (nfsd4_request_too_big(rqstp, session)) if (nfsd4_request_too_big(rqstp, session))
goto out; goto out_put_client;
status = nfserr_badslot; status = nfserr_badslot;
if (seq->slotid >= session->se_fchannel.maxreqs) if (seq->slotid >= session->se_fchannel.maxreqs)
goto out; goto out_put_client;
slot = session->se_slots[seq->slotid]; slot = session->se_slots[seq->slotid];
dprintk("%s: slotid %d\n", __func__, seq->slotid); dprintk("%s: slotid %d\n", __func__, seq->slotid);
...@@ -2061,7 +2101,7 @@ nfsd4_sequence(struct svc_rqst *rqstp, ...@@ -2061,7 +2101,7 @@ nfsd4_sequence(struct svc_rqst *rqstp,
if (status == nfserr_replay_cache) { if (status == nfserr_replay_cache) {
status = nfserr_seq_misordered; status = nfserr_seq_misordered;
if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED)) if (!(slot->sl_flags & NFSD4_SLOT_INITIALIZED))
goto out; goto out_put_client;
cstate->slot = slot; cstate->slot = slot;
cstate->session = session; cstate->session = session;
/* Return the cached reply status and set cstate->status /* Return the cached reply status and set cstate->status
...@@ -2071,7 +2111,7 @@ nfsd4_sequence(struct svc_rqst *rqstp, ...@@ -2071,7 +2111,7 @@ nfsd4_sequence(struct svc_rqst *rqstp,
goto out; goto out;
} }
if (status) if (status)
goto out; goto out_put_client;
nfsd4_sequence_check_conn(conn, session); nfsd4_sequence_check_conn(conn, session);
conn = NULL; conn = NULL;
...@@ -2088,26 +2128,24 @@ nfsd4_sequence(struct svc_rqst *rqstp, ...@@ -2088,26 +2128,24 @@ nfsd4_sequence(struct svc_rqst *rqstp,
cstate->session = session; cstate->session = session;
out: out:
/* Hold a session reference until done processing the compound. */ nfsd4_get_session(cstate->session);
if (cstate->session) { switch (clp->cl_cb_state) {
struct nfs4_client *clp = session->se_client; case NFSD4_CB_DOWN:
seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN;
nfsd4_get_session(cstate->session); break;
atomic_inc(&clp->cl_refcount); case NFSD4_CB_FAULT:
switch (clp->cl_cb_state) { seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
case NFSD4_CB_DOWN: break;
seq->status_flags = SEQ4_STATUS_CB_PATH_DOWN; default:
break; seq->status_flags = 0;
case NFSD4_CB_FAULT:
seq->status_flags = SEQ4_STATUS_BACKCHANNEL_FAULT;
break;
default:
seq->status_flags = 0;
}
} }
out_no_session:
kfree(conn); kfree(conn);
spin_unlock(&nn->client_lock); spin_unlock(&nn->client_lock);
return status; return status;
out_put_client:
put_client_renew_locked(clp);
goto out_no_session;
} }
__be32 __be32
...@@ -2276,8 +2314,12 @@ nfsd4_setclientid_confirm(struct svc_rqst *rqstp, ...@@ -2276,8 +2314,12 @@ nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
expire_client(unconf); expire_client(unconf);
} else { /* case 3: normal case; new or rebooted client */ } else { /* case 3: normal case; new or rebooted client */
conf = find_confirmed_client_by_name(&unconf->cl_name, nn); conf = find_confirmed_client_by_name(&unconf->cl_name, nn);
if (conf) if (conf) {
status = mark_client_expired(conf);
if (status)
goto out;
expire_client(conf); expire_client(conf);
}
move_to_confirmed(unconf); move_to_confirmed(unconf);
nfsd4_probe_callback(unconf); nfsd4_probe_callback(unconf);
} }
...@@ -3189,13 +3231,12 @@ nfs4_laundromat(struct nfsd_net *nn) ...@@ -3189,13 +3231,12 @@ nfs4_laundromat(struct nfsd_net *nn)
clientid_val = t; clientid_val = t;
break; break;
} }
if (atomic_read(&clp->cl_refcount)) { if (mark_client_expired_locked(clp)) {
dprintk("NFSD: client in use (clientid %08x)\n", dprintk("NFSD: client in use (clientid %08x)\n",
clp->cl_clientid.cl_id); clp->cl_clientid.cl_id);
continue; continue;
} }
unhash_client_locked(clp); list_move(&clp->cl_lru, &reaplist);
list_add(&clp->cl_lru, &reaplist);
} }
spin_unlock(&nn->client_lock); spin_unlock(&nn->client_lock);
list_for_each_safe(pos, next, &reaplist) { list_for_each_safe(pos, next, &reaplist) {
...@@ -4581,6 +4622,8 @@ nfs4_check_open_reclaim(clientid_t *clid, bool sessions, struct nfsd_net *nn) ...@@ -4581,6 +4622,8 @@ nfs4_check_open_reclaim(clientid_t *clid, bool sessions, struct nfsd_net *nn)
u64 nfsd_forget_client(struct nfs4_client *clp, u64 max) u64 nfsd_forget_client(struct nfs4_client *clp, u64 max)
{ {
if (mark_client_expired(clp))
return 0;
expire_client(clp); expire_client(clp);
return 1; return 1;
} }
......
...@@ -3684,7 +3684,8 @@ nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compo ...@@ -3684,7 +3684,8 @@ nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compo
cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE; cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
} }
/* Renew the clientid on success and on replay */ /* Renew the clientid on success and on replay */
release_session_client(cs->session); put_client_renew(cs->session->se_client);
nfsd4_put_session(cs->session);
} }
return 1; return 1;
} }
......
...@@ -209,6 +209,8 @@ struct nfsd4_session { ...@@ -209,6 +209,8 @@ struct nfsd4_session {
struct nfsd4_slot *se_slots[]; /* forward channel slots */ struct nfsd4_slot *se_slots[]; /* forward channel slots */
}; };
extern void nfsd4_put_session(struct nfsd4_session *ses);
/* formatted contents of nfs4_sessionid */ /* formatted contents of nfs4_sessionid */
struct nfsd4_sessionid { struct nfsd4_sessionid {
clientid_t clientid; clientid_t clientid;
...@@ -284,18 +286,6 @@ struct nfs4_client { ...@@ -284,18 +286,6 @@ struct nfs4_client {
struct net *net; struct net *net;
}; };
static inline void
mark_client_expired(struct nfs4_client *clp)
{
clp->cl_time = 0;
}
static inline bool
is_client_expired(struct nfs4_client *clp)
{
return clp->cl_time == 0;
}
/* struct nfs4_client_reset /* struct nfs4_client_reset
* one per old client. Populates reset_str_hashtbl. Filled from conf_id_hashtbl * one per old client. Populates reset_str_hashtbl. Filled from conf_id_hashtbl
* upon lease reset, or from upcall to state_daemon (to read in state * upon lease reset, or from upcall to state_daemon (to read in state
...@@ -484,7 +474,7 @@ extern void nfs4_put_delegation(struct nfs4_delegation *dp); ...@@ -484,7 +474,7 @@ extern void nfs4_put_delegation(struct nfs4_delegation *dp);
extern struct nfs4_client_reclaim *nfs4_client_to_reclaim(const char *name, extern struct nfs4_client_reclaim *nfs4_client_to_reclaim(const char *name,
struct nfsd_net *nn); struct nfsd_net *nn);
extern bool nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn); extern bool nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn);
extern void release_session_client(struct nfsd4_session *); extern void put_client_renew(struct nfs4_client *clp);
extern void nfsd4_purge_closed_stateid(struct nfs4_stateowner *); extern void nfsd4_purge_closed_stateid(struct nfs4_stateowner *);
/* nfs4recover operations */ /* nfs4recover operations */
......
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