2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2007-07-08 20:49:11 +00:00
|
|
|
#include <linux/kernel.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/slab.h>
|
2010-09-18 13:09:31 +00:00
|
|
|
#include <linux/fs.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/nfs_fs.h>
|
2006-01-03 08:55:23 +00:00
|
|
|
#include <linux/kthread.h>
|
|
|
|
#include <linux/module.h>
|
2007-07-02 17:58:33 +00:00
|
|
|
#include <linux/random.h>
|
2010-10-22 23:18:52 +00:00
|
|
|
#include <linux/ratelimit.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include <linux/bitops.h>
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
#include <linux/jiffies.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-09-14 21:24:32 +00:00
|
|
|
#include <linux/sunrpc/clnt.h>
|
|
|
|
|
2005-06-22 17:16:21 +00:00
|
|
|
#include "nfs4_fs.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
#include "callback.h"
|
|
|
|
#include "delegation.h"
|
2006-08-23 00:06:10 +00:00
|
|
|
#include "internal.h"
|
2015-04-15 17:00:05 +00:00
|
|
|
#include "nfs4idmap.h"
|
2012-11-26 19:20:49 +00:00
|
|
|
#include "nfs4session.h"
|
2010-10-20 04:18:02 +00:00
|
|
|
#include "pnfs.h"
|
2012-08-20 14:00:36 +00:00
|
|
|
#include "netns.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-05-22 02:45:24 +00:00
|
|
|
#define NFSDBG_FACILITY NFSDBG_STATE
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define OPENOWNER_POOL_SIZE 8
|
|
|
|
|
2016-05-16 21:42:43 +00:00
|
|
|
const nfs4_stateid zero_stateid = {
|
2016-05-28 00:20:27 +00:00
|
|
|
{ .data = { 0 } },
|
2016-05-16 21:42:43 +00:00
|
|
|
.type = NFS4_SPECIAL_STATEID_TYPE,
|
|
|
|
};
|
2017-11-07 17:39:44 +00:00
|
|
|
const nfs4_stateid invalid_stateid = {
|
|
|
|
{
|
2017-11-18 18:50:11 +00:00
|
|
|
/* Funky initialiser keeps older gcc versions happy */
|
|
|
|
.data = { 0xff, 0xff, 0xff, 0xff, 0 },
|
2017-11-07 17:39:44 +00:00
|
|
|
},
|
|
|
|
.type = NFS4_INVALID_STATEID_TYPE,
|
|
|
|
};
|
|
|
|
|
2016-10-06 16:11:21 +00:00
|
|
|
const nfs4_stateid current_stateid = {
|
|
|
|
{
|
|
|
|
/* Funky initialiser keeps older gcc versions happy */
|
|
|
|
.data = { 0x0, 0x0, 0x0, 0x1, 0 },
|
|
|
|
},
|
|
|
|
.type = NFS4_SPECIAL_STATEID_TYPE,
|
|
|
|
};
|
|
|
|
|
2012-09-14 21:24:32 +00:00
|
|
|
static DEFINE_MUTEX(nfs_clid_init_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
int nfs4_init_clientid(struct nfs_client *clp, const struct cred *cred)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2011-04-24 18:28:18 +00:00
|
|
|
struct nfs4_setclientid_res clid = {
|
|
|
|
.clientid = clp->cl_clientid,
|
|
|
|
.confirm = clp->cl_confirm,
|
|
|
|
};
|
2009-03-19 00:48:06 +00:00
|
|
|
unsigned short port;
|
|
|
|
int status;
|
2012-08-20 14:00:36 +00:00
|
|
|
struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
|
2009-03-19 00:48:06 +00:00
|
|
|
|
2011-04-24 18:28:18 +00:00
|
|
|
if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
|
|
|
|
goto do_confirm;
|
2012-08-20 14:00:36 +00:00
|
|
|
port = nn->nfs_callback_tcpport;
|
2009-03-19 00:48:06 +00:00
|
|
|
if (clp->cl_addr.ss_family == AF_INET6)
|
2012-08-20 14:00:41 +00:00
|
|
|
port = nn->nfs_callback_tcpport6;
|
2009-03-19 00:48:06 +00:00
|
|
|
|
2010-04-16 20:43:06 +00:00
|
|
|
status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
|
|
|
|
if (status != 0)
|
|
|
|
goto out;
|
2011-04-24 18:28:18 +00:00
|
|
|
clp->cl_clientid = clid.clientid;
|
|
|
|
clp->cl_confirm = clid.confirm;
|
|
|
|
set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
|
|
|
do_confirm:
|
2010-04-16 20:43:06 +00:00
|
|
|
status = nfs4_proc_setclientid_confirm(clp, &clid, cred);
|
|
|
|
if (status != 0)
|
|
|
|
goto out;
|
2011-04-24 18:28:18 +00:00
|
|
|
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
2010-04-16 20:43:06 +00:00
|
|
|
nfs4_schedule_state_renewal(clp);
|
|
|
|
out:
|
2005-04-16 22:20:36 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2012-09-14 21:24:32 +00:00
|
|
|
/**
|
|
|
|
* 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,
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred)
|
2012-09-14 21:24:32 +00:00
|
|
|
{
|
|
|
|
struct nfs4_setclientid_res clid = {
|
|
|
|
.clientid = clp->cl_clientid,
|
|
|
|
.confirm = clp->cl_confirm,
|
|
|
|
};
|
2012-10-01 23:17:31 +00:00
|
|
|
struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
|
2012-09-14 21:24:32 +00:00
|
|
|
unsigned short port;
|
|
|
|
int status;
|
|
|
|
|
2012-10-01 23:17:31 +00:00
|
|
|
port = nn->nfs_callback_tcpport;
|
2012-09-14 21:24:32 +00:00
|
|
|
if (clp->cl_addr.ss_family == AF_INET6)
|
2012-10-01 23:17:31 +00:00
|
|
|
port = nn->nfs_callback_tcpport6;
|
2012-09-14 21:24:32 +00:00
|
|
|
|
|
|
|
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);
|
2013-01-19 03:56:23 +00:00
|
|
|
if (status == 0) {
|
2012-09-14 21:24:32 +00:00
|
|
|
/* 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);
|
2019-05-06 03:57:03 +00:00
|
|
|
|
|
|
|
/* If the client state need to recover, do it. */
|
|
|
|
if (clp->cl_state)
|
|
|
|
nfs4_schedule_state_manager(clp);
|
2012-09-14 21:24:32 +00:00
|
|
|
}
|
|
|
|
out:
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *nfs4_get_machine_cred(struct nfs_client *clp)
|
2008-04-08 20:02:17 +00:00
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
return get_cred(rpc_machine_cred());
|
2008-04-08 20:02:17 +00:00
|
|
|
}
|
|
|
|
|
NFS: Use root's credential for lease management when keytab is missing
Commit 05f4c350 "NFS: Discover NFSv4 server trunking when mounting"
Fri Sep 14 17:24:32 2012 introduced Uniform Client String support,
which forces our NFS client to establish a client ID immediately
during a mount operation rather than waiting until a user wants to
open a file.
Normally machine credentials (eg. from a keytab) are used to perform
a mount operation that is protected by Kerberos. Before 05fc350,
SETCLIENTID used a machine credential, or fell back to a regular
user's credential if no keytab is available.
On clients that don't have a keytab, performing SETCLIENTID early
means there's no user credential to fall back on, since no regular
user has kinit'd yet. 05f4c350 seems to have broken the ability
to mount with sec=krb5 on clients that don't have a keytab in
kernels 3.7 - 3.10.
To address this regression, commit 4edaa308 (NFS: Use "krb5i" to
establish NFSv4 state whenever possible), Sat Mar 16 15:56:20 2013,
was merged in 3.10. This commit forces the NFS client to fall back
to AUTH_SYS for lease management operations if no keytab is
available.
Neil Brown noticed that, since root is required to kinit to do a
sec=krb5 mount when a client doesn't have a keytab, we can try to
use root's Kerberos credential before AUTH_SYS.
Now, when determining a principal and flavor to use for lease
management, the NFS client tries in this order:
1. Flavor: AUTH_GSS, krb5i
Principal: service principal (via keytab)
2. Flavor: AUTH_GSS, krb5i
Principal: user principal established for UID 0 (via kinit)
3. Flavor: AUTH_SYS
Principal: UID 0 / GID 0
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2013-07-24 16:28:28 +00:00
|
|
|
static void nfs4_root_machine_cred(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
|
2018-12-03 00:30:30 +00:00
|
|
|
/* Force root creds instead of machine */
|
|
|
|
clp->cl_principal = NULL;
|
|
|
|
clp->cl_rpcclient->cl_principal = NULL;
|
NFS: Use root's credential for lease management when keytab is missing
Commit 05f4c350 "NFS: Discover NFSv4 server trunking when mounting"
Fri Sep 14 17:24:32 2012 introduced Uniform Client String support,
which forces our NFS client to establish a client ID immediately
during a mount operation rather than waiting until a user wants to
open a file.
Normally machine credentials (eg. from a keytab) are used to perform
a mount operation that is protected by Kerberos. Before 05fc350,
SETCLIENTID used a machine credential, or fell back to a regular
user's credential if no keytab is available.
On clients that don't have a keytab, performing SETCLIENTID early
means there's no user credential to fall back on, since no regular
user has kinit'd yet. 05f4c350 seems to have broken the ability
to mount with sec=krb5 on clients that don't have a keytab in
kernels 3.7 - 3.10.
To address this regression, commit 4edaa308 (NFS: Use "krb5i" to
establish NFSv4 state whenever possible), Sat Mar 16 15:56:20 2013,
was merged in 3.10. This commit forces the NFS client to fall back
to AUTH_SYS for lease management operations if no keytab is
available.
Neil Brown noticed that, since root is required to kinit to do a
sec=krb5 mount when a client doesn't have a keytab, we can try to
use root's Kerberos credential before AUTH_SYS.
Now, when determining a principal and flavor to use for lease
management, the NFS client tries in this order:
1. Flavor: AUTH_GSS, krb5i
Principal: service principal (via keytab)
2. Flavor: AUTH_GSS, krb5i
Principal: user principal established for UID 0 (via kinit)
3. Flavor: AUTH_SYS
Principal: UID 0 / GID 0
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2013-07-24 16:28:28 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
static const struct cred *
|
2010-12-24 01:32:43 +00:00
|
|
|
nfs4_get_renew_cred_server_locked(struct nfs_server *server)
|
2006-01-03 08:55:25 +00:00
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred = NULL;
|
2006-01-03 08:55:25 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
2007-07-02 17:58:33 +00:00
|
|
|
struct rb_node *pos;
|
2006-01-03 08:55:25 +00:00
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
for (pos = rb_first(&server->state_owners);
|
|
|
|
pos != NULL;
|
|
|
|
pos = rb_next(pos)) {
|
|
|
|
sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
|
2006-01-03 08:55:25 +00:00
|
|
|
if (list_empty(&sp->so_states))
|
|
|
|
continue;
|
2018-12-03 00:30:31 +00:00
|
|
|
cred = get_cred(sp->so_cred);
|
2006-01-03 08:55:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return cred;
|
|
|
|
}
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
/**
|
2018-12-03 00:30:30 +00:00
|
|
|
* nfs4_get_renew_cred - Acquire credential for a renew operation
|
2010-12-24 01:32:43 +00:00
|
|
|
* @clp: client state handle
|
|
|
|
*
|
|
|
|
* Returns an rpc_cred with reference count bumped, or NULL.
|
|
|
|
* Caller must hold clp->cl_lock.
|
|
|
|
*/
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *nfs4_get_renew_cred(struct nfs_client *clp)
|
2010-12-24 01:32:43 +00:00
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred = NULL;
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_server *server;
|
|
|
|
|
2012-03-16 19:25:52 +00:00
|
|
|
/* Use machine credentials if available */
|
2018-12-03 00:30:30 +00:00
|
|
|
cred = nfs4_get_machine_cred(clp);
|
2012-03-16 19:25:52 +00:00
|
|
|
if (cred != NULL)
|
|
|
|
goto out;
|
|
|
|
|
2018-12-03 00:30:30 +00:00
|
|
|
spin_lock(&clp->cl_lock);
|
2010-12-24 01:32:43 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
|
|
|
|
cred = nfs4_get_renew_cred_server_locked(server);
|
|
|
|
if (cred != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
2018-12-03 00:30:30 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
2012-03-16 19:25:52 +00:00
|
|
|
|
|
|
|
out:
|
2010-12-24 01:32:43 +00:00
|
|
|
return cred;
|
|
|
|
}
|
|
|
|
|
2013-06-19 20:39:44 +00:00
|
|
|
static void nfs4_end_drain_slot_table(struct nfs4_slot_table *tbl)
|
2009-12-06 17:57:34 +00:00
|
|
|
{
|
2013-05-20 18:13:50 +00:00
|
|
|
if (test_and_clear_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) {
|
2012-01-18 03:57:37 +00:00
|
|
|
spin_lock(&tbl->slot_tbl_lock);
|
2012-11-29 22:27:47 +00:00
|
|
|
nfs41_wake_slot_table(tbl);
|
2012-01-18 03:57:37 +00:00
|
|
|
spin_unlock(&tbl->slot_tbl_lock);
|
2009-12-15 05:27:56 +00:00
|
|
|
}
|
2009-12-06 17:57:34 +00:00
|
|
|
}
|
|
|
|
|
2013-06-19 20:39:44 +00:00
|
|
|
static void nfs4_end_drain_session(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
struct nfs4_session *ses = clp->cl_session;
|
|
|
|
|
2013-08-09 16:49:56 +00:00
|
|
|
if (clp->cl_slot_tbl) {
|
|
|
|
nfs4_end_drain_slot_table(clp->cl_slot_tbl);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-19 20:39:44 +00:00
|
|
|
if (ses != NULL) {
|
|
|
|
nfs4_end_drain_slot_table(&ses->bc_slot_table);
|
|
|
|
nfs4_end_drain_slot_table(&ses->fc_slot_table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 18:13:50 +00:00
|
|
|
static int nfs4_drain_slot_tbl(struct nfs4_slot_table *tbl)
|
2009-12-06 17:57:34 +00:00
|
|
|
{
|
2013-05-20 18:13:50 +00:00
|
|
|
set_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state);
|
2009-12-06 17:57:34 +00:00
|
|
|
spin_lock(&tbl->slot_tbl_lock);
|
2012-02-17 18:05:23 +00:00
|
|
|
if (tbl->highest_used_slotid != NFS4_NO_SLOT) {
|
2013-11-14 22:32:02 +00:00
|
|
|
reinit_completion(&tbl->complete);
|
2009-12-06 17:57:34 +00:00
|
|
|
spin_unlock(&tbl->slot_tbl_lock);
|
2011-01-06 02:04:34 +00:00
|
|
|
return wait_for_completion_interruptible(&tbl->complete);
|
2009-12-06 17:57:34 +00:00
|
|
|
}
|
|
|
|
spin_unlock(&tbl->slot_tbl_lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-06 02:04:34 +00:00
|
|
|
static int nfs4_begin_drain_session(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
struct nfs4_session *ses = clp->cl_session;
|
2018-08-11 15:52:38 +00:00
|
|
|
int ret;
|
2011-01-06 02:04:34 +00:00
|
|
|
|
2013-08-09 16:49:56 +00:00
|
|
|
if (clp->cl_slot_tbl)
|
|
|
|
return nfs4_drain_slot_tbl(clp->cl_slot_tbl);
|
|
|
|
|
2011-01-06 02:04:34 +00:00
|
|
|
/* back channel */
|
2013-05-20 18:13:50 +00:00
|
|
|
ret = nfs4_drain_slot_tbl(&ses->bc_slot_table);
|
2011-01-06 02:04:34 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
/* fore channel */
|
2013-05-20 18:13:50 +00:00
|
|
|
return nfs4_drain_slot_tbl(&ses->fc_slot_table);
|
2011-01-06 02:04:34 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:13:02 +00:00
|
|
|
#if defined(CONFIG_NFS_V4_1)
|
|
|
|
|
2013-08-09 16:49:56 +00:00
|
|
|
static int nfs41_setup_state_renewal(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
struct nfs_fsinfo fsinfo;
|
2016-08-05 23:13:08 +00:00
|
|
|
unsigned long now;
|
2013-08-09 16:49:56 +00:00
|
|
|
|
|
|
|
if (!test_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state)) {
|
|
|
|
nfs4_schedule_state_renewal(clp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-05 23:13:08 +00:00
|
|
|
now = jiffies;
|
2013-08-09 16:49:56 +00:00
|
|
|
status = nfs4_proc_get_lease_time(clp, &fsinfo);
|
|
|
|
if (status == 0) {
|
2016-08-05 23:13:08 +00:00
|
|
|
nfs4_set_lease_period(clp, fsinfo.lease_time * HZ, now);
|
2013-08-09 16:49:56 +00:00
|
|
|
nfs4_schedule_state_renewal(clp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2012-06-05 14:22:14 +00:00
|
|
|
static void nfs41_finish_session_reset(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
|
|
|
clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
|
|
|
|
/* create_session negotiated new slot table */
|
|
|
|
clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
|
|
|
|
nfs41_setup_state_renewal(clp);
|
|
|
|
}
|
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
int nfs41_init_clientid(struct nfs_client *clp, const struct cred *cred)
|
2009-12-04 20:52:24 +00:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2011-04-24 18:28:18 +00:00
|
|
|
if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
|
|
|
|
goto do_confirm;
|
2009-12-04 20:52:24 +00:00
|
|
|
status = nfs4_proc_exchange_id(clp, cred);
|
2009-12-06 17:23:46 +00:00
|
|
|
if (status != 0)
|
|
|
|
goto out;
|
2011-04-24 18:28:18 +00:00
|
|
|
set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
|
|
|
do_confirm:
|
2012-05-25 21:51:23 +00:00
|
|
|
status = nfs4_proc_create_session(clp, cred);
|
2009-12-06 17:23:46 +00:00
|
|
|
if (status != 0)
|
|
|
|
goto out;
|
2012-06-05 14:22:14 +00:00
|
|
|
nfs41_finish_session_reset(clp);
|
2009-12-06 17:23:46 +00:00
|
|
|
nfs_mark_client_ready(clp, NFS_CS_READY);
|
|
|
|
out:
|
2009-12-04 20:52:24 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2012-09-14 21:24:32 +00:00
|
|
|
/**
|
|
|
|
* 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,
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred)
|
2012-09-14 21:24:32 +00:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
status = nfs4_proc_exchange_id(clp, cred);
|
|
|
|
if (status != NFS4_OK)
|
|
|
|
return status;
|
|
|
|
|
2015-03-04 01:28:59 +00:00
|
|
|
status = nfs41_walk_client_list(clp, result, cred);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
if (clp != *result)
|
|
|
|
return 0;
|
|
|
|
|
2017-06-08 15:52:44 +00:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
}
|
2015-03-04 01:28:59 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
status = nfs_wait_client_init_complete(clp);
|
|
|
|
if (status < 0)
|
|
|
|
nfs_put_client(clp);
|
|
|
|
return status;
|
2012-09-14 21:24:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-01 13:22:49 +00:00
|
|
|
#endif /* CONFIG_NFS_V4_1 */
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
/**
|
2013-07-24 16:28:37 +00:00
|
|
|
* nfs4_get_clid_cred - Acquire credential for a setclientid operation
|
2010-12-24 01:32:43 +00:00
|
|
|
* @clp: client state handle
|
|
|
|
*
|
2018-12-03 00:30:31 +00:00
|
|
|
* Returns a cred with reference count bumped, or NULL.
|
2010-12-24 01:32:43 +00:00
|
|
|
*/
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *nfs4_get_clid_cred(struct nfs_client *clp)
|
2010-12-24 01:32:43 +00:00
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2006-01-03 08:55:26 +00:00
|
|
|
|
2018-12-03 00:30:30 +00:00
|
|
|
cred = nfs4_get_machine_cred(clp);
|
2008-04-08 20:02:17 +00:00
|
|
|
return cred;
|
2006-01-03 08:55:26 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct nfs4_state_owner *
|
2018-12-03 00:30:31 +00:00
|
|
|
nfs4_find_state_owner_locked(struct nfs_server *server, const struct cred *cred)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct rb_node **p = &server->state_owners.rb_node,
|
2007-07-02 17:58:33 +00:00
|
|
|
*parent = NULL;
|
2011-12-06 21:13:39 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
2018-12-03 00:30:31 +00:00
|
|
|
int cmp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-07-02 17:58:33 +00:00
|
|
|
while (*p != NULL) {
|
|
|
|
parent = *p;
|
2010-12-24 01:32:43 +00:00
|
|
|
sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
|
2018-12-03 00:30:31 +00:00
|
|
|
cmp = cred_fscmp(cred, sp->so_cred);
|
2007-07-02 17:58:33 +00:00
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
if (cmp < 0)
|
2007-07-02 17:58:33 +00:00
|
|
|
p = &parent->rb_left;
|
2018-12-03 00:30:31 +00:00
|
|
|
else if (cmp > 0)
|
2007-07-02 17:58:33 +00:00
|
|
|
p = &parent->rb_right;
|
|
|
|
else {
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
if (!list_empty(&sp->so_lru))
|
|
|
|
list_del_init(&sp->so_lru);
|
2007-07-02 17:58:33 +00:00
|
|
|
atomic_inc(&sp->so_count);
|
2011-12-06 21:13:39 +00:00
|
|
|
return sp;
|
2007-07-02 17:58:33 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2011-12-06 21:13:39 +00:00
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-07-02 17:58:33 +00:00
|
|
|
static struct nfs4_state_owner *
|
2010-12-24 01:32:43 +00:00
|
|
|
nfs4_insert_state_owner_locked(struct nfs4_state_owner *new)
|
2007-07-02 17:58:33 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_server *server = new->so_server;
|
|
|
|
struct rb_node **p = &server->state_owners.rb_node,
|
2007-07-02 17:58:33 +00:00
|
|
|
*parent = NULL;
|
|
|
|
struct nfs4_state_owner *sp;
|
2018-12-03 00:30:31 +00:00
|
|
|
int cmp;
|
2007-07-02 17:58:33 +00:00
|
|
|
|
|
|
|
while (*p != NULL) {
|
|
|
|
parent = *p;
|
2010-12-24 01:32:43 +00:00
|
|
|
sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
|
2018-12-03 00:30:31 +00:00
|
|
|
cmp = cred_fscmp(new->so_cred, sp->so_cred);
|
2007-07-02 17:58:33 +00:00
|
|
|
|
2018-12-03 00:30:31 +00:00
|
|
|
if (cmp < 0)
|
2007-07-02 17:58:33 +00:00
|
|
|
p = &parent->rb_left;
|
2018-12-03 00:30:31 +00:00
|
|
|
else if (cmp > 0)
|
2007-07-02 17:58:33 +00:00
|
|
|
p = &parent->rb_right;
|
|
|
|
else {
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
if (!list_empty(&sp->so_lru))
|
|
|
|
list_del_init(&sp->so_lru);
|
2007-07-02 17:58:33 +00:00
|
|
|
atomic_inc(&sp->so_count);
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
}
|
2010-12-24 01:32:43 +00:00
|
|
|
rb_link_node(&new->so_server_node, parent, p);
|
|
|
|
rb_insert_color(&new->so_server_node, &server->state_owners);
|
2007-07-02 17:58:33 +00:00
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-24 01:32:43 +00:00
|
|
|
nfs4_remove_state_owner_locked(struct nfs4_state_owner *sp)
|
2007-07-02 17:58:33 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_server *server = sp->so_server;
|
|
|
|
|
|
|
|
if (!RB_EMPTY_NODE(&sp->so_server_node))
|
|
|
|
rb_erase(&sp->so_server_node, &server->state_owners);
|
2007-07-02 17:58:33 +00:00
|
|
|
}
|
|
|
|
|
2012-01-18 03:04:25 +00:00
|
|
|
static void
|
|
|
|
nfs4_init_seqid_counter(struct nfs_seqid_counter *sc)
|
|
|
|
{
|
2012-04-20 23:24:51 +00:00
|
|
|
sc->create_time = ktime_get();
|
2012-01-18 03:04:25 +00:00
|
|
|
sc->flags = 0;
|
|
|
|
sc->counter = 0;
|
|
|
|
spin_lock_init(&sc->lock);
|
|
|
|
INIT_LIST_HEAD(&sc->list);
|
|
|
|
rpc_init_wait_queue(&sc->wait, "Seqid_waitqueue");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_destroy_seqid_counter(struct nfs_seqid_counter *sc)
|
|
|
|
{
|
|
|
|
rpc_destroy_wait_queue(&sc->wait);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
|
|
|
|
* create a new state_owner.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static struct nfs4_state_owner *
|
2012-01-18 03:04:24 +00:00
|
|
|
nfs4_alloc_state_owner(struct nfs_server *server,
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred,
|
2012-01-18 03:04:24 +00:00
|
|
|
gfp_t gfp_flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct nfs4_state_owner *sp;
|
|
|
|
|
2012-01-18 03:04:24 +00:00
|
|
|
sp = kzalloc(sizeof(*sp), gfp_flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!sp)
|
|
|
|
return NULL;
|
2018-03-15 02:48:27 +00:00
|
|
|
sp->so_seqid.owner_id = ida_simple_get(&server->openowner_id, 0, 0,
|
|
|
|
gfp_flags);
|
|
|
|
if (sp->so_seqid.owner_id < 0) {
|
|
|
|
kfree(sp);
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-01-18 03:04:24 +00:00
|
|
|
sp->so_server = server;
|
2018-12-03 00:30:31 +00:00
|
|
|
sp->so_cred = get_cred(cred);
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_lock_init(&sp->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
INIT_LIST_HEAD(&sp->so_states);
|
2012-01-18 03:04:25 +00:00
|
|
|
nfs4_init_seqid_counter(&sp->so_seqid);
|
2005-04-16 22:20:36 +00:00
|
|
|
atomic_set(&sp->so_count, 1);
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
INIT_LIST_HEAD(&sp->so_lru);
|
2013-02-07 19:41:11 +00:00
|
|
|
seqcount_init(&sp->so_reclaim_seqcount);
|
2013-02-07 15:54:07 +00:00
|
|
|
mutex_init(&sp->so_delegreturn_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
2008-05-02 20:42:45 +00:00
|
|
|
static void
|
2016-12-19 00:48:23 +00:00
|
|
|
nfs4_reset_state_owner(struct nfs4_state_owner *sp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2016-12-19 00:48:23 +00:00
|
|
|
/* 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();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
static void nfs4_free_state_owner(struct nfs4_state_owner *sp)
|
|
|
|
{
|
2012-01-18 03:04:25 +00:00
|
|
|
nfs4_destroy_seqid_counter(&sp->so_seqid);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(sp->so_cred);
|
2018-03-15 02:48:27 +00:00
|
|
|
ida_simple_remove(&sp->so_server->openowner_id, sp->so_seqid.owner_id);
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
kfree(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nfs4_gc_state_owners(struct nfs_server *server)
|
|
|
|
{
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
|
|
|
struct nfs4_state_owner *sp, *tmp;
|
|
|
|
unsigned long time_min, time_max;
|
|
|
|
LIST_HEAD(doomed);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
list_for_each_entry_safe(sp, tmp, &doomed, so_lru) {
|
|
|
|
list_del(&sp->so_lru);
|
|
|
|
nfs4_free_state_owner(sp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
/**
|
|
|
|
* nfs4_get_state_owner - Look up a state owner given a credential
|
|
|
|
* @server: nfs_server to search
|
|
|
|
* @cred: RPC credential to match
|
2019-02-18 18:32:38 +00:00
|
|
|
* @gfp_flags: allocation mode
|
2010-12-24 01:32:43 +00:00
|
|
|
*
|
|
|
|
* Returns a pointer to an instantiated nfs4_state_owner struct, or NULL.
|
|
|
|
*/
|
|
|
|
struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server,
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred,
|
2012-01-18 03:04:24 +00:00
|
|
|
gfp_t gfp_flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-08-23 00:06:09 +00:00
|
|
|
struct nfs_client *clp = server->nfs_client;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct nfs4_state_owner *sp, *new;
|
|
|
|
|
|
|
|
spin_lock(&clp->cl_lock);
|
2010-12-24 01:32:43 +00:00
|
|
|
sp = nfs4_find_state_owner_locked(server, cred);
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
|
|
|
if (sp != NULL)
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
goto out;
|
2012-01-18 03:04:24 +00:00
|
|
|
new = nfs4_alloc_state_owner(server, cred, gfp_flags);
|
2007-07-02 17:58:33 +00:00
|
|
|
if (new == NULL)
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
goto out;
|
2018-03-15 02:48:27 +00:00
|
|
|
spin_lock(&clp->cl_lock);
|
|
|
|
sp = nfs4_insert_state_owner_locked(new);
|
|
|
|
spin_unlock(&clp->cl_lock);
|
2012-01-18 03:04:24 +00:00
|
|
|
if (sp != new)
|
|
|
|
nfs4_free_state_owner(new);
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
out:
|
|
|
|
nfs4_gc_state_owners(server);
|
2007-07-02 17:58:33 +00:00
|
|
|
return sp;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
/**
|
|
|
|
* nfs4_put_state_owner - Release a nfs4_state_owner
|
|
|
|
* @sp: state owner data to release
|
2012-04-21 16:36:19 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2010-12-24 01:32:43 +00:00
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
void nfs4_put_state_owner(struct nfs4_state_owner *sp)
|
|
|
|
{
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
struct nfs_server *server = sp->so_server;
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
|
|
|
|
return;
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
|
2012-04-21 16:36:19 +00:00
|
|
|
sp->so_expires = jiffies;
|
|
|
|
list_add_tail(&sp->so_lru, &server->state_owners_lru);
|
|
|
|
spin_unlock(&clp->cl_lock);
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nfs4_purge_state_owners - Release all cached state owners
|
|
|
|
* @server: nfs_server with cached state owners to release
|
|
|
|
*
|
|
|
|
* Called at umount time. Remaining state owners will be on
|
|
|
|
* the LRU with ref count of zero.
|
|
|
|
*/
|
|
|
|
void nfs4_purge_state_owners(struct nfs_server *server)
|
|
|
|
{
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
|
|
|
struct nfs4_state_owner *sp, *tmp;
|
|
|
|
LIST_HEAD(doomed);
|
|
|
|
|
|
|
|
spin_lock(&clp->cl_lock);
|
|
|
|
list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) {
|
|
|
|
list_move(&sp->so_lru, &doomed);
|
|
|
|
nfs4_remove_state_owner_locked(sp);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
|
|
|
|
list_for_each_entry_safe(sp, tmp, &doomed, so_lru) {
|
|
|
|
list_del(&sp->so_lru);
|
|
|
|
nfs4_free_state_owner(sp);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs4_state *
|
|
|
|
nfs4_alloc_open_state(void)
|
|
|
|
{
|
|
|
|
struct nfs4_state *state;
|
|
|
|
|
2010-05-13 16:51:01 +00:00
|
|
|
state = kzalloc(sizeof(*state), GFP_NOFS);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!state)
|
|
|
|
return NULL;
|
2018-09-02 23:19:07 +00:00
|
|
|
refcount_set(&state->count, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
INIT_LIST_HEAD(&state->lock_states);
|
2005-06-22 17:16:32 +00:00
|
|
|
spin_lock_init(&state->state_lock);
|
2007-07-09 14:45:42 +00:00
|
|
|
seqlock_init(&state->seqlock);
|
NFSv4: Fix OPEN / CLOSE race
Ben Coddington has noted the following race between OPEN and CLOSE
on a single client.
Process 1 Process 2 Server
========= ========= ======
1) OPEN file
2) OPEN file
3) Process OPEN (1) seqid=1
4) Process OPEN (2) seqid=2
5) Reply OPEN (2)
6) Receive reply (2)
7) new stateid, seqid=2
8) CLOSE file, using
stateid w/ seqid=2
9) Reply OPEN (1)
10( Process CLOSE (8)
11) Reply CLOSE (8)
12) Forget stateid
file closed
13) Receive reply (7)
14) Forget stateid
file closed.
15) Receive reply (1).
16) New stateid seqid=1
is really the same
stateid that was
closed.
IOW: the reply to the first OPEN is delayed. Since "Process 2" does
not wait before closing the file, and it does not cache the closed
stateid, then when the delayed reply is finally received, it is treated
as setting up a new stateid by the client.
The fix is to ensure that the client processes the OPEN and CLOSE calls
in the same order in which the server processed them.
This commit ensures that we examine the seqid of the stateid
returned by OPEN. If it is a new stateid, we assume the seqid
must be equal to the value 1, and that each state transition
increments the seqid value by 1 (See RFC7530, Section 9.1.4.2,
and RFC5661, Section 8.2.2).
If the tracker sees that an OPEN returns with a seqid that is greater
than the cached seqid + 1, then it bumps a flag to ensure that the
caller waits for the RPCs carrying the missing seqids to complete.
Note that there can still be pathologies where the server crashes before
it can even send us the missing seqids. Since the OPEN call is still
holding a slot when it waits here, that could cause the recovery to
stall forever. To avoid that, we time out after a 5 second wait.
Reported-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
2017-11-06 20:28:01 +00:00
|
|
|
init_waitqueue_head(&state->waitq);
|
2005-04-16 22:20:36 +00:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2005-11-04 20:32:58 +00:00
|
|
|
void
|
2008-12-23 20:21:56 +00:00
|
|
|
nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
|
2005-11-04 20:32:58 +00:00
|
|
|
{
|
2008-12-23 20:21:56 +00:00
|
|
|
if (state->state == fmode)
|
2005-11-04 20:32:58 +00:00
|
|
|
return;
|
|
|
|
/* NB! List reordering - see the reclaim code for why. */
|
2008-12-23 20:21:56 +00:00
|
|
|
if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
|
|
|
|
if (fmode & FMODE_WRITE)
|
2005-11-04 20:32:58 +00:00
|
|
|
list_move(&state->open_states, &state->owner->so_states);
|
|
|
|
else
|
|
|
|
list_move_tail(&state->open_states, &state->owner->so_states);
|
|
|
|
}
|
2008-12-23 20:21:56 +00:00
|
|
|
state->state = fmode;
|
2005-11-04 20:32:58 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct nfs4_state *
|
|
|
|
__nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
|
|
|
|
{
|
|
|
|
struct nfs_inode *nfsi = NFS_I(inode);
|
|
|
|
struct nfs4_state *state;
|
|
|
|
|
2018-09-02 23:15:15 +00:00
|
|
|
list_for_each_entry_rcu(state, &nfsi->open_states, inode_states) {
|
2007-07-03 18:41:19 +00:00
|
|
|
if (state->owner != owner)
|
2005-04-16 22:20:36 +00:00
|
|
|
continue;
|
2013-03-14 20:57:48 +00:00
|
|
|
if (!nfs4_valid_open_stateid(state))
|
|
|
|
continue;
|
2018-09-02 23:19:07 +00:00
|
|
|
if (refcount_inc_not_zero(&state->count))
|
2005-04-16 22:20:36 +00:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_free_open_state(struct nfs4_state *state)
|
|
|
|
{
|
2018-09-02 23:15:15 +00:00
|
|
|
kfree_rcu(state, rcu_head);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct nfs4_state *
|
|
|
|
nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
|
|
|
|
{
|
|
|
|
struct nfs4_state *state, *new;
|
|
|
|
struct nfs_inode *nfsi = NFS_I(inode);
|
|
|
|
|
2018-09-02 23:15:15 +00:00
|
|
|
rcu_read_lock();
|
2005-04-16 22:20:36 +00:00
|
|
|
state = __nfs4_find_state_byowner(inode, owner);
|
2018-09-02 23:15:15 +00:00
|
|
|
rcu_read_unlock();
|
2005-04-16 22:20:36 +00:00
|
|
|
if (state)
|
|
|
|
goto out;
|
|
|
|
new = nfs4_alloc_open_state();
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_lock(&owner->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
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);
|
2018-09-02 23:15:15 +00:00
|
|
|
list_add_rcu(&state->inode_states, &nfsi->open_states);
|
2011-03-29 07:08:50 +00:00
|
|
|
ihold(inode);
|
|
|
|
state->inode = inode;
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&inode->i_lock);
|
2005-10-20 21:22:47 +00:00
|
|
|
/* 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);
|
2005-04-16 22:20:36 +00:00
|
|
|
} else {
|
|
|
|
spin_unlock(&inode->i_lock);
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_unlock(&owner->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (new)
|
|
|
|
nfs4_free_open_state(new);
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nfs4_put_open_state(struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
struct inode *inode = state->inode;
|
|
|
|
struct nfs4_state_owner *owner = state->owner;
|
|
|
|
|
2018-09-02 23:19:07 +00:00
|
|
|
if (!refcount_dec_and_lock(&state->count, &owner->so_lock))
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_lock(&inode->i_lock);
|
2018-09-02 23:15:15 +00:00
|
|
|
list_del_rcu(&state->inode_states);
|
2005-04-16 22:20:36 +00:00
|
|
|
list_del(&state->open_states);
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
spin_unlock(&owner->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
iput(inode);
|
|
|
|
nfs4_free_open_state(state);
|
|
|
|
nfs4_put_state_owner(owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-10-18 21:20:13 +00:00
|
|
|
* Close the current file.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2011-06-22 22:20:23 +00:00
|
|
|
static void __nfs4_close(struct nfs4_state *state,
|
2010-05-13 16:51:01 +00:00
|
|
|
fmode_t fmode, gfp_t gfp_mask, int wait)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct nfs4_state_owner *owner = state->owner;
|
2007-07-05 22:07:55 +00:00
|
|
|
int call_close = 0;
|
2008-12-23 20:21:56 +00:00
|
|
|
fmode_t newstate;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
atomic_inc(&owner->so_count);
|
|
|
|
/* Protect against nfs4_find_state() */
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_lock(&owner->so_lock);
|
2008-12-23 20:21:56 +00:00
|
|
|
switch (fmode & (FMODE_READ | FMODE_WRITE)) {
|
2006-01-03 08:55:13 +00:00
|
|
|
case FMODE_READ:
|
|
|
|
state->n_rdonly--;
|
|
|
|
break;
|
|
|
|
case FMODE_WRITE:
|
|
|
|
state->n_wronly--;
|
|
|
|
break;
|
|
|
|
case FMODE_READ|FMODE_WRITE:
|
|
|
|
state->n_rdwr--;
|
|
|
|
}
|
2007-07-05 22:07:55 +00:00
|
|
|
newstate = FMODE_READ|FMODE_WRITE;
|
2006-01-03 08:55:13 +00:00
|
|
|
if (state->n_rdwr == 0) {
|
2007-07-05 22:07:55 +00:00
|
|
|
if (state->n_rdonly == 0) {
|
2006-01-03 08:55:13 +00:00
|
|
|
newstate &= ~FMODE_READ;
|
2007-07-05 22:07:55 +00:00
|
|
|
call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
|
|
|
|
call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
|
|
|
|
}
|
|
|
|
if (state->n_wronly == 0) {
|
2006-01-03 08:55:13 +00:00
|
|
|
newstate &= ~FMODE_WRITE;
|
2007-07-05 22:07:55 +00:00
|
|
|
call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
|
|
|
|
call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
|
|
|
|
}
|
|
|
|
if (newstate == 0)
|
|
|
|
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
2006-01-03 08:55:13 +00:00
|
|
|
}
|
2007-07-05 22:07:55 +00:00
|
|
|
nfs4_state_set_mode_locked(state, newstate);
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_unlock(&owner->so_lock);
|
2005-11-04 20:32:58 +00:00
|
|
|
|
2007-07-05 22:07:55 +00:00
|
|
|
if (!call_close) {
|
2007-06-12 03:05:07 +00:00
|
|
|
nfs4_put_open_state(state);
|
|
|
|
nfs4_put_state_owner(owner);
|
2012-09-21 00:31:51 +00:00
|
|
|
} else
|
|
|
|
nfs4_do_close(state, gfp_mask, wait);
|
2007-10-18 22:03:27 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 22:20:23 +00:00
|
|
|
void nfs4_close_state(struct nfs4_state *state, fmode_t fmode)
|
2007-10-18 22:03:27 +00:00
|
|
|
{
|
2011-06-22 22:20:23 +00:00
|
|
|
__nfs4_close(state, fmode, GFP_NOFS, 0);
|
2007-10-18 22:03:27 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 22:20:23 +00:00
|
|
|
void nfs4_close_sync(struct nfs4_state *state, fmode_t fmode)
|
2007-10-18 22:03:27 +00:00
|
|
|
{
|
2011-06-22 22:20:23 +00:00
|
|
|
__nfs4_close(state, fmode, GFP_KERNEL, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search the state->lock_states for an existing lock_owner
|
2016-12-19 00:33:13 +00:00
|
|
|
* 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.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
static struct nfs4_lock_state *
|
2016-10-13 04:26:47 +00:00
|
|
|
__nfs4_find_lock_state(struct nfs4_state *state,
|
|
|
|
fl_owner_t fl_owner, fl_owner_t fl_owner2)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2016-12-19 00:33:13 +00:00
|
|
|
struct nfs4_lock_state *pos, *ret = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
list_for_each_entry(pos, &state->lock_states, ls_locks) {
|
2016-12-19 00:33:13 +00:00
|
|
|
if (pos->ls_owner == fl_owner) {
|
|
|
|
ret = pos;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (pos->ls_owner == fl_owner2)
|
|
|
|
ret = pos;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2016-12-19 00:33:13 +00:00
|
|
|
if (ret)
|
2017-10-20 09:53:36 +00:00
|
|
|
refcount_inc(&ret->ls_count);
|
2016-12-19 00:33:13 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return a compatible lock_state. If no initialized lock_state structure
|
|
|
|
* exists, return an uninitialized one.
|
|
|
|
*
|
|
|
|
*/
|
2014-05-01 10:28:45 +00:00
|
|
|
static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct nfs4_lock_state *lsp;
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_server *server = state->owner->so_server;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-05-13 16:51:01 +00:00
|
|
|
lsp = kzalloc(sizeof(*lsp), GFP_NOFS);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (lsp == NULL)
|
|
|
|
return NULL;
|
2012-01-18 03:04:25 +00:00
|
|
|
nfs4_init_seqid_counter(&lsp->ls_seqid);
|
2017-10-20 09:53:36 +00:00
|
|
|
refcount_set(&lsp->ls_count, 1);
|
2009-07-21 20:47:46 +00:00
|
|
|
lsp->ls_state = state;
|
2014-05-01 10:28:45 +00:00
|
|
|
lsp->ls_owner = fl_owner;
|
2012-01-18 03:04:25 +00:00
|
|
|
lsp->ls_seqid.owner_id = ida_simple_get(&server->lockowner_id, 0, 0, GFP_NOFS);
|
|
|
|
if (lsp->ls_seqid.owner_id < 0)
|
2012-01-18 03:04:25 +00:00
|
|
|
goto out_free;
|
2005-06-22 17:16:32 +00:00
|
|
|
INIT_LIST_HEAD(&lsp->ls_locks);
|
2005-04-16 22:20:36 +00:00
|
|
|
return lsp;
|
2012-01-18 03:04:25 +00:00
|
|
|
out_free:
|
|
|
|
kfree(lsp);
|
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-03-19 20:17:18 +00:00
|
|
|
void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
|
2007-07-02 17:58:33 +00:00
|
|
|
{
|
2012-01-18 03:04:25 +00:00
|
|
|
ida_simple_remove(&server->lockowner_id, lsp->ls_seqid.owner_id);
|
2012-01-18 03:04:25 +00:00
|
|
|
nfs4_destroy_seqid_counter(&lsp->ls_seqid);
|
2007-07-02 17:58:33 +00:00
|
|
|
kfree(lsp);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Return a compatible lock_state. If no initialized lock_state structure
|
|
|
|
* exists, return an uninitialized one.
|
|
|
|
*
|
|
|
|
*/
|
2014-05-01 10:28:45 +00:00
|
|
|
static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-22 17:16:32 +00:00
|
|
|
struct nfs4_lock_state *lsp, *new = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
for(;;) {
|
|
|
|
spin_lock(&state->state_lock);
|
2017-01-12 15:39:18 +00:00
|
|
|
lsp = __nfs4_find_lock_state(state, owner, NULL);
|
2005-06-22 17:16:32 +00:00
|
|
|
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);
|
2014-05-01 10:28:45 +00:00
|
|
|
new = nfs4_alloc_lock_state(state, owner);
|
2005-06-22 17:16:32 +00:00
|
|
|
if (new == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
spin_unlock(&state->state_lock);
|
2007-07-02 17:58:33 +00:00
|
|
|
if (new != NULL)
|
2012-03-19 20:17:18 +00:00
|
|
|
nfs4_free_lock_state(state->owner->so_server, new);
|
2005-04-16 22:20:36 +00:00
|
|
|
return lsp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-06-22 17:16:32 +00:00
|
|
|
* Release reference to lock_state, and free it if we see that
|
|
|
|
* it is no longer in use
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-10-18 21:20:15 +00:00
|
|
|
void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-05-03 20:22:55 +00:00
|
|
|
struct nfs_server *server;
|
2005-06-22 17:16:32 +00:00
|
|
|
struct nfs4_state *state;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
if (lsp == NULL)
|
|
|
|
return;
|
|
|
|
state = lsp->ls_state;
|
2017-10-20 09:53:36 +00:00
|
|
|
if (!refcount_dec_and_lock(&lsp->ls_count, &state->state_lock))
|
2005-06-22 17:16:32 +00:00
|
|
|
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);
|
2014-09-08 12:26:01 +00:00
|
|
|
server = state->owner->so_server;
|
|
|
|
if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
|
|
|
|
|
|
|
clp->cl_mvops->free_lock_state(server, lsp);
|
|
|
|
} else
|
2013-05-03 20:22:55 +00:00
|
|
|
nfs4_free_lock_state(server, lsp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-22 17:16:32 +00:00
|
|
|
struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
dst->fl_u.nfs4_fl.owner = lsp;
|
2017-10-20 09:53:36 +00:00
|
|
|
refcount_inc(&lsp->ls_count);
|
2005-06-22 17:16:32 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
static void nfs4_fl_release_lock(struct file_lock *fl)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-22 17:16:32 +00:00
|
|
|
nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-09-22 00:01:11 +00:00
|
|
|
static const struct file_lock_operations nfs4_fl_lock_ops = {
|
2005-06-22 17:16:32 +00:00
|
|
|
.fl_copy_lock = nfs4_fl_copy_lock,
|
|
|
|
.fl_release_private = nfs4_fl_release_lock,
|
|
|
|
};
|
|
|
|
|
|
|
|
int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-22 17:16:32 +00:00
|
|
|
struct nfs4_lock_state *lsp;
|
|
|
|
|
|
|
|
if (fl->fl_ops != NULL)
|
|
|
|
return 0;
|
2014-05-01 10:28:45 +00:00
|
|
|
lsp = nfs4_get_lock_state(state, fl->fl_owner);
|
2005-06-22 17:16:32 +00:00
|
|
|
if (lsp == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
fl->fl_u.nfs4_fl.owner = lsp;
|
|
|
|
fl->fl_ops = &nfs4_fl_lock_ops;
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-03-17 00:54:34 +00:00
|
|
|
static int nfs4_copy_lock_stateid(nfs4_stateid *dst,
|
|
|
|
struct nfs4_state *state,
|
2016-10-13 04:26:47 +00:00
|
|
|
const struct nfs_lock_context *l_ctx)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-06-22 17:16:32 +00:00
|
|
|
struct nfs4_lock_state *lsp;
|
2016-10-13 04:26:47 +00:00
|
|
|
fl_owner_t fl_owner, fl_flock_owner;
|
2013-03-17 00:54:34 +00:00
|
|
|
int ret = -ENOENT;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-10-13 04:26:47 +00:00
|
|
|
if (l_ctx == NULL)
|
2012-08-13 22:54:45 +00:00
|
|
|
goto out;
|
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
|
2012-03-08 22:42:01 +00:00
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-10-13 04:26:47 +00:00
|
|
|
fl_owner = l_ctx->lockowner;
|
2016-10-13 04:26:47 +00:00
|
|
|
fl_flock_owner = l_ctx->open_context->flock_owner;
|
|
|
|
|
2005-06-22 17:16:32 +00:00
|
|
|
spin_lock(&state->state_lock);
|
2016-10-13 04:26:47 +00:00
|
|
|
lsp = __nfs4_find_lock_state(state, fl_owner, fl_flock_owner);
|
2013-09-04 07:04:49 +00:00
|
|
|
if (lsp && test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
|
|
|
|
ret = -EIO;
|
|
|
|
else if (lsp != NULL && test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) {
|
2012-03-04 23:13:56 +00:00
|
|
|
nfs4_stateid_copy(dst, &lsp->ls_stateid);
|
2013-03-17 00:54:34 +00:00
|
|
|
ret = 0;
|
2012-03-08 22:42:01 +00:00
|
|
|
}
|
2005-06-22 17:16:32 +00:00
|
|
|
spin_unlock(&state->state_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
nfs4_put_lock_state(lsp);
|
2012-03-08 22:42:01 +00:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-11-06 20:28:05 +00:00
|
|
|
bool nfs4_refresh_open_stateid(nfs4_stateid *dst, struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
bool ret;
|
|
|
|
int seq;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = false;
|
|
|
|
seq = read_seqbegin(&state->seqlock);
|
|
|
|
if (nfs4_state_match_open_stateid_other(state, dst)) {
|
|
|
|
dst->seqid = state->open_stateid.seqid;
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
} while (read_seqretry(&state->seqlock, seq));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-11-06 20:28:06 +00:00
|
|
|
bool nfs4_copy_open_stateid(nfs4_stateid *dst, struct nfs4_state *state)
|
2012-03-08 22:42:01 +00:00
|
|
|
{
|
2017-11-06 20:28:06 +00:00
|
|
|
bool ret;
|
2013-04-20 05:25:45 +00:00
|
|
|
const nfs4_stateid *src;
|
2012-03-08 22:42:01 +00:00
|
|
|
int seq;
|
|
|
|
|
|
|
|
do {
|
2017-11-06 20:28:06 +00:00
|
|
|
ret = false;
|
2013-04-20 05:25:45 +00:00
|
|
|
src = &zero_stateid;
|
2012-03-08 22:42:01 +00:00
|
|
|
seq = read_seqbegin(&state->seqlock);
|
2017-11-06 20:28:06 +00:00
|
|
|
if (test_bit(NFS_OPEN_STATE, &state->flags)) {
|
2013-04-20 05:25:45 +00:00
|
|
|
src = &state->open_stateid;
|
2017-11-06 20:28:06 +00:00
|
|
|
ret = true;
|
|
|
|
}
|
2013-04-20 05:25:45 +00:00
|
|
|
nfs4_stateid_copy(dst, src);
|
2012-03-08 22:42:01 +00:00
|
|
|
} while (read_seqretry(&state->seqlock, seq));
|
2017-11-06 20:28:06 +00:00
|
|
|
return ret;
|
2012-03-08 22:42:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Byte-range lock aware utility to initialize the stateid of read/write
|
|
|
|
* requests.
|
|
|
|
*/
|
2016-05-16 21:42:44 +00:00
|
|
|
int nfs4_select_rw_stateid(struct nfs4_state *state,
|
2016-10-13 04:26:47 +00:00
|
|
|
fmode_t fmode, const struct nfs_lock_context *l_ctx,
|
2018-12-03 00:30:31 +00:00
|
|
|
nfs4_stateid *dst, const struct cred **cred)
|
2012-03-08 22:42:01 +00:00
|
|
|
{
|
2016-05-16 21:42:44 +00:00
|
|
|
int ret;
|
|
|
|
|
2016-09-22 17:39:20 +00:00
|
|
|
if (!nfs4_valid_open_stateid(state))
|
|
|
|
return -EIO;
|
2016-05-16 21:42:44 +00:00
|
|
|
if (cred != NULL)
|
|
|
|
*cred = NULL;
|
2016-10-13 04:26:47 +00:00
|
|
|
ret = nfs4_copy_lock_stateid(dst, state, l_ctx);
|
2013-09-04 07:04:49 +00:00
|
|
|
if (ret == -EIO)
|
|
|
|
/* A lost lock - don't even consider delegations */
|
|
|
|
goto out;
|
2014-02-18 15:36:05 +00:00
|
|
|
/* returns true if delegation stateid found and copied */
|
2016-05-16 21:42:44 +00:00
|
|
|
if (nfs4_copy_delegation_stateid(state->inode, fmode, dst, cred)) {
|
2014-02-18 15:36:05 +00:00
|
|
|
ret = 0;
|
2013-03-17 00:54:34 +00:00
|
|
|
goto out;
|
2014-02-18 15:36:05 +00:00
|
|
|
}
|
2013-03-17 00:54:34 +00:00
|
|
|
if (ret != -ENOENT)
|
2013-09-04 07:04:49 +00:00
|
|
|
/* nfs4_copy_delegation_stateid() didn't over-write
|
|
|
|
* dst, so it still has the lock stateid which we now
|
|
|
|
* choose to use.
|
|
|
|
*/
|
2013-03-17 00:54:34 +00:00
|
|
|
goto out;
|
2014-03-04 18:12:03 +00:00
|
|
|
nfs4_copy_open_stateid(dst, state);
|
|
|
|
ret = 0;
|
2013-03-17 00:54:34 +00:00
|
|
|
out:
|
2013-03-17 19:31:15 +00:00
|
|
|
if (nfs_server_capable(state->inode, NFS_CAP_STATEID_NFSV41))
|
|
|
|
dst->seqid = 0;
|
2013-03-17 00:54:34 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2010-05-13 16:51:01 +00:00
|
|
|
struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask)
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
{
|
|
|
|
struct nfs_seqid *new;
|
|
|
|
|
2010-05-13 16:51:01 +00:00
|
|
|
new = kmalloc(sizeof(*new), gfp_mask);
|
2015-01-23 23:48:00 +00:00
|
|
|
if (new == NULL)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
new->sequence = counter;
|
|
|
|
INIT_LIST_HEAD(&new->list);
|
|
|
|
new->task = NULL;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2009-12-15 19:47:36 +00:00
|
|
|
void nfs_release_seqid(struct nfs_seqid *seqid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-01-20 23:47:05 +00:00
|
|
|
struct nfs_seqid_counter *sequence;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
|
2015-01-24 00:04:44 +00:00
|
|
|
if (seqid == NULL || list_empty(&seqid->list))
|
2012-01-20 23:47:05 +00:00
|
|
|
return;
|
|
|
|
sequence = seqid->sequence;
|
|
|
|
spin_lock(&sequence->lock);
|
|
|
|
list_del_init(&seqid->list);
|
|
|
|
if (!list_empty(&sequence->list)) {
|
|
|
|
struct nfs_seqid *next;
|
|
|
|
|
|
|
|
next = list_first_entry(&sequence->list,
|
|
|
|
struct nfs_seqid, list);
|
|
|
|
rpc_wake_up_queued_task(&sequence->wait, next->task);
|
2008-01-08 22:56:07 +00:00
|
|
|
}
|
2012-01-20 23:47:05 +00:00
|
|
|
spin_unlock(&sequence->lock);
|
2009-12-15 19:47:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void nfs_free_seqid(struct nfs_seqid *seqid)
|
|
|
|
{
|
|
|
|
nfs_release_seqid(seqid);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
kfree(seqid);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
* Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
|
|
|
|
* failed with a seqid incrementing error -
|
2013-12-12 18:09:00 +00:00
|
|
|
* see comments nfs4.h:seqid_mutating_error()
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
*/
|
2007-07-02 18:03:03 +00:00
|
|
|
static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
{
|
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case -NFS4ERR_BAD_SEQID:
|
2007-07-08 20:49:11 +00:00
|
|
|
if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
|
|
|
|
return;
|
2012-03-12 22:01:48 +00:00
|
|
|
pr_warn_ratelimited("NFS: v4 server returned a bad"
|
2008-02-13 21:09:35 +00:00
|
|
|
" sequence-id error on an"
|
|
|
|
" unconfirmed sequence %p!\n",
|
2007-07-08 20:49:11 +00:00
|
|
|
seqid->sequence);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
case -NFS4ERR_STALE_CLIENTID:
|
|
|
|
case -NFS4ERR_STALE_STATEID:
|
|
|
|
case -NFS4ERR_BAD_STATEID:
|
|
|
|
case -NFS4ERR_BADXDR:
|
|
|
|
case -NFS4ERR_RESOURCE:
|
|
|
|
case -NFS4ERR_NOFILEHANDLE:
|
2017-01-26 20:14:52 +00:00
|
|
|
case -NFS4ERR_MOVED:
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
/* Non-seqid mutating errors */
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
/*
|
|
|
|
* Note: no locking needed as we are guaranteed to be first
|
|
|
|
* on the sequence list
|
|
|
|
*/
|
|
|
|
seqid->sequence->counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
|
|
|
|
{
|
2015-01-24 00:04:44 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
|
|
|
|
|
|
|
if (seqid == NULL)
|
|
|
|
return;
|
2009-04-01 13:22:52 +00:00
|
|
|
|
2015-01-24 00:04:44 +00:00
|
|
|
sp = container_of(seqid->sequence, struct nfs4_state_owner, so_seqid);
|
2009-04-01 13:22:52 +00:00
|
|
|
if (status == -NFS4ERR_BAD_SEQID)
|
2016-12-19 00:48:23 +00:00
|
|
|
nfs4_reset_state_owner(sp);
|
2015-01-24 00:04:44 +00:00
|
|
|
if (!nfs4_has_session(sp->so_server->nfs_client))
|
2009-04-01 13:22:52 +00:00
|
|
|
nfs_increment_seqid(status, seqid);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Increment the seqid if the LOCK/LOCKU succeeded, or
|
|
|
|
* failed with a seqid incrementing error -
|
2013-12-12 18:09:00 +00:00
|
|
|
* see comments nfs4.h:seqid_mutating_error()
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
*/
|
|
|
|
void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
|
|
|
|
{
|
2015-01-24 00:04:44 +00:00
|
|
|
if (seqid != NULL)
|
|
|
|
nfs_increment_seqid(status, seqid);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
|
|
|
|
{
|
2015-01-24 00:04:44 +00:00
|
|
|
struct nfs_seqid_counter *sequence;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
int status = 0;
|
|
|
|
|
2015-01-24 00:04:44 +00:00
|
|
|
if (seqid == NULL)
|
|
|
|
goto out;
|
|
|
|
sequence = seqid->sequence;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
spin_lock(&sequence->lock);
|
2012-01-20 23:47:05 +00:00
|
|
|
seqid->task = task;
|
2008-01-08 22:56:07 +00:00
|
|
|
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;
|
2008-02-22 21:34:17 +00:00
|
|
|
rpc_sleep_on(&sequence->wait, task, NULL);
|
2008-01-08 22:56:07 +00:00
|
|
|
status = -EAGAIN;
|
|
|
|
unlock:
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
spin_unlock(&sequence->lock);
|
2015-01-24 00:04:44 +00:00
|
|
|
out:
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
return status;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:48 +00:00
|
|
|
static int nfs4_run_state_manager(void *);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-23 20:21:48 +00:00
|
|
|
static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
|
2006-01-03 08:55:22 +00:00
|
|
|
{
|
2014-03-17 17:06:10 +00:00
|
|
|
smp_mb__before_atomic();
|
2008-12-23 20:21:48 +00:00
|
|
|
clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
|
2014-03-17 17:06:10 +00:00
|
|
|
smp_mb__after_atomic();
|
2008-12-23 20:21:48 +00:00
|
|
|
wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
|
2006-01-03 08:55:22 +00:00
|
|
|
rpc_wake_up(&clp->cl_rpcwaitq);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-12-23 20:21:48 +00:00
|
|
|
* Schedule the nfs_client asynchronous state management routine
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2008-12-23 20:21:50 +00:00
|
|
|
void nfs4_schedule_state_manager(struct nfs_client *clp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-03 08:55:23 +00:00
|
|
|
struct task_struct *task;
|
2012-03-01 22:00:56 +00:00
|
|
|
char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1];
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2018-11-20 01:11:45 +00:00
|
|
|
set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
|
2008-12-23 20:21:48 +00:00
|
|
|
if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
|
|
|
|
return;
|
2006-01-03 08:55:23 +00:00
|
|
|
__module_get(THIS_MODULE);
|
2017-10-20 09:53:38 +00:00
|
|
|
refcount_inc(&clp->cl_count);
|
2012-03-01 22:00:56 +00:00
|
|
|
|
|
|
|
/* 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();
|
2013-07-03 22:04:58 +00:00
|
|
|
task = kthread_run(nfs4_run_state_manager, clp, "%s", buf);
|
2012-03-01 22:00:56 +00:00
|
|
|
if (IS_ERR(task)) {
|
|
|
|
printk(KERN_ERR "%s: kthread_run: %ld\n",
|
|
|
|
__func__, PTR_ERR(task));
|
|
|
|
nfs4_clear_state_manager_bit(clp);
|
|
|
|
nfs_put_client(clp);
|
|
|
|
module_put(THIS_MODULE);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-03-09 21:00:53 +00:00
|
|
|
* Schedule a lease recovery attempt
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2011-03-09 21:00:53 +00:00
|
|
|
void nfs4_schedule_lease_recovery(struct nfs_client *clp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (!clp)
|
|
|
|
return;
|
2008-12-23 20:21:42 +00:00
|
|
|
if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
|
|
|
|
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: scheduling lease recovery for server %s\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2008-12-23 20:21:48 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-03-07 15:49:41 +00:00
|
|
|
EXPORT_SYMBOL_GPL(nfs4_schedule_lease_recovery);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-17 18:13:02 +00:00
|
|
|
/**
|
|
|
|
* 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(const struct 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__,
|
|
|
|
(unsigned long long)server->fsid.major,
|
|
|
|
(unsigned long long)server->fsid.minor,
|
|
|
|
clp->cl_hostname);
|
|
|
|
|
|
|
|
set_bit(NFS_MIG_IN_TRANSITION,
|
|
|
|
&((struct nfs_server *)server)->mig_status);
|
|
|
|
set_bit(NFS4CLNT_MOVED, &clp->cl_state);
|
|
|
|
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nfs4_schedule_migration_recovery);
|
|
|
|
|
2013-10-17 18:13:35 +00:00
|
|
|
/**
|
|
|
|
* nfs4_schedule_lease_moved_recovery - start lease-moved recovery
|
|
|
|
*
|
|
|
|
* @clp: server to check for moved leases
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void nfs4_schedule_lease_moved_recovery(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
dprintk("%s: scheduling lease-moved recovery for client ID %llx on %s\n",
|
|
|
|
__func__, clp->cl_clientid, clp->cl_hostname);
|
|
|
|
|
|
|
|
set_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state);
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(nfs4_schedule_lease_moved_recovery);
|
|
|
|
|
2012-11-26 18:13:29 +00:00
|
|
|
int nfs4_wait_clnt_recover(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
might_sleep();
|
|
|
|
|
2017-10-20 09:53:38 +00:00
|
|
|
refcount_inc(&clp->cl_count);
|
sched: Remove proliferation of wait_on_bit() action functions
The current "wait_on_bit" interface requires an 'action'
function to be provided which does the actual waiting.
There are over 20 such functions, many of them identical.
Most cases can be satisfied by one of just two functions, one
which uses io_schedule() and one which just uses schedule().
So:
Rename wait_on_bit and wait_on_bit_lock to
wait_on_bit_action and wait_on_bit_lock_action
to make it explicit that they need an action function.
Introduce new wait_on_bit{,_lock} and wait_on_bit{,_lock}_io
which are *not* given an action function but implicitly use
a standard one.
The decision to error-out if a signal is pending is now made
based on the 'mode' argument rather than being encoded in the action
function.
All instances of the old wait_on_bit and wait_on_bit_lock which
can use the new version have been changed accordingly and their
action functions have been discarded.
wait_on_bit{_lock} does not return any specific error code in the
event of a signal so the caller must check for non-zero and
interpolate their own error code as appropriate.
The wait_on_bit() call in __fscache_wait_on_invalidate() was
ambiguous as it specified TASK_UNINTERRUPTIBLE but used
fscache_wait_bit_interruptible as an action function.
David Howells confirms this should be uniformly
"uninterruptible"
The main remaining user of wait_on_bit{,_lock}_action is NFS
which needs to use a freezer-aware schedule() call.
A comment in fs/gfs2/glock.c notes that having multiple 'action'
functions is useful as they display differently in the 'wchan'
field of 'ps'. (and /proc/$PID/wchan).
As the new bit_wait{,_io} functions are tagged "__sched", they
will not show up at all, but something higher in the stack. So
the distinction will still be visible, only with different
function names (gds2_glock_wait versus gfs2_glock_dq_wait in the
gfs2/glock.c case).
Since first version of this patch (against 3.15) two new action
functions appeared, on in NFS and one in CIFS. CIFS also now
uses an action function that makes the same freezer aware
schedule call as NFS.
Signed-off-by: NeilBrown <neilb@suse.de>
Acked-by: David Howells <dhowells@redhat.com> (fscache, keys)
Acked-by: Steven Whitehouse <swhiteho@redhat.com> (gfs2)
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Steve French <sfrench@samba.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: http://lkml.kernel.org/r/20140707051603.28027.72349.stgit@notabene.brown
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2014-07-07 05:16:04 +00:00
|
|
|
res = wait_on_bit_action(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
|
|
|
|
nfs_wait_bit_killable, TASK_KILLABLE);
|
2012-11-26 18:13:29 +00:00
|
|
|
if (res)
|
2013-10-17 18:14:10 +00:00
|
|
|
goto out;
|
2012-11-26 18:13:29 +00:00
|
|
|
if (clp->cl_cons_state < 0)
|
2013-10-17 18:14:10 +00:00
|
|
|
res = clp->cl_cons_state;
|
|
|
|
out:
|
|
|
|
nfs_put_client(clp);
|
|
|
|
return res;
|
2012-11-26 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int nfs4_client_recover_expired_lease(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
unsigned int 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;
|
|
|
|
}
|
|
|
|
|
2012-03-10 16:23:15 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static void nfs40_handle_cb_pathdown(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
|
|
|
|
nfs_expire_all_delegations(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: handling CB_PATHDOWN recovery for server %s\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2012-03-10 16:23:15 +00:00
|
|
|
}
|
|
|
|
|
2011-08-24 19:07:37 +00:00
|
|
|
void nfs4_schedule_path_down_recovery(struct nfs_client *clp)
|
|
|
|
{
|
2012-03-10 16:23:15 +00:00
|
|
|
nfs40_handle_cb_pathdown(clp);
|
2011-08-24 19:07:37 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
}
|
|
|
|
|
2011-03-09 21:12:46 +00:00
|
|
|
static int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
|
2008-12-23 20:21:41 +00:00
|
|
|
{
|
|
|
|
|
2016-09-22 17:39:20 +00:00
|
|
|
if (!nfs4_valid_open_stateid(state))
|
|
|
|
return 0;
|
2008-12-23 20:21:41 +00:00
|
|
|
set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
|
|
|
|
/* Don't recover state that expired before the reboot */
|
|
|
|
if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
|
|
|
|
clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-12-23 20:21:43 +00:00
|
|
|
set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
|
2008-12-23 20:21:41 +00:00
|
|
|
set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-02-13 00:15:06 +00:00
|
|
|
int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
|
2008-12-23 20:21:41 +00:00
|
|
|
{
|
2016-09-22 17:39:20 +00:00
|
|
|
if (!nfs4_valid_open_stateid(state))
|
|
|
|
return 0;
|
2008-12-23 20:21:41 +00:00
|
|
|
set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
|
|
|
|
clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
|
2008-12-23 20:21:43 +00:00
|
|
|
set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
|
2008-12-23 20:21:41 +00:00
|
|
|
set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-03-14 20:57:48 +00:00
|
|
|
int nfs4_schedule_stateid_recovery(const struct nfs_server *server, struct nfs4_state *state)
|
2011-03-09 21:00:53 +00:00
|
|
|
{
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
|
|
|
|
2016-09-22 17:39:20 +00:00
|
|
|
if (!nfs4_state_mark_reclaim_nograce(clp, state))
|
2013-03-14 20:57:48 +00:00
|
|
|
return -EBADF;
|
2018-09-05 18:07:14 +00:00
|
|
|
nfs_inode_find_delegation_state_and_recover(state->inode,
|
|
|
|
&state->stateid);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: scheduling stateid recovery for server %s\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2011-03-09 21:00:53 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
2013-03-14 20:57:48 +00:00
|
|
|
return 0;
|
2011-03-09 21:00:53 +00:00
|
|
|
}
|
2012-03-07 15:49:41 +00:00
|
|
|
EXPORT_SYMBOL_GPL(nfs4_schedule_stateid_recovery);
|
2011-03-09 21:00:53 +00:00
|
|
|
|
2016-09-22 17:39:07 +00:00
|
|
|
static struct nfs4_lock_state *
|
|
|
|
nfs_state_find_lock_state_by_stateid(struct nfs4_state *state,
|
|
|
|
const nfs4_stateid *stateid)
|
|
|
|
{
|
|
|
|
struct nfs4_lock_state *pos;
|
|
|
|
|
|
|
|
list_for_each_entry(pos, &state->lock_states, ls_locks) {
|
|
|
|
if (!test_bit(NFS_LOCK_INITIALIZED, &pos->ls_flags))
|
|
|
|
continue;
|
|
|
|
if (nfs4_stateid_match_other(&pos->ls_stateid, stateid))
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool nfs_state_lock_state_matches_stateid(struct nfs4_state *state,
|
|
|
|
const nfs4_stateid *stateid)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
if (test_bit(LK_STATE_IN_USE, &state->flags)) {
|
|
|
|
spin_lock(&state->state_lock);
|
|
|
|
if (nfs_state_find_lock_state_by_stateid(state, stateid))
|
|
|
|
found = true;
|
|
|
|
spin_unlock(&state->state_lock);
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2012-03-06 00:56:44 +00:00
|
|
|
void nfs_inode_find_state_and_recover(struct inode *inode,
|
|
|
|
const nfs4_stateid *stateid)
|
|
|
|
{
|
|
|
|
struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
|
|
|
|
struct nfs_inode *nfsi = NFS_I(inode);
|
|
|
|
struct nfs_open_context *ctx;
|
|
|
|
struct nfs4_state *state;
|
|
|
|
bool found = false;
|
|
|
|
|
2018-09-02 19:57:01 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
|
2012-03-06 00:56:44 +00:00
|
|
|
state = ctx->state;
|
|
|
|
if (state == NULL)
|
|
|
|
continue;
|
2016-09-22 17:39:20 +00:00
|
|
|
if (nfs4_stateid_match_other(&state->stateid, stateid) &&
|
|
|
|
nfs4_state_mark_reclaim_nograce(clp, state)) {
|
2016-09-22 17:39:07 +00:00
|
|
|
found = true;
|
2012-03-06 00:56:44 +00:00
|
|
|
continue;
|
2016-09-22 17:39:07 +00:00
|
|
|
}
|
2017-11-06 20:28:11 +00:00
|
|
|
if (nfs4_stateid_match_other(&state->open_stateid, stateid) &&
|
|
|
|
nfs4_state_mark_reclaim_nograce(clp, state)) {
|
|
|
|
found = true;
|
|
|
|
continue;
|
|
|
|
}
|
2016-09-22 17:39:20 +00:00
|
|
|
if (nfs_state_lock_state_matches_stateid(state, stateid) &&
|
|
|
|
nfs4_state_mark_reclaim_nograce(clp, state))
|
2016-09-22 17:39:07 +00:00
|
|
|
found = true;
|
2012-03-06 00:56:44 +00:00
|
|
|
}
|
2018-09-02 19:57:01 +00:00
|
|
|
rcu_read_unlock();
|
2016-09-22 17:39:07 +00:00
|
|
|
|
|
|
|
nfs_inode_find_delegation_state_and_recover(inode, stateid);
|
2012-03-06 00:56:44 +00:00
|
|
|
if (found)
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
}
|
|
|
|
|
2013-03-18 23:45:14 +00:00
|
|
|
static void nfs4_state_mark_open_context_bad(struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
struct inode *inode = state->inode;
|
|
|
|
struct nfs_inode *nfsi = NFS_I(inode);
|
|
|
|
struct nfs_open_context *ctx;
|
|
|
|
|
2018-09-02 19:57:01 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
|
2013-03-18 23:45:14 +00:00
|
|
|
if (ctx->state != state)
|
|
|
|
continue;
|
|
|
|
set_bit(NFS_CONTEXT_BAD, &ctx->flags);
|
|
|
|
}
|
2018-09-02 19:57:01 +00:00
|
|
|
rcu_read_unlock();
|
2013-03-18 23:45:14 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 20:57:48 +00:00
|
|
|
static void nfs4_state_mark_recovery_failed(struct nfs4_state *state, int error)
|
|
|
|
{
|
|
|
|
set_bit(NFS_STATE_RECOVERY_FAILED, &state->flags);
|
2013-03-18 23:45:14 +00:00
|
|
|
nfs4_state_mark_open_context_bad(state);
|
2013-03-14 20:57:48 +00:00
|
|
|
}
|
|
|
|
|
2012-03-06 00:56:44 +00:00
|
|
|
|
2008-12-23 20:21:40 +00:00
|
|
|
static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct inode *inode = state->inode;
|
2008-12-23 20:21:44 +00:00
|
|
|
struct nfs_inode *nfsi = NFS_I(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
struct file_lock *fl;
|
2017-12-12 22:57:09 +00:00
|
|
|
struct nfs4_lock_state *lsp;
|
2005-04-16 22:20:36 +00:00
|
|
|
int status = 0;
|
2015-01-16 20:05:55 +00:00
|
|
|
struct file_lock_context *flctx = inode->i_flctx;
|
2015-01-16 20:05:55 +00:00
|
|
|
struct list_head *list;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-16 20:05:55 +00:00
|
|
|
if (flctx == NULL)
|
2009-06-17 20:23:00 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-01-16 20:05:55 +00:00
|
|
|
list = &flctx->flc_posix;
|
|
|
|
|
2009-06-17 20:23:00 +00:00
|
|
|
/* Guard against delegation returns and new lock/unlock calls */
|
2008-12-23 20:21:44 +00:00
|
|
|
down_write(&nfsi->rwsem);
|
2015-01-16 20:05:57 +00:00
|
|
|
spin_lock(&flctx->flc_lock);
|
2015-01-16 20:05:55 +00:00
|
|
|
restart:
|
|
|
|
list_for_each_entry(fl, list, fl_list) {
|
2015-01-16 20:05:55 +00:00
|
|
|
if (nfs_file_open_context(fl->fl_file)->state != state)
|
|
|
|
continue;
|
2015-01-16 20:05:57 +00:00
|
|
|
spin_unlock(&flctx->flc_lock);
|
2015-01-16 20:05:55 +00:00
|
|
|
status = ops->recover_lock(state, fl);
|
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
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);
|
2018-08-01 02:18:44 +00:00
|
|
|
/* Fall through */
|
2015-01-16 20:05:55 +00:00
|
|
|
case -ENOMEM:
|
|
|
|
case -NFS4ERR_DENIED:
|
|
|
|
case -NFS4ERR_RECLAIM_BAD:
|
|
|
|
case -NFS4ERR_RECLAIM_CONFLICT:
|
2017-12-12 22:57:09 +00:00
|
|
|
lsp = fl->fl_u.nfs4_fl.owner;
|
|
|
|
if (lsp)
|
|
|
|
set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
|
2015-01-16 20:05:55 +00:00
|
|
|
status = 0;
|
|
|
|
}
|
2015-01-16 20:05:57 +00:00
|
|
|
spin_lock(&flctx->flc_lock);
|
2015-01-16 20:05:55 +00:00
|
|
|
}
|
2015-01-16 20:05:55 +00:00
|
|
|
if (list == &flctx->flc_posix) {
|
|
|
|
list = &flctx->flc_flock;
|
|
|
|
goto restart;
|
|
|
|
}
|
2015-01-16 20:05:57 +00:00
|
|
|
spin_unlock(&flctx->flc_lock);
|
2009-06-17 20:22:59 +00:00
|
|
|
out:
|
2008-12-23 20:21:44 +00:00
|
|
|
up_write(&nfsi->rwsem);
|
2005-04-16 22:20:36 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:12:13 +00:00
|
|
|
#ifdef CONFIG_NFS_V4_2
|
|
|
|
static void nfs42_complete_copies(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
struct nfs4_copy_state *copy;
|
|
|
|
|
|
|
|
if (!test_bit(NFS_CLNT_DST_SSC_COPY_STATE, &state->flags))
|
|
|
|
return;
|
|
|
|
|
|
|
|
spin_lock(&sp->so_server->nfs_client->cl_lock);
|
|
|
|
list_for_each_entry(copy, &sp->so_server->ss_copies, copies) {
|
2018-12-06 16:10:36 +00:00
|
|
|
if (!nfs4_stateid_match_other(&state->stateid, ©->parent_state->stateid))
|
2018-09-20 20:12:13 +00:00
|
|
|
continue;
|
|
|
|
copy->flags = 1;
|
|
|
|
complete(©->completion);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
spin_unlock(&sp->so_server->nfs_client->cl_lock);
|
|
|
|
}
|
|
|
|
#else /* !CONFIG_NFS_V4_2 */
|
|
|
|
static inline void nfs42_complete_copies(struct nfs4_state_owner *sp,
|
|
|
|
struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NFS_V4_2 */
|
|
|
|
|
2018-09-11 20:23:46 +00:00
|
|
|
static int __nfs4_reclaim_open_state(struct nfs4_state_owner *sp, struct nfs4_state *state,
|
|
|
|
const struct nfs4_state_recovery_ops *ops)
|
|
|
|
{
|
|
|
|
struct nfs4_lock_state *lock;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
status = ops->recover_open(sp, state);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
status = nfs4_reclaim_locks(state, ops);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) {
|
|
|
|
spin_lock(&state->state_lock);
|
|
|
|
list_for_each_entry(lock, &state->lock_states, ls_locks) {
|
|
|
|
if (!test_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags))
|
|
|
|
pr_warn_ratelimited("NFS: %s: Lock reclaim failed!\n", __func__);
|
|
|
|
}
|
|
|
|
spin_unlock(&state->state_lock);
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:12:13 +00:00
|
|
|
nfs42_complete_copies(sp, state);
|
2018-09-11 20:23:46 +00:00
|
|
|
clear_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:40 +00:00
|
|
|
static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct nfs4_state *state;
|
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
*/
|
2008-12-23 20:21:43 +00:00
|
|
|
spin_lock(&sp->so_lock);
|
2014-06-05 14:42:37 +00:00
|
|
|
raw_write_seqcount_begin(&sp->so_reclaim_seqcount);
|
2013-02-07 19:41:11 +00:00
|
|
|
restart:
|
2005-04-16 22:20:36 +00:00
|
|
|
list_for_each_entry(state, &sp->so_states, open_states) {
|
2008-12-23 20:21:41 +00:00
|
|
|
if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
|
|
|
|
continue;
|
2013-03-14 20:57:48 +00:00
|
|
|
if (!nfs4_valid_open_stateid(state))
|
|
|
|
continue;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (state->state == 0)
|
|
|
|
continue;
|
2018-09-02 23:19:07 +00:00
|
|
|
refcount_inc(&state->count);
|
2008-12-23 20:21:43 +00:00
|
|
|
spin_unlock(&sp->so_lock);
|
2018-09-11 20:23:46 +00:00
|
|
|
status = __nfs4_reclaim_open_state(sp, state, ops);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (status) {
|
2018-09-11 20:23:47 +00:00
|
|
|
default:
|
|
|
|
if (status >= 0)
|
2008-12-23 20:21:41 +00:00
|
|
|
break;
|
2018-09-11 20:23:47 +00:00
|
|
|
printk(KERN_ERR "NFS: %s: unhandled error %d\n", __func__, status);
|
|
|
|
/* Fall through */
|
|
|
|
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);
|
|
|
|
/* Fall through */
|
|
|
|
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);
|
|
|
|
case -NFS4ERR_STALE_CLIENTID:
|
|
|
|
case -NFS4ERR_BADSESSION:
|
|
|
|
case -NFS4ERR_BADSLOT:
|
|
|
|
case -NFS4ERR_BAD_HIGH_SLOT:
|
|
|
|
case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
|
|
|
|
goto out_err;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-12-23 20:21:43 +00:00
|
|
|
nfs4_put_open_state(state);
|
2013-02-07 19:41:11 +00:00
|
|
|
spin_lock(&sp->so_lock);
|
2008-12-23 20:21:43 +00:00
|
|
|
goto restart;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2014-06-05 14:42:37 +00:00
|
|
|
raw_write_seqcount_end(&sp->so_reclaim_seqcount);
|
2008-12-23 20:21:43 +00:00
|
|
|
spin_unlock(&sp->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
out_err:
|
2008-12-23 20:21:43 +00:00
|
|
|
nfs4_put_open_state(state);
|
2013-02-07 19:41:11 +00:00
|
|
|
spin_lock(&sp->so_lock);
|
2014-06-05 14:42:37 +00:00
|
|
|
raw_write_seqcount_end(&sp->so_reclaim_seqcount);
|
2013-02-07 19:41:11 +00:00
|
|
|
spin_unlock(&sp->so_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:41 +00:00
|
|
|
static void nfs4_clear_open_state(struct nfs4_state *state)
|
|
|
|
{
|
|
|
|
struct nfs4_lock_state *lock;
|
|
|
|
|
|
|
|
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
|
|
|
clear_bit(NFS_O_RDONLY_STATE, &state->flags);
|
|
|
|
clear_bit(NFS_O_WRONLY_STATE, &state->flags);
|
|
|
|
clear_bit(NFS_O_RDWR_STATE, &state->flags);
|
2011-12-09 21:31:52 +00:00
|
|
|
spin_lock(&state->state_lock);
|
2008-12-23 20:21:41 +00:00
|
|
|
list_for_each_entry(lock, &state->lock_states, ls_locks) {
|
|
|
|
lock->ls_seqid.flags = 0;
|
2012-09-10 17:26:49 +00:00
|
|
|
clear_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags);
|
2008-12-23 20:21:41 +00:00
|
|
|
}
|
2011-12-09 21:31:52 +00:00
|
|
|
spin_unlock(&state->state_lock);
|
2008-12-23 20:21:41 +00:00
|
|
|
}
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
static void nfs4_reset_seqids(struct nfs_server *server,
|
|
|
|
int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_client *clp = server->nfs_client;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
2007-07-02 17:58:33 +00:00
|
|
|
struct rb_node *pos;
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
struct nfs4_state *state;
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_lock(&clp->cl_lock);
|
|
|
|
for (pos = rb_first(&server->state_owners);
|
|
|
|
pos != NULL;
|
|
|
|
pos = rb_next(pos)) {
|
|
|
|
sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
sp->so_seqid.flags = 0;
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_lock(&sp->so_lock);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
list_for_each_entry(state, &sp->so_states, open_states) {
|
2008-12-23 20:21:41 +00:00
|
|
|
if (mark_reclaim(clp, state))
|
|
|
|
nfs4_clear_open_state(state);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
}
|
2005-10-20 21:22:47 +00:00
|
|
|
spin_unlock(&sp->so_lock);
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
}
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp,
|
|
|
|
int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
|
|
|
|
{
|
|
|
|
struct nfs_server *server;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
|
|
|
|
nfs4_reset_seqids(server, mark_reclaim);
|
|
|
|
rcu_read_unlock();
|
NFSv4: Add functions to order RPC calls
NFSv4 file state-changing functions such as OPEN, CLOSE, LOCK,... are all
labelled with "sequence identifiers" in order to prevent the server from
reordering RPC requests, as this could cause its file state to
become out of sync with the client.
Currently the NFS client code enforces this ordering locally using
semaphores to restrict access to structures until the RPC call is done.
This, of course, only works with synchronous RPC calls, since the
user process must first grab the semaphore.
By dropping semaphores, and instead teaching the RPC engine to hold
the RPC calls until they are ready to be sent, we can extend this
process to work nicely with asynchronous RPC calls too.
This patch adds a new list called "rpc_sequence" that defines the order
of the RPC calls to be sent. We add one such list for each state_owner.
When an RPC call is ready to be sent, it checks if it is top of the
rpc_sequence list. If so, it proceeds. If not, it goes back to sleep,
and loops until it hits top of the list.
Once the RPC call has completed, it can then bump the sequence id counter,
and remove itself from the rpc_sequence list, and then wake up the next
sleeper.
Note that the state_owner sequence ids and lock_owner sequence ids are
all indexed to the same rpc_sequence list, so OPEN, LOCK,... requests
are all ordered w.r.t. each other.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2005-10-18 21:20:12 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:41 +00:00
|
|
|
static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
/* Mark all delegations for reclaim */
|
|
|
|
nfs_delegation_mark_reclaim(clp);
|
|
|
|
nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
|
|
|
|
}
|
|
|
|
|
2017-05-04 17:44:04 +00:00
|
|
|
static int nfs4_reclaim_complete(struct nfs_client *clp,
|
2013-05-20 15:05:17 +00:00
|
|
|
const struct nfs4_state_recovery_ops *ops,
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred)
|
2009-12-05 21:08:41 +00:00
|
|
|
{
|
|
|
|
/* Notify the server we're done reclaiming our state */
|
|
|
|
if (ops->reclaim_complete)
|
2017-05-04 17:44:04 +00:00
|
|
|
return ops->reclaim_complete(clp, cred);
|
|
|
|
return 0;
|
2009-12-05 21:08:41 +00:00
|
|
|
}
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
static void nfs4_clear_reclaim_server(struct nfs_server *server)
|
2008-12-23 20:21:41 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs_client *clp = server->nfs_client;
|
2008-12-23 20:21:41 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
|
|
|
struct rb_node *pos;
|
|
|
|
struct nfs4_state *state;
|
|
|
|
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_lock(&clp->cl_lock);
|
|
|
|
for (pos = rb_first(&server->state_owners);
|
|
|
|
pos != NULL;
|
|
|
|
pos = rb_next(pos)) {
|
|
|
|
sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
|
2008-12-23 20:21:41 +00:00
|
|
|
spin_lock(&sp->so_lock);
|
|
|
|
list_for_each_entry(state, &sp->so_states, open_states) {
|
2010-12-24 01:32:43 +00:00
|
|
|
if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT,
|
|
|
|
&state->flags))
|
2008-12-23 20:21:41 +00:00
|
|
|
continue;
|
|
|
|
nfs4_state_mark_reclaim_nograce(clp, state);
|
|
|
|
}
|
|
|
|
spin_unlock(&sp->so_lock);
|
|
|
|
}
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nfs4_state_clear_reclaim_reboot(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
struct nfs_server *server;
|
|
|
|
|
|
|
|
if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
|
|
|
|
nfs4_clear_reclaim_server(server);
|
|
|
|
rcu_read_unlock();
|
2008-12-23 20:21:41 +00:00
|
|
|
|
|
|
|
nfs_delegation_reap_unclaimed(clp);
|
2010-10-04 21:59:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
|
|
|
|
{
|
2013-05-20 15:05:17 +00:00
|
|
|
const struct nfs4_state_recovery_ops *ops;
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2017-05-04 17:44:04 +00:00
|
|
|
int err;
|
2013-05-20 15:05:17 +00:00
|
|
|
|
2010-10-04 21:59:08 +00:00
|
|
|
if (!nfs4_state_clear_reclaim_reboot(clp))
|
|
|
|
return;
|
2013-05-20 15:05:17 +00:00
|
|
|
ops = clp->cl_mvops->reboot_recovery_ops;
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2017-05-04 17:44:04 +00:00
|
|
|
err = nfs4_reclaim_complete(clp, ops, cred);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2017-05-04 17:44:04 +00:00
|
|
|
if (err == -NFS4ERR_CONN_NOT_BOUND_TO_SESSION)
|
|
|
|
set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
|
2008-12-23 20:21:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
|
|
|
|
{
|
2016-09-22 17:38:59 +00:00
|
|
|
nfs_mark_test_expired_all_delegations(clp);
|
2008-12-23 20:21:41 +00:00
|
|
|
nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
|
|
|
|
}
|
|
|
|
|
2009-12-03 20:53:20 +00:00
|
|
|
static int nfs4_recovery_handle_error(struct nfs_client *clp, int error)
|
2008-12-23 20:21:42 +00:00
|
|
|
{
|
|
|
|
switch (error) {
|
2018-09-11 20:23:48 +00:00
|
|
|
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;
|
2008-12-23 20:21:42 +00:00
|
|
|
}
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: handled error %d for server %s\n", __func__, error,
|
|
|
|
clp->cl_hostname);
|
2011-12-01 21:31:34 +00:00
|
|
|
return 0;
|
2008-12-23 20:21:42 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:40 +00:00
|
|
|
static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-12-24 01:32:43 +00:00
|
|
|
struct nfs4_state_owner *sp;
|
|
|
|
struct nfs_server *server;
|
2007-07-02 17:58:33 +00:00
|
|
|
struct rb_node *pos;
|
2005-04-16 22:20:36 +00:00
|
|
|
int status = 0;
|
|
|
|
|
2008-12-23 20:21:43 +00:00
|
|
|
restart:
|
2010-12-24 01:32:43 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
|
NFS: Cache state owners after files are closed
Servers have a finite amount of memory to store NFSv4 open and lock
owners. Moreover, servers may have a difficult time determining when
they can reap their state owner table, thanks to gray areas in the
NFSv4 protocol specification. Thus clients should be careful to reuse
state owners when possible.
Currently Linux is not too careful. When a user has closed all her
files on one mount point, the state owner's reference count goes to
zero, and it is released. The next OPEN allocates a new one. A
workload that serially opens and closes files can run through a large
number of open owners this way.
When a state owner's reference count goes to zero, slap it onto a free
list for that nfs_server, with an expiry time. Garbage collect before
looking for a state owner. This makes state owners for active users
available for re-use.
Now that there can be unused state owners remaining at umount time,
purge the state owner free list when a server is destroyed. Also be
sure not to reclaim unused state owners during state recovery.
This change has benefits for the client as well. For some workloads,
this approach drops the number of OPEN_CONFIRM calls from the same as
the number of OPEN calls, down to just one. This reduces wire traffic
and thus open(2) latency. Before this patch, untarring a kernel
source tarball shows the OPEN_CONFIRM call counter steadily increasing
through the test. With the patch, the OPEN_CONFIRM count remains at 1
throughout the entire untar.
As long as the expiry time is kept short, I don't think garbage
collection should be terribly expensive, although it does bounce the
clp->cl_lock around a bit.
[ At some point we should rationalize the use of the nfs_server
->destroy method. ]
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
[Trond: Fixed a garbage collection race and a few efficiency issues]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2011-12-06 21:13:48 +00:00
|
|
|
nfs4_purge_state_owners(server);
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_lock(&clp->cl_lock);
|
|
|
|
for (pos = rb_first(&server->state_owners);
|
|
|
|
pos != NULL;
|
|
|
|
pos = rb_next(pos)) {
|
|
|
|
sp = rb_entry(pos,
|
|
|
|
struct nfs4_state_owner, so_server_node);
|
|
|
|
if (!test_and_clear_bit(ops->owner_flag_bit,
|
|
|
|
&sp->so_flags))
|
|
|
|
continue;
|
2015-10-02 15:11:16 +00:00
|
|
|
if (!atomic_inc_not_zero(&sp->so_count))
|
|
|
|
continue;
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
status = nfs4_reclaim_open_state(sp, ops);
|
|
|
|
if (status < 0) {
|
|
|
|
set_bit(ops->owner_flag_bit, &sp->so_flags);
|
|
|
|
nfs4_put_state_owner(sp);
|
2014-09-27 21:41:51 +00:00
|
|
|
status = nfs4_recovery_handle_error(clp, status);
|
|
|
|
return (status != 0) ? status : -EAGAIN;
|
2010-12-24 01:32:43 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:43 +00:00
|
|
|
nfs4_put_state_owner(sp);
|
2010-12-24 01:32:43 +00:00
|
|
|
goto restart;
|
2008-12-23 20:21:43 +00:00
|
|
|
}
|
2010-12-24 01:32:43 +00:00
|
|
|
spin_unlock(&clp->cl_lock);
|
2008-12-23 20:21:40 +00:00
|
|
|
}
|
2010-12-24 01:32:43 +00:00
|
|
|
rcu_read_unlock();
|
2014-09-27 21:41:51 +00:00
|
|
|
return 0;
|
2008-12-23 20:21:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int nfs4_check_lease(struct nfs_client *clp)
|
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2010-06-16 13:52:27 +00:00
|
|
|
const struct nfs4_state_maintenance_ops *ops =
|
|
|
|
clp->cl_mvops->state_renewal_ops;
|
2011-12-01 21:31:34 +00:00
|
|
|
int status;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-23 20:21:42 +00:00
|
|
|
/* Is the client already known to have an expired lease? */
|
|
|
|
if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
|
|
|
|
return 0;
|
2018-12-03 00:30:30 +00:00
|
|
|
cred = ops->get_state_renewal_cred(clp);
|
2008-12-23 20:21:42 +00:00
|
|
|
if (cred == NULL) {
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2011-12-01 21:31:34 +00:00
|
|
|
status = -ENOKEY;
|
2008-12-23 20:21:42 +00:00
|
|
|
if (cred == NULL)
|
|
|
|
goto out;
|
2006-01-03 08:55:26 +00:00
|
|
|
}
|
2009-04-01 13:22:45 +00:00
|
|
|
status = ops->renew_lease(clp, cred);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2013-04-08 21:50:28 +00:00
|
|
|
if (status == -ETIMEDOUT) {
|
|
|
|
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-12-23 20:21:42 +00:00
|
|
|
out:
|
2009-12-03 20:53:20 +00:00
|
|
|
return nfs4_recovery_handle_error(clp, status);
|
2008-12-23 20:21:40 +00:00
|
|
|
}
|
|
|
|
|
2012-10-02 00:42:32 +00:00
|
|
|
/* Set NFS4CLNT_LEASE_EXPIRED and reclaim reboot state for all v4.0 errors
|
|
|
|
* and for recoverable errors on EXCHANGE_ID for v4.1
|
2012-05-25 19:00:06 +00:00
|
|
|
*/
|
|
|
|
static int nfs4_handle_reclaim_lease_error(struct nfs_client *clp, int status)
|
|
|
|
{
|
|
|
|
switch (status) {
|
2012-05-25 19:00:06 +00:00
|
|
|
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);
|
2012-10-02 00:42:32 +00:00
|
|
|
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
|
|
|
break;
|
2012-05-25 19:00:06 +00:00
|
|
|
case -NFS4ERR_STALE_CLIENTID:
|
|
|
|
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
2012-10-02 00:42:32 +00:00
|
|
|
nfs4_state_start_reclaim_reboot(clp);
|
2012-05-25 19:00:06 +00:00
|
|
|
break;
|
2012-07-11 20:30:50 +00:00
|
|
|
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;
|
2012-05-25 19:00:06 +00:00
|
|
|
case -EACCES:
|
|
|
|
case -NFS4ERR_DELAY:
|
|
|
|
case -ETIMEDOUT:
|
|
|
|
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);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: exit with error %d for server %s\n",
|
|
|
|
__func__, -EPROTONOSUPPORT, clp->cl_hostname);
|
2012-05-25 19:00:06 +00:00
|
|
|
return -EPROTONOSUPPORT;
|
|
|
|
case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
|
|
|
|
* in nfs4_exchange_id */
|
|
|
|
default:
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: exit with error %d for server %s\n", __func__,
|
|
|
|
status, clp->cl_hostname);
|
2012-05-25 19:00:06 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: handled error %d for server %s\n", __func__, status,
|
|
|
|
clp->cl_hostname);
|
2012-05-25 19:00:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-05 15:19:47 +00:00
|
|
|
static int nfs4_establish_lease(struct nfs_client *clp)
|
2008-12-23 20:21:40 +00:00
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2010-06-16 13:52:27 +00:00
|
|
|
const struct nfs4_state_recovery_ops *ops =
|
|
|
|
clp->cl_mvops->reboot_recovery_ops;
|
2012-05-25 19:00:06 +00:00
|
|
|
int status;
|
2008-12-23 20:21:40 +00:00
|
|
|
|
2018-08-11 15:52:38 +00:00
|
|
|
status = nfs4_begin_drain_session(clp);
|
|
|
|
if (status != 0)
|
|
|
|
return status;
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2012-05-25 19:00:06 +00:00
|
|
|
if (cred == NULL)
|
|
|
|
return -ENOENT;
|
|
|
|
status = ops->establish_clid(clp, cred);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2012-05-25 19:00:06 +00:00
|
|
|
if (status != 0)
|
2012-06-05 15:19:47 +00:00
|
|
|
return status;
|
|
|
|
pnfs_destroy_all_layouts(clp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-11 20:30:59 +00:00
|
|
|
/*
|
|
|
|
* Returns zero or a negative errno. NFS4ERR values are converted
|
|
|
|
* to local errno values.
|
|
|
|
*/
|
2012-06-05 15:19:47 +00:00
|
|
|
static int 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nfs4_purge_lease(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
status = nfs4_establish_lease(clp);
|
|
|
|
if (status < 0)
|
2012-05-25 19:00:06 +00:00
|
|
|
return nfs4_handle_reclaim_lease_error(clp, status);
|
2012-06-05 15:19:47 +00:00
|
|
|
clear_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
|
|
|
|
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
|
|
|
|
nfs4_state_start_reclaim_nograce(clp);
|
2012-05-25 19:00:06 +00:00
|
|
|
return 0;
|
2008-12-23 20:21:40 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:13:02 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-12-03 00:30:31 +00:00
|
|
|
static int nfs4_try_migration(struct nfs_server *server, const struct cred *cred)
|
2013-10-17 18:13:02 +00:00
|
|
|
{
|
|
|
|
struct nfs_client *clp = server->nfs_client;
|
|
|
|
struct nfs4_fs_locations *locations = NULL;
|
|
|
|
struct inode *inode;
|
|
|
|
struct page *page;
|
|
|
|
int status, result;
|
|
|
|
|
|
|
|
dprintk("--> %s: FSID %llx:%llx on \"%s\"\n", __func__,
|
|
|
|
(unsigned long long)server->fsid.major,
|
|
|
|
(unsigned long long)server->fsid.minor,
|
|
|
|
clp->cl_hostname);
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
page = alloc_page(GFP_KERNEL);
|
|
|
|
locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
|
|
|
|
if (page == NULL || locations == NULL) {
|
|
|
|
dprintk("<-- %s: no memory\n", __func__);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2015-03-17 22:25:59 +00:00
|
|
|
inode = d_inode(server->super->s_root);
|
2013-10-17 18:13:02 +00:00
|
|
|
result = nfs4_proc_get_locations(inode, locations, page, cred);
|
|
|
|
if (result) {
|
|
|
|
dprintk("<-- %s: failed to retrieve fs_locations: %d\n",
|
|
|
|
__func__, result);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = -NFS4ERR_NXIO;
|
|
|
|
if (!(locations->fattr.valid & NFS_ATTR_FATTR_V4_LOCATIONS)) {
|
|
|
|
dprintk("<-- %s: No fs_locations data, migration skipped\n",
|
|
|
|
__func__);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2018-08-11 15:52:38 +00:00
|
|
|
status = nfs4_begin_drain_session(clp);
|
|
|
|
if (status != 0)
|
|
|
|
return status;
|
2013-10-17 18:13:02 +00:00
|
|
|
|
|
|
|
status = nfs4_replace_transport(server, locations);
|
|
|
|
if (status != 0) {
|
|
|
|
dprintk("<-- %s: failed to replace transport: %d\n",
|
|
|
|
__func__, status);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
dprintk("<-- %s: migration succeeded\n", __func__);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (page != NULL)
|
|
|
|
__free_page(page);
|
|
|
|
kfree(locations);
|
|
|
|
if (result) {
|
|
|
|
pr_err("NFS: migration recovery failed (server %s)\n",
|
|
|
|
clp->cl_hostname);
|
|
|
|
set_bit(NFS_MIG_FAILED, &server->mig_status);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns zero or a negative NFS4ERR status code.
|
|
|
|
*/
|
|
|
|
static int nfs4_handle_migration(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
const struct nfs4_state_maintenance_ops *ops =
|
|
|
|
clp->cl_mvops->state_renewal_ops;
|
|
|
|
struct nfs_server *server;
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2013-10-17 18:13:02 +00:00
|
|
|
|
|
|
|
dprintk("%s: migration reported on \"%s\"\n", __func__,
|
|
|
|
clp->cl_hostname);
|
|
|
|
|
2018-12-03 00:30:30 +00:00
|
|
|
cred = ops->get_state_renewal_cred(clp);
|
2013-10-17 18:13:02 +00:00
|
|
|
if (cred == NULL)
|
|
|
|
return -NFS4ERR_NOENT;
|
|
|
|
|
|
|
|
clp->cl_mig_gen++;
|
|
|
|
restart:
|
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (server->mig_gen == clp->cl_mig_gen)
|
|
|
|
continue;
|
|
|
|
server->mig_gen = clp->cl_mig_gen;
|
|
|
|
|
|
|
|
if (!test_and_clear_bit(NFS_MIG_IN_TRANSITION,
|
|
|
|
&server->mig_status))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
status = nfs4_try_migration(server, cred);
|
|
|
|
if (status < 0) {
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2013-10-17 18:13:02 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2013-10-17 18:13:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:13:35 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static int nfs4_handle_lease_moved(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
const struct nfs4_state_maintenance_ops *ops =
|
|
|
|
clp->cl_mvops->state_renewal_ops;
|
|
|
|
struct nfs_server *server;
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2013-10-17 18:13:35 +00:00
|
|
|
|
|
|
|
dprintk("%s: lease moved reported on \"%s\"\n", __func__,
|
|
|
|
clp->cl_hostname);
|
|
|
|
|
2018-12-03 00:30:30 +00:00
|
|
|
cred = ops->get_state_renewal_cred(clp);
|
2013-10-17 18:13:35 +00:00
|
|
|
if (cred == NULL)
|
|
|
|
return -NFS4ERR_NOENT;
|
|
|
|
|
|
|
|
clp->cl_mig_gen++;
|
|
|
|
restart:
|
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
|
|
|
|
struct inode *inode;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (server->mig_gen == clp->cl_mig_gen)
|
|
|
|
continue;
|
|
|
|
server->mig_gen = clp->cl_mig_gen;
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
2015-03-17 22:25:59 +00:00
|
|
|
inode = d_inode(server->super->s_root);
|
2013-10-17 18:13:35 +00:00
|
|
|
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:
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2013-10-17 18:13:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-14 21:24:32 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
const struct nfs4_state_recovery_ops *ops =
|
|
|
|
clp->cl_mvops->reboot_recovery_ops;
|
|
|
|
struct rpc_clnt *clnt;
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2013-03-16 19:56:20 +00:00
|
|
|
int i, status;
|
2012-09-14 21:24:32 +00:00
|
|
|
|
|
|
|
dprintk("NFS: %s: testing '%s'\n", __func__, clp->cl_hostname);
|
|
|
|
|
|
|
|
clnt = clp->cl_rpcclient;
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
mutex_lock(&nfs_clid_init_mutex);
|
|
|
|
again:
|
2013-04-05 17:22:50 +00:00
|
|
|
status = -ENOENT;
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2012-09-14 21:24:32 +00:00
|
|
|
if (cred == NULL)
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
status = ops->detect_trunking(clp, result, cred);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2012-09-14 21:24:32 +00:00
|
|
|
switch (status) {
|
|
|
|
case 0:
|
2017-06-21 14:16:56 +00:00
|
|
|
case -EINTR:
|
|
|
|
case -ERESTARTSYS:
|
2012-09-14 21:24:32 +00:00
|
|
|
break;
|
|
|
|
case -ETIMEDOUT:
|
2014-03-18 18:23:11 +00:00
|
|
|
if (clnt->cl_softrtry)
|
|
|
|
break;
|
2018-08-01 02:18:44 +00:00
|
|
|
/* Fall through */
|
2014-03-18 18:23:11 +00:00
|
|
|
case -NFS4ERR_DELAY:
|
2012-09-14 21:24:32 +00:00
|
|
|
case -EAGAIN:
|
|
|
|
ssleep(1);
|
2018-08-01 02:18:44 +00:00
|
|
|
/* Fall through */
|
2013-01-19 03:56:23 +00:00
|
|
|
case -NFS4ERR_STALE_CLIENTID:
|
2012-09-14 21:24:32 +00:00
|
|
|
dprintk("NFS: %s after status %d, retrying\n",
|
|
|
|
__func__, status);
|
|
|
|
goto again;
|
2013-03-16 19:56:20 +00:00
|
|
|
case -EACCES:
|
NFS: Use root's credential for lease management when keytab is missing
Commit 05f4c350 "NFS: Discover NFSv4 server trunking when mounting"
Fri Sep 14 17:24:32 2012 introduced Uniform Client String support,
which forces our NFS client to establish a client ID immediately
during a mount operation rather than waiting until a user wants to
open a file.
Normally machine credentials (eg. from a keytab) are used to perform
a mount operation that is protected by Kerberos. Before 05fc350,
SETCLIENTID used a machine credential, or fell back to a regular
user's credential if no keytab is available.
On clients that don't have a keytab, performing SETCLIENTID early
means there's no user credential to fall back on, since no regular
user has kinit'd yet. 05f4c350 seems to have broken the ability
to mount with sec=krb5 on clients that don't have a keytab in
kernels 3.7 - 3.10.
To address this regression, commit 4edaa308 (NFS: Use "krb5i" to
establish NFSv4 state whenever possible), Sat Mar 16 15:56:20 2013,
was merged in 3.10. This commit forces the NFS client to fall back
to AUTH_SYS for lease management operations if no keytab is
available.
Neil Brown noticed that, since root is required to kinit to do a
sec=krb5 mount when a client doesn't have a keytab, we can try to
use root's Kerberos credential before AUTH_SYS.
Now, when determining a principal and flavor to use for lease
management, the NFS client tries in this order:
1. Flavor: AUTH_GSS, krb5i
Principal: service principal (via keytab)
2. Flavor: AUTH_GSS, krb5i
Principal: user principal established for UID 0 (via kinit)
3. Flavor: AUTH_SYS
Principal: UID 0 / GID 0
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2013-07-24 16:28:28 +00:00
|
|
|
if (i++ == 0) {
|
|
|
|
nfs4_root_machine_cred(clp);
|
|
|
|
goto again;
|
|
|
|
}
|
2013-11-13 14:08:21 +00:00
|
|
|
if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX)
|
2013-03-16 19:56:20 +00:00
|
|
|
break;
|
2018-08-01 02:18:44 +00:00
|
|
|
/* Fall through */
|
2012-09-14 21:24:32 +00:00
|
|
|
case -NFS4ERR_CLID_INUSE:
|
|
|
|
case -NFS4ERR_WRONGSEC:
|
2013-11-13 14:08:21 +00:00
|
|
|
/* No point in retrying if we already used RPC_AUTH_UNIX */
|
|
|
|
if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX) {
|
|
|
|
status = -EPERM;
|
|
|
|
break;
|
|
|
|
}
|
2013-04-22 19:42:48 +00:00
|
|
|
clnt = rpc_clone_client_set_auth(clnt, RPC_AUTH_UNIX);
|
2012-09-14 21:24:32 +00:00
|
|
|
if (IS_ERR(clnt)) {
|
|
|
|
status = PTR_ERR(clnt);
|
|
|
|
break;
|
|
|
|
}
|
2013-04-04 19:55:00 +00:00
|
|
|
/* 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;
|
2012-09-14 21:24:32 +00:00
|
|
|
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;
|
2013-04-05 17:22:50 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pr_warn("NFS: %s unhandled error %d. Exiting with error EIO\n",
|
|
|
|
__func__, status);
|
|
|
|
status = -EIO;
|
2012-09-14 21:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out_unlock:
|
|
|
|
mutex_unlock(&nfs_clid_init_mutex);
|
|
|
|
dprintk("NFS: %s: status = %d\n", __func__, status);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2009-04-01 13:22:38 +00:00
|
|
|
#ifdef CONFIG_NFS_V4_1
|
2012-05-27 17:02:53 +00:00
|
|
|
void nfs4_schedule_session_recovery(struct nfs4_session *session, int err)
|
2011-03-09 21:00:53 +00:00
|
|
|
{
|
2011-05-26 18:26:35 +00:00
|
|
|
struct nfs_client *clp = session->clp;
|
|
|
|
|
2012-05-27 17:02:53 +00:00
|
|
|
switch (err) {
|
|
|
|
default:
|
|
|
|
set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
|
|
|
|
break;
|
|
|
|
case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
|
|
|
|
set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
|
|
|
|
}
|
2016-12-05 00:34:38 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
2011-03-09 21:00:53 +00:00
|
|
|
}
|
2011-03-01 01:34:20 +00:00
|
|
|
EXPORT_SYMBOL_GPL(nfs4_schedule_session_recovery);
|
2011-03-09 21:00:53 +00:00
|
|
|
|
2015-07-13 18:01:31 +00:00
|
|
|
void nfs41_notify_server(struct nfs_client *clp)
|
2012-11-21 14:06:11 +00:00
|
|
|
{
|
|
|
|
/* Use CHECK_LEASE to ping the server with a SEQUENCE */
|
|
|
|
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
}
|
|
|
|
|
2010-03-02 18:06:21 +00:00
|
|
|
static void nfs4_reset_all_state(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
|
2012-05-22 02:45:33 +00:00
|
|
|
set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
|
2012-05-25 20:02:15 +00:00
|
|
|
clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
|
2010-03-02 18:06:21 +00:00
|
|
|
nfs4_state_start_reclaim_nograce(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: scheduling reset of all state for server %s!\n",
|
|
|
|
__func__, clp->cl_hostname);
|
2011-03-09 21:00:53 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
2010-03-02 18:06:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nfs41_handle_server_reboot(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
|
|
|
|
nfs4_state_start_reclaim_reboot(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: server %s rebooted!\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2011-03-09 21:00:53 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
2010-03-02 18:06:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-05 19:12:06 +00:00
|
|
|
static void nfs41_handle_all_state_revoked(struct nfs_client *clp)
|
2010-03-02 18:06:21 +00:00
|
|
|
{
|
|
|
|
nfs4_reset_all_state(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
|
2010-03-02 18:06:21 +00:00
|
|
|
}
|
|
|
|
|
2015-07-05 19:12:06 +00:00
|
|
|
static void nfs41_handle_some_state_revoked(struct nfs_client *clp)
|
|
|
|
{
|
2016-09-22 17:38:59 +00:00
|
|
|
nfs4_state_start_reclaim_nograce(clp);
|
2015-07-05 19:12:06 +00:00
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
|
|
|
|
dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
|
|
|
|
}
|
|
|
|
|
2010-03-02 18:06:21 +00:00
|
|
|
static void nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
|
|
|
|
{
|
2015-07-05 19:20:53 +00:00
|
|
|
/* FIXME: For now, we destroy all layouts. */
|
|
|
|
pnfs_destroy_all_layouts(clp);
|
2019-05-06 15:59:05 +00:00
|
|
|
nfs_test_expired_all_delegations(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: Recallable state revoked on server %s!\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2010-03-02 18:06:21 +00:00
|
|
|
}
|
|
|
|
|
2012-05-24 16:26:37 +00:00
|
|
|
static void nfs41_handle_backchannel_fault(struct nfs_client *clp)
|
2010-03-02 18:06:21 +00:00
|
|
|
{
|
2015-07-05 19:26:58 +00:00
|
|
|
set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: server %s declared a backchannel fault\n", __func__,
|
|
|
|
clp->cl_hostname);
|
2010-03-02 18:06:21 +00:00
|
|
|
}
|
|
|
|
|
2012-05-24 16:26:37 +00:00
|
|
|
static void nfs41_handle_cb_path_down(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
if (test_and_set_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
|
|
|
|
&clp->cl_state) == 0)
|
|
|
|
nfs4_schedule_state_manager(clp);
|
|
|
|
}
|
|
|
|
|
2016-09-22 17:38:51 +00:00
|
|
|
void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags,
|
|
|
|
bool recovery)
|
2009-12-05 18:46:14 +00:00
|
|
|
{
|
|
|
|
if (!flags)
|
|
|
|
return;
|
2012-05-22 02:45:33 +00:00
|
|
|
|
|
|
|
dprintk("%s: \"%s\" (client ID %llx) flags=0x%08x\n",
|
|
|
|
__func__, clp->cl_hostname, clp->cl_clientid, flags);
|
2016-09-22 17:38:51 +00:00
|
|
|
/*
|
|
|
|
* If we're called from the state manager thread, then assume we're
|
|
|
|
* already handling the RECLAIM_NEEDED and/or STATE_REVOKED.
|
|
|
|
* Those flags are expected to remain set until we're done
|
|
|
|
* recovering (see RFC5661, section 18.46.3).
|
|
|
|
*/
|
|
|
|
if (recovery)
|
|
|
|
goto out_recovery;
|
2012-05-22 02:45:33 +00:00
|
|
|
|
2011-12-01 21:37:42 +00:00
|
|
|
if (flags & SEQ4_STATUS_RESTART_RECLAIM_NEEDED)
|
2010-03-02 18:06:21 +00:00
|
|
|
nfs41_handle_server_reboot(clp);
|
2015-07-05 19:12:06 +00:00
|
|
|
if (flags & (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED))
|
|
|
|
nfs41_handle_all_state_revoked(clp);
|
|
|
|
if (flags & (SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED |
|
2013-10-17 18:13:58 +00:00
|
|
|
SEQ4_STATUS_ADMIN_STATE_REVOKED))
|
2015-07-05 19:12:06 +00:00
|
|
|
nfs41_handle_some_state_revoked(clp);
|
2013-10-17 18:13:58 +00:00
|
|
|
if (flags & SEQ4_STATUS_LEASE_MOVED)
|
|
|
|
nfs4_schedule_lease_moved_recovery(clp);
|
2011-12-01 21:37:42 +00:00
|
|
|
if (flags & SEQ4_STATUS_RECALLABLE_STATE_REVOKED)
|
2010-03-02 18:06:21 +00:00
|
|
|
nfs41_handle_recallable_state_revoked(clp);
|
2016-09-22 17:38:51 +00:00
|
|
|
out_recovery:
|
2012-05-24 16:26:37 +00:00
|
|
|
if (flags & SEQ4_STATUS_BACKCHANNEL_FAULT)
|
|
|
|
nfs41_handle_backchannel_fault(clp);
|
|
|
|
else if (flags & (SEQ4_STATUS_CB_PATH_DOWN |
|
|
|
|
SEQ4_STATUS_CB_PATH_DOWN_SESSION))
|
2010-03-02 18:06:21 +00:00
|
|
|
nfs41_handle_cb_path_down(clp);
|
2009-12-05 18:46:14 +00:00
|
|
|
}
|
|
|
|
|
2009-04-01 13:22:39 +00:00
|
|
|
static int nfs4_reset_session(struct nfs_client *clp)
|
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2009-04-01 13:22:39 +00:00
|
|
|
int status;
|
|
|
|
|
2012-06-05 14:53:38 +00:00
|
|
|
if (!nfs4_has_session(clp))
|
|
|
|
return 0;
|
2018-08-11 15:52:38 +00:00
|
|
|
status = nfs4_begin_drain_session(clp);
|
|
|
|
if (status != 0)
|
|
|
|
return status;
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2012-05-25 21:51:23 +00:00
|
|
|
status = nfs4_proc_destroy_session(clp->cl_session, cred);
|
2013-01-30 18:04:10 +00:00
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
case -NFS4ERR_BADSESSION:
|
|
|
|
case -NFS4ERR_DEADSESSION:
|
|
|
|
break;
|
|
|
|
case -NFS4ERR_BACK_CHAN_BUSY:
|
|
|
|
case -NFS4ERR_DELAY:
|
|
|
|
set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
|
|
|
|
status = 0;
|
|
|
|
ssleep(1);
|
|
|
|
goto out;
|
|
|
|
default:
|
2009-12-07 14:16:09 +00:00
|
|
|
status = nfs4_recovery_handle_error(clp, status);
|
2009-04-01 13:22:39 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
|
2012-05-25 21:51:23 +00:00
|
|
|
status = nfs4_proc_create_session(clp, cred);
|
2010-01-21 19:54:13 +00:00
|
|
|
if (status) {
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: session reset failed with status %d for server %s!\n",
|
|
|
|
__func__, status, clp->cl_hostname);
|
2012-05-27 18:46:46 +00:00
|
|
|
status = nfs4_handle_reclaim_lease_error(clp, status);
|
2010-01-21 19:54:13 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2012-06-05 14:22:14 +00:00
|
|
|
nfs41_finish_session_reset(clp);
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: session reset was successful for server %s!\n",
|
|
|
|
__func__, clp->cl_hostname);
|
2010-01-21 19:54:13 +00:00
|
|
|
out:
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2009-04-01 13:22:39 +00:00
|
|
|
return status;
|
|
|
|
}
|
2009-04-01 13:22:38 +00:00
|
|
|
|
2012-05-24 16:26:37 +00:00
|
|
|
static int nfs4_bind_conn_to_session(struct nfs_client *clp)
|
|
|
|
{
|
2018-12-03 00:30:31 +00:00
|
|
|
const struct cred *cred;
|
2012-05-25 21:57:41 +00:00
|
|
|
int ret;
|
|
|
|
|
2012-06-05 14:53:38 +00:00
|
|
|
if (!nfs4_has_session(clp))
|
|
|
|
return 0;
|
2018-08-11 15:52:38 +00:00
|
|
|
ret = nfs4_begin_drain_session(clp);
|
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
2013-07-24 16:28:37 +00:00
|
|
|
cred = nfs4_get_clid_cred(clp);
|
2012-05-25 21:57:41 +00:00
|
|
|
ret = nfs4_proc_bind_conn_to_session(clp, cred);
|
2018-12-03 00:30:31 +00:00
|
|
|
put_cred(cred);
|
2012-05-27 17:47:21 +00:00
|
|
|
clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
|
2012-05-27 16:53:10 +00:00
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
2012-05-28 19:12:27 +00:00
|
|
|
dprintk("%s: bind_conn_to_session was successful for server %s!\n",
|
|
|
|
__func__, clp->cl_hostname);
|
2012-05-27 16:53:10 +00:00
|
|
|
break;
|
|
|
|
case -NFS4ERR_DELAY:
|
|
|
|
ssleep(1);
|
|
|
|
set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return nfs4_recovery_handle_error(clp, ret);
|
|
|
|
}
|
|
|
|
return 0;
|
2012-05-24 16:26:37 +00:00
|
|
|
}
|
2009-04-01 13:22:38 +00:00
|
|
|
#else /* CONFIG_NFS_V4_1 */
|
2009-04-01 13:22:39 +00:00
|
|
|
static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
|
2012-05-24 16:26:37 +00:00
|
|
|
|
|
|
|
static int nfs4_bind_conn_to_session(struct nfs_client *clp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-01 13:22:38 +00:00
|
|
|
#endif /* CONFIG_NFS_V4_1 */
|
|
|
|
|
2008-12-23 20:21:48 +00:00
|
|
|
static void nfs4_state_manager(struct nfs_client *clp)
|
2008-12-23 20:21:40 +00:00
|
|
|
{
|
|
|
|
int status = 0;
|
2012-05-29 19:57:59 +00:00
|
|
|
const char *section = "", *section_sep = "";
|
2008-12-23 20:21:40 +00:00
|
|
|
|
|
|
|
/* Ensure exclusive access to NFSv4 state */
|
2011-04-15 21:34:18 +00:00
|
|
|
do {
|
2018-11-20 01:11:45 +00:00
|
|
|
clear_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
|
2012-05-22 02:45:33 +00:00
|
|
|
if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "purge state";
|
2012-06-05 15:19:47 +00:00
|
|
|
status = nfs4_purge_lease(clp);
|
2012-05-25 19:00:06 +00:00
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
2012-06-05 15:19:47 +00:00
|
|
|
continue;
|
2012-05-22 02:45:33 +00:00
|
|
|
}
|
|
|
|
|
2012-06-05 15:19:47 +00:00
|
|
|
if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "lease expired";
|
2008-12-23 20:21:41 +00:00
|
|
|
/* We're going to have to re-establish a clientid */
|
|
|
|
status = nfs4_reclaim_lease(clp);
|
2012-05-25 19:00:06 +00:00
|
|
|
if (status < 0)
|
2008-12-23 20:21:41 +00:00
|
|
|
goto out_error;
|
2012-06-05 15:19:47 +00:00
|
|
|
continue;
|
2008-12-23 20:21:42 +00:00
|
|
|
}
|
|
|
|
|
2009-04-01 13:22:39 +00:00
|
|
|
/* Initialize or reset the session */
|
2012-06-05 14:53:38 +00:00
|
|
|
if (test_and_clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "reset session";
|
2009-12-04 20:52:24 +00:00
|
|
|
status = nfs4_reset_session(clp);
|
2009-12-03 20:53:22 +00:00
|
|
|
if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
|
|
|
|
continue;
|
|
|
|
if (status < 0)
|
2009-04-01 13:22:38 +00:00
|
|
|
goto out_error;
|
|
|
|
}
|
2009-12-03 20:53:22 +00:00
|
|
|
|
2012-05-24 16:26:37 +00:00
|
|
|
/* Send BIND_CONN_TO_SESSION */
|
|
|
|
if (test_and_clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
|
2012-06-05 14:53:38 +00:00
|
|
|
&clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "bind conn to session";
|
2012-05-24 16:26:37 +00:00
|
|
|
status = nfs4_bind_conn_to_session(clp);
|
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
2012-05-27 16:53:10 +00:00
|
|
|
continue;
|
2012-05-24 16:26:37 +00:00
|
|
|
}
|
|
|
|
|
2012-11-21 14:22:14 +00:00
|
|
|
if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
|
|
|
|
section = "check lease";
|
|
|
|
status = nfs4_check_lease(clp);
|
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
2014-09-24 22:11:28 +00:00
|
|
|
continue;
|
2013-10-17 18:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (test_and_clear_bit(NFS4CLNT_MOVED, &clp->cl_state)) {
|
|
|
|
section = "migration";
|
|
|
|
status = nfs4_handle_migration(clp);
|
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
2012-11-21 14:22:14 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:13:35 +00:00
|
|
|
if (test_and_clear_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state)) {
|
|
|
|
section = "lease moved";
|
|
|
|
status = nfs4_handle_lease_moved(clp);
|
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:41 +00:00
|
|
|
/* First recover reboot state... */
|
2009-12-03 20:52:41 +00:00
|
|
|
if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "reclaim reboot";
|
2009-04-01 13:22:47 +00:00
|
|
|
status = nfs4_do_reclaim(clp,
|
2010-06-16 13:52:27 +00:00
|
|
|
clp->cl_mvops->reboot_recovery_ops);
|
2014-09-27 21:41:51 +00:00
|
|
|
if (status == -EAGAIN)
|
2009-12-03 20:53:22 +00:00
|
|
|
continue;
|
|
|
|
if (status < 0)
|
|
|
|
goto out_error;
|
2014-09-27 21:41:51 +00:00
|
|
|
nfs4_state_end_reclaim_reboot(clp);
|
2008-12-23 20:21:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 17:38:59 +00:00
|
|
|
/* Detect expired delegations... */
|
|
|
|
if (test_and_clear_bit(NFS4CLNT_DELEGATION_EXPIRED, &clp->cl_state)) {
|
|
|
|
section = "detect expired delegations";
|
|
|
|
nfs_reap_expired_delegations(clp);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:21:41 +00:00
|
|
|
/* Now recover expired state... */
|
|
|
|
if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
|
2012-05-29 19:57:59 +00:00
|
|
|
section = "reclaim nograce";
|
2009-04-01 13:22:47 +00:00
|
|
|
status = nfs4_do_reclaim(clp,
|
2010-06-16 13:52:27 +00:00
|
|
|
clp->cl_mvops->nograce_recovery_ops);
|
2014-09-27 21:41:51 +00:00
|
|
|
if (status == -EAGAIN)
|
2009-12-03 20:53:22 +00:00
|
|
|
continue;
|
|
|
|
if (status < 0)
|
2008-12-23 20:21:41 +00:00
|
|
|
goto out_error;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-12-23 20:21:47 +00:00
|
|
|
|
2009-12-15 05:27:58 +00:00
|
|
|
nfs4_end_drain_session(clp);
|
2018-11-20 01:11:45 +00:00
|
|
|
nfs4_clear_state_manager_bit(clp);
|
|
|
|
|
|
|
|
if (!test_and_set_bit(NFS4CLNT_DELEGRETURN_RUNNING, &clp->cl_state)) {
|
|
|
|
if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
|
|
|
|
nfs_client_return_marked_delegations(clp);
|
|
|
|
set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
|
|
|
|
}
|
|
|
|
clear_bit(NFS4CLNT_DELEGRETURN_RUNNING, &clp->cl_state);
|
2008-12-23 20:21:47 +00:00
|
|
|
}
|
2008-12-23 20:21:48 +00:00
|
|
|
|
2008-12-23 20:21:48 +00:00
|
|
|
/* Did we race with an attempt to give us more work? */
|
2018-11-20 01:11:45 +00:00
|
|
|
if (!test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state))
|
2018-11-05 16:10:50 +00:00
|
|
|
return;
|
2008-12-23 20:21:48 +00:00
|
|
|
if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
|
2018-11-05 16:10:50 +00:00
|
|
|
return;
|
2018-11-05 17:17:01 +00:00
|
|
|
} while (refcount_read(&clp->cl_count) > 1 && !signalled());
|
2018-11-05 16:10:50 +00:00
|
|
|
goto out_drain;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
out_error:
|
2012-05-29 19:57:59 +00:00
|
|
|
if (strlen(section))
|
|
|
|
section_sep = ": ";
|
|
|
|
pr_warn_ratelimited("NFS: state manager%s%s failed on NFSv4 server %s"
|
|
|
|
" with error %d\n", section_sep, section,
|
|
|
|
clp->cl_hostname, -status);
|
2012-09-14 21:23:23 +00:00
|
|
|
ssleep(1);
|
2018-11-05 16:10:50 +00:00
|
|
|
out_drain:
|
2009-12-15 05:27:58 +00:00
|
|
|
nfs4_end_drain_session(clp);
|
2008-12-23 20:21:48 +00:00
|
|
|
nfs4_clear_state_manager_bit(clp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nfs4_run_state_manager(void *ptr)
|
|
|
|
{
|
|
|
|
struct nfs_client *clp = ptr;
|
|
|
|
|
|
|
|
allow_signal(SIGKILL);
|
|
|
|
nfs4_state_manager(clp);
|
|
|
|
nfs_put_client(clp);
|
|
|
|
module_put_and_exit(0);
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|