/* * fs/nfs/nfs4state.c * * Client-side XDR for NFSv4. * * Copyright (c) 2002 The Regents of the University of Michigan. * All rights reserved. * * Kendrick Smith <kmsmith@umich.edu> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * Implementation of the NFSv4 state model. For the time being, * this is minimal, but will be made much more complex in a * subsequent patch.
*/
if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state)) goto do_confirm;
port = nn->nfs_callback_tcpport; if (clp->cl_addr.ss_family == AF_INET6)
port = nn->nfs_callback_tcpport6;
status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid); if (status != 0) goto out;
clp->cl_clientid = clid.clientid;
clp->cl_confirm = clid.confirm;
set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
do_confirm:
status = nfs4_proc_setclientid_confirm(clp, &clid, cred); if (status != 0) goto out;
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
nfs4_setup_state_renewal(clp);
out: return status;
}
/** * nfs40_discover_server_trunking - Detect server IP address trunking (mv0) * * @clp: nfs_client under test * @result: OUT: found nfs_client, or clp * @cred: credential to use for trunking test * * Returns zero, a negative errno, or a negative NFS4ERR status. * If zero is returned, an nfs_client pointer is planted in * "result". * * Note: The returned client may not yet be marked ready.
*/ int nfs40_discover_server_trunking(struct nfs_client *clp, struct nfs_client **result, conststruct cred *cred)
{ struct nfs4_setclientid_res clid = {
.clientid = clp->cl_clientid,
.confirm = clp->cl_confirm,
}; struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); unsignedshort port; int status;
port = nn->nfs_callback_tcpport; if (clp->cl_addr.ss_family == AF_INET6)
port = nn->nfs_callback_tcpport6;
status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid); if (status != 0) goto out;
clp->cl_clientid = clid.clientid;
clp->cl_confirm = clid.confirm;
status = nfs40_walk_client_list(clp, result, cred); if (status == 0) { /* Sustain the lease, even if it's empty. If the clientid4
* goes stale it's of no use for trunking discovery. */
nfs4_schedule_state_renewal(*result);
/* If the client state need to recover, do it. */ if (clp->cl_state)
nfs4_schedule_state_manager(clp);
}
out: return status;
}
int nfs41_init_clientid(struct nfs_client *clp, conststruct cred *cred)
{ int status;
if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state)) goto do_confirm;
status = nfs4_proc_exchange_id(clp, cred); if (status != 0) goto out;
set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
do_confirm:
status = nfs4_proc_create_session(clp, cred); if (status != 0) goto out; if (!(clp->cl_exchange_flags & EXCHGID4_FLAG_CONFIRMED_R))
nfs4_state_start_reclaim_reboot(clp);
nfs41_finish_session_reset(clp);
nfs_mark_client_ready(clp, NFS_CS_READY);
out: return status;
}
/** * nfs41_discover_server_trunking - Detect server IP address trunking (mv1) * * @clp: nfs_client under test * @result: OUT: found nfs_client, or clp * @cred: credential to use for trunking test * * Returns NFS4_OK, a negative errno, or a negative NFS4ERR status. * If NFS4_OK is returned, an nfs_client pointer is planted in * "result". * * Note: The returned client may not yet be marked ready.
*/ int nfs41_discover_server_trunking(struct nfs_client *clp, struct nfs_client **result, conststruct cred *cred)
{ int status;
status = nfs4_proc_exchange_id(clp, cred); if (status != NFS4_OK) return status;
status = nfs41_walk_client_list(clp, result, cred); if (status < 0) return status; if (clp != *result) return 0;
/* * Purge state if the client id was established in a prior * instance and the client id could not have arrived on the * server via Transparent State Migration.
*/ if (clp->cl_exchange_flags & EXCHGID4_FLAG_CONFIRMED_R) { if (!test_bit(NFS_CS_TSM_POSSIBLE, &clp->cl_flags))
set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state); else
set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
}
nfs4_schedule_state_manager(clp);
status = nfs_wait_client_init_complete(clp); if (status < 0)
nfs_put_client(clp); return status;
}
#endif/* CONFIG_NFS_V4_1 */
/** * nfs4_get_clid_cred - Acquire credential for a setclientid operation * @clp: client state handle * * Returns a cred with reference count bumped, or NULL.
*/ conststruct cred *nfs4_get_clid_cred(struct nfs_client *clp)
{ conststruct cred *cred;
/* * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to * create a new state_owner. *
*/ staticstruct nfs4_state_owner *
nfs4_alloc_state_owner(struct nfs_server *server, conststruct cred *cred,
gfp_t gfp_flags)
{ struct nfs4_state_owner *sp;
staticvoid
nfs4_reset_state_owner(struct nfs4_state_owner *sp)
{ /* This state_owner is no longer usable, but must * remain in place so that state recovery can find it * and the opens associated with it. * It may also be used for new 'open' request to * return a delegation to the server. * So update the 'create_time' so that it looks like * a new state_owner. This will cause the server to * request an OPEN_CONFIRM to start a new sequence.
*/
sp->so_seqid.create_time = ktime_get();
}
spin_lock(&clp->cl_lock);
time_max = jiffies;
time_min = (long)time_max - (long)clp->cl_lease_time;
list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) { /* NB: LRU is sorted so that oldest is at the head */ if (time_in_range(sp->so_expires, time_min, time_max)) break;
list_move(&sp->so_lru, &doomed);
nfs4_remove_state_owner_locked(sp);
}
spin_unlock(&clp->cl_lock);
/** * nfs4_get_state_owner - Look up a state owner given a credential * @server: nfs_server to search * @cred: RPC credential to match * @gfp_flags: allocation mode * * Returns a pointer to an instantiated nfs4_state_owner struct, or NULL.
*/ struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, conststruct cred *cred,
gfp_t gfp_flags)
{ struct nfs_client *clp = server->nfs_client; struct nfs4_state_owner *sp, *new;
spin_lock(&clp->cl_lock);
sp = nfs4_find_state_owner_locked(server, cred);
spin_unlock(&clp->cl_lock); if (sp != NULL) goto out; new = nfs4_alloc_state_owner(server, cred, gfp_flags); if (new == NULL) goto out;
spin_lock(&clp->cl_lock);
sp = nfs4_insert_state_owner_locked(new);
spin_unlock(&clp->cl_lock); if (sp != new)
nfs4_free_state_owner(new);
out:
nfs4_gc_state_owners(server); return sp;
}
/** * nfs4_put_state_owner - Release a nfs4_state_owner * @sp: state owner data to release * * Note that we keep released state owners on an LRU * list. * This caches valid state owners so that they can be * reused, to avoid the OPEN_CONFIRM on minor version 0. * It also pins the uniquifier of dropped state owners for * a while, to ensure that those state owner names are * never reused.
*/ void nfs4_put_state_owner(struct nfs4_state_owner *sp)
{ struct nfs_server *server = sp->so_server; struct nfs_client *clp = server->nfs_client;
if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock)) return;
/** * nfs4_purge_state_owners - Release all cached state owners * @server: nfs_server with cached state owners to release * @head: resulting list of state owners * * Called at umount time. Remaining state owners will be on * the LRU with ref count of zero. * Note that the state owners are not freed, but are added * to the list @head, which can later be used as an argument * to nfs4_free_state_owners.
*/ void nfs4_purge_state_owners(struct nfs_server *server, struct list_head *head)
{ struct nfs_client *clp = server->nfs_client; struct nfs4_state_owner *sp, *tmp;
/** * nfs4_free_state_owners - Release all cached state owners * @head: resulting list of state owners * * Frees a list of state owners that was generated by * nfs4_purge_state_owners
*/ void nfs4_free_state_owners(struct list_head *head)
{ struct nfs4_state_owner *sp, *tmp;
rcu_read_lock();
state = __nfs4_find_state_byowner(inode, owner);
rcu_read_unlock(); if (state) goto out; new = nfs4_alloc_open_state();
spin_lock(&owner->so_lock);
spin_lock(&inode->i_lock);
state = __nfs4_find_state_byowner(inode, owner); if (state == NULL && new != NULL) {
state = new;
state->owner = owner;
atomic_inc(&owner->so_count);
ihold(inode);
state->inode = inode;
list_add_rcu(&state->inode_states, &nfsi->open_states);
spin_unlock(&inode->i_lock); /* Note: The reclaim code dictates that we add stateless
* and read-only stateids to the end of the list */
list_add_tail(&state->open_states, &owner->so_states);
spin_unlock(&owner->so_lock);
} else {
spin_unlock(&inode->i_lock);
spin_unlock(&owner->so_lock); if (new)
nfs4_free_open_state(new);
}
out: return state;
}
/* * Search the state->lock_states for an existing lock_owner * that is compatible with either of the given owners. * If the second is non-zero, then the first refers to a Posix-lock * owner (current->files) and the second refers to a flock/OFD * owner (struct file*). In that case, prefer a match for the first * owner. * If both sorts of locks are held on the one file we cannot know * which stateid was intended to be used, so a "correct" choice cannot * be made. Failing that, a "consistent" choice is preferable. The * consistent choice we make is to prefer the first owner, that of a * Posix lock.
*/ staticstruct nfs4_lock_state *
__nfs4_find_lock_state(struct nfs4_state *state,
fl_owner_t owner, fl_owner_t owner2)
{ struct nfs4_lock_state *pos, *ret = NULL;
list_for_each_entry(pos, &state->lock_states, ls_locks) { if (pos->ls_owner == owner) {
ret = pos; break;
} if (pos->ls_owner == owner2)
ret = pos;
} if (ret)
refcount_inc(&ret->ls_count); return ret;
}
/* * Return a compatible lock_state. If no initialized lock_state structure * exists, return an uninitialized one. *
*/ staticstruct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t owner)
{ struct nfs4_lock_state *lsp; struct nfs_server *server = state->owner->so_server;
/* * Return a compatible lock_state. If no initialized lock_state structure * exists, return an uninitialized one. *
*/ staticstruct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
{ struct nfs4_lock_state *lsp, *new = NULL;
for(;;) {
spin_lock(&state->state_lock);
lsp = __nfs4_find_lock_state(state, owner, NULL); if (lsp != NULL) break; if (new != NULL) {
list_add(&new->ls_locks, &state->lock_states);
set_bit(LK_STATE_IN_USE, &state->flags);
lsp = new; new = NULL; break;
}
spin_unlock(&state->state_lock); new = nfs4_alloc_lock_state(state, owner); if (new == NULL) return NULL;
}
spin_unlock(&state->state_lock); if (new != NULL)
nfs4_free_lock_state(state->owner->so_server, new); return lsp;
}
/* * Release reference to lock_state, and free it if we see that * it is no longer in use
*/ void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
{ struct nfs_server *server; struct nfs4_state *state;
if (lsp == NULL) return;
state = lsp->ls_state; if (!refcount_dec_and_lock(&lsp->ls_count, &state->state_lock)) return;
list_del(&lsp->ls_locks); if (list_empty(&state->lock_states))
clear_bit(LK_STATE_IN_USE, &state->flags);
spin_unlock(&state->state_lock);
server = state->owner->so_server; if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { struct nfs_client *clp = server->nfs_client;
do {
ret = false;
src = &zero_stateid;
seq = read_seqbegin(&state->seqlock); if (test_bit(NFS_OPEN_STATE, &state->flags)) {
src = &state->open_stateid;
ret = true;
}
nfs4_stateid_copy(dst, src);
} while (read_seqretry(&state->seqlock, seq)); return ret;
}
/* * Byte-range lock aware utility to initialize the stateid of read/write * requests.
*/ int nfs4_select_rw_stateid(struct nfs4_state *state,
fmode_t fmode, conststruct nfs_lock_context *l_ctx,
nfs4_stateid *dst, conststruct cred **cred)
{ int ret;
if (!nfs4_valid_open_stateid(state)) return -EIO; if (cred != NULL)
*cred = NULL;
ret = nfs4_copy_lock_stateid(dst, state, l_ctx); if (ret == -EIO) /* A lost lock - don't even consider delegations */ goto out; /* returns true if delegation stateid found and copied */ if (nfs4_copy_delegation_stateid(state->inode, fmode, dst, cred)) {
ret = 0; goto out;
} if (ret != -ENOENT) /* nfs4_copy_delegation_stateid() didn't over-write * dst, so it still has the lock stateid which we now * choose to use.
*/ goto out;
ret = nfs4_copy_open_stateid(dst, state) ? 0 : -EAGAIN;
out: if (nfs_server_capable(state->inode, NFS_CAP_STATEID_NFSV41))
dst->seqid = 0; return ret;
}
/* * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or * failed with a seqid incrementing error - * see comments nfs4.h:seqid_mutating_error()
*/ staticvoid nfs_increment_seqid(int status, struct nfs_seqid *seqid)
{ switch (status) { case 0: break; case -NFS4ERR_BAD_SEQID: if (seqid->sequence->flags & NFS_SEQID_CONFIRMED) return;
pr_warn_ratelimited("NFS: v4 server returned a bad" " sequence-id error on an" " unconfirmed sequence %p!\n",
seqid->sequence); return; case -NFS4ERR_STALE_CLIENTID: case -NFS4ERR_STALE_STATEID: case -NFS4ERR_BAD_STATEID: case -NFS4ERR_BADXDR: case -NFS4ERR_RESOURCE: case -NFS4ERR_NOFILEHANDLE: case -NFS4ERR_MOVED: /* Non-seqid mutating errors */ return;
} /* * Note: no locking needed as we are guaranteed to be first * on the sequence list
*/
seqid->sequence->counter++;
}
sp = container_of(seqid->sequence, struct nfs4_state_owner, so_seqid); if (status == -NFS4ERR_BAD_SEQID)
nfs4_reset_state_owner(sp); if (!nfs4_has_session(sp->so_server->nfs_client))
nfs_increment_seqid(status, seqid);
}
/* * Increment the seqid if the LOCK/LOCKU succeeded, or * failed with a seqid incrementing error - * see comments nfs4.h:seqid_mutating_error()
*/ void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
{ if (seqid != NULL)
nfs_increment_seqid(status, seqid);
}
int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
{ struct nfs_seqid_counter *sequence; int status = 0;
if (seqid == NULL) goto out;
sequence = seqid->sequence;
spin_lock(&sequence->lock);
seqid->task = task; if (list_empty(&seqid->list))
list_add_tail(&seqid->list, &sequence->list); if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid) goto unlock;
rpc_sleep_on(&sequence->wait, task, NULL);
status = -EAGAIN;
unlock:
spin_unlock(&sequence->lock);
out: return status;
}
/* The rcu_read_lock() is not strictly necessary, as the state * manager is the only thread that ever changes the rpc_xprt
* after it's initialized. At this point, we're single threaded. */
rcu_read_lock();
snprintf(buf, sizeof(buf), "%s-manager",
rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR));
rcu_read_unlock();
task = kthread_run(nfs4_run_state_manager, clp, "%s", buf); if (IS_ERR(task)) {
printk(KERN_ERR "%s: kthread_run: %ld\n",
__func__, PTR_ERR(task)); if (!nfs_client_init_is_complete(clp))
nfs_mark_client_ready(clp, PTR_ERR(task)); if (swapon)
clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state);
nfs4_clear_state_manager_bit(clp);
nfs_put_client(clp);
module_put(THIS_MODULE);
}
}
/* * Schedule a lease recovery attempt
*/ void nfs4_schedule_lease_recovery(struct nfs_client *clp)
{ if (!clp) return; if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
dprintk("%s: scheduling lease recovery for server %s\n", __func__,
clp->cl_hostname);
nfs4_schedule_state_manager(clp);
}
EXPORT_SYMBOL_GPL(nfs4_schedule_lease_recovery);
/** * nfs4_schedule_migration_recovery - trigger migration recovery * * @server: FSID that is migrating * * Returns zero if recovery has started, otherwise a negative NFS4ERR * value is returned.
*/ int nfs4_schedule_migration_recovery(conststruct nfs_server *server)
{ struct nfs_client *clp = server->nfs_client;
if (server->fh_expire_type != NFS4_FH_PERSISTENT) {
pr_err("NFS: volatile file handles not supported (server %s)\n",
clp->cl_hostname); return -NFS4ERR_IO;
}
if (test_bit(NFS_MIG_FAILED, &server->mig_status)) return -NFS4ERR_IO;
dprintk("%s: scheduling migration recovery for (%llx:%llx) on %s\n",
__func__,
(unsignedlonglong)server->fsid.major,
(unsignedlonglong)server->fsid.minor,
clp->cl_hostname);
int nfs4_wait_clnt_recover(struct nfs_client *clp)
{ int res;
might_sleep();
refcount_inc(&clp->cl_count);
res = wait_on_bit_action(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
nfs_wait_bit_killable,
TASK_KILLABLE|TASK_FREEZABLE_UNSAFE); if (res) goto out; if (clp->cl_cons_state < 0)
res = clp->cl_cons_state;
out:
nfs_put_client(clp); return res;
}
int nfs4_client_recover_expired_lease(struct nfs_client *clp)
{ unsignedint loop; int ret;
for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
ret = nfs4_wait_clnt_recover(clp); if (ret != 0) break; if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
!test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state)) break;
nfs4_schedule_state_manager(clp);
ret = -EIO;
} return ret;
}
/* * nfs40_handle_cb_pathdown - return all delegations after NFS4ERR_CB_PATH_DOWN * @clp: client to process * * Set the NFS4CLNT_LEASE_EXPIRED state in order to force a * resend of the SETCLIENTID and hence re-establish the * callback channel. Then return all existing delegations.
*/ staticvoid nfs40_handle_cb_pathdown(struct nfs_client *clp)
{
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
nfs_expire_all_delegations(clp);
dprintk("%s: handling CB_PATHDOWN recovery for server %s\n", __func__,
clp->cl_hostname);
}
/* Guard against delegation returns and new lock/unlock calls */
down_write(&nfsi->rwsem);
spin_lock(&flctx->flc_lock);
restart:
for_each_file_lock(fl, list) { if (nfs_file_open_context(fl->c.flc_file)->state != state) continue;
spin_unlock(&flctx->flc_lock);
status = ops->recover_lock(state, fl); switch (status) { case 0: break; case -ETIMEDOUT: case -ESTALE: case -NFS4ERR_ADMIN_REVOKED: case -NFS4ERR_STALE_STATEID: case -NFS4ERR_BAD_STATEID: case -NFS4ERR_EXPIRED: case -NFS4ERR_NO_GRACE: case -NFS4ERR_STALE_CLIENTID: case -NFS4ERR_BADSESSION: case -NFS4ERR_BADSLOT: case -NFS4ERR_BAD_HIGH_SLOT: case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: goto out; default:
pr_err("NFS: %s: unhandled error %d\n",
__func__, status);
fallthrough; case -ENOMEM: case -NFS4ERR_DENIED: case -NFS4ERR_RECLAIM_BAD: case -NFS4ERR_RECLAIM_CONFLICT:
lsp = fl->fl_u.nfs4_fl.owner; if (lsp)
set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
status = 0;
}
spin_lock(&flctx->flc_lock);
} if (list == &flctx->flc_posix) {
list = &flctx->flc_flock; goto restart;
}
spin_unlock(&flctx->flc_lock);
out:
up_write(&nfsi->rwsem); return status;
}
staticint nfs4_reclaim_open_state(struct nfs4_state_owner *sp, conststruct nfs4_state_recovery_ops *ops, int *lost_locks)
{ struct nfs4_state *state; unsignedint loop = 0; int status = 0; #ifdef CONFIG_NFS_V4_2 bool found_ssc_copy_state = false; #endif/* CONFIG_NFS_V4_2 */
/* Note: we rely on the sp->so_states list being ordered * so that we always reclaim open(O_RDWR) and/or open(O_WRITE) * states first. * This is needed to ensure that the server won't give us any * read delegations that we have to return if, say, we are * recovering after a network partition or a reboot from a * server that doesn't support a grace period.
*/
spin_lock(&sp->so_lock);
restart:
list_for_each_entry(state, &sp->so_states, open_states) { if (!test_and_clear_bit(ops->state_flag_bit, &state->flags)) continue; if (!nfs4_valid_open_stateid(state)) continue; if (state->state == 0) continue; #ifdef CONFIG_NFS_V4_2 if (test_bit(NFS_SRV_SSC_COPY_STATE, &state->flags)) {
nfs4_state_mark_recovery_failed(state, -EIO);
found_ssc_copy_state = true; continue;
} #endif/* CONFIG_NFS_V4_2 */
refcount_inc(&state->count);
spin_unlock(&sp->so_lock);
status = __nfs4_reclaim_open_state(sp, state, ops, lost_locks);
switch (status) { default: if (status >= 0) {
loop = 0; break;
}
printk(KERN_ERR "NFS: %s: unhandled error %d\n", __func__, status);
fallthrough; case -ENOENT: case -ENOMEM: case -EACCES: case -EROFS: case -EIO: case -ESTALE: /* Open state on this file cannot be recovered */
nfs4_state_mark_recovery_failed(state, status); break; case -EAGAIN:
ssleep(1); if (loop++ < 10) {
set_bit(ops->state_flag_bit, &state->flags); break;
}
fallthrough; case -NFS4ERR_ADMIN_REVOKED: case -NFS4ERR_STALE_STATEID: case -NFS4ERR_OLD_STATEID: case -NFS4ERR_BAD_STATEID: case -NFS4ERR_RECLAIM_BAD: case -NFS4ERR_RECLAIM_CONFLICT:
nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state); break; case -NFS4ERR_EXPIRED: case -NFS4ERR_NO_GRACE:
nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
fallthrough; case -NFS4ERR_STALE_CLIENTID: case -NFS4ERR_BADSESSION: case -NFS4ERR_BADSLOT: case -NFS4ERR_BAD_HIGH_SLOT: case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: case -ETIMEDOUT: goto out_err;
}
nfs4_put_open_state(state);
spin_lock(&sp->so_lock); goto restart;
}
spin_unlock(&sp->so_lock); #ifdef CONFIG_NFS_V4_2 if (found_ssc_copy_state) return -EIO; #endif/* CONFIG_NFS_V4_2 */ return 0;
out_err:
nfs4_put_open_state(state);
spin_lock(&sp->so_lock);
spin_unlock(&sp->so_lock); return status;
}
staticint nfs4_recovery_handle_error(struct nfs_client *clp, int error)
{ switch (error) { case 0: break; case -NFS4ERR_CB_PATH_DOWN:
nfs40_handle_cb_pathdown(clp); break; case -NFS4ERR_NO_GRACE:
nfs4_state_end_reclaim_reboot(clp); break; case -NFS4ERR_STALE_CLIENTID:
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
nfs4_state_start_reclaim_reboot(clp); break; case -NFS4ERR_EXPIRED:
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
nfs4_state_start_reclaim_nograce(clp); break; case -NFS4ERR_BADSESSION: case -NFS4ERR_BADSLOT: case -NFS4ERR_BAD_HIGH_SLOT: case -NFS4ERR_DEADSESSION: case -NFS4ERR_SEQ_FALSE_RETRY: case -NFS4ERR_SEQ_MISORDERED:
set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state); /* Zero session reset errors */ break; case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state); break; default:
dprintk("%s: failed to handle error %d for server %s\n",
__func__, error, clp->cl_hostname); return error;
}
dprintk("%s: handled error %d for server %s\n", __func__, error,
clp->cl_hostname); return 0;
}
/* Is the client already known to have an expired lease? */ if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) return 0;
cred = ops->get_state_renewal_cred(clp); if (cred == NULL) {
cred = nfs4_get_clid_cred(clp);
status = -ENOKEY; if (cred == NULL) goto out;
}
status = ops->renew_lease(clp, cred);
put_cred(cred); if (status == -ETIMEDOUT) {
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state); return 0;
}
out: return nfs4_recovery_handle_error(clp, status);
}
/* Set NFS4CLNT_LEASE_EXPIRED and reclaim reboot state for all v4.0 errors * and for recoverable errors on EXCHANGE_ID for v4.1
*/ staticint nfs4_handle_reclaim_lease_error(struct nfs_client *clp, int status)
{ switch (status) { case -NFS4ERR_SEQ_MISORDERED: if (test_and_set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) return -ESERVERFAULT; /* Lease confirmation error: retry after purging the lease */
ssleep(1);
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state); break; case -NFS4ERR_STALE_CLIENTID:
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
nfs4_state_start_reclaim_reboot(clp); break; case -NFS4ERR_CLID_INUSE:
pr_err("NFS: Server %s reports our clientid is in use\n",
clp->cl_hostname);
nfs_mark_client_ready(clp, -EPERM);
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state); return -EPERM; case -ETIMEDOUT: if (clp->cl_cons_state == NFS_CS_SESSION_INITING) {
nfs_mark_client_ready(clp, -EIO); return -EIO;
}
fallthrough; case -EACCES: case -NFS4ERR_DELAY: case -EAGAIN:
ssleep(1); break;
case -NFS4ERR_MINOR_VERS_MISMATCH: if (clp->cl_cons_state == NFS_CS_SESSION_INITING)
nfs_mark_client_ready(clp, -EPROTONOSUPPORT);
dprintk("%s: exit with error %d for server %s\n",
__func__, -EPROTONOSUPPORT, clp->cl_hostname); return -EPROTONOSUPPORT; case -ENOSPC: if (clp->cl_cons_state == NFS_CS_SESSION_INITING)
nfs_mark_client_ready(clp, -EIO); return -EIO; case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
* in nfs4_exchange_id */ default:
dprintk("%s: exit with error %d for server %s\n", __func__,
status, clp->cl_hostname); return status;
}
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
dprintk("%s: handled error %d for server %s\n", __func__, status,
clp->cl_hostname); return 0;
}
status = nfs4_begin_drain_session(clp); if (status != 0) return status;
cred = nfs4_get_clid_cred(clp); if (cred == NULL) return -ENOENT;
status = ops->establish_clid(clp, cred);
put_cred(cred); if (status != 0) return status; return 0;
}
/* * Returns zero or a negative errno. NFS4ERR values are converted * to local errno values.
*/ staticint nfs4_reclaim_lease(struct nfs_client *clp)
{ int status;
status = nfs4_establish_lease(clp); if (status < 0) return nfs4_handle_reclaim_lease_error(clp, status); if (test_and_clear_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state))
nfs4_state_start_reclaim_nograce(clp); if (!test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state))
set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state); return 0;
}
staticint nfs4_purge_lease(struct nfs_client *clp)
{ int status;
status = nfs4_establish_lease(clp); if (status < 0) return nfs4_handle_reclaim_lease_error(clp, status);
clear_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
nfs4_state_start_reclaim_nograce(clp); return 0;
}
/* * Try remote migration of one FSID from a source server to a * destination server. The source server provides a list of * potential destinations. * * Returns zero or a negative NFS4ERR status code.
*/ staticint nfs4_try_migration(struct nfs_server *server, conststruct cred *cred)
{ struct nfs_client *clp = server->nfs_client; struct nfs4_fs_locations *locations = NULL; struct nfs_fattr *fattr; struct inode *inode; struct page *page; int status, result;
dprintk("--> %s: FSID %llx:%llx on \"%s\"\n", __func__,
(unsignedlonglong)server->fsid.major,
(unsignedlonglong)server->fsid.minor,
clp->cl_hostname);
/* * Test each nfs_server on the clp's cl_superblocks list to see * if it's moved to another server. Stop when the server no longer * returns NFS4ERR_LEASE_MOVED.
*/ staticint nfs4_handle_lease_moved(struct nfs_client *clp)
{ conststruct nfs4_state_maintenance_ops *ops =
clp->cl_mvops->state_renewal_ops; struct nfs_server *server; conststruct cred *cred;
dprintk("%s: lease moved reported on \"%s\"\n", __func__,
clp->cl_hostname);
cred = ops->get_state_renewal_cred(clp); if (cred == NULL) return -NFS4ERR_NOENT;
if (server->mig_gen == clp->cl_mig_gen) continue;
server->mig_gen = clp->cl_mig_gen;
rcu_read_unlock();
inode = d_inode(server->super->s_root);
status = nfs4_proc_fsid_present(inode, cred); if (status != -NFS4ERR_MOVED) goto restart; /* wasn't this one */ if (nfs4_try_migration(server, cred) == -NFS4ERR_LEASE_MOVED) goto restart; /* there are more */ goto out;
}
rcu_read_unlock();
out:
put_cred(cred); return 0;
}
/** * nfs4_discover_server_trunking - Detect server IP address trunking * * @clp: nfs_client under test * @result: OUT: found nfs_client, or clp * * Returns zero or a negative errno. If zero is returned, * an nfs_client pointer is planted in "result". * * Note: since we are invoked in process context, and * not from inside the state manager, we cannot use * nfs4_handle_reclaim_lease_error().
*/ int nfs4_discover_server_trunking(struct nfs_client *clp, struct nfs_client **result)
{ conststruct nfs4_state_recovery_ops *ops =
clp->cl_mvops->reboot_recovery_ops; struct rpc_clnt *clnt; conststruct cred *cred; int i, status;
mutex_lock(&nfs_clid_init_mutex);
again:
status = -ENOENT;
cred = nfs4_get_clid_cred(clp); if (cred == NULL) goto out_unlock;
status = ops->detect_trunking(clp, result, cred);
put_cred(cred); switch (status) { case 0: case -EINTR: case -ERESTARTSYS: break; case -ETIMEDOUT: if (clnt->cl_softrtry) break;
fallthrough; case -NFS4ERR_DELAY: case -EAGAIN:
ssleep(1);
fallthrough; case -NFS4ERR_STALE_CLIENTID:
dprintk("NFS: %s after status %d, retrying\n",
__func__, status); goto again; case -EACCES: if (i++ == 0) {
nfs4_root_machine_cred(clp); goto again;
} if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX) break;
fallthrough; case -NFS4ERR_CLID_INUSE: case -NFS4ERR_WRONGSEC: /* No point in retrying if we already used RPC_AUTH_UNIX */ if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX) {
status = -EPERM; break;
}
clnt = rpc_clone_client_set_auth(clnt, RPC_AUTH_UNIX); if (IS_ERR(clnt)) {
status = PTR_ERR(clnt); break;
} /* Note: this is safe because we haven't yet marked the * client as ready, so we are the only user of * clp->cl_rpcclient
*/
clnt = xchg(&clp->cl_rpcclient, clnt);
rpc_shutdown_client(clnt);
clnt = clp->cl_rpcclient; goto again;
case -NFS4ERR_MINOR_VERS_MISMATCH:
status = -EPROTONOSUPPORT; break;
case -EKEYEXPIRED: case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
* in nfs4_exchange_id */
status = -EKEYEXPIRED; break; default:
pr_warn("NFS: %s unhandled error %d. Exiting with error EIO\n",
__func__, status);
status = -EIO;
}
void nfs41_notify_server(struct nfs_client *clp)
{ /* Use CHECK_LEASE to ping the server with a SEQUENCE */
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
nfs4_schedule_state_manager(clp);
}
staticvoid nfs4_reset_all_state(struct nfs_client *clp)
{ if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
nfs4_state_start_reclaim_nograce(clp);
dprintk("%s: scheduling reset of all state for server %s!\n",
__func__, clp->cl_hostname);
nfs4_schedule_state_manager(clp);
}
}
staticvoid nfs41_handle_all_state_revoked(struct nfs_client *clp)
{
nfs4_reset_all_state(clp);
dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
}
dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
}
staticvoid nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
{ /* FIXME: For now, we destroy all layouts. */
pnfs_destroy_all_layouts(clp);
nfs_test_expired_all_delegations(clp);
dprintk("%s: Recallable state revoked on server %s!\n", __func__,
clp->cl_hostname);
}
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.11Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.