blob: 4fa4054cdf3466f4612589dc4088d1c609647086 [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{
Trond Myklebust286d7d62006-01-03 09:55:26 +010065 int status = nfs4_proc_setclientid(clp, NFS4_CALLBACK,
66 nfs_callback_tcpport, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (status == 0)
Trond Myklebust286d7d62006-01-03 09:55:26 +010068 status = nfs4_proc_setclientid_confirm(clp, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (status == 0)
70 nfs4_schedule_state_renewal(clp);
71 return status;
72}
73
David Howellsadfa6f92006-08-22 20:06:08 -040074struct rpc_cred *nfs4_get_renew_cred(struct nfs_client *clp)
Trond Myklebustb4454fe2006-01-03 09:55:25 +010075{
76 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -040077 struct rb_node *pos;
Trond Myklebustb4454fe2006-01-03 09:55:25 +010078 struct rpc_cred *cred = NULL;
79
Trond Myklebust9f958ab2007-07-02 13:58:33 -040080 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 Myklebustb4454fe2006-01-03 09:55:25 +010082 if (list_empty(&sp->so_states))
83 continue;
84 cred = get_rpccred(sp->so_cred);
85 break;
86 }
87 return cred;
88}
89
Trond Myklebust10afec92007-05-14 17:16:04 -040090static struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp)
Trond Myklebust286d7d62006-01-03 09:55:26 +010091{
92 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -040093 struct rb_node *pos;
Trond Myklebust286d7d62006-01-03 09:55:26 +010094
Trond Myklebust9f958ab2007-07-02 13:58:33 -040095 pos = rb_first(&clp->cl_state_owners);
96 if (pos != NULL) {
97 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebust286d7d62006-01-03 09:55:26 +010098 return get_rpccred(sp->so_cred);
99 }
100 return NULL;
101}
102
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400103static 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;
118retry:
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;
136id_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
153static 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 Torvalds1da177e2005-04-16 15:20:36 -0700158static struct nfs4_state_owner *
David Howellsadfa6f92006-08-22 20:06:08 -0400159nfs4_find_state_owner(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400161 struct rb_node **p = &clp->cl_state_owners.rb_node,
162 *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct nfs4_state_owner *sp, *res = NULL;
164
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400165 while (*p != NULL) {
166 parent = *p;
167 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
168
169 if (cred < sp->so_cred)
170 p = &parent->rb_left;
171 else if (cred > sp->so_cred)
172 p = &parent->rb_right;
173 else {
174 atomic_inc(&sp->so_count);
175 res = sp;
176 break;
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179 return res;
180}
181
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400182static struct nfs4_state_owner *
183nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new)
184{
185 struct rb_node **p = &clp->cl_state_owners.rb_node,
186 *parent = NULL;
187 struct nfs4_state_owner *sp;
188
189 while (*p != NULL) {
190 parent = *p;
191 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
192
193 if (new->so_cred < sp->so_cred)
194 p = &parent->rb_left;
195 else if (new->so_cred > sp->so_cred)
196 p = &parent->rb_right;
197 else {
198 atomic_inc(&sp->so_count);
199 return sp;
200 }
201 }
202 nfs_alloc_unique_id(&clp->cl_openowner_id, &new->so_owner_id, 1, 64);
203 rb_link_node(&new->so_client_node, parent, p);
204 rb_insert_color(&new->so_client_node, &clp->cl_state_owners);
205 return new;
206}
207
208static void
209nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp)
210{
211 if (!RB_EMPTY_NODE(&sp->so_client_node))
212 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
213 nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id);
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
218 * create a new state_owner.
219 *
220 */
221static struct nfs4_state_owner *
222nfs4_alloc_state_owner(void)
223{
224 struct nfs4_state_owner *sp;
225
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700226 sp = kzalloc(sizeof(*sp),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!sp)
228 return NULL;
Trond Myklebustec073422005-10-20 14:22:47 -0700229 spin_lock_init(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 INIT_LIST_HEAD(&sp->so_states);
231 INIT_LIST_HEAD(&sp->so_delegations);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700232 rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue");
233 sp->so_seqid.sequence = &sp->so_sequence;
234 spin_lock_init(&sp->so_sequence.lock);
235 INIT_LIST_HEAD(&sp->so_sequence.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 atomic_set(&sp->so_count, 1);
237 return sp;
238}
239
240void
241nfs4_drop_state_owner(struct nfs4_state_owner *sp)
242{
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400243 if (!RB_EMPTY_NODE(&sp->so_client_node)) {
244 struct nfs_client *clp = sp->so_client;
245
246 spin_lock(&clp->cl_lock);
247 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
248 RB_CLEAR_NODE(&sp->so_client_node);
249 spin_unlock(&clp->cl_lock);
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/*
254 * Note: must be called with clp->cl_sem held in order to prevent races
255 * with reboot recovery!
256 */
257struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred)
258{
David Howells7539bba2006-08-22 20:06:09 -0400259 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 struct nfs4_state_owner *sp, *new;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 spin_lock(&clp->cl_lock);
263 sp = nfs4_find_state_owner(clp, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 spin_unlock(&clp->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (sp != NULL)
266 return sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400267 new = nfs4_alloc_state_owner();
268 if (new == NULL)
269 return NULL;
270 new->so_client = clp;
271 new->so_cred = cred;
272 spin_lock(&clp->cl_lock);
273 sp = nfs4_insert_state_owner(clp, new);
274 spin_unlock(&clp->cl_lock);
275 if (sp == new)
276 get_rpccred(cred);
277 else
278 kfree(new);
279 return sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/*
283 * Must be called with clp->cl_sem held in order to avoid races
284 * with state recovery...
285 */
286void nfs4_put_state_owner(struct nfs4_state_owner *sp)
287{
David Howellsadfa6f92006-08-22 20:06:08 -0400288 struct nfs_client *clp = sp->so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct rpc_cred *cred = sp->so_cred;
290
291 if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
292 return;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400293 nfs4_remove_state_owner(clp, sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 spin_unlock(&clp->cl_lock);
295 put_rpccred(cred);
296 kfree(sp);
297}
298
299static struct nfs4_state *
300nfs4_alloc_open_state(void)
301{
302 struct nfs4_state *state;
303
Trond Myklebuste7616922006-01-03 09:55:13 +0100304 state = kzalloc(sizeof(*state), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!state)
306 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 atomic_set(&state->count, 1);
308 INIT_LIST_HEAD(&state->lock_states);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000309 spin_lock_init(&state->state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return state;
311}
312
Trond Myklebust4cecb762005-11-04 15:32:58 -0500313void
314nfs4_state_set_mode_locked(struct nfs4_state *state, mode_t mode)
315{
316 if (state->state == mode)
317 return;
318 /* NB! List reordering - see the reclaim code for why. */
319 if ((mode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
320 if (mode & FMODE_WRITE)
321 list_move(&state->open_states, &state->owner->so_states);
322 else
323 list_move_tail(&state->open_states, &state->owner->so_states);
324 }
325 if (mode == 0)
326 list_del_init(&state->inode_states);
327 state->state = mode;
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static struct nfs4_state *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331__nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
332{
333 struct nfs_inode *nfsi = NFS_I(inode);
334 struct nfs4_state *state;
335
336 list_for_each_entry(state, &nfsi->open_states, inode_states) {
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400337 if (state->owner != owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 continue;
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400339 if (atomic_inc_not_zero(&state->count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 return NULL;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static void
346nfs4_free_open_state(struct nfs4_state *state)
347{
348 kfree(state);
349}
350
351struct nfs4_state *
352nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
353{
354 struct nfs4_state *state, *new;
355 struct nfs_inode *nfsi = NFS_I(inode);
356
357 spin_lock(&inode->i_lock);
358 state = __nfs4_find_state_byowner(inode, owner);
359 spin_unlock(&inode->i_lock);
360 if (state)
361 goto out;
362 new = nfs4_alloc_open_state();
Trond Myklebustec073422005-10-20 14:22:47 -0700363 spin_lock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 spin_lock(&inode->i_lock);
365 state = __nfs4_find_state_byowner(inode, owner);
366 if (state == NULL && new != NULL) {
367 state = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 state->owner = owner;
369 atomic_inc(&owner->so_count);
370 list_add(&state->inode_states, &nfsi->open_states);
371 state->inode = igrab(inode);
372 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700373 /* Note: The reclaim code dictates that we add stateless
374 * and read-only stateids to the end of the list */
375 list_add_tail(&state->open_states, &owner->so_states);
376 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 } else {
378 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700379 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (new)
381 nfs4_free_open_state(new);
382 }
383out:
384 return state;
385}
386
387/*
388 * Beware! Caller must be holding exactly one
Trond Myklebuste6dfa552005-10-18 14:20:13 -0700389 * reference to clp->cl_sem!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
391void nfs4_put_open_state(struct nfs4_state *state)
392{
393 struct inode *inode = state->inode;
394 struct nfs4_state_owner *owner = state->owner;
395
Trond Myklebustec073422005-10-20 14:22:47 -0700396 if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return;
Trond Myklebustec073422005-10-20 14:22:47 -0700398 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!list_empty(&state->inode_states))
400 list_del(&state->inode_states);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 list_del(&state->open_states);
Trond Myklebustec073422005-10-20 14:22:47 -0700402 spin_unlock(&inode->i_lock);
403 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 nfs4_free_open_state(state);
406 nfs4_put_state_owner(owner);
407}
408
409/*
Trond Myklebust83c9d412005-10-18 14:20:13 -0700410 * Close the current file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 */
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400412void nfs4_close_state(struct path *path, struct nfs4_state *state, mode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct inode *inode = state->inode;
415 struct nfs4_state_owner *owner = state->owner;
Trond Myklebust003707c2007-07-05 18:07:55 -0400416 int call_close = 0;
417 int newstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 atomic_inc(&owner->so_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* Protect against nfs4_find_state() */
Trond Myklebustec073422005-10-20 14:22:47 -0700421 spin_lock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 spin_lock(&inode->i_lock);
Trond Myklebuste7616922006-01-03 09:55:13 +0100423 switch (mode & (FMODE_READ | FMODE_WRITE)) {
424 case FMODE_READ:
425 state->n_rdonly--;
426 break;
427 case FMODE_WRITE:
428 state->n_wronly--;
429 break;
430 case FMODE_READ|FMODE_WRITE:
431 state->n_rdwr--;
432 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400433 newstate = FMODE_READ|FMODE_WRITE;
Trond Myklebuste7616922006-01-03 09:55:13 +0100434 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400435 if (state->n_rdonly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100436 newstate &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -0400437 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
438 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
439 }
440 if (state->n_wronly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100441 newstate &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -0400442 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
443 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
444 }
445 if (newstate == 0)
446 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100447 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400448 nfs4_state_set_mode_locked(state, newstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700450 spin_unlock(&owner->so_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500451
Trond Myklebust003707c2007-07-05 18:07:55 -0400452 if (!call_close) {
Trond Myklebustb39e6252007-06-11 23:05:07 -0400453 nfs4_put_open_state(state);
454 nfs4_put_state_owner(owner);
455 } else
456 nfs4_do_close(path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459/*
460 * Search the state->lock_states for an existing lock_owner
461 * that is compatible with current->files
462 */
463static struct nfs4_lock_state *
464__nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
465{
466 struct nfs4_lock_state *pos;
467 list_for_each_entry(pos, &state->lock_states, ls_locks) {
468 if (pos->ls_owner != fl_owner)
469 continue;
470 atomic_inc(&pos->ls_count);
471 return pos;
472 }
473 return NULL;
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * Return a compatible lock_state. If no initialized lock_state structure
478 * exists, return an uninitialized one.
479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
481static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
482{
483 struct nfs4_lock_state *lsp;
David Howellsadfa6f92006-08-22 20:06:08 -0400484 struct nfs_client *clp = state->owner->so_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700486 lsp = kzalloc(sizeof(*lsp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (lsp == NULL)
488 return NULL;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700489 lsp->ls_seqid.sequence = &state->owner->so_sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 atomic_set(&lsp->ls_count, 1);
491 lsp->ls_owner = fl_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 spin_lock(&clp->cl_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400493 nfs_alloc_unique_id(&clp->cl_lockowner_id, &lsp->ls_id, 1, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 spin_unlock(&clp->cl_lock);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000495 INIT_LIST_HEAD(&lsp->ls_locks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return lsp;
497}
498
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400499static void nfs4_free_lock_state(struct nfs4_lock_state *lsp)
500{
501 struct nfs_client *clp = lsp->ls_state->owner->so_client;
502
503 spin_lock(&clp->cl_lock);
504 nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id);
505 spin_unlock(&clp->cl_lock);
506 kfree(lsp);
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/*
510 * Return a compatible lock_state. If no initialized lock_state structure
511 * exists, return an uninitialized one.
512 *
Trond Myklebuste6dfa552005-10-18 14:20:13 -0700513 * The caller must be holding clp->cl_sem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000515static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000517 struct nfs4_lock_state *lsp, *new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000519 for(;;) {
520 spin_lock(&state->state_lock);
521 lsp = __nfs4_find_lock_state(state, owner);
522 if (lsp != NULL)
523 break;
524 if (new != NULL) {
525 new->ls_state = state;
526 list_add(&new->ls_locks, &state->lock_states);
527 set_bit(LK_STATE_IN_USE, &state->flags);
528 lsp = new;
529 new = NULL;
530 break;
531 }
532 spin_unlock(&state->state_lock);
533 new = nfs4_alloc_lock_state(state, owner);
534 if (new == NULL)
535 return NULL;
536 }
537 spin_unlock(&state->state_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400538 if (new != NULL)
539 nfs4_free_lock_state(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return lsp;
541}
542
543/*
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000544 * Release reference to lock_state, and free it if we see that
545 * it is no longer in use
546 */
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700547void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000548{
549 struct nfs4_state *state;
550
551 if (lsp == NULL)
552 return;
553 state = lsp->ls_state;
554 if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
555 return;
556 list_del(&lsp->ls_locks);
557 if (list_empty(&state->lock_states))
558 clear_bit(LK_STATE_IN_USE, &state->flags);
559 spin_unlock(&state->state_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400560 nfs4_free_lock_state(lsp);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000561}
562
563static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
564{
565 struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
566
567 dst->fl_u.nfs4_fl.owner = lsp;
568 atomic_inc(&lsp->ls_count);
569}
570
571static void nfs4_fl_release_lock(struct file_lock *fl)
572{
573 nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
574}
575
576static struct file_lock_operations nfs4_fl_lock_ops = {
577 .fl_copy_lock = nfs4_fl_copy_lock,
578 .fl_release_private = nfs4_fl_release_lock,
579};
580
581int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
582{
583 struct nfs4_lock_state *lsp;
584
585 if (fl->fl_ops != NULL)
586 return 0;
587 lsp = nfs4_get_lock_state(state, fl->fl_owner);
588 if (lsp == NULL)
589 return -ENOMEM;
590 fl->fl_u.nfs4_fl.owner = lsp;
591 fl->fl_ops = &nfs4_fl_lock_ops;
592 return 0;
593}
594
595/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * Byte-range lock aware utility to initialize the stateid of read/write
597 * requests.
598 */
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000599void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000601 struct nfs4_lock_state *lsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 memcpy(dst, &state->stateid, sizeof(*dst));
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000604 if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
605 return;
606
607 spin_lock(&state->state_lock);
608 lsp = __nfs4_find_lock_state(state, fl_owner);
609 if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
610 memcpy(dst, &lsp->ls_stateid, sizeof(*dst));
611 spin_unlock(&state->state_lock);
612 nfs4_put_lock_state(lsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700615struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Trond Myklebust36f20c62005-11-25 17:09:57 -0500617 struct rpc_sequence *sequence = counter->sequence;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700618 struct nfs_seqid *new;
619
620 new = kmalloc(sizeof(*new), GFP_KERNEL);
621 if (new != NULL) {
622 new->sequence = counter;
Trond Myklebust36f20c62005-11-25 17:09:57 -0500623 spin_lock(&sequence->lock);
624 list_add_tail(&new->list, &sequence->list);
625 spin_unlock(&sequence->lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700626 }
627 return new;
628}
629
630void nfs_free_seqid(struct nfs_seqid *seqid)
631{
632 struct rpc_sequence *sequence = seqid->sequence->sequence;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700633
Trond Myklebust36f20c62005-11-25 17:09:57 -0500634 spin_lock(&sequence->lock);
635 list_del(&seqid->list);
636 spin_unlock(&sequence->lock);
637 rpc_wake_up(&sequence->wait);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700638 kfree(seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700642 * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
643 * failed with a seqid incrementing error -
644 * see comments nfs_fs.h:seqid_mutating_error()
645 */
Trond Myklebust88d90932007-07-02 14:03:03 -0400646static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700648 switch (status) {
649 case 0:
650 break;
651 case -NFS4ERR_BAD_SEQID:
Trond Myklebust6f43ddc2007-07-08 16:49:11 -0400652 if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
653 return;
654 printk(KERN_WARNING "NFS: v4 server returned a bad"
655 "sequence-id error on an"
656 "unconfirmed sequence %p!\n",
657 seqid->sequence);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700658 case -NFS4ERR_STALE_CLIENTID:
659 case -NFS4ERR_STALE_STATEID:
660 case -NFS4ERR_BAD_STATEID:
661 case -NFS4ERR_BADXDR:
662 case -NFS4ERR_RESOURCE:
663 case -NFS4ERR_NOFILEHANDLE:
664 /* Non-seqid mutating errors */
665 return;
666 };
667 /*
668 * Note: no locking needed as we are guaranteed to be first
669 * on the sequence list
670 */
671 seqid->sequence->counter++;
672}
673
674void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
675{
676 if (status == -NFS4ERR_BAD_SEQID) {
677 struct nfs4_state_owner *sp = container_of(seqid->sequence,
678 struct nfs4_state_owner, so_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 nfs4_drop_state_owner(sp);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700680 }
Trond Myklebust88d90932007-07-02 14:03:03 -0400681 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700682}
683
684/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700685 * Increment the seqid if the LOCK/LOCKU succeeded, or
686 * failed with a seqid incrementing error -
687 * see comments nfs_fs.h:seqid_mutating_error()
688 */
689void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
690{
Trond Myklebust88d90932007-07-02 14:03:03 -0400691 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700692}
693
694int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
695{
696 struct rpc_sequence *sequence = seqid->sequence->sequence;
697 int status = 0;
698
Trond Myklebust4e513362005-10-20 14:22:41 -0700699 if (sequence->list.next == &seqid->list)
700 goto out;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700701 spin_lock(&sequence->lock);
Trond Myklebust36f20c62005-11-25 17:09:57 -0500702 if (sequence->list.next != &seqid->list) {
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700703 rpc_sleep_on(&sequence->wait, task, NULL, NULL);
704 status = -EAGAIN;
Trond Myklebust36f20c62005-11-25 17:09:57 -0500705 }
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700706 spin_unlock(&sequence->lock);
Trond Myklebust4e513362005-10-20 14:22:41 -0700707out:
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700708 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711static int reclaimer(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
David Howellsadfa6f92006-08-22 20:06:08 -0400713static inline void nfs4_clear_recover_bit(struct nfs_client *clp)
Trond Myklebust433fbe42006-01-03 09:55:22 +0100714{
715 smp_mb__before_clear_bit();
716 clear_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state);
717 smp_mb__after_clear_bit();
718 wake_up_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER);
719 rpc_wake_up(&clp->cl_rpcwaitq);
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/*
723 * State recovery routine
724 */
David Howellsadfa6f92006-08-22 20:06:08 -0400725static void nfs4_recover_state(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Trond Myklebust5043e902006-01-03 09:55:23 +0100727 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Trond Myklebust5043e902006-01-03 09:55:23 +0100729 __module_get(THIS_MODULE);
730 atomic_inc(&clp->cl_count);
731 task = kthread_run(reclaimer, clp, "%u.%u.%u.%u-reclaim",
David Howells24c8dbb2006-08-22 20:06:10 -0400732 NIPQUAD(clp->cl_addr.sin_addr));
Trond Myklebust5043e902006-01-03 09:55:23 +0100733 if (!IS_ERR(task))
734 return;
Trond Myklebust433fbe42006-01-03 09:55:22 +0100735 nfs4_clear_recover_bit(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400736 nfs_put_client(clp);
Trond Myklebust5043e902006-01-03 09:55:23 +0100737 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740/*
741 * Schedule a state recovery attempt
742 */
David Howellsadfa6f92006-08-22 20:06:08 -0400743void nfs4_schedule_state_recovery(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 if (!clp)
746 return;
Trond Myklebust433fbe42006-01-03 09:55:22 +0100747 if (test_and_set_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Trond Myklebust5043e902006-01-03 09:55:23 +0100748 nfs4_recover_state(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
751static int nfs4_reclaim_locks(struct nfs4_state_recovery_ops *ops, struct nfs4_state *state)
752{
753 struct inode *inode = state->inode;
754 struct file_lock *fl;
755 int status = 0;
756
757 for (fl = inode->i_flock; fl != 0; fl = fl->fl_next) {
Trond Myklebust43b2a332005-11-04 15:35:30 -0500758 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 continue;
760 if (((struct nfs_open_context *)fl->fl_file->private_data)->state != state)
761 continue;
762 status = ops->recover_lock(state, fl);
763 if (status >= 0)
764 continue;
765 switch (status) {
766 default:
767 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
768 __FUNCTION__, status);
769 case -NFS4ERR_EXPIRED:
770 case -NFS4ERR_NO_GRACE:
771 case -NFS4ERR_RECLAIM_BAD:
772 case -NFS4ERR_RECLAIM_CONFLICT:
Trond Myklebust43b2a332005-11-04 15:35:30 -0500773 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 break;
775 case -NFS4ERR_STALE_CLIENTID:
776 goto out_err;
777 }
778 }
779 return 0;
780out_err:
781 return status;
782}
783
784static int nfs4_reclaim_open_state(struct nfs4_state_recovery_ops *ops, struct nfs4_state_owner *sp)
785{
786 struct nfs4_state *state;
787 struct nfs4_lock_state *lock;
788 int status = 0;
789
790 /* Note: we rely on the sp->so_states list being ordered
791 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
792 * states first.
793 * This is needed to ensure that the server won't give us any
794 * read delegations that we have to return if, say, we are
795 * recovering after a network partition or a reboot from a
796 * server that doesn't support a grace period.
797 */
798 list_for_each_entry(state, &sp->so_states, open_states) {
799 if (state->state == 0)
800 continue;
801 status = ops->recover_open(sp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (status >= 0) {
803 status = nfs4_reclaim_locks(ops, state);
804 if (status < 0)
805 goto out_err;
806 list_for_each_entry(lock, &state->lock_states, ls_locks) {
807 if (!(lock->ls_flags & NFS_LOCK_INITIALIZED))
808 printk("%s: Lock reclaim failed!\n",
809 __FUNCTION__);
810 }
811 continue;
812 }
813 switch (status) {
814 default:
815 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
816 __FUNCTION__, status);
817 case -ENOENT:
818 case -NFS4ERR_RECLAIM_BAD:
819 case -NFS4ERR_RECLAIM_CONFLICT:
820 /*
821 * Open state on this file cannot be recovered
822 * All we can do is revert to using the zero stateid.
823 */
824 memset(state->stateid.data, 0,
825 sizeof(state->stateid.data));
826 /* Mark the file as being 'closed' */
827 state->state = 0;
828 break;
829 case -NFS4ERR_EXPIRED:
830 case -NFS4ERR_NO_GRACE:
831 case -NFS4ERR_STALE_CLIENTID:
832 goto out_err;
833 }
834 }
835 return 0;
836out_err:
837 return status;
838}
839
David Howellsadfa6f92006-08-22 20:06:08 -0400840static void nfs4_state_mark_reclaim(struct nfs_client *clp)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700841{
842 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400843 struct rb_node *pos;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700844 struct nfs4_state *state;
845 struct nfs4_lock_state *lock;
846
847 /* Reset all sequence ids to zero */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400848 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
849 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700850 sp->so_seqid.counter = 0;
851 sp->so_seqid.flags = 0;
Trond Myklebustec073422005-10-20 14:22:47 -0700852 spin_lock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700853 list_for_each_entry(state, &sp->so_states, open_states) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400854 clear_bit(NFS_DELEGATED_STATE, &state->flags);
855 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
856 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
857 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700858 list_for_each_entry(lock, &state->lock_states, ls_locks) {
859 lock->ls_seqid.counter = 0;
860 lock->ls_seqid.flags = 0;
861 lock->ls_flags &= ~NFS_LOCK_INITIALIZED;
862 }
863 }
Trond Myklebustec073422005-10-20 14:22:47 -0700864 spin_unlock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700865 }
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868static int reclaimer(void *ptr)
869{
David Howellsadfa6f92006-08-22 20:06:08 -0400870 struct nfs_client *clp = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400872 struct rb_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct nfs4_state_recovery_ops *ops;
Trond Myklebust286d7d62006-01-03 09:55:26 +0100874 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int status = 0;
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 allow_signal(SIGKILL);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* Ensure exclusive access to NFSv4 state */
880 lock_kernel();
881 down_write(&clp->cl_sem);
882 /* Are there any NFS mounts out there? */
883 if (list_empty(&clp->cl_superblocks))
884 goto out;
885restart_loop:
Trond Myklebust286d7d62006-01-03 09:55:26 +0100886 ops = &nfs4_network_partition_recovery_ops;
887 /* Are there any open files on this volume? */
888 cred = nfs4_get_renew_cred(clp);
889 if (cred != NULL) {
890 /* Yes there are: try to renew the old lease */
891 status = nfs4_proc_renew(clp, cred);
892 switch (status) {
893 case 0:
894 case -NFS4ERR_CB_PATH_DOWN:
895 put_rpccred(cred);
896 goto out;
897 case -NFS4ERR_STALE_CLIENTID:
898 case -NFS4ERR_LEASE_MOVED:
899 ops = &nfs4_reboot_recovery_ops;
900 }
901 } else {
902 /* "reboot" to ensure we clear all state on the server */
903 clp->cl_boot_time = CURRENT_TIME;
904 cred = nfs4_get_setclientid_cred(clp);
905 }
906 /* We're going to have to re-establish a clientid */
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700907 nfs4_state_mark_reclaim(clp);
Trond Myklebust286d7d62006-01-03 09:55:26 +0100908 status = -ENOENT;
909 if (cred != NULL) {
910 status = nfs4_init_client(clp, cred);
911 put_rpccred(cred);
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (status)
914 goto out_error;
915 /* Mark all delegations for reclaim */
916 nfs_delegation_mark_reclaim(clp);
917 /* Note: list is protected by exclusive lock on cl->cl_sem */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400918 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
919 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 status = nfs4_reclaim_open_state(ops, sp);
921 if (status < 0) {
922 if (status == -NFS4ERR_NO_GRACE) {
923 ops = &nfs4_network_partition_recovery_ops;
924 status = nfs4_reclaim_open_state(ops, sp);
925 }
926 if (status == -NFS4ERR_STALE_CLIENTID)
927 goto restart_loop;
928 if (status == -NFS4ERR_EXPIRED)
929 goto restart_loop;
930 }
931 }
932 nfs_delegation_reap_unclaimed(clp);
933out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 up_write(&clp->cl_sem);
935 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (status == -NFS4ERR_CB_PATH_DOWN)
937 nfs_handle_cb_pathdown(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +0100938 nfs4_clear_recover_bit(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400939 nfs_put_client(clp);
Trond Myklebust5043e902006-01-03 09:55:23 +0100940 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 0;
942out_error:
943 printk(KERN_WARNING "Error: state recovery failed on NFSv4 server %u.%u.%u.%u with error %d\n",
David Howells24c8dbb2006-08-22 20:06:10 -0400944 NIPQUAD(clp->cl_addr.sin_addr), -status);
Trond Myklebust51581f32006-03-20 13:44:47 -0500945 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 goto out;
947}
948
949/*
950 * Local variables:
951 * c-basic-offset: 8
952 * End:
953 */