blob: da940abcfaa5cfefe7abedc086cefdfce893aa38 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Myklebust6f43ddc2007-07-08 16:49:11 -040041#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/slab.h>
43#include <linux/smp_lock.h>
44#include <linux/nfs_fs.h>
45#include <linux/nfs_idmap.h>
Trond Myklebust5043e902006-01-03 09:55:23 +010046#include <linux/kthread.h>
47#include <linux/module.h>
Trond Myklebust9f958ab2007-07-02 13:58:33 -040048#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/workqueue.h>
50#include <linux/bitops.h>
51
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "callback.h"
54#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040055#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define OPENOWNER_POOL_SIZE 8
58
Trond Myklebust4ce79712005-06-22 17:16:21 +000059const nfs4_stateid zero_stateid;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static LIST_HEAD(nfs4_clientid_list);
62
David Howellsadfa6f92006-08-22 20:06:08 -040063static int nfs4_init_client(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Chuck Leverf738f512009-03-18 20:48:06 -040065 unsigned short port;
66 int status;
67
68 port = nfs_callback_tcpport;
69 if (clp->cl_addr.ss_family == AF_INET6)
70 port = nfs_callback_tcpport6;
71
72 status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (status == 0)
Trond Myklebust286d7d62006-01-03 09:55:26 +010074 status = nfs4_proc_setclientid_confirm(clp, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (status == 0)
76 nfs4_schedule_state_renewal(clp);
77 return status;
78}
79
Andy Adamsona7b72102009-04-01 09:22:46 -040080struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp)
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040081{
82 struct rpc_cred *cred = NULL;
83
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040084 if (clp->cl_machine_cred != NULL)
85 cred = get_rpccred(clp->cl_machine_cred);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040086 return cred;
87}
88
89static void nfs4_clear_machine_cred(struct nfs_client *clp)
90{
91 struct rpc_cred *cred;
92
93 spin_lock(&clp->cl_lock);
94 cred = clp->cl_machine_cred;
95 clp->cl_machine_cred = NULL;
96 spin_unlock(&clp->cl_lock);
97 if (cred != NULL)
98 put_rpccred(cred);
99}
100
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500101struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100102{
103 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400104 struct rb_node *pos;
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100105 struct rpc_cred *cred = NULL;
106
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400107 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
108 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100109 if (list_empty(&sp->so_states))
110 continue;
111 cred = get_rpccred(sp->so_cred);
112 break;
113 }
114 return cred;
115}
116
Andy Adamsona7b72102009-04-01 09:22:46 -0400117struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp)
Trond Myklebust286d7d62006-01-03 09:55:26 +0100118{
119 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400120 struct rb_node *pos;
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400121 struct rpc_cred *cred;
Trond Myklebust286d7d62006-01-03 09:55:26 +0100122
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500123 spin_lock(&clp->cl_lock);
124 cred = nfs4_get_machine_cred_locked(clp);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400125 if (cred != NULL)
126 goto out;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400127 pos = rb_first(&clp->cl_state_owners);
128 if (pos != NULL) {
129 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400130 cred = get_rpccred(sp->so_cred);
Trond Myklebust286d7d62006-01-03 09:55:26 +0100131 }
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400132out:
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500133 spin_unlock(&clp->cl_lock);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400134 return cred;
Trond Myklebust286d7d62006-01-03 09:55:26 +0100135}
136
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400137static void nfs_alloc_unique_id(struct rb_root *root, struct nfs_unique_id *new,
138 __u64 minval, int maxbits)
139{
140 struct rb_node **p, *parent;
141 struct nfs_unique_id *pos;
142 __u64 mask = ~0ULL;
143
144 if (maxbits < 64)
145 mask = (1ULL << maxbits) - 1ULL;
146
147 /* Ensure distribution is more or less flat */
148 get_random_bytes(&new->id, sizeof(new->id));
149 new->id &= mask;
150 if (new->id < minval)
151 new->id += minval;
152retry:
153 p = &root->rb_node;
154 parent = NULL;
155
156 while (*p != NULL) {
157 parent = *p;
158 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
159
160 if (new->id < pos->id)
161 p = &(*p)->rb_left;
162 else if (new->id > pos->id)
163 p = &(*p)->rb_right;
164 else
165 goto id_exists;
166 }
167 rb_link_node(&new->rb_node, parent, p);
168 rb_insert_color(&new->rb_node, root);
169 return;
170id_exists:
171 for (;;) {
172 new->id++;
173 if (new->id < minval || (new->id & mask) != new->id) {
174 new->id = minval;
175 break;
176 }
177 parent = rb_next(parent);
178 if (parent == NULL)
179 break;
180 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
181 if (new->id < pos->id)
182 break;
183 }
184 goto retry;
185}
186
187static void nfs_free_unique_id(struct rb_root *root, struct nfs_unique_id *id)
188{
189 rb_erase(&id->rb_node, root);
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static struct nfs4_state_owner *
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400193nfs4_find_state_owner(struct nfs_server *server, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400195 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400196 struct rb_node **p = &clp->cl_state_owners.rb_node,
197 *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct nfs4_state_owner *sp, *res = NULL;
199
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400200 while (*p != NULL) {
201 parent = *p;
202 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
203
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400204 if (server < sp->so_server) {
205 p = &parent->rb_left;
206 continue;
207 }
208 if (server > sp->so_server) {
209 p = &parent->rb_right;
210 continue;
211 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400212 if (cred < sp->so_cred)
213 p = &parent->rb_left;
214 else if (cred > sp->so_cred)
215 p = &parent->rb_right;
216 else {
217 atomic_inc(&sp->so_count);
218 res = sp;
219 break;
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222 return res;
223}
224
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400225static struct nfs4_state_owner *
226nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new)
227{
228 struct rb_node **p = &clp->cl_state_owners.rb_node,
229 *parent = NULL;
230 struct nfs4_state_owner *sp;
231
232 while (*p != NULL) {
233 parent = *p;
234 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
235
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400236 if (new->so_server < sp->so_server) {
237 p = &parent->rb_left;
238 continue;
239 }
240 if (new->so_server > sp->so_server) {
241 p = &parent->rb_right;
242 continue;
243 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400244 if (new->so_cred < sp->so_cred)
245 p = &parent->rb_left;
246 else if (new->so_cred > sp->so_cred)
247 p = &parent->rb_right;
248 else {
249 atomic_inc(&sp->so_count);
250 return sp;
251 }
252 }
253 nfs_alloc_unique_id(&clp->cl_openowner_id, &new->so_owner_id, 1, 64);
254 rb_link_node(&new->so_client_node, parent, p);
255 rb_insert_color(&new->so_client_node, &clp->cl_state_owners);
256 return new;
257}
258
259static void
260nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp)
261{
262 if (!RB_EMPTY_NODE(&sp->so_client_node))
263 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
264 nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id);
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*
268 * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
269 * create a new state_owner.
270 *
271 */
272static struct nfs4_state_owner *
273nfs4_alloc_state_owner(void)
274{
275 struct nfs4_state_owner *sp;
276
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700277 sp = kzalloc(sizeof(*sp),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!sp)
279 return NULL;
Trond Myklebustec073422005-10-20 14:22:47 -0700280 spin_lock_init(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 INIT_LIST_HEAD(&sp->so_states);
282 INIT_LIST_HEAD(&sp->so_delegations);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700283 rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue");
284 sp->so_seqid.sequence = &sp->so_sequence;
285 spin_lock_init(&sp->so_sequence.lock);
286 INIT_LIST_HEAD(&sp->so_sequence.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 atomic_set(&sp->so_count, 1);
288 return sp;
289}
290
Adrian Bunk1d2e88e2008-05-02 13:42:45 -0700291static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292nfs4_drop_state_owner(struct nfs4_state_owner *sp)
293{
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400294 if (!RB_EMPTY_NODE(&sp->so_client_node)) {
295 struct nfs_client *clp = sp->so_client;
296
297 spin_lock(&clp->cl_lock);
298 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
299 RB_CLEAR_NODE(&sp->so_client_node);
300 spin_unlock(&clp->cl_lock);
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred)
305{
David Howells7539bba2006-08-22 20:06:09 -0400306 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct nfs4_state_owner *sp, *new;
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 spin_lock(&clp->cl_lock);
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400310 sp = nfs4_find_state_owner(server, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 spin_unlock(&clp->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (sp != NULL)
313 return sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400314 new = nfs4_alloc_state_owner();
315 if (new == NULL)
316 return NULL;
317 new->so_client = clp;
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400318 new->so_server = server;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400319 new->so_cred = cred;
320 spin_lock(&clp->cl_lock);
321 sp = nfs4_insert_state_owner(clp, new);
322 spin_unlock(&clp->cl_lock);
323 if (sp == new)
324 get_rpccred(cred);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500325 else {
326 rpc_destroy_wait_queue(&new->so_sequence.wait);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400327 kfree(new);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500328 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400329 return sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332void nfs4_put_state_owner(struct nfs4_state_owner *sp)
333{
David Howellsadfa6f92006-08-22 20:06:08 -0400334 struct nfs_client *clp = sp->so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct rpc_cred *cred = sp->so_cred;
336
337 if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
338 return;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400339 nfs4_remove_state_owner(clp, sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 spin_unlock(&clp->cl_lock);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500341 rpc_destroy_wait_queue(&sp->so_sequence.wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 put_rpccred(cred);
343 kfree(sp);
344}
345
346static struct nfs4_state *
347nfs4_alloc_open_state(void)
348{
349 struct nfs4_state *state;
350
Trond Myklebuste7616922006-01-03 09:55:13 +0100351 state = kzalloc(sizeof(*state), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!state)
353 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 atomic_set(&state->count, 1);
355 INIT_LIST_HEAD(&state->lock_states);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000356 spin_lock_init(&state->state_lock);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400357 seqlock_init(&state->seqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return state;
359}
360
Trond Myklebust4cecb762005-11-04 15:32:58 -0500361void
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500362nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500363{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500364 if (state->state == fmode)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500365 return;
366 /* NB! List reordering - see the reclaim code for why. */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500367 if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
368 if (fmode & FMODE_WRITE)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500369 list_move(&state->open_states, &state->owner->so_states);
370 else
371 list_move_tail(&state->open_states, &state->owner->so_states);
372 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500373 state->state = fmode;
Trond Myklebust4cecb762005-11-04 15:32:58 -0500374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376static struct nfs4_state *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377__nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
378{
379 struct nfs_inode *nfsi = NFS_I(inode);
380 struct nfs4_state *state;
381
382 list_for_each_entry(state, &nfsi->open_states, inode_states) {
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400383 if (state->owner != owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 continue;
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400385 if (atomic_inc_not_zero(&state->count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 return NULL;
389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static void
392nfs4_free_open_state(struct nfs4_state *state)
393{
394 kfree(state);
395}
396
397struct nfs4_state *
398nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
399{
400 struct nfs4_state *state, *new;
401 struct nfs_inode *nfsi = NFS_I(inode);
402
403 spin_lock(&inode->i_lock);
404 state = __nfs4_find_state_byowner(inode, owner);
405 spin_unlock(&inode->i_lock);
406 if (state)
407 goto out;
408 new = nfs4_alloc_open_state();
Trond Myklebustec073422005-10-20 14:22:47 -0700409 spin_lock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 spin_lock(&inode->i_lock);
411 state = __nfs4_find_state_byowner(inode, owner);
412 if (state == NULL && new != NULL) {
413 state = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 state->owner = owner;
415 atomic_inc(&owner->so_count);
416 list_add(&state->inode_states, &nfsi->open_states);
417 state->inode = igrab(inode);
418 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700419 /* Note: The reclaim code dictates that we add stateless
420 * and read-only stateids to the end of the list */
421 list_add_tail(&state->open_states, &owner->so_states);
422 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } else {
424 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700425 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (new)
427 nfs4_free_open_state(new);
428 }
429out:
430 return state;
431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433void nfs4_put_open_state(struct nfs4_state *state)
434{
435 struct inode *inode = state->inode;
436 struct nfs4_state_owner *owner = state->owner;
437
Trond Myklebustec073422005-10-20 14:22:47 -0700438 if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return;
Trond Myklebustec073422005-10-20 14:22:47 -0700440 spin_lock(&inode->i_lock);
Trond Myklebustba683032007-07-27 10:23:05 -0400441 list_del(&state->inode_states);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 list_del(&state->open_states);
Trond Myklebustec073422005-10-20 14:22:47 -0700443 spin_unlock(&inode->i_lock);
444 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 nfs4_free_open_state(state);
447 nfs4_put_state_owner(owner);
448}
449
450/*
Trond Myklebust83c9d412005-10-18 14:20:13 -0700451 * Close the current file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500453static void __nfs4_close(struct path *path, struct nfs4_state *state, fmode_t fmode, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct nfs4_state_owner *owner = state->owner;
Trond Myklebust003707c2007-07-05 18:07:55 -0400456 int call_close = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500457 fmode_t newstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 atomic_inc(&owner->so_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* Protect against nfs4_find_state() */
Trond Myklebustec073422005-10-20 14:22:47 -0700461 spin_lock(&owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500462 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100463 case FMODE_READ:
464 state->n_rdonly--;
465 break;
466 case FMODE_WRITE:
467 state->n_wronly--;
468 break;
469 case FMODE_READ|FMODE_WRITE:
470 state->n_rdwr--;
471 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400472 newstate = FMODE_READ|FMODE_WRITE;
Trond Myklebuste7616922006-01-03 09:55:13 +0100473 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400474 if (state->n_rdonly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100475 newstate &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -0400476 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
477 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
478 }
479 if (state->n_wronly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100480 newstate &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -0400481 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
482 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
483 }
484 if (newstate == 0)
485 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100486 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400487 nfs4_state_set_mode_locked(state, newstate);
Trond Myklebustec073422005-10-20 14:22:47 -0700488 spin_unlock(&owner->so_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500489
Trond Myklebust003707c2007-07-05 18:07:55 -0400490 if (!call_close) {
Trond Myklebustb39e6252007-06-11 23:05:07 -0400491 nfs4_put_open_state(state);
492 nfs4_put_state_owner(owner);
493 } else
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400494 nfs4_do_close(path, state, wait);
495}
496
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500497void nfs4_close_state(struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400498{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500499 __nfs4_close(path, state, fmode, 0);
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400500}
501
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500502void nfs4_close_sync(struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400503{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500504 __nfs4_close(path, state, fmode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/*
508 * Search the state->lock_states for an existing lock_owner
509 * that is compatible with current->files
510 */
511static struct nfs4_lock_state *
512__nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
513{
514 struct nfs4_lock_state *pos;
515 list_for_each_entry(pos, &state->lock_states, ls_locks) {
516 if (pos->ls_owner != fl_owner)
517 continue;
518 atomic_inc(&pos->ls_count);
519 return pos;
520 }
521 return NULL;
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * Return a compatible lock_state. If no initialized lock_state structure
526 * exists, return an uninitialized one.
527 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
529static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
530{
531 struct nfs4_lock_state *lsp;
David Howellsadfa6f92006-08-22 20:06:08 -0400532 struct nfs_client *clp = state->owner->so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700534 lsp = kzalloc(sizeof(*lsp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (lsp == NULL)
536 return NULL;
Trond Myklebustd0dc3702008-01-10 16:07:54 -0500537 rpc_init_wait_queue(&lsp->ls_sequence.wait, "lock_seqid_waitqueue");
538 spin_lock_init(&lsp->ls_sequence.lock);
539 INIT_LIST_HEAD(&lsp->ls_sequence.list);
540 lsp->ls_seqid.sequence = &lsp->ls_sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 atomic_set(&lsp->ls_count, 1);
542 lsp->ls_owner = fl_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 spin_lock(&clp->cl_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400544 nfs_alloc_unique_id(&clp->cl_lockowner_id, &lsp->ls_id, 1, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 spin_unlock(&clp->cl_lock);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000546 INIT_LIST_HEAD(&lsp->ls_locks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return lsp;
548}
549
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400550static void nfs4_free_lock_state(struct nfs4_lock_state *lsp)
551{
552 struct nfs_client *clp = lsp->ls_state->owner->so_client;
553
554 spin_lock(&clp->cl_lock);
555 nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id);
556 spin_unlock(&clp->cl_lock);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500557 rpc_destroy_wait_queue(&lsp->ls_sequence.wait);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400558 kfree(lsp);
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561/*
562 * Return a compatible lock_state. If no initialized lock_state structure
563 * exists, return an uninitialized one.
564 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000566static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000568 struct nfs4_lock_state *lsp, *new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000570 for(;;) {
571 spin_lock(&state->state_lock);
572 lsp = __nfs4_find_lock_state(state, owner);
573 if (lsp != NULL)
574 break;
575 if (new != NULL) {
576 new->ls_state = state;
577 list_add(&new->ls_locks, &state->lock_states);
578 set_bit(LK_STATE_IN_USE, &state->flags);
579 lsp = new;
580 new = NULL;
581 break;
582 }
583 spin_unlock(&state->state_lock);
584 new = nfs4_alloc_lock_state(state, owner);
585 if (new == NULL)
586 return NULL;
587 }
588 spin_unlock(&state->state_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400589 if (new != NULL)
590 nfs4_free_lock_state(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return lsp;
592}
593
594/*
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000595 * Release reference to lock_state, and free it if we see that
596 * it is no longer in use
597 */
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700598void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000599{
600 struct nfs4_state *state;
601
602 if (lsp == NULL)
603 return;
604 state = lsp->ls_state;
605 if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
606 return;
607 list_del(&lsp->ls_locks);
608 if (list_empty(&state->lock_states))
609 clear_bit(LK_STATE_IN_USE, &state->flags);
610 spin_unlock(&state->state_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400611 nfs4_free_lock_state(lsp);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000612}
613
614static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
615{
616 struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
617
618 dst->fl_u.nfs4_fl.owner = lsp;
619 atomic_inc(&lsp->ls_count);
620}
621
622static void nfs4_fl_release_lock(struct file_lock *fl)
623{
624 nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
625}
626
627static struct file_lock_operations nfs4_fl_lock_ops = {
628 .fl_copy_lock = nfs4_fl_copy_lock,
629 .fl_release_private = nfs4_fl_release_lock,
630};
631
632int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
633{
634 struct nfs4_lock_state *lsp;
635
636 if (fl->fl_ops != NULL)
637 return 0;
638 lsp = nfs4_get_lock_state(state, fl->fl_owner);
639 if (lsp == NULL)
640 return -ENOMEM;
641 fl->fl_u.nfs4_fl.owner = lsp;
642 fl->fl_ops = &nfs4_fl_lock_ops;
643 return 0;
644}
645
646/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * Byte-range lock aware utility to initialize the stateid of read/write
648 * requests.
649 */
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000650void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000652 struct nfs4_lock_state *lsp;
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400653 int seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400655 do {
656 seq = read_seqbegin(&state->seqlock);
657 memcpy(dst, &state->stateid, sizeof(*dst));
658 } while (read_seqretry(&state->seqlock, seq));
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000659 if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
660 return;
661
662 spin_lock(&state->state_lock);
663 lsp = __nfs4_find_lock_state(state, fl_owner);
664 if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
665 memcpy(dst, &lsp->ls_stateid, sizeof(*dst));
666 spin_unlock(&state->state_lock);
667 nfs4_put_lock_state(lsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700670struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700672 struct nfs_seqid *new;
673
674 new = kmalloc(sizeof(*new), GFP_KERNEL);
675 if (new != NULL) {
676 new->sequence = counter;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500677 INIT_LIST_HEAD(&new->list);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700678 }
679 return new;
680}
681
682void nfs_free_seqid(struct nfs_seqid *seqid)
683{
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500684 if (!list_empty(&seqid->list)) {
685 struct rpc_sequence *sequence = seqid->sequence->sequence;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700686
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500687 spin_lock(&sequence->lock);
688 list_del(&seqid->list);
689 spin_unlock(&sequence->lock);
690 rpc_wake_up(&sequence->wait);
691 }
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700692 kfree(seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700696 * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
697 * failed with a seqid incrementing error -
698 * see comments nfs_fs.h:seqid_mutating_error()
699 */
Trond Myklebust88d90932007-07-02 14:03:03 -0400700static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500702 BUG_ON(list_first_entry(&seqid->sequence->sequence->list, struct nfs_seqid, list) != seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700703 switch (status) {
704 case 0:
705 break;
706 case -NFS4ERR_BAD_SEQID:
Trond Myklebust6f43ddc2007-07-08 16:49:11 -0400707 if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
708 return;
709 printk(KERN_WARNING "NFS: v4 server returned a bad"
Dan Muntz497799e2008-02-13 13:09:35 -0800710 " sequence-id error on an"
711 " unconfirmed sequence %p!\n",
Trond Myklebust6f43ddc2007-07-08 16:49:11 -0400712 seqid->sequence);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700713 case -NFS4ERR_STALE_CLIENTID:
714 case -NFS4ERR_STALE_STATEID:
715 case -NFS4ERR_BAD_STATEID:
716 case -NFS4ERR_BADXDR:
717 case -NFS4ERR_RESOURCE:
718 case -NFS4ERR_NOFILEHANDLE:
719 /* Non-seqid mutating errors */
720 return;
721 };
722 /*
723 * Note: no locking needed as we are guaranteed to be first
724 * on the sequence list
725 */
726 seqid->sequence->counter++;
727}
728
729void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
730{
731 if (status == -NFS4ERR_BAD_SEQID) {
732 struct nfs4_state_owner *sp = container_of(seqid->sequence,
733 struct nfs4_state_owner, so_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 nfs4_drop_state_owner(sp);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700735 }
Trond Myklebust88d90932007-07-02 14:03:03 -0400736 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700737}
738
739/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700740 * Increment the seqid if the LOCK/LOCKU succeeded, or
741 * failed with a seqid incrementing error -
742 * see comments nfs_fs.h:seqid_mutating_error()
743 */
744void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
745{
Trond Myklebust88d90932007-07-02 14:03:03 -0400746 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700747}
748
749int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
750{
751 struct rpc_sequence *sequence = seqid->sequence->sequence;
752 int status = 0;
753
754 spin_lock(&sequence->lock);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500755 if (list_empty(&seqid->list))
756 list_add_tail(&seqid->list, &sequence->list);
757 if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid)
758 goto unlock;
Trond Myklebust5d008372008-02-22 16:34:17 -0500759 rpc_sleep_on(&sequence->wait, task, NULL);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500760 status = -EAGAIN;
761unlock:
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700762 spin_unlock(&sequence->lock);
763 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Trond Myklebuste005e802008-12-23 15:21:48 -0500766static int nfs4_run_state_manager(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Trond Myklebuste005e802008-12-23 15:21:48 -0500768static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
Trond Myklebust433fbe42006-01-03 09:55:22 +0100769{
770 smp_mb__before_clear_bit();
Trond Myklebuste005e802008-12-23 15:21:48 -0500771 clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
Trond Myklebust433fbe42006-01-03 09:55:22 +0100772 smp_mb__after_clear_bit();
Trond Myklebuste005e802008-12-23 15:21:48 -0500773 wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
Trond Myklebust433fbe42006-01-03 09:55:22 +0100774 rpc_wake_up(&clp->cl_rpcwaitq);
775}
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777/*
Trond Myklebuste005e802008-12-23 15:21:48 -0500778 * Schedule the nfs_client asynchronous state management routine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500780void nfs4_schedule_state_manager(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Trond Myklebust5043e902006-01-03 09:55:23 +0100782 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Trond Myklebuste005e802008-12-23 15:21:48 -0500784 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
785 return;
Trond Myklebust5043e902006-01-03 09:55:23 +0100786 __module_get(THIS_MODULE);
787 atomic_inc(&clp->cl_count);
Trond Myklebuste005e802008-12-23 15:21:48 -0500788 task = kthread_run(nfs4_run_state_manager, clp, "%s-manager",
Chuck Lever5d8515c2007-12-10 14:57:16 -0500789 rpc_peeraddr2str(clp->cl_rpcclient,
790 RPC_DISPLAY_ADDR));
Trond Myklebust5043e902006-01-03 09:55:23 +0100791 if (!IS_ERR(task))
792 return;
Trond Myklebuste005e802008-12-23 15:21:48 -0500793 nfs4_clear_state_manager_bit(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400794 nfs_put_client(clp);
Trond Myklebust5043e902006-01-03 09:55:23 +0100795 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798/*
799 * Schedule a state recovery attempt
800 */
David Howellsadfa6f92006-08-22 20:06:08 -0400801void nfs4_schedule_state_recovery(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 if (!clp)
804 return;
Trond Myklebuste598d842008-12-23 15:21:42 -0500805 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
806 set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
Trond Myklebuste005e802008-12-23 15:21:48 -0500807 nfs4_schedule_state_manager(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500810static int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
811{
812
813 set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
814 /* Don't recover state that expired before the reboot */
815 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
816 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
817 return 0;
818 }
Trond Myklebust7eff03a2008-12-23 15:21:43 -0500819 set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500820 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
821 return 1;
822}
823
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500824int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500825{
826 set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
827 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
Trond Myklebust7eff03a2008-12-23 15:21:43 -0500828 set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500829 set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
830 return 1;
831}
832
Trond Myklebust02860012008-12-23 15:21:40 -0500833static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct inode *inode = state->inode;
Trond Myklebust19e03c52008-12-23 15:21:44 -0500836 struct nfs_inode *nfsi = NFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct file_lock *fl;
838 int status = 0;
839
Trond Myklebust19e03c52008-12-23 15:21:44 -0500840 down_write(&nfsi->rwsem);
Harvey Harrison90dc7d22008-02-20 13:03:05 -0800841 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
Trond Myklebust43b2a332005-11-04 15:35:30 -0500842 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 continue;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400844 if (nfs_file_open_context(fl->fl_file)->state != state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 continue;
846 status = ops->recover_lock(state, fl);
847 if (status >= 0)
848 continue;
849 switch (status) {
850 default:
851 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700852 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 case -NFS4ERR_EXPIRED:
854 case -NFS4ERR_NO_GRACE:
855 case -NFS4ERR_RECLAIM_BAD:
856 case -NFS4ERR_RECLAIM_CONFLICT:
Trond Myklebust43b2a332005-11-04 15:35:30 -0500857 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 break;
859 case -NFS4ERR_STALE_CLIENTID:
860 goto out_err;
861 }
862 }
Trond Myklebust19e03c52008-12-23 15:21:44 -0500863 up_write(&nfsi->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
865out_err:
Trond Myklebust19e03c52008-12-23 15:21:44 -0500866 up_write(&nfsi->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return status;
868}
869
Trond Myklebust02860012008-12-23 15:21:40 -0500870static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 struct nfs4_state *state;
873 struct nfs4_lock_state *lock;
874 int status = 0;
875
876 /* Note: we rely on the sp->so_states list being ordered
877 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
878 * states first.
879 * This is needed to ensure that the server won't give us any
880 * read delegations that we have to return if, say, we are
881 * recovering after a network partition or a reboot from a
882 * server that doesn't support a grace period.
883 */
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500884restart:
885 spin_lock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 list_for_each_entry(state, &sp->so_states, open_states) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500887 if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
888 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (state->state == 0)
890 continue;
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500891 atomic_inc(&state->count);
892 spin_unlock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 status = ops->recover_open(sp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (status >= 0) {
Trond Myklebust02860012008-12-23 15:21:40 -0500895 status = nfs4_reclaim_locks(state, ops);
896 if (status >= 0) {
897 list_for_each_entry(lock, &state->lock_states, ls_locks) {
898 if (!(lock->ls_flags & NFS_LOCK_INITIALIZED))
899 printk("%s: Lock reclaim failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700900 __func__);
Trond Myklebust02860012008-12-23 15:21:40 -0500901 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500902 nfs4_put_open_state(state);
903 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906 switch (status) {
907 default:
908 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700909 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 case -ENOENT:
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500911 case -ESTALE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 /*
913 * Open state on this file cannot be recovered
914 * All we can do is revert to using the zero stateid.
915 */
916 memset(state->stateid.data, 0,
917 sizeof(state->stateid.data));
918 /* Mark the file as being 'closed' */
919 state->state = 0;
920 break;
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500921 case -NFS4ERR_RECLAIM_BAD:
922 case -NFS4ERR_RECLAIM_CONFLICT:
923 nfs4_state_mark_reclaim_nograce(sp->so_client, state);
924 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 case -NFS4ERR_EXPIRED:
926 case -NFS4ERR_NO_GRACE:
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500927 nfs4_state_mark_reclaim_nograce(sp->so_client, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 case -NFS4ERR_STALE_CLIENTID:
929 goto out_err;
930 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500931 nfs4_put_open_state(state);
932 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500934 spin_unlock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936out_err:
Trond Myklebustfe1d8192008-12-23 15:21:43 -0500937 nfs4_put_open_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return status;
939}
940
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500941static void nfs4_clear_open_state(struct nfs4_state *state)
942{
943 struct nfs4_lock_state *lock;
944
945 clear_bit(NFS_DELEGATED_STATE, &state->flags);
946 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
947 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
948 clear_bit(NFS_O_RDWR_STATE, &state->flags);
949 list_for_each_entry(lock, &state->lock_states, ls_locks) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500950 lock->ls_seqid.flags = 0;
951 lock->ls_flags &= ~NFS_LOCK_INITIALIZED;
952 }
953}
954
955static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp, int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700956{
957 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400958 struct rb_node *pos;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700959 struct nfs4_state *state;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700960
961 /* Reset all sequence ids to zero */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400962 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
963 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700964 sp->so_seqid.flags = 0;
Trond Myklebustec073422005-10-20 14:22:47 -0700965 spin_lock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700966 list_for_each_entry(state, &sp->so_states, open_states) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500967 if (mark_reclaim(clp, state))
968 nfs4_clear_open_state(state);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700969 }
Trond Myklebustec073422005-10-20 14:22:47 -0700970 spin_unlock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700971 }
972}
973
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500974static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
975{
976 /* Mark all delegations for reclaim */
977 nfs_delegation_mark_reclaim(clp);
978 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
979}
980
981static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
982{
983 struct nfs4_state_owner *sp;
984 struct rb_node *pos;
985 struct nfs4_state *state;
986
987 if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
988 return;
989
990 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
991 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
992 spin_lock(&sp->so_lock);
993 list_for_each_entry(state, &sp->so_states, open_states) {
994 if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags))
995 continue;
996 nfs4_state_mark_reclaim_nograce(clp, state);
997 }
998 spin_unlock(&sp->so_lock);
999 }
1000
1001 nfs_delegation_reap_unclaimed(clp);
1002}
1003
1004static void nfs_delegation_clear_all(struct nfs_client *clp)
1005{
1006 nfs_delegation_mark_reclaim(clp);
1007 nfs_delegation_reap_unclaimed(clp);
1008}
1009
1010static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
1011{
1012 nfs_delegation_clear_all(clp);
1013 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
1014}
1015
1016static void nfs4_state_end_reclaim_nograce(struct nfs_client *clp)
1017{
1018 clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
1019}
1020
Trond Myklebuste598d842008-12-23 15:21:42 -05001021static void nfs4_recovery_handle_error(struct nfs_client *clp, int error)
1022{
1023 switch (error) {
1024 case -NFS4ERR_CB_PATH_DOWN:
Trond Myklebust707fb4b2008-12-23 15:21:47 -05001025 nfs_handle_cb_pathdown(clp);
Trond Myklebuste598d842008-12-23 15:21:42 -05001026 break;
1027 case -NFS4ERR_STALE_CLIENTID:
1028 case -NFS4ERR_LEASE_MOVED:
1029 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1030 nfs4_state_start_reclaim_reboot(clp);
1031 break;
1032 case -NFS4ERR_EXPIRED:
1033 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1034 nfs4_state_start_reclaim_nograce(clp);
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001035 case -NFS4ERR_BADSESSION:
1036 case -NFS4ERR_BADSLOT:
1037 case -NFS4ERR_BAD_HIGH_SLOT:
1038 case -NFS4ERR_DEADSESSION:
1039 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1040 case -NFS4ERR_SEQ_FALSE_RETRY:
1041 case -NFS4ERR_SEQ_MISORDERED:
1042 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
Trond Myklebuste598d842008-12-23 15:21:42 -05001043 }
1044}
1045
Trond Myklebust02860012008-12-23 15:21:40 -05001046static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001048 struct rb_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 int status = 0;
1050
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001051restart:
1052 spin_lock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001053 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1054 struct nfs4_state_owner *sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001055 if (!test_and_clear_bit(ops->owner_flag_bit, &sp->so_flags))
1056 continue;
1057 atomic_inc(&sp->so_count);
1058 spin_unlock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001059 status = nfs4_reclaim_open_state(sp, ops);
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001060 if (status < 0) {
1061 set_bit(ops->owner_flag_bit, &sp->so_flags);
1062 nfs4_put_state_owner(sp);
1063 nfs4_recovery_handle_error(clp, status);
1064 return status;
1065 }
1066 nfs4_put_state_owner(sp);
1067 goto restart;
Trond Myklebust02860012008-12-23 15:21:40 -05001068 }
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001069 spin_unlock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001070 return status;
1071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Trond Myklebust02860012008-12-23 15:21:40 -05001073static int nfs4_check_lease(struct nfs_client *clp)
1074{
1075 struct rpc_cred *cred;
Benny Halevy8e69514f2009-04-01 09:22:45 -04001076 struct nfs4_state_maintenance_ops *ops =
1077 nfs4_state_renewal_ops[clp->cl_minorversion];
Trond Myklebust02860012008-12-23 15:21:40 -05001078 int status = -NFS4ERR_EXPIRED;
1079
Trond Myklebust0f605b52008-12-23 15:21:42 -05001080 /* Is the client already known to have an expired lease? */
1081 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1082 return 0;
Andy Adamsona7b72102009-04-01 09:22:46 -04001083 spin_lock(&clp->cl_lock);
1084 cred = ops->get_state_renewal_cred_locked(clp);
1085 spin_unlock(&clp->cl_lock);
Trond Myklebust0f605b52008-12-23 15:21:42 -05001086 if (cred == NULL) {
1087 cred = nfs4_get_setclientid_cred(clp);
1088 if (cred == NULL)
1089 goto out;
Trond Myklebust02860012008-12-23 15:21:40 -05001090 }
Benny Halevy8e69514f2009-04-01 09:22:45 -04001091 status = ops->renew_lease(clp, cred);
Trond Myklebust0f605b52008-12-23 15:21:42 -05001092 put_rpccred(cred);
1093out:
1094 nfs4_recovery_handle_error(clp, status);
Trond Myklebust02860012008-12-23 15:21:40 -05001095 return status;
1096}
1097
1098static int nfs4_reclaim_lease(struct nfs_client *clp)
1099{
1100 struct rpc_cred *cred;
1101 int status = -ENOENT;
1102
1103 cred = nfs4_get_setclientid_cred(clp);
1104 if (cred != NULL) {
1105 status = nfs4_init_client(clp, cred);
1106 put_rpccred(cred);
1107 /* Handle case where the user hasn't set up machine creds */
1108 if (status == -EACCES && cred == clp->cl_machine_cred) {
1109 nfs4_clear_machine_cred(clp);
1110 status = -EAGAIN;
1111 }
Benny Halevyc2e713d2009-04-01 09:21:51 -04001112 if (status == -NFS4ERR_MINOR_VERS_MISMATCH)
1113 status = -EPROTONOSUPPORT;
Trond Myklebust02860012008-12-23 15:21:40 -05001114 }
1115 return status;
1116}
1117
Andy Adamson76db6d92009-04-01 09:22:38 -04001118#ifdef CONFIG_NFS_V4_1
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001119static void nfs4_session_recovery_handle_error(struct nfs_client *clp, int err)
1120{
1121 switch (err) {
1122 case -NFS4ERR_STALE_CLIENTID:
1123 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1124 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
1125 }
1126}
1127
1128static int nfs4_reset_session(struct nfs_client *clp)
1129{
1130 int status;
1131
1132 status = nfs4_proc_destroy_session(clp->cl_session);
1133 if (status && status != -NFS4ERR_BADSESSION &&
1134 status != -NFS4ERR_DEADSESSION) {
1135 nfs4_session_recovery_handle_error(clp, status);
1136 goto out;
1137 }
1138
1139 memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
1140 status = nfs4_proc_create_session(clp, 1);
1141 if (status)
1142 nfs4_session_recovery_handle_error(clp, status);
1143 /* fall through*/
1144out:
1145 /* Wake up the next rpc task even on error */
1146 rpc_wake_up_next(&clp->cl_session->fc_slot_table.slot_tbl_waitq);
1147 return status;
1148}
Andy Adamson76db6d92009-04-01 09:22:38 -04001149
1150static int nfs4_initialize_session(struct nfs_client *clp)
1151{
1152 int status;
1153
1154 status = nfs4_proc_create_session(clp, 0);
1155 if (!status) {
1156 nfs_mark_client_ready(clp, NFS_CS_READY);
1157 } else if (status == -NFS4ERR_STALE_CLIENTID) {
1158 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1159 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
1160 } else {
1161 nfs_mark_client_ready(clp, status);
1162 }
1163 return status;
1164}
1165#else /* CONFIG_NFS_V4_1 */
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001166static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
Andy Adamson76db6d92009-04-01 09:22:38 -04001167static int nfs4_initialize_session(struct nfs_client *clp) { return 0; }
1168#endif /* CONFIG_NFS_V4_1 */
1169
Trond Myklebuste005e802008-12-23 15:21:48 -05001170static void nfs4_state_manager(struct nfs_client *clp)
Trond Myklebust02860012008-12-23 15:21:40 -05001171{
Trond Myklebust02860012008-12-23 15:21:40 -05001172 int status = 0;
1173
Trond Myklebust02860012008-12-23 15:21:40 -05001174 /* Ensure exclusive access to NFSv4 state */
Trond Myklebustf3c76492008-12-23 15:21:48 -05001175 for(;;) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001176 if (test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
1177 /* We're going to have to re-establish a clientid */
1178 status = nfs4_reclaim_lease(clp);
1179 if (status) {
1180 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1181 if (status == -EAGAIN)
1182 continue;
Andy Adamson76db6d92009-04-01 09:22:38 -04001183 if (clp->cl_cons_state ==
1184 NFS_CS_SESSION_INITING)
1185 nfs_mark_client_ready(clp, status);
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001186 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Trond Myklebuste598d842008-12-23 15:21:42 -05001188 clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
1189 }
1190
1191 if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
1192 status = nfs4_check_lease(clp);
1193 if (status != 0)
1194 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001196 /* Initialize or reset the session */
Andy Adamson76db6d92009-04-01 09:22:38 -04001197 if (nfs4_has_session(clp) &&
1198 test_and_clear_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state)) {
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001199 if (clp->cl_cons_state == NFS_CS_SESSION_INITING)
1200 status = nfs4_initialize_session(clp);
1201 else
1202 status = nfs4_reset_session(clp);
Andy Adamson76db6d92009-04-01 09:22:38 -04001203 if (status) {
1204 if (status == -NFS4ERR_STALE_CLIENTID)
1205 continue;
1206 goto out_error;
1207 }
1208 }
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001209 /* First recover reboot state... */
1210 if (test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001211 status = nfs4_do_reclaim(clp, &nfs4_reboot_recovery_ops);
Trond Myklebuste598d842008-12-23 15:21:42 -05001212 if (status == -NFS4ERR_STALE_CLIENTID)
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001213 continue;
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001214 if (test_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state))
1215 continue;
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001216 nfs4_state_end_reclaim_reboot(clp);
1217 continue;
1218 }
1219
1220 /* Now recover expired state... */
1221 if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001222 status = nfs4_do_reclaim(clp, &nfs4_nograce_recovery_ops);
1223 if (status < 0) {
1224 set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
1225 if (status == -NFS4ERR_STALE_CLIENTID)
1226 continue;
1227 if (status == -NFS4ERR_EXPIRED)
1228 continue;
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001229 if (test_bit(NFS4CLNT_SESSION_SETUP,
1230 &clp->cl_state))
1231 continue;
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001232 goto out_error;
1233 } else
1234 nfs4_state_end_reclaim_nograce(clp);
1235 continue;
1236 }
Trond Myklebust707fb4b2008-12-23 15:21:47 -05001237
1238 if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
1239 nfs_client_return_marked_delegations(clp);
1240 continue;
1241 }
Trond Myklebuste005e802008-12-23 15:21:48 -05001242
1243 nfs4_clear_state_manager_bit(clp);
Trond Myklebustf3c76492008-12-23 15:21:48 -05001244 /* Did we race with an attempt to give us more work? */
1245 if (clp->cl_state == 0)
1246 break;
1247 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
1248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Trond Myklebuste005e802008-12-23 15:21:48 -05001250 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251out_error:
Trond Myklebuste005e802008-12-23 15:21:48 -05001252 printk(KERN_WARNING "Error: state manager failed on NFSv4 server %s"
Chuck Lever5d8515c2007-12-10 14:57:16 -05001253 " with error %d\n", clp->cl_hostname, -status);
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001254 if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
1255 nfs4_state_end_reclaim_reboot(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05001256 nfs4_clear_state_manager_bit(clp);
1257}
1258
1259static int nfs4_run_state_manager(void *ptr)
1260{
1261 struct nfs_client *clp = ptr;
1262
1263 allow_signal(SIGKILL);
1264 nfs4_state_manager(clp);
1265 nfs_put_client(clp);
1266 module_put_and_exit(0);
1267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270/*
1271 * Local variables:
1272 * c-basic-offset: 8
1273 * End:
1274 */