| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  fs/nfs/nfs4state.c | 
 | 3 |  * | 
 | 4 |  *  Client-side XDR for NFSv4. | 
 | 5 |  * | 
 | 6 |  *  Copyright (c) 2002 The Regents of the University of Michigan. | 
 | 7 |  *  All rights reserved. | 
 | 8 |  * | 
 | 9 |  *  Kendrick Smith <kmsmith@umich.edu> | 
 | 10 |  * | 
 | 11 |  *  Redistribution and use in source and binary forms, with or without | 
 | 12 |  *  modification, are permitted provided that the following conditions | 
 | 13 |  *  are met: | 
 | 14 |  * | 
 | 15 |  *  1. Redistributions of source code must retain the above copyright | 
 | 16 |  *     notice, this list of conditions and the following disclaimer. | 
 | 17 |  *  2. Redistributions in binary form must reproduce the above copyright | 
 | 18 |  *     notice, this list of conditions and the following disclaimer in the | 
 | 19 |  *     documentation and/or other materials provided with the distribution. | 
 | 20 |  *  3. Neither the name of the University nor the names of its | 
 | 21 |  *     contributors may be used to endorse or promote products derived | 
 | 22 |  *     from this software without specific prior written permission. | 
 | 23 |  * | 
 | 24 |  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
 | 25 |  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
 | 26 |  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
 | 27 |  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
 | 28 |  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
 | 29 |  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
 | 30 |  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | 
 | 31 |  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
 | 32 |  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
 | 33 |  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
 | 34 |  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
 | 35 |  * | 
 | 36 |  * Implementation of the NFSv4 state model.  For the time being, | 
 | 37 |  * this is minimal, but will be made much more complex in a | 
 | 38 |  * subsequent patch. | 
 | 39 |  */ | 
 | 40 |  | 
| Trond Myklebust | 6f43ddc | 2007-07-08 16:49:11 -0400 | [diff] [blame] | 41 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/slab.h> | 
 | 43 | #include <linux/smp_lock.h> | 
 | 44 | #include <linux/nfs_fs.h> | 
 | 45 | #include <linux/nfs_idmap.h> | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 46 | #include <linux/kthread.h> | 
 | 47 | #include <linux/module.h> | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 48 | #include <linux/random.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/workqueue.h> | 
 | 50 | #include <linux/bitops.h> | 
 | 51 |  | 
| Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 52 | #include "nfs4_fs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include "callback.h" | 
 | 54 | #include "delegation.h" | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 55 | #include "internal.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
 | 57 | #define OPENOWNER_POOL_SIZE	8 | 
 | 58 |  | 
| Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 59 | const nfs4_stateid zero_stateid; | 
 | 60 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | static LIST_HEAD(nfs4_clientid_list); | 
 | 62 |  | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 63 | static int nfs4_init_client(struct nfs_client *clp, struct rpc_cred *cred) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 65 | 	int status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, | 
 | 66 | 			nfs_callback_tcpport, cred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 	if (status == 0) | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 68 | 		status = nfs4_proc_setclientid_confirm(clp, cred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | 	if (status == 0) | 
 | 70 | 		nfs4_schedule_state_renewal(clp); | 
 | 71 | 	return status; | 
 | 72 | } | 
 | 73 |  | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 74 | struct rpc_cred *nfs4_get_renew_cred(struct nfs_client *clp) | 
| Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 75 | { | 
 | 76 | 	struct nfs4_state_owner *sp; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 77 | 	struct rb_node *pos; | 
| Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 78 | 	struct rpc_cred *cred = NULL; | 
 | 79 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 80 | 	for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) { | 
 | 81 | 		sp = rb_entry(pos, struct nfs4_state_owner, so_client_node); | 
| Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 82 | 		if (list_empty(&sp->so_states)) | 
 | 83 | 			continue; | 
 | 84 | 		cred = get_rpccred(sp->so_cred); | 
 | 85 | 		break; | 
 | 86 | 	} | 
 | 87 | 	return cred; | 
 | 88 | } | 
 | 89 |  | 
| Trond Myklebust | 10afec9 | 2007-05-14 17:16:04 -0400 | [diff] [blame] | 90 | static struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp) | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 91 | { | 
 | 92 | 	struct nfs4_state_owner *sp; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 93 | 	struct rb_node *pos; | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 94 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 95 | 	pos = rb_first(&clp->cl_state_owners); | 
 | 96 | 	if (pos != NULL) { | 
 | 97 | 		sp = rb_entry(pos, struct nfs4_state_owner, so_client_node); | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 98 | 		return get_rpccred(sp->so_cred); | 
 | 99 | 	} | 
 | 100 | 	return NULL; | 
 | 101 | } | 
 | 102 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 103 | static void nfs_alloc_unique_id(struct rb_root *root, struct nfs_unique_id *new, | 
 | 104 | 		__u64 minval, int maxbits) | 
 | 105 | { | 
 | 106 | 	struct rb_node **p, *parent; | 
 | 107 | 	struct nfs_unique_id *pos; | 
 | 108 | 	__u64 mask = ~0ULL; | 
 | 109 |  | 
 | 110 | 	if (maxbits < 64) | 
 | 111 | 		mask = (1ULL << maxbits) - 1ULL; | 
 | 112 |  | 
 | 113 | 	/* Ensure distribution is more or less flat */ | 
 | 114 | 	get_random_bytes(&new->id, sizeof(new->id)); | 
 | 115 | 	new->id &= mask; | 
 | 116 | 	if (new->id < minval) | 
 | 117 | 		new->id += minval; | 
 | 118 | retry: | 
 | 119 | 	p = &root->rb_node; | 
 | 120 | 	parent = NULL; | 
 | 121 |  | 
 | 122 | 	while (*p != NULL) { | 
 | 123 | 		parent = *p; | 
 | 124 | 		pos = rb_entry(parent, struct nfs_unique_id, rb_node); | 
 | 125 |  | 
 | 126 | 		if (new->id < pos->id) | 
 | 127 | 			p = &(*p)->rb_left; | 
 | 128 | 		else if (new->id > pos->id) | 
 | 129 | 			p = &(*p)->rb_right; | 
 | 130 | 		else | 
 | 131 | 			goto id_exists; | 
 | 132 | 	} | 
 | 133 | 	rb_link_node(&new->rb_node, parent, p); | 
 | 134 | 	rb_insert_color(&new->rb_node, root); | 
 | 135 | 	return; | 
 | 136 | id_exists: | 
 | 137 | 	for (;;) { | 
 | 138 | 		new->id++; | 
 | 139 | 		if (new->id < minval || (new->id & mask) != new->id) { | 
 | 140 | 			new->id = minval; | 
 | 141 | 			break; | 
 | 142 | 		} | 
 | 143 | 		parent = rb_next(parent); | 
 | 144 | 		if (parent == NULL) | 
 | 145 | 			break; | 
 | 146 | 		pos = rb_entry(parent, struct nfs_unique_id, rb_node); | 
 | 147 | 		if (new->id < pos->id) | 
 | 148 | 			break; | 
 | 149 | 	} | 
 | 150 | 	goto retry; | 
 | 151 | } | 
 | 152 |  | 
 | 153 | static void nfs_free_unique_id(struct rb_root *root, struct nfs_unique_id *id) | 
 | 154 | { | 
 | 155 | 	rb_erase(&id->rb_node, root); | 
 | 156 | } | 
 | 157 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | static struct nfs4_state_owner * | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 159 | nfs4_find_state_owner(struct nfs_server *server, struct rpc_cred *cred) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 161 | 	struct nfs_client *clp = server->nfs_client; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 162 | 	struct rb_node **p = &clp->cl_state_owners.rb_node, | 
 | 163 | 		       *parent = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | 	struct nfs4_state_owner *sp, *res = NULL; | 
 | 165 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 166 | 	while (*p != NULL) { | 
 | 167 | 		parent = *p; | 
 | 168 | 		sp = rb_entry(parent, struct nfs4_state_owner, so_client_node); | 
 | 169 |  | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 170 | 		if (server < sp->so_server) { | 
 | 171 | 			p = &parent->rb_left; | 
 | 172 | 			continue; | 
 | 173 | 		} | 
 | 174 | 		if (server > sp->so_server) { | 
 | 175 | 			p = &parent->rb_right; | 
 | 176 | 			continue; | 
 | 177 | 		} | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 178 | 		if (cred < sp->so_cred) | 
 | 179 | 			p = &parent->rb_left; | 
 | 180 | 		else if (cred > sp->so_cred) | 
 | 181 | 			p = &parent->rb_right; | 
 | 182 | 		else { | 
 | 183 | 			atomic_inc(&sp->so_count); | 
 | 184 | 			res = sp; | 
 | 185 | 			break; | 
 | 186 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | 	} | 
 | 188 | 	return res; | 
 | 189 | } | 
 | 190 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 191 | static struct nfs4_state_owner * | 
 | 192 | nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new) | 
 | 193 | { | 
 | 194 | 	struct rb_node **p = &clp->cl_state_owners.rb_node, | 
 | 195 | 		       *parent = NULL; | 
 | 196 | 	struct nfs4_state_owner *sp; | 
 | 197 |  | 
 | 198 | 	while (*p != NULL) { | 
 | 199 | 		parent = *p; | 
 | 200 | 		sp = rb_entry(parent, struct nfs4_state_owner, so_client_node); | 
 | 201 |  | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 202 | 		if (new->so_server < sp->so_server) { | 
 | 203 | 			p = &parent->rb_left; | 
 | 204 | 			continue; | 
 | 205 | 		} | 
 | 206 | 		if (new->so_server > sp->so_server) { | 
 | 207 | 			p = &parent->rb_right; | 
 | 208 | 			continue; | 
 | 209 | 		} | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 210 | 		if (new->so_cred < sp->so_cred) | 
 | 211 | 			p = &parent->rb_left; | 
 | 212 | 		else if (new->so_cred > sp->so_cred) | 
 | 213 | 			p = &parent->rb_right; | 
 | 214 | 		else { | 
 | 215 | 			atomic_inc(&sp->so_count); | 
 | 216 | 			return sp; | 
 | 217 | 		} | 
 | 218 | 	} | 
 | 219 | 	nfs_alloc_unique_id(&clp->cl_openowner_id, &new->so_owner_id, 1, 64); | 
 | 220 | 	rb_link_node(&new->so_client_node, parent, p); | 
 | 221 | 	rb_insert_color(&new->so_client_node, &clp->cl_state_owners); | 
 | 222 | 	return new; | 
 | 223 | } | 
 | 224 |  | 
 | 225 | static void | 
 | 226 | nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp) | 
 | 227 | { | 
 | 228 | 	if (!RB_EMPTY_NODE(&sp->so_client_node)) | 
 | 229 | 		rb_erase(&sp->so_client_node, &clp->cl_state_owners); | 
 | 230 | 	nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id); | 
 | 231 | } | 
 | 232 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* | 
 | 234 |  * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to | 
 | 235 |  * create a new state_owner. | 
 | 236 |  * | 
 | 237 |  */ | 
 | 238 | static struct nfs4_state_owner * | 
 | 239 | nfs4_alloc_state_owner(void) | 
 | 240 | { | 
 | 241 | 	struct nfs4_state_owner *sp; | 
 | 242 |  | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 243 | 	sp = kzalloc(sizeof(*sp),GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | 	if (!sp) | 
 | 245 | 		return NULL; | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 246 | 	spin_lock_init(&sp->so_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | 	INIT_LIST_HEAD(&sp->so_states); | 
 | 248 | 	INIT_LIST_HEAD(&sp->so_delegations); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 249 | 	rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue"); | 
 | 250 | 	sp->so_seqid.sequence = &sp->so_sequence; | 
 | 251 | 	spin_lock_init(&sp->so_sequence.lock); | 
 | 252 | 	INIT_LIST_HEAD(&sp->so_sequence.list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | 	atomic_set(&sp->so_count, 1); | 
 | 254 | 	return sp; | 
 | 255 | } | 
 | 256 |  | 
 | 257 | void | 
 | 258 | nfs4_drop_state_owner(struct nfs4_state_owner *sp) | 
 | 259 | { | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 260 | 	if (!RB_EMPTY_NODE(&sp->so_client_node)) { | 
 | 261 | 		struct nfs_client *clp = sp->so_client; | 
 | 262 |  | 
 | 263 | 		spin_lock(&clp->cl_lock); | 
 | 264 | 		rb_erase(&sp->so_client_node, &clp->cl_state_owners); | 
 | 265 | 		RB_CLEAR_NODE(&sp->so_client_node); | 
 | 266 | 		spin_unlock(&clp->cl_lock); | 
 | 267 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } | 
 | 269 |  | 
 | 270 | /* | 
 | 271 |  * Note: must be called with clp->cl_sem held in order to prevent races | 
 | 272 |  *       with reboot recovery! | 
 | 273 |  */ | 
 | 274 | struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred) | 
 | 275 | { | 
| David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 276 | 	struct nfs_client *clp = server->nfs_client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | 	struct nfs4_state_owner *sp, *new; | 
 | 278 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | 	spin_lock(&clp->cl_lock); | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 280 | 	sp = nfs4_find_state_owner(server, cred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | 	spin_unlock(&clp->cl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | 	if (sp != NULL) | 
 | 283 | 		return sp; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 284 | 	new = nfs4_alloc_state_owner(); | 
 | 285 | 	if (new == NULL) | 
 | 286 | 		return NULL; | 
 | 287 | 	new->so_client = clp; | 
| Trond Myklebust | 6f2e64d | 2007-07-06 10:53:21 -0400 | [diff] [blame] | 288 | 	new->so_server = server; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 289 | 	new->so_cred = cred; | 
 | 290 | 	spin_lock(&clp->cl_lock); | 
 | 291 | 	sp = nfs4_insert_state_owner(clp, new); | 
 | 292 | 	spin_unlock(&clp->cl_lock); | 
 | 293 | 	if (sp == new) | 
 | 294 | 		get_rpccred(cred); | 
 | 295 | 	else | 
 | 296 | 		kfree(new); | 
 | 297 | 	return sp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } | 
 | 299 |  | 
 | 300 | /* | 
 | 301 |  * Must be called with clp->cl_sem held in order to avoid races | 
 | 302 |  * with state recovery... | 
 | 303 |  */ | 
 | 304 | void nfs4_put_state_owner(struct nfs4_state_owner *sp) | 
 | 305 | { | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 306 | 	struct nfs_client *clp = sp->so_client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | 	struct rpc_cred *cred = sp->so_cred; | 
 | 308 |  | 
 | 309 | 	if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock)) | 
 | 310 | 		return; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 311 | 	nfs4_remove_state_owner(clp, sp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | 	spin_unlock(&clp->cl_lock); | 
 | 313 | 	put_rpccred(cred); | 
 | 314 | 	kfree(sp); | 
 | 315 | } | 
 | 316 |  | 
 | 317 | static struct nfs4_state * | 
 | 318 | nfs4_alloc_open_state(void) | 
 | 319 | { | 
 | 320 | 	struct nfs4_state *state; | 
 | 321 |  | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 322 | 	state = kzalloc(sizeof(*state), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | 	if (!state) | 
 | 324 | 		return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | 	atomic_set(&state->count, 1); | 
 | 326 | 	INIT_LIST_HEAD(&state->lock_states); | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 327 | 	spin_lock_init(&state->state_lock); | 
| Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 328 | 	seqlock_init(&state->seqlock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | 	return state; | 
 | 330 | } | 
 | 331 |  | 
| Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 332 | void | 
 | 333 | nfs4_state_set_mode_locked(struct nfs4_state *state, mode_t mode) | 
 | 334 | { | 
 | 335 | 	if (state->state == mode) | 
 | 336 | 		return; | 
 | 337 | 	/* NB! List reordering - see the reclaim code for why.  */ | 
 | 338 | 	if ((mode & FMODE_WRITE) != (state->state & FMODE_WRITE)) { | 
 | 339 | 		if (mode & FMODE_WRITE) | 
 | 340 | 			list_move(&state->open_states, &state->owner->so_states); | 
 | 341 | 		else | 
 | 342 | 			list_move_tail(&state->open_states, &state->owner->so_states); | 
 | 343 | 	} | 
| Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 344 | 	state->state = mode; | 
 | 345 | } | 
 | 346 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | static struct nfs4_state * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | __nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner) | 
 | 349 | { | 
 | 350 | 	struct nfs_inode *nfsi = NFS_I(inode); | 
 | 351 | 	struct nfs4_state *state; | 
 | 352 |  | 
 | 353 | 	list_for_each_entry(state, &nfsi->open_states, inode_states) { | 
| Trond Myklebust | 1c816ef | 2007-07-03 14:41:19 -0400 | [diff] [blame] | 354 | 		if (state->owner != owner) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | 			continue; | 
| Trond Myklebust | 1c816ef | 2007-07-03 14:41:19 -0400 | [diff] [blame] | 356 | 		if (atomic_inc_not_zero(&state->count)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | 			return state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | 	} | 
 | 359 | 	return NULL; | 
 | 360 | } | 
 | 361 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | static void | 
 | 363 | nfs4_free_open_state(struct nfs4_state *state) | 
 | 364 | { | 
 | 365 | 	kfree(state); | 
 | 366 | } | 
 | 367 |  | 
 | 368 | struct nfs4_state * | 
 | 369 | nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner) | 
 | 370 | { | 
 | 371 | 	struct nfs4_state *state, *new; | 
 | 372 | 	struct nfs_inode *nfsi = NFS_I(inode); | 
 | 373 |  | 
 | 374 | 	spin_lock(&inode->i_lock); | 
 | 375 | 	state = __nfs4_find_state_byowner(inode, owner); | 
 | 376 | 	spin_unlock(&inode->i_lock); | 
 | 377 | 	if (state) | 
 | 378 | 		goto out; | 
 | 379 | 	new = nfs4_alloc_open_state(); | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 380 | 	spin_lock(&owner->so_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | 	spin_lock(&inode->i_lock); | 
 | 382 | 	state = __nfs4_find_state_byowner(inode, owner); | 
 | 383 | 	if (state == NULL && new != NULL) { | 
 | 384 | 		state = new; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | 		state->owner = owner; | 
 | 386 | 		atomic_inc(&owner->so_count); | 
 | 387 | 		list_add(&state->inode_states, &nfsi->open_states); | 
 | 388 | 		state->inode = igrab(inode); | 
 | 389 | 		spin_unlock(&inode->i_lock); | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 390 | 		/* Note: The reclaim code dictates that we add stateless | 
 | 391 | 		 * and read-only stateids to the end of the list */ | 
 | 392 | 		list_add_tail(&state->open_states, &owner->so_states); | 
 | 393 | 		spin_unlock(&owner->so_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | 	} else { | 
 | 395 | 		spin_unlock(&inode->i_lock); | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 396 | 		spin_unlock(&owner->so_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | 		if (new) | 
 | 398 | 			nfs4_free_open_state(new); | 
 | 399 | 	} | 
 | 400 | out: | 
 | 401 | 	return state; | 
 | 402 | } | 
 | 403 |  | 
 | 404 | /* | 
 | 405 |  * Beware! Caller must be holding exactly one | 
| Trond Myklebust | e6dfa55 | 2005-10-18 14:20:13 -0700 | [diff] [blame] | 406 |  * reference to clp->cl_sem! | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 |  */ | 
 | 408 | void nfs4_put_open_state(struct nfs4_state *state) | 
 | 409 | { | 
 | 410 | 	struct inode *inode = state->inode; | 
 | 411 | 	struct nfs4_state_owner *owner = state->owner; | 
 | 412 |  | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 413 | 	if (!atomic_dec_and_lock(&state->count, &owner->so_lock)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | 		return; | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 415 | 	spin_lock(&inode->i_lock); | 
| Trond Myklebust | ba68303 | 2007-07-27 10:23:05 -0400 | [diff] [blame] | 416 | 	list_del(&state->inode_states); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | 	list_del(&state->open_states); | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 418 | 	spin_unlock(&inode->i_lock); | 
 | 419 | 	spin_unlock(&owner->so_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | 	iput(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | 	nfs4_free_open_state(state); | 
 | 422 | 	nfs4_put_state_owner(owner); | 
 | 423 | } | 
 | 424 |  | 
 | 425 | /* | 
| Trond Myklebust | 83c9d41 | 2005-10-18 14:20:13 -0700 | [diff] [blame] | 426 |  * Close the current file. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 |  */ | 
| Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 428 | static void __nfs4_close(struct path *path, struct nfs4_state *state, mode_t mode, int wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | 	struct nfs4_state_owner *owner = state->owner; | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 431 | 	int call_close = 0; | 
 | 432 | 	int newstate; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 |  | 
 | 434 | 	atomic_inc(&owner->so_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | 	/* Protect against nfs4_find_state() */ | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 436 | 	spin_lock(&owner->so_lock); | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 437 | 	switch (mode & (FMODE_READ | FMODE_WRITE)) { | 
 | 438 | 		case FMODE_READ: | 
 | 439 | 			state->n_rdonly--; | 
 | 440 | 			break; | 
 | 441 | 		case FMODE_WRITE: | 
 | 442 | 			state->n_wronly--; | 
 | 443 | 			break; | 
 | 444 | 		case FMODE_READ|FMODE_WRITE: | 
 | 445 | 			state->n_rdwr--; | 
 | 446 | 	} | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 447 | 	newstate = FMODE_READ|FMODE_WRITE; | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 448 | 	if (state->n_rdwr == 0) { | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 449 | 		if (state->n_rdonly == 0) { | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 450 | 			newstate &= ~FMODE_READ; | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 451 | 			call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags); | 
 | 452 | 			call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags); | 
 | 453 | 		} | 
 | 454 | 		if (state->n_wronly == 0) { | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 455 | 			newstate &= ~FMODE_WRITE; | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 456 | 			call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags); | 
 | 457 | 			call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags); | 
 | 458 | 		} | 
 | 459 | 		if (newstate == 0) | 
 | 460 | 			clear_bit(NFS_DELEGATED_STATE, &state->flags); | 
| Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 461 | 	} | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 462 | 	nfs4_state_set_mode_locked(state, newstate); | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 463 | 	spin_unlock(&owner->so_lock); | 
| Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 464 |  | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 465 | 	if (!call_close) { | 
| Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 466 | 		nfs4_put_open_state(state); | 
 | 467 | 		nfs4_put_state_owner(owner); | 
 | 468 | 	} else | 
| Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 469 | 		nfs4_do_close(path, state, wait); | 
 | 470 | } | 
 | 471 |  | 
 | 472 | void nfs4_close_state(struct path *path, struct nfs4_state *state, mode_t mode) | 
 | 473 | { | 
 | 474 | 	__nfs4_close(path, state, mode, 0); | 
 | 475 | } | 
 | 476 |  | 
 | 477 | void nfs4_close_sync(struct path *path, struct nfs4_state *state, mode_t mode) | 
 | 478 | { | 
 | 479 | 	__nfs4_close(path, state, mode, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } | 
 | 481 |  | 
 | 482 | /* | 
 | 483 |  * Search the state->lock_states for an existing lock_owner | 
 | 484 |  * that is compatible with current->files | 
 | 485 |  */ | 
 | 486 | static struct nfs4_lock_state * | 
 | 487 | __nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner) | 
 | 488 | { | 
 | 489 | 	struct nfs4_lock_state *pos; | 
 | 490 | 	list_for_each_entry(pos, &state->lock_states, ls_locks) { | 
 | 491 | 		if (pos->ls_owner != fl_owner) | 
 | 492 | 			continue; | 
 | 493 | 		atomic_inc(&pos->ls_count); | 
 | 494 | 		return pos; | 
 | 495 | 	} | 
 | 496 | 	return NULL; | 
 | 497 | } | 
 | 498 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | /* | 
 | 500 |  * Return a compatible lock_state. If no initialized lock_state structure | 
 | 501 |  * exists, return an uninitialized one. | 
 | 502 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 |  */ | 
 | 504 | static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner) | 
 | 505 | { | 
 | 506 | 	struct nfs4_lock_state *lsp; | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 507 | 	struct nfs_client *clp = state->owner->so_client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 |  | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 509 | 	lsp = kzalloc(sizeof(*lsp), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | 	if (lsp == NULL) | 
 | 511 | 		return NULL; | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 512 | 	lsp->ls_seqid.sequence = &state->owner->so_sequence; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | 	atomic_set(&lsp->ls_count, 1); | 
 | 514 | 	lsp->ls_owner = fl_owner; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | 	spin_lock(&clp->cl_lock); | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 516 | 	nfs_alloc_unique_id(&clp->cl_lockowner_id, &lsp->ls_id, 1, 64); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | 	spin_unlock(&clp->cl_lock); | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 518 | 	INIT_LIST_HEAD(&lsp->ls_locks); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | 	return lsp; | 
 | 520 | } | 
 | 521 |  | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 522 | static void nfs4_free_lock_state(struct nfs4_lock_state *lsp) | 
 | 523 | { | 
 | 524 | 	struct nfs_client *clp = lsp->ls_state->owner->so_client; | 
 | 525 |  | 
 | 526 | 	spin_lock(&clp->cl_lock); | 
 | 527 | 	nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id); | 
 | 528 | 	spin_unlock(&clp->cl_lock); | 
 | 529 | 	kfree(lsp); | 
 | 530 | } | 
 | 531 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | /* | 
 | 533 |  * Return a compatible lock_state. If no initialized lock_state structure | 
 | 534 |  * exists, return an uninitialized one. | 
 | 535 |  * | 
| Trond Myklebust | e6dfa55 | 2005-10-18 14:20:13 -0700 | [diff] [blame] | 536 |  * The caller must be holding clp->cl_sem | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 |  */ | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 538 | static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 540 | 	struct nfs4_lock_state *lsp, *new = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | 	 | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 542 | 	for(;;) { | 
 | 543 | 		spin_lock(&state->state_lock); | 
 | 544 | 		lsp = __nfs4_find_lock_state(state, owner); | 
 | 545 | 		if (lsp != NULL) | 
 | 546 | 			break; | 
 | 547 | 		if (new != NULL) { | 
 | 548 | 			new->ls_state = state; | 
 | 549 | 			list_add(&new->ls_locks, &state->lock_states); | 
 | 550 | 			set_bit(LK_STATE_IN_USE, &state->flags); | 
 | 551 | 			lsp = new; | 
 | 552 | 			new = NULL; | 
 | 553 | 			break; | 
 | 554 | 		} | 
 | 555 | 		spin_unlock(&state->state_lock); | 
 | 556 | 		new = nfs4_alloc_lock_state(state, owner); | 
 | 557 | 		if (new == NULL) | 
 | 558 | 			return NULL; | 
 | 559 | 	} | 
 | 560 | 	spin_unlock(&state->state_lock); | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 561 | 	if (new != NULL) | 
 | 562 | 		nfs4_free_lock_state(new); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | 	return lsp; | 
 | 564 | } | 
 | 565 |  | 
 | 566 | /* | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 567 |  * Release reference to lock_state, and free it if we see that | 
 | 568 |  * it is no longer in use | 
 | 569 |  */ | 
| Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 570 | void nfs4_put_lock_state(struct nfs4_lock_state *lsp) | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 571 | { | 
 | 572 | 	struct nfs4_state *state; | 
 | 573 |  | 
 | 574 | 	if (lsp == NULL) | 
 | 575 | 		return; | 
 | 576 | 	state = lsp->ls_state; | 
 | 577 | 	if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock)) | 
 | 578 | 		return; | 
 | 579 | 	list_del(&lsp->ls_locks); | 
 | 580 | 	if (list_empty(&state->lock_states)) | 
 | 581 | 		clear_bit(LK_STATE_IN_USE, &state->flags); | 
 | 582 | 	spin_unlock(&state->state_lock); | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 583 | 	nfs4_free_lock_state(lsp); | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 584 | } | 
 | 585 |  | 
 | 586 | static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src) | 
 | 587 | { | 
 | 588 | 	struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner; | 
 | 589 |  | 
 | 590 | 	dst->fl_u.nfs4_fl.owner = lsp; | 
 | 591 | 	atomic_inc(&lsp->ls_count); | 
 | 592 | } | 
 | 593 |  | 
 | 594 | static void nfs4_fl_release_lock(struct file_lock *fl) | 
 | 595 | { | 
 | 596 | 	nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner); | 
 | 597 | } | 
 | 598 |  | 
 | 599 | static struct file_lock_operations nfs4_fl_lock_ops = { | 
 | 600 | 	.fl_copy_lock = nfs4_fl_copy_lock, | 
 | 601 | 	.fl_release_private = nfs4_fl_release_lock, | 
 | 602 | }; | 
 | 603 |  | 
 | 604 | int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl) | 
 | 605 | { | 
 | 606 | 	struct nfs4_lock_state *lsp; | 
 | 607 |  | 
 | 608 | 	if (fl->fl_ops != NULL) | 
 | 609 | 		return 0; | 
 | 610 | 	lsp = nfs4_get_lock_state(state, fl->fl_owner); | 
 | 611 | 	if (lsp == NULL) | 
 | 612 | 		return -ENOMEM; | 
 | 613 | 	fl->fl_u.nfs4_fl.owner = lsp; | 
 | 614 | 	fl->fl_ops = &nfs4_fl_lock_ops; | 
 | 615 | 	return 0; | 
 | 616 | } | 
 | 617 |  | 
 | 618 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 |  * Byte-range lock aware utility to initialize the stateid of read/write | 
 | 620 |  * requests. | 
 | 621 |  */ | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 622 | void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 624 | 	struct nfs4_lock_state *lsp; | 
| Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 625 | 	int seq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 |  | 
| Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 627 | 	do { | 
 | 628 | 		seq = read_seqbegin(&state->seqlock); | 
 | 629 | 		memcpy(dst, &state->stateid, sizeof(*dst)); | 
 | 630 | 	} while (read_seqretry(&state->seqlock, seq)); | 
| Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 631 | 	if (test_bit(LK_STATE_IN_USE, &state->flags) == 0) | 
 | 632 | 		return; | 
 | 633 |  | 
 | 634 | 	spin_lock(&state->state_lock); | 
 | 635 | 	lsp = __nfs4_find_lock_state(state, fl_owner); | 
 | 636 | 	if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0) | 
 | 637 | 		memcpy(dst, &lsp->ls_stateid, sizeof(*dst)); | 
 | 638 | 	spin_unlock(&state->state_lock); | 
 | 639 | 	nfs4_put_lock_state(lsp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } | 
 | 641 |  | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 642 | struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { | 
| Trond Myklebust | 36f20c6 | 2005-11-25 17:09:57 -0500 | [diff] [blame] | 644 | 	struct rpc_sequence *sequence = counter->sequence; | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 645 | 	struct nfs_seqid *new; | 
 | 646 |  | 
 | 647 | 	new = kmalloc(sizeof(*new), GFP_KERNEL); | 
 | 648 | 	if (new != NULL) { | 
 | 649 | 		new->sequence = counter; | 
| Trond Myklebust | 36f20c6 | 2005-11-25 17:09:57 -0500 | [diff] [blame] | 650 | 		spin_lock(&sequence->lock); | 
 | 651 | 		list_add_tail(&new->list, &sequence->list); | 
 | 652 | 		spin_unlock(&sequence->lock); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 653 | 	} | 
 | 654 | 	return new; | 
 | 655 | } | 
 | 656 |  | 
 | 657 | void nfs_free_seqid(struct nfs_seqid *seqid) | 
 | 658 | { | 
 | 659 | 	struct rpc_sequence *sequence = seqid->sequence->sequence; | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 660 |  | 
| Trond Myklebust | 36f20c6 | 2005-11-25 17:09:57 -0500 | [diff] [blame] | 661 | 	spin_lock(&sequence->lock); | 
 | 662 | 	list_del(&seqid->list); | 
 | 663 | 	spin_unlock(&sequence->lock); | 
 | 664 | 	rpc_wake_up(&sequence->wait); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 665 | 	kfree(seqid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } | 
 | 667 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | /* | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 669 |  * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or | 
 | 670 |  * failed with a seqid incrementing error - | 
 | 671 |  * see comments nfs_fs.h:seqid_mutating_error() | 
 | 672 |  */ | 
| Trond Myklebust | 88d9093 | 2007-07-02 14:03:03 -0400 | [diff] [blame] | 673 | static void nfs_increment_seqid(int status, struct nfs_seqid *seqid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 675 | 	switch (status) { | 
 | 676 | 		case 0: | 
 | 677 | 			break; | 
 | 678 | 		case -NFS4ERR_BAD_SEQID: | 
| Trond Myklebust | 6f43ddc | 2007-07-08 16:49:11 -0400 | [diff] [blame] | 679 | 			if (seqid->sequence->flags & NFS_SEQID_CONFIRMED) | 
 | 680 | 				return; | 
 | 681 | 			printk(KERN_WARNING "NFS: v4 server returned a bad" | 
 | 682 | 					"sequence-id error on an" | 
 | 683 | 					"unconfirmed sequence %p!\n", | 
 | 684 | 					seqid->sequence); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 685 | 		case -NFS4ERR_STALE_CLIENTID: | 
 | 686 | 		case -NFS4ERR_STALE_STATEID: | 
 | 687 | 		case -NFS4ERR_BAD_STATEID: | 
 | 688 | 		case -NFS4ERR_BADXDR: | 
 | 689 | 		case -NFS4ERR_RESOURCE: | 
 | 690 | 		case -NFS4ERR_NOFILEHANDLE: | 
 | 691 | 			/* Non-seqid mutating errors */ | 
 | 692 | 			return; | 
 | 693 | 	}; | 
 | 694 | 	/* | 
 | 695 | 	 * Note: no locking needed as we are guaranteed to be first | 
 | 696 | 	 * on the sequence list | 
 | 697 | 	 */ | 
 | 698 | 	seqid->sequence->counter++; | 
 | 699 | } | 
 | 700 |  | 
 | 701 | void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid) | 
 | 702 | { | 
 | 703 | 	if (status == -NFS4ERR_BAD_SEQID) { | 
 | 704 | 		struct nfs4_state_owner *sp = container_of(seqid->sequence, | 
 | 705 | 				struct nfs4_state_owner, so_seqid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | 		nfs4_drop_state_owner(sp); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 707 | 	} | 
| Trond Myklebust | 88d9093 | 2007-07-02 14:03:03 -0400 | [diff] [blame] | 708 | 	nfs_increment_seqid(status, seqid); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 709 | } | 
 | 710 |  | 
 | 711 | /* | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 712 |  * Increment the seqid if the LOCK/LOCKU succeeded, or | 
 | 713 |  * failed with a seqid incrementing error - | 
 | 714 |  * see comments nfs_fs.h:seqid_mutating_error() | 
 | 715 |  */ | 
 | 716 | void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid) | 
 | 717 | { | 
| Trond Myklebust | 88d9093 | 2007-07-02 14:03:03 -0400 | [diff] [blame] | 718 | 	nfs_increment_seqid(status, seqid); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 719 | } | 
 | 720 |  | 
 | 721 | int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task) | 
 | 722 | { | 
 | 723 | 	struct rpc_sequence *sequence = seqid->sequence->sequence; | 
 | 724 | 	int status = 0; | 
 | 725 |  | 
| Trond Myklebust | 4e51336 | 2005-10-20 14:22:41 -0700 | [diff] [blame] | 726 | 	if (sequence->list.next == &seqid->list) | 
 | 727 | 		goto out; | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 728 | 	spin_lock(&sequence->lock); | 
| Trond Myklebust | 36f20c6 | 2005-11-25 17:09:57 -0500 | [diff] [blame] | 729 | 	if (sequence->list.next != &seqid->list) { | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 730 | 		rpc_sleep_on(&sequence->wait, task, NULL, NULL); | 
 | 731 | 		status = -EAGAIN; | 
| Trond Myklebust | 36f20c6 | 2005-11-25 17:09:57 -0500 | [diff] [blame] | 732 | 	} | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 733 | 	spin_unlock(&sequence->lock); | 
| Trond Myklebust | 4e51336 | 2005-10-20 14:22:41 -0700 | [diff] [blame] | 734 | out: | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 735 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } | 
 | 737 |  | 
 | 738 | static int reclaimer(void *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 |  | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 740 | static inline void nfs4_clear_recover_bit(struct nfs_client *clp) | 
| Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 741 | { | 
 | 742 | 	smp_mb__before_clear_bit(); | 
 | 743 | 	clear_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state); | 
 | 744 | 	smp_mb__after_clear_bit(); | 
 | 745 | 	wake_up_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER); | 
 | 746 | 	rpc_wake_up(&clp->cl_rpcwaitq); | 
 | 747 | } | 
 | 748 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | /* | 
 | 750 |  * State recovery routine | 
 | 751 |  */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 752 | static void nfs4_recover_state(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 754 | 	struct task_struct *task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 |  | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 756 | 	__module_get(THIS_MODULE); | 
 | 757 | 	atomic_inc(&clp->cl_count); | 
 | 758 | 	task = kthread_run(reclaimer, clp, "%u.%u.%u.%u-reclaim", | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 759 | 			NIPQUAD(clp->cl_addr.sin_addr)); | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 760 | 	if (!IS_ERR(task)) | 
 | 761 | 		return; | 
| Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 762 | 	nfs4_clear_recover_bit(clp); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 763 | 	nfs_put_client(clp); | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 764 | 	module_put(THIS_MODULE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } | 
 | 766 |  | 
 | 767 | /* | 
 | 768 |  * Schedule a state recovery attempt | 
 | 769 |  */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 770 | void nfs4_schedule_state_recovery(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { | 
 | 772 | 	if (!clp) | 
 | 773 | 		return; | 
| Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 774 | 	if (test_and_set_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0) | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 775 | 		nfs4_recover_state(clp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } | 
 | 777 |  | 
 | 778 | static int nfs4_reclaim_locks(struct nfs4_state_recovery_ops *ops, struct nfs4_state *state) | 
 | 779 | { | 
 | 780 | 	struct inode *inode = state->inode; | 
 | 781 | 	struct file_lock *fl; | 
 | 782 | 	int status = 0; | 
 | 783 |  | 
 | 784 | 	for (fl = inode->i_flock; fl != 0; fl = fl->fl_next) { | 
| Trond Myklebust | 43b2a33 | 2005-11-04 15:35:30 -0500 | [diff] [blame] | 785 | 		if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | 			continue; | 
| Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 787 | 		if (nfs_file_open_context(fl->fl_file)->state != state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | 			continue; | 
 | 789 | 		status = ops->recover_lock(state, fl); | 
 | 790 | 		if (status >= 0) | 
 | 791 | 			continue; | 
 | 792 | 		switch (status) { | 
 | 793 | 			default: | 
 | 794 | 				printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n", | 
 | 795 | 						__FUNCTION__, status); | 
 | 796 | 			case -NFS4ERR_EXPIRED: | 
 | 797 | 			case -NFS4ERR_NO_GRACE: | 
 | 798 | 			case -NFS4ERR_RECLAIM_BAD: | 
 | 799 | 			case -NFS4ERR_RECLAIM_CONFLICT: | 
| Trond Myklebust | 43b2a33 | 2005-11-04 15:35:30 -0500 | [diff] [blame] | 800 | 				/* kill_proc(fl->fl_pid, SIGLOST, 1); */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | 				break; | 
 | 802 | 			case -NFS4ERR_STALE_CLIENTID: | 
 | 803 | 				goto out_err; | 
 | 804 | 		} | 
 | 805 | 	} | 
 | 806 | 	return 0; | 
 | 807 | out_err: | 
 | 808 | 	return status; | 
 | 809 | } | 
 | 810 |  | 
 | 811 | static int nfs4_reclaim_open_state(struct nfs4_state_recovery_ops *ops, struct nfs4_state_owner *sp) | 
 | 812 | { | 
 | 813 | 	struct nfs4_state *state; | 
 | 814 | 	struct nfs4_lock_state *lock; | 
 | 815 | 	int status = 0; | 
 | 816 |  | 
 | 817 | 	/* Note: we rely on the sp->so_states list being ordered  | 
 | 818 | 	 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE) | 
 | 819 | 	 * states first. | 
 | 820 | 	 * This is needed to ensure that the server won't give us any | 
 | 821 | 	 * read delegations that we have to return if, say, we are | 
 | 822 | 	 * recovering after a network partition or a reboot from a | 
 | 823 | 	 * server that doesn't support a grace period. | 
 | 824 | 	 */ | 
 | 825 | 	list_for_each_entry(state, &sp->so_states, open_states) { | 
 | 826 | 		if (state->state == 0) | 
 | 827 | 			continue; | 
 | 828 | 		status = ops->recover_open(sp, state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | 		if (status >= 0) { | 
 | 830 | 			status = nfs4_reclaim_locks(ops, state); | 
 | 831 | 			if (status < 0) | 
 | 832 | 				goto out_err; | 
 | 833 | 			list_for_each_entry(lock, &state->lock_states, ls_locks) { | 
 | 834 | 				if (!(lock->ls_flags & NFS_LOCK_INITIALIZED)) | 
 | 835 | 					printk("%s: Lock reclaim failed!\n", | 
 | 836 | 							__FUNCTION__); | 
 | 837 | 			} | 
 | 838 | 			continue; | 
 | 839 | 		} | 
 | 840 | 		switch (status) { | 
 | 841 | 			default: | 
 | 842 | 				printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n", | 
 | 843 | 						__FUNCTION__, status); | 
 | 844 | 			case -ENOENT: | 
 | 845 | 			case -NFS4ERR_RECLAIM_BAD: | 
 | 846 | 			case -NFS4ERR_RECLAIM_CONFLICT: | 
 | 847 | 				/* | 
 | 848 | 				 * Open state on this file cannot be recovered | 
 | 849 | 				 * All we can do is revert to using the zero stateid. | 
 | 850 | 				 */ | 
 | 851 | 				memset(state->stateid.data, 0, | 
 | 852 | 					sizeof(state->stateid.data)); | 
 | 853 | 				/* Mark the file as being 'closed' */ | 
 | 854 | 				state->state = 0; | 
 | 855 | 				break; | 
 | 856 | 			case -NFS4ERR_EXPIRED: | 
 | 857 | 			case -NFS4ERR_NO_GRACE: | 
 | 858 | 			case -NFS4ERR_STALE_CLIENTID: | 
 | 859 | 				goto out_err; | 
 | 860 | 		} | 
 | 861 | 	} | 
 | 862 | 	return 0; | 
 | 863 | out_err: | 
 | 864 | 	return status; | 
 | 865 | } | 
 | 866 |  | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 867 | static void nfs4_state_mark_reclaim(struct nfs_client *clp) | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 868 | { | 
 | 869 | 	struct nfs4_state_owner *sp; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 870 | 	struct rb_node *pos; | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 871 | 	struct nfs4_state *state; | 
 | 872 | 	struct nfs4_lock_state *lock; | 
 | 873 |  | 
 | 874 | 	/* Reset all sequence ids to zero */ | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 875 | 	for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) { | 
 | 876 | 		sp = rb_entry(pos, struct nfs4_state_owner, so_client_node); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 877 | 		sp->so_seqid.counter = 0; | 
 | 878 | 		sp->so_seqid.flags = 0; | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 879 | 		spin_lock(&sp->so_lock); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 880 | 		list_for_each_entry(state, &sp->so_states, open_states) { | 
| Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 881 | 			clear_bit(NFS_DELEGATED_STATE, &state->flags); | 
 | 882 | 			clear_bit(NFS_O_RDONLY_STATE, &state->flags); | 
 | 883 | 			clear_bit(NFS_O_WRONLY_STATE, &state->flags); | 
 | 884 | 			clear_bit(NFS_O_RDWR_STATE, &state->flags); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 885 | 			list_for_each_entry(lock, &state->lock_states, ls_locks) { | 
 | 886 | 				lock->ls_seqid.counter = 0; | 
 | 887 | 				lock->ls_seqid.flags = 0; | 
 | 888 | 				lock->ls_flags &= ~NFS_LOCK_INITIALIZED; | 
 | 889 | 			} | 
 | 890 | 		} | 
| Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 891 | 		spin_unlock(&sp->so_lock); | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 892 | 	} | 
 | 893 | } | 
 | 894 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | static int reclaimer(void *ptr) | 
 | 896 | { | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 897 | 	struct nfs_client *clp = ptr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | 	struct nfs4_state_owner *sp; | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 899 | 	struct rb_node *pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | 	struct nfs4_state_recovery_ops *ops; | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 901 | 	struct rpc_cred *cred; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | 	int status = 0; | 
 | 903 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | 	allow_signal(SIGKILL); | 
 | 905 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | 	/* Ensure exclusive access to NFSv4 state */ | 
 | 907 | 	lock_kernel(); | 
 | 908 | 	down_write(&clp->cl_sem); | 
 | 909 | 	/* Are there any NFS mounts out there? */ | 
 | 910 | 	if (list_empty(&clp->cl_superblocks)) | 
 | 911 | 		goto out; | 
 | 912 | restart_loop: | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 913 | 	ops = &nfs4_network_partition_recovery_ops; | 
 | 914 | 	/* Are there any open files on this volume? */ | 
 | 915 | 	cred = nfs4_get_renew_cred(clp); | 
 | 916 | 	if (cred != NULL) { | 
 | 917 | 		/* Yes there are: try to renew the old lease */ | 
 | 918 | 		status = nfs4_proc_renew(clp, cred); | 
 | 919 | 		switch (status) { | 
 | 920 | 			case 0: | 
 | 921 | 			case -NFS4ERR_CB_PATH_DOWN: | 
 | 922 | 				put_rpccred(cred); | 
 | 923 | 				goto out; | 
 | 924 | 			case -NFS4ERR_STALE_CLIENTID: | 
 | 925 | 			case -NFS4ERR_LEASE_MOVED: | 
 | 926 | 				ops = &nfs4_reboot_recovery_ops; | 
 | 927 | 		} | 
 | 928 | 	} else { | 
 | 929 | 		/* "reboot" to ensure we clear all state on the server */ | 
 | 930 | 		clp->cl_boot_time = CURRENT_TIME; | 
 | 931 | 		cred = nfs4_get_setclientid_cred(clp); | 
 | 932 | 	} | 
 | 933 | 	/* We're going to have to re-establish a clientid */ | 
| Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 934 | 	nfs4_state_mark_reclaim(clp); | 
| Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 935 | 	status = -ENOENT; | 
 | 936 | 	if (cred != NULL) { | 
 | 937 | 		status = nfs4_init_client(clp, cred); | 
 | 938 | 		put_rpccred(cred); | 
 | 939 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | 	if (status) | 
 | 941 | 		goto out_error; | 
 | 942 | 	/* Mark all delegations for reclaim */ | 
 | 943 | 	nfs_delegation_mark_reclaim(clp); | 
 | 944 | 	/* Note: list is protected by exclusive lock on cl->cl_sem */ | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 945 | 	for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) { | 
 | 946 | 		sp = rb_entry(pos, struct nfs4_state_owner, so_client_node); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | 		status = nfs4_reclaim_open_state(ops, sp); | 
 | 948 | 		if (status < 0) { | 
 | 949 | 			if (status == -NFS4ERR_NO_GRACE) { | 
 | 950 | 				ops = &nfs4_network_partition_recovery_ops; | 
 | 951 | 				status = nfs4_reclaim_open_state(ops, sp); | 
 | 952 | 			} | 
 | 953 | 			if (status == -NFS4ERR_STALE_CLIENTID) | 
 | 954 | 				goto restart_loop; | 
 | 955 | 			if (status == -NFS4ERR_EXPIRED) | 
 | 956 | 				goto restart_loop; | 
 | 957 | 		} | 
 | 958 | 	} | 
 | 959 | 	nfs_delegation_reap_unclaimed(clp); | 
 | 960 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | 	up_write(&clp->cl_sem); | 
 | 962 | 	unlock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | 	if (status == -NFS4ERR_CB_PATH_DOWN) | 
 | 964 | 		nfs_handle_cb_pathdown(clp); | 
| Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 965 | 	nfs4_clear_recover_bit(clp); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 966 | 	nfs_put_client(clp); | 
| Trond Myklebust | 5043e90 | 2006-01-03 09:55:23 +0100 | [diff] [blame] | 967 | 	module_put_and_exit(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | 	return 0; | 
 | 969 | out_error: | 
 | 970 | 	printk(KERN_WARNING "Error: state recovery failed on NFSv4 server %u.%u.%u.%u with error %d\n", | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 971 | 				NIPQUAD(clp->cl_addr.sin_addr), -status); | 
| Trond Myklebust | 51581f3 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 972 | 	set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | 	goto out; | 
 | 974 | } | 
 | 975 |  | 
 | 976 | /* | 
 | 977 |  * Local variables: | 
 | 978 |  *  c-basic-offset: 8 | 
 | 979 |  * End: | 
 | 980 |  */ |