pnfs: update nfs4_callback_recallany to handle layouts
[deliverable/linux.git] / fs / nfs / nfs4state.c
CommitLineData
1da177e4
LT
1/*
2 * fs/nfs/nfs4state.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 * Implementation of the NFSv4 state model. For the time being,
37 * this is minimal, but will be made much more complex in a
38 * subsequent patch.
39 */
40
6f43ddcc 41#include <linux/kernel.h>
1da177e4 42#include <linux/slab.h>
b89f4321 43#include <linux/fs.h>
1da177e4
LT
44#include <linux/nfs_fs.h>
45#include <linux/nfs_idmap.h>
5043e900
TM
46#include <linux/kthread.h>
47#include <linux/module.h>
9f958ab8 48#include <linux/random.h>
8c7597f6 49#include <linux/ratelimit.h>
1da177e4
LT
50#include <linux/workqueue.h>
51#include <linux/bitops.h>
52
4ce79717 53#include "nfs4_fs.h"
1da177e4
LT
54#include "callback.h"
55#include "delegation.h"
24c8dbbb 56#include "internal.h"
974cec8c 57#include "pnfs.h"
1da177e4
LT
58
59#define OPENOWNER_POOL_SIZE 8
60
4ce79717 61const nfs4_stateid zero_stateid;
1da177e4
LT
62
63static LIST_HEAD(nfs4_clientid_list);
64
591d71cb 65int nfs4_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
1da177e4 66{
bb8b27e5 67 struct nfs4_setclientid_res clid;
f738f517
CL
68 unsigned short port;
69 int status;
70
71 port = nfs_callback_tcpport;
72 if (clp->cl_addr.ss_family == AF_INET6)
73 port = nfs_callback_tcpport6;
74
bb8b27e5
TM
75 status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
76 if (status != 0)
77 goto out;
78 status = nfs4_proc_setclientid_confirm(clp, &clid, cred);
79 if (status != 0)
80 goto out;
81 clp->cl_clientid = clid.clientid;
82 nfs4_schedule_state_renewal(clp);
83out:
1da177e4
LT
84 return status;
85}
86
a7b72103 87struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp)
a2b2bb88
TM
88{
89 struct rpc_cred *cred = NULL;
90
a2b2bb88
TM
91 if (clp->cl_machine_cred != NULL)
92 cred = get_rpccred(clp->cl_machine_cred);
a2b2bb88
TM
93 return cred;
94}
95
96static void nfs4_clear_machine_cred(struct nfs_client *clp)
97{
98 struct rpc_cred *cred;
99
100 spin_lock(&clp->cl_lock);
101 cred = clp->cl_machine_cred;
102 clp->cl_machine_cred = NULL;
103 spin_unlock(&clp->cl_lock);
104 if (cred != NULL)
105 put_rpccred(cred);
106}
107
6dc9d57a 108struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp)
b4454fe1
TM
109{
110 struct nfs4_state_owner *sp;
9f958ab8 111 struct rb_node *pos;
b4454fe1
TM
112 struct rpc_cred *cred = NULL;
113
9f958ab8
TM
114 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
115 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
b4454fe1
TM
116 if (list_empty(&sp->so_states))
117 continue;
118 cred = get_rpccred(sp->so_cred);
119 break;
120 }
121 return cred;
122}
123
b4b82607
AA
124#if defined(CONFIG_NFS_V4_1)
125
9430fb6b
RL
126static int nfs41_setup_state_renewal(struct nfs_client *clp)
127{
128 int status;
129 struct nfs_fsinfo fsinfo;
130
131 status = nfs4_proc_get_lease_time(clp, &fsinfo);
132 if (status == 0) {
133 /* Update lease time and schedule renewal */
134 spin_lock(&clp->cl_lock);
135 clp->cl_lease_time = fsinfo.lease_time * HZ;
136 clp->cl_last_renewal = jiffies;
137 spin_unlock(&clp->cl_lock);
138
139 nfs4_schedule_state_renewal(clp);
140 }
141
142 return status;
143}
144
42acd021
AA
145/*
146 * Back channel returns NFS4ERR_DELAY for new requests when
147 * NFS4_SESSION_DRAINING is set so there is no work to be done when draining
148 * is ended.
149 */
5601a00d 150static void nfs4_end_drain_session(struct nfs_client *clp)
9dfdf404 151{
5601a00d 152 struct nfs4_session *ses = clp->cl_session;
689cf5c1
AB
153 int max_slots;
154
a2118c33
TM
155 if (ses == NULL)
156 return;
157 if (test_and_clear_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
689cf5c1
AB
158 spin_lock(&ses->fc_slot_table.slot_tbl_lock);
159 max_slots = ses->fc_slot_table.max_slots;
160 while (max_slots--) {
161 struct rpc_task *task;
162
163 task = rpc_wake_up_next(&ses->fc_slot_table.
164 slot_tbl_waitq);
165 if (!task)
166 break;
167 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
168 }
169 spin_unlock(&ses->fc_slot_table.slot_tbl_lock);
170 }
9dfdf404
RL
171}
172
42acd021 173static int nfs4_wait_on_slot_tbl(struct nfs4_slot_table *tbl)
9dfdf404 174{
9dfdf404 175 spin_lock(&tbl->slot_tbl_lock);
9dfdf404 176 if (tbl->highest_used_slotid != -1) {
42acd021 177 INIT_COMPLETION(tbl->complete);
9dfdf404 178 spin_unlock(&tbl->slot_tbl_lock);
42acd021 179 return wait_for_completion_interruptible(&tbl->complete);
9dfdf404
RL
180 }
181 spin_unlock(&tbl->slot_tbl_lock);
182 return 0;
183}
184
42acd021
AA
185static int nfs4_begin_drain_session(struct nfs_client *clp)
186{
187 struct nfs4_session *ses = clp->cl_session;
188 int ret = 0;
189
190 set_bit(NFS4_SESSION_DRAINING, &ses->session_state);
191 /* back channel */
192 ret = nfs4_wait_on_slot_tbl(&ses->bc_slot_table);
193 if (ret)
194 return ret;
195 /* fore channel */
196 return nfs4_wait_on_slot_tbl(&ses->fc_slot_table);
197}
198
4d643d1d
AA
199int nfs41_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
200{
201 int status;
202
38045412 203 nfs4_begin_drain_session(clp);
4d643d1d 204 status = nfs4_proc_exchange_id(clp, cred);
9430fb6b
RL
205 if (status != 0)
206 goto out;
207 status = nfs4_proc_create_session(clp);
208 if (status != 0)
209 goto out;
2c2618c6
AA
210 status = nfs4_set_callback_sessionid(clp);
211 if (status != 0) {
212 printk(KERN_WARNING "Sessionid not set. No callback service\n");
213 nfs_callback_down(1);
214 status = 0;
215 }
9430fb6b
RL
216 nfs41_setup_state_renewal(clp);
217 nfs_mark_client_ready(clp, NFS_CS_READY);
218out:
4d643d1d
AA
219 return status;
220}
221
b4b82607
AA
222struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp)
223{
224 struct rpc_cred *cred;
225
226 spin_lock(&clp->cl_lock);
227 cred = nfs4_get_machine_cred_locked(clp);
228 spin_unlock(&clp->cl_lock);
229 return cred;
230}
231
232#endif /* CONFIG_NFS_V4_1 */
233
a7b72103 234struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp)
286d7d6a
TM
235{
236 struct nfs4_state_owner *sp;
9f958ab8 237 struct rb_node *pos;
a2b2bb88 238 struct rpc_cred *cred;
286d7d6a 239
6dc9d57a
TM
240 spin_lock(&clp->cl_lock);
241 cred = nfs4_get_machine_cred_locked(clp);
a2b2bb88
TM
242 if (cred != NULL)
243 goto out;
9f958ab8
TM
244 pos = rb_first(&clp->cl_state_owners);
245 if (pos != NULL) {
246 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
a2b2bb88 247 cred = get_rpccred(sp->so_cred);
286d7d6a 248 }
a2b2bb88 249out:
6dc9d57a 250 spin_unlock(&clp->cl_lock);
a2b2bb88 251 return cred;
286d7d6a
TM
252}
253
9f958ab8
TM
254static void nfs_alloc_unique_id(struct rb_root *root, struct nfs_unique_id *new,
255 __u64 minval, int maxbits)
256{
257 struct rb_node **p, *parent;
258 struct nfs_unique_id *pos;
259 __u64 mask = ~0ULL;
260
261 if (maxbits < 64)
262 mask = (1ULL << maxbits) - 1ULL;
263
264 /* Ensure distribution is more or less flat */
265 get_random_bytes(&new->id, sizeof(new->id));
266 new->id &= mask;
267 if (new->id < minval)
268 new->id += minval;
269retry:
270 p = &root->rb_node;
271 parent = NULL;
272
273 while (*p != NULL) {
274 parent = *p;
275 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
276
277 if (new->id < pos->id)
278 p = &(*p)->rb_left;
279 else if (new->id > pos->id)
280 p = &(*p)->rb_right;
281 else
282 goto id_exists;
283 }
284 rb_link_node(&new->rb_node, parent, p);
285 rb_insert_color(&new->rb_node, root);
286 return;
287id_exists:
288 for (;;) {
289 new->id++;
290 if (new->id < minval || (new->id & mask) != new->id) {
291 new->id = minval;
292 break;
293 }
294 parent = rb_next(parent);
295 if (parent == NULL)
296 break;
297 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
298 if (new->id < pos->id)
299 break;
300 }
301 goto retry;
302}
303
304static void nfs_free_unique_id(struct rb_root *root, struct nfs_unique_id *id)
305{
306 rb_erase(&id->rb_node, root);
307}
308
1da177e4 309static struct nfs4_state_owner *
6f2e64d3 310nfs4_find_state_owner(struct nfs_server *server, struct rpc_cred *cred)
1da177e4 311{
6f2e64d3 312 struct nfs_client *clp = server->nfs_client;
9f958ab8
TM
313 struct rb_node **p = &clp->cl_state_owners.rb_node,
314 *parent = NULL;
1da177e4
LT
315 struct nfs4_state_owner *sp, *res = NULL;
316
9f958ab8
TM
317 while (*p != NULL) {
318 parent = *p;
319 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
320
6f2e64d3
TM
321 if (server < sp->so_server) {
322 p = &parent->rb_left;
323 continue;
324 }
325 if (server > sp->so_server) {
326 p = &parent->rb_right;
327 continue;
328 }
9f958ab8
TM
329 if (cred < sp->so_cred)
330 p = &parent->rb_left;
331 else if (cred > sp->so_cred)
332 p = &parent->rb_right;
333 else {
334 atomic_inc(&sp->so_count);
335 res = sp;
336 break;
337 }
1da177e4
LT
338 }
339 return res;
340}
341
9f958ab8
TM
342static struct nfs4_state_owner *
343nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new)
344{
345 struct rb_node **p = &clp->cl_state_owners.rb_node,
346 *parent = NULL;
347 struct nfs4_state_owner *sp;
348
349 while (*p != NULL) {
350 parent = *p;
351 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
352
6f2e64d3
TM
353 if (new->so_server < sp->so_server) {
354 p = &parent->rb_left;
355 continue;
356 }
357 if (new->so_server > sp->so_server) {
358 p = &parent->rb_right;
359 continue;
360 }
9f958ab8
TM
361 if (new->so_cred < sp->so_cred)
362 p = &parent->rb_left;
363 else if (new->so_cred > sp->so_cred)
364 p = &parent->rb_right;
365 else {
366 atomic_inc(&sp->so_count);
367 return sp;
368 }
369 }
370 nfs_alloc_unique_id(&clp->cl_openowner_id, &new->so_owner_id, 1, 64);
371 rb_link_node(&new->so_client_node, parent, p);
372 rb_insert_color(&new->so_client_node, &clp->cl_state_owners);
373 return new;
374}
375
376static void
377nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp)
378{
379 if (!RB_EMPTY_NODE(&sp->so_client_node))
380 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
381 nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id);
382}
383
1da177e4
LT
384/*
385 * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
386 * create a new state_owner.
387 *
388 */
389static struct nfs4_state_owner *
390nfs4_alloc_state_owner(void)
391{
392 struct nfs4_state_owner *sp;
393
8535b2be 394 sp = kzalloc(sizeof(*sp),GFP_NOFS);
1da177e4
LT
395 if (!sp)
396 return NULL;
ec073428 397 spin_lock_init(&sp->so_lock);
1da177e4 398 INIT_LIST_HEAD(&sp->so_states);
cee54fc9
TM
399 rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue");
400 sp->so_seqid.sequence = &sp->so_sequence;
401 spin_lock_init(&sp->so_sequence.lock);
402 INIT_LIST_HEAD(&sp->so_sequence.list);
1da177e4
LT
403 atomic_set(&sp->so_count, 1);
404 return sp;
405}
406
1d2e88e7 407static void
1da177e4
LT
408nfs4_drop_state_owner(struct nfs4_state_owner *sp)
409{
9f958ab8 410 if (!RB_EMPTY_NODE(&sp->so_client_node)) {
1f0e890d 411 struct nfs_client *clp = sp->so_server->nfs_client;
9f958ab8
TM
412
413 spin_lock(&clp->cl_lock);
414 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
415 RB_CLEAR_NODE(&sp->so_client_node);
416 spin_unlock(&clp->cl_lock);
417 }
1da177e4
LT
418}
419
1da177e4
LT
420struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred)
421{
7539bbab 422 struct nfs_client *clp = server->nfs_client;
1da177e4
LT
423 struct nfs4_state_owner *sp, *new;
424
1da177e4 425 spin_lock(&clp->cl_lock);
6f2e64d3 426 sp = nfs4_find_state_owner(server, cred);
1da177e4 427 spin_unlock(&clp->cl_lock);
1da177e4
LT
428 if (sp != NULL)
429 return sp;
9f958ab8
TM
430 new = nfs4_alloc_state_owner();
431 if (new == NULL)
432 return NULL;
6f2e64d3 433 new->so_server = server;
9f958ab8
TM
434 new->so_cred = cred;
435 spin_lock(&clp->cl_lock);
436 sp = nfs4_insert_state_owner(clp, new);
437 spin_unlock(&clp->cl_lock);
438 if (sp == new)
439 get_rpccred(cred);
f6a1cc89
TM
440 else {
441 rpc_destroy_wait_queue(&new->so_sequence.wait);
9f958ab8 442 kfree(new);
f6a1cc89 443 }
9f958ab8 444 return sp;
1da177e4
LT
445}
446
1da177e4
LT
447void nfs4_put_state_owner(struct nfs4_state_owner *sp)
448{
1f0e890d 449 struct nfs_client *clp = sp->so_server->nfs_client;
1da177e4
LT
450 struct rpc_cred *cred = sp->so_cred;
451
452 if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
453 return;
9f958ab8 454 nfs4_remove_state_owner(clp, sp);
1da177e4 455 spin_unlock(&clp->cl_lock);
f6a1cc89 456 rpc_destroy_wait_queue(&sp->so_sequence.wait);
1da177e4
LT
457 put_rpccred(cred);
458 kfree(sp);
459}
460
461static struct nfs4_state *
462nfs4_alloc_open_state(void)
463{
464 struct nfs4_state *state;
465
8535b2be 466 state = kzalloc(sizeof(*state), GFP_NOFS);
1da177e4
LT
467 if (!state)
468 return NULL;
1da177e4
LT
469 atomic_set(&state->count, 1);
470 INIT_LIST_HEAD(&state->lock_states);
8d0a8a9d 471 spin_lock_init(&state->state_lock);
8bda4e4c 472 seqlock_init(&state->seqlock);
1da177e4
LT
473 return state;
474}
475
4cecb76f 476void
dc0b027d 477nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
4cecb76f 478{
dc0b027d 479 if (state->state == fmode)
4cecb76f
TM
480 return;
481 /* NB! List reordering - see the reclaim code for why. */
dc0b027d
TM
482 if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
483 if (fmode & FMODE_WRITE)
4cecb76f
TM
484 list_move(&state->open_states, &state->owner->so_states);
485 else
486 list_move_tail(&state->open_states, &state->owner->so_states);
487 }
dc0b027d 488 state->state = fmode;
4cecb76f
TM
489}
490
1da177e4
LT
491static struct nfs4_state *
492__nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
493{
494 struct nfs_inode *nfsi = NFS_I(inode);
495 struct nfs4_state *state;
496
497 list_for_each_entry(state, &nfsi->open_states, inode_states) {
1c816efa 498 if (state->owner != owner)
1da177e4 499 continue;
1c816efa 500 if (atomic_inc_not_zero(&state->count))
1da177e4 501 return state;
1da177e4
LT
502 }
503 return NULL;
504}
505
1da177e4
LT
506static void
507nfs4_free_open_state(struct nfs4_state *state)
508{
509 kfree(state);
510}
511
512struct nfs4_state *
513nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
514{
515 struct nfs4_state *state, *new;
516 struct nfs_inode *nfsi = NFS_I(inode);
517
518 spin_lock(&inode->i_lock);
519 state = __nfs4_find_state_byowner(inode, owner);
520 spin_unlock(&inode->i_lock);
521 if (state)
522 goto out;
523 new = nfs4_alloc_open_state();
ec073428 524 spin_lock(&owner->so_lock);
1da177e4
LT
525 spin_lock(&inode->i_lock);
526 state = __nfs4_find_state_byowner(inode, owner);
527 if (state == NULL && new != NULL) {
528 state = new;
1da177e4
LT
529 state->owner = owner;
530 atomic_inc(&owner->so_count);
531 list_add(&state->inode_states, &nfsi->open_states);
532 state->inode = igrab(inode);
533 spin_unlock(&inode->i_lock);
ec073428
TM
534 /* Note: The reclaim code dictates that we add stateless
535 * and read-only stateids to the end of the list */
536 list_add_tail(&state->open_states, &owner->so_states);
537 spin_unlock(&owner->so_lock);
1da177e4
LT
538 } else {
539 spin_unlock(&inode->i_lock);
ec073428 540 spin_unlock(&owner->so_lock);
1da177e4
LT
541 if (new)
542 nfs4_free_open_state(new);
543 }
544out:
545 return state;
546}
547
1da177e4
LT
548void nfs4_put_open_state(struct nfs4_state *state)
549{
550 struct inode *inode = state->inode;
551 struct nfs4_state_owner *owner = state->owner;
552
ec073428 553 if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
1da177e4 554 return;
ec073428 555 spin_lock(&inode->i_lock);
ba683031 556 list_del(&state->inode_states);
1da177e4 557 list_del(&state->open_states);
ec073428
TM
558 spin_unlock(&inode->i_lock);
559 spin_unlock(&owner->so_lock);
1da177e4 560 iput(inode);
1da177e4
LT
561 nfs4_free_open_state(state);
562 nfs4_put_state_owner(owner);
563}
564
565/*
83c9d41e 566 * Close the current file.
1da177e4 567 */
8535b2be
TM
568static void __nfs4_close(struct path *path, struct nfs4_state *state,
569 fmode_t fmode, gfp_t gfp_mask, int wait)
1da177e4 570{
1da177e4 571 struct nfs4_state_owner *owner = state->owner;
003707c7 572 int call_close = 0;
dc0b027d 573 fmode_t newstate;
1da177e4
LT
574
575 atomic_inc(&owner->so_count);
1da177e4 576 /* Protect against nfs4_find_state() */
ec073428 577 spin_lock(&owner->so_lock);
dc0b027d 578 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
e7616923
TM
579 case FMODE_READ:
580 state->n_rdonly--;
581 break;
582 case FMODE_WRITE:
583 state->n_wronly--;
584 break;
585 case FMODE_READ|FMODE_WRITE:
586 state->n_rdwr--;
587 }
003707c7 588 newstate = FMODE_READ|FMODE_WRITE;
e7616923 589 if (state->n_rdwr == 0) {
003707c7 590 if (state->n_rdonly == 0) {
e7616923 591 newstate &= ~FMODE_READ;
003707c7
TM
592 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
593 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
594 }
595 if (state->n_wronly == 0) {
e7616923 596 newstate &= ~FMODE_WRITE;
003707c7
TM
597 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
598 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
599 }
600 if (newstate == 0)
601 clear_bit(NFS_DELEGATED_STATE, &state->flags);
e7616923 602 }
003707c7 603 nfs4_state_set_mode_locked(state, newstate);
ec073428 604 spin_unlock(&owner->so_lock);
4cecb76f 605
003707c7 606 if (!call_close) {
b39e625b
TM
607 nfs4_put_open_state(state);
608 nfs4_put_state_owner(owner);
609 } else
8535b2be 610 nfs4_do_close(path, state, gfp_mask, wait);
a49c3c77
TM
611}
612
dc0b027d 613void nfs4_close_state(struct path *path, struct nfs4_state *state, fmode_t fmode)
a49c3c77 614{
8535b2be 615 __nfs4_close(path, state, fmode, GFP_NOFS, 0);
a49c3c77
TM
616}
617
dc0b027d 618void nfs4_close_sync(struct path *path, struct nfs4_state *state, fmode_t fmode)
a49c3c77 619{
8535b2be 620 __nfs4_close(path, state, fmode, GFP_KERNEL, 1);
1da177e4
LT
621}
622
623/*
624 * Search the state->lock_states for an existing lock_owner
625 * that is compatible with current->files
626 */
627static struct nfs4_lock_state *
77041ed9 628__nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid, unsigned int type)
1da177e4
LT
629{
630 struct nfs4_lock_state *pos;
631 list_for_each_entry(pos, &state->lock_states, ls_locks) {
77041ed9 632 if (type != NFS4_ANY_LOCK_TYPE && pos->ls_owner.lo_type != type)
1da177e4 633 continue;
77041ed9
TM
634 switch (pos->ls_owner.lo_type) {
635 case NFS4_POSIX_LOCK_TYPE:
636 if (pos->ls_owner.lo_u.posix_owner != fl_owner)
637 continue;
638 break;
639 case NFS4_FLOCK_LOCK_TYPE:
640 if (pos->ls_owner.lo_u.flock_owner != fl_pid)
641 continue;
642 }
1da177e4
LT
643 atomic_inc(&pos->ls_count);
644 return pos;
645 }
646 return NULL;
647}
648
1da177e4
LT
649/*
650 * Return a compatible lock_state. If no initialized lock_state structure
651 * exists, return an uninitialized one.
652 *
1da177e4 653 */
77041ed9 654static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid, unsigned int type)
1da177e4
LT
655{
656 struct nfs4_lock_state *lsp;
1f0e890d 657 struct nfs_client *clp = state->owner->so_server->nfs_client;
1da177e4 658
8535b2be 659 lsp = kzalloc(sizeof(*lsp), GFP_NOFS);
1da177e4
LT
660 if (lsp == NULL)
661 return NULL;
d0dc3701
TM
662 rpc_init_wait_queue(&lsp->ls_sequence.wait, "lock_seqid_waitqueue");
663 spin_lock_init(&lsp->ls_sequence.lock);
664 INIT_LIST_HEAD(&lsp->ls_sequence.list);
665 lsp->ls_seqid.sequence = &lsp->ls_sequence;
1da177e4 666 atomic_set(&lsp->ls_count, 1);
b64aec8d 667 lsp->ls_state = state;
77041ed9
TM
668 lsp->ls_owner.lo_type = type;
669 switch (lsp->ls_owner.lo_type) {
670 case NFS4_FLOCK_LOCK_TYPE:
671 lsp->ls_owner.lo_u.flock_owner = fl_pid;
672 break;
673 case NFS4_POSIX_LOCK_TYPE:
674 lsp->ls_owner.lo_u.posix_owner = fl_owner;
675 break;
676 default:
677 kfree(lsp);
678 return NULL;
679 }
1da177e4 680 spin_lock(&clp->cl_lock);
9f958ab8 681 nfs_alloc_unique_id(&clp->cl_lockowner_id, &lsp->ls_id, 1, 64);
1da177e4 682 spin_unlock(&clp->cl_lock);
8d0a8a9d 683 INIT_LIST_HEAD(&lsp->ls_locks);
1da177e4
LT
684 return lsp;
685}
686
9f958ab8
TM
687static void nfs4_free_lock_state(struct nfs4_lock_state *lsp)
688{
1f0e890d 689 struct nfs_client *clp = lsp->ls_state->owner->so_server->nfs_client;
9f958ab8
TM
690
691 spin_lock(&clp->cl_lock);
692 nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id);
693 spin_unlock(&clp->cl_lock);
f6a1cc89 694 rpc_destroy_wait_queue(&lsp->ls_sequence.wait);
9f958ab8
TM
695 kfree(lsp);
696}
697
1da177e4
LT
698/*
699 * Return a compatible lock_state. If no initialized lock_state structure
700 * exists, return an uninitialized one.
701 *
1da177e4 702 */
77041ed9 703static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner, pid_t pid, unsigned int type)
1da177e4 704{
8d0a8a9d 705 struct nfs4_lock_state *lsp, *new = NULL;
1da177e4 706
8d0a8a9d
TM
707 for(;;) {
708 spin_lock(&state->state_lock);
77041ed9 709 lsp = __nfs4_find_lock_state(state, owner, pid, type);
8d0a8a9d
TM
710 if (lsp != NULL)
711 break;
712 if (new != NULL) {
8d0a8a9d
TM
713 list_add(&new->ls_locks, &state->lock_states);
714 set_bit(LK_STATE_IN_USE, &state->flags);
715 lsp = new;
716 new = NULL;
717 break;
718 }
719 spin_unlock(&state->state_lock);
77041ed9 720 new = nfs4_alloc_lock_state(state, owner, pid, type);
8d0a8a9d
TM
721 if (new == NULL)
722 return NULL;
723 }
724 spin_unlock(&state->state_lock);
9f958ab8
TM
725 if (new != NULL)
726 nfs4_free_lock_state(new);
1da177e4
LT
727 return lsp;
728}
729
730/*
8d0a8a9d
TM
731 * Release reference to lock_state, and free it if we see that
732 * it is no longer in use
1da177e4 733 */
faf5f49c 734void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
1da177e4 735{
8d0a8a9d 736 struct nfs4_state *state;
1da177e4 737
8d0a8a9d
TM
738 if (lsp == NULL)
739 return;
740 state = lsp->ls_state;
741 if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
742 return;
743 list_del(&lsp->ls_locks);
744 if (list_empty(&state->lock_states))
745 clear_bit(LK_STATE_IN_USE, &state->flags);
746 spin_unlock(&state->state_lock);
d3c7b7cc
TM
747 if (lsp->ls_flags & NFS_LOCK_INITIALIZED)
748 nfs4_release_lockowner(lsp);
9f958ab8 749 nfs4_free_lock_state(lsp);
1da177e4
LT
750}
751
8d0a8a9d 752static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
1da177e4 753{
8d0a8a9d 754 struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
1da177e4 755
8d0a8a9d
TM
756 dst->fl_u.nfs4_fl.owner = lsp;
757 atomic_inc(&lsp->ls_count);
758}
1da177e4 759
8d0a8a9d 760static void nfs4_fl_release_lock(struct file_lock *fl)
1da177e4 761{
8d0a8a9d 762 nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
1da177e4
LT
763}
764
6aed6285 765static const struct file_lock_operations nfs4_fl_lock_ops = {
8d0a8a9d
TM
766 .fl_copy_lock = nfs4_fl_copy_lock,
767 .fl_release_private = nfs4_fl_release_lock,
768};
769
770int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
1da177e4 771{
8d0a8a9d
TM
772 struct nfs4_lock_state *lsp;
773
774 if (fl->fl_ops != NULL)
775 return 0;
77041ed9
TM
776 if (fl->fl_flags & FL_POSIX)
777 lsp = nfs4_get_lock_state(state, fl->fl_owner, 0, NFS4_POSIX_LOCK_TYPE);
778 else if (fl->fl_flags & FL_FLOCK)
779 lsp = nfs4_get_lock_state(state, 0, fl->fl_pid, NFS4_FLOCK_LOCK_TYPE);
780 else
781 return -EINVAL;
8d0a8a9d
TM
782 if (lsp == NULL)
783 return -ENOMEM;
784 fl->fl_u.nfs4_fl.owner = lsp;
785 fl->fl_ops = &nfs4_fl_lock_ops;
786 return 0;
1da177e4
LT
787}
788
8d0a8a9d
TM
789/*
790 * Byte-range lock aware utility to initialize the stateid of read/write
791 * requests.
1da177e4 792 */
77041ed9 793void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid)
1da177e4 794{
8d0a8a9d 795 struct nfs4_lock_state *lsp;
8bda4e4c 796 int seq;
1da177e4 797
8bda4e4c
TM
798 do {
799 seq = read_seqbegin(&state->seqlock);
800 memcpy(dst, &state->stateid, sizeof(*dst));
801 } while (read_seqretry(&state->seqlock, seq));
8d0a8a9d
TM
802 if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
803 return;
1da177e4 804
8d0a8a9d 805 spin_lock(&state->state_lock);
77041ed9 806 lsp = __nfs4_find_lock_state(state, fl_owner, fl_pid, NFS4_ANY_LOCK_TYPE);
8d0a8a9d
TM
807 if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
808 memcpy(dst, &lsp->ls_stateid, sizeof(*dst));
809 spin_unlock(&state->state_lock);
1da177e4
LT
810 nfs4_put_lock_state(lsp);
811}
812
8535b2be 813struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask)
cee54fc9 814{
cee54fc9
TM
815 struct nfs_seqid *new;
816
8535b2be 817 new = kmalloc(sizeof(*new), gfp_mask);
cee54fc9
TM
818 if (new != NULL) {
819 new->sequence = counter;
2f74c0a0 820 INIT_LIST_HEAD(&new->list);
cee54fc9
TM
821 }
822 return new;
823}
824
72211dbe 825void nfs_release_seqid(struct nfs_seqid *seqid)
1da177e4 826{
2f74c0a0
TM
827 if (!list_empty(&seqid->list)) {
828 struct rpc_sequence *sequence = seqid->sequence->sequence;
cee54fc9 829
2f74c0a0 830 spin_lock(&sequence->lock);
72211dbe 831 list_del_init(&seqid->list);
2f74c0a0
TM
832 spin_unlock(&sequence->lock);
833 rpc_wake_up(&sequence->wait);
834 }
72211dbe
TM
835}
836
837void nfs_free_seqid(struct nfs_seqid *seqid)
838{
839 nfs_release_seqid(seqid);
cee54fc9 840 kfree(seqid);
1da177e4
LT
841}
842
843/*
cee54fc9
TM
844 * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
845 * failed with a seqid incrementing error -
846 * see comments nfs_fs.h:seqid_mutating_error()
847 */
88d90939 848static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
cee54fc9 849{
2f74c0a0 850 BUG_ON(list_first_entry(&seqid->sequence->sequence->list, struct nfs_seqid, list) != seqid);
cee54fc9
TM
851 switch (status) {
852 case 0:
853 break;
854 case -NFS4ERR_BAD_SEQID:
6f43ddcc
TM
855 if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
856 return;
857 printk(KERN_WARNING "NFS: v4 server returned a bad"
497799e7
DM
858 " sequence-id error on an"
859 " unconfirmed sequence %p!\n",
6f43ddcc 860 seqid->sequence);
cee54fc9
TM
861 case -NFS4ERR_STALE_CLIENTID:
862 case -NFS4ERR_STALE_STATEID:
863 case -NFS4ERR_BAD_STATEID:
864 case -NFS4ERR_BADXDR:
865 case -NFS4ERR_RESOURCE:
866 case -NFS4ERR_NOFILEHANDLE:
867 /* Non-seqid mutating errors */
868 return;
869 };
870 /*
871 * Note: no locking needed as we are guaranteed to be first
872 * on the sequence list
873 */
874 seqid->sequence->counter++;
875}
876
877void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
878{
34dc1ad7
BH
879 struct nfs4_state_owner *sp = container_of(seqid->sequence,
880 struct nfs4_state_owner, so_seqid);
881 struct nfs_server *server = sp->so_server;
882
883 if (status == -NFS4ERR_BAD_SEQID)
1da177e4 884 nfs4_drop_state_owner(sp);
34dc1ad7
BH
885 if (!nfs4_has_session(server->nfs_client))
886 nfs_increment_seqid(status, seqid);
cee54fc9
TM
887}
888
889/*
cee54fc9
TM
890 * Increment the seqid if the LOCK/LOCKU succeeded, or
891 * failed with a seqid incrementing error -
892 * see comments nfs_fs.h:seqid_mutating_error()
893 */
894void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
895{
88d90939 896 nfs_increment_seqid(status, seqid);
cee54fc9
TM
897}
898
899int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
900{
901 struct rpc_sequence *sequence = seqid->sequence->sequence;
902 int status = 0;
903
904 spin_lock(&sequence->lock);
2f74c0a0
TM
905 if (list_empty(&seqid->list))
906 list_add_tail(&seqid->list, &sequence->list);
907 if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid)
908 goto unlock;
5d00837b 909 rpc_sleep_on(&sequence->wait, task, NULL);
2f74c0a0
TM
910 status = -EAGAIN;
911unlock:
cee54fc9
TM
912 spin_unlock(&sequence->lock);
913 return status;
1da177e4
LT
914}
915
e005e804 916static int nfs4_run_state_manager(void *);
1da177e4 917
e005e804 918static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
433fbe4c
TM
919{
920 smp_mb__before_clear_bit();
e005e804 921 clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
433fbe4c 922 smp_mb__after_clear_bit();
e005e804 923 wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
433fbe4c
TM
924 rpc_wake_up(&clp->cl_rpcwaitq);
925}
926
1da177e4 927/*
e005e804 928 * Schedule the nfs_client asynchronous state management routine
1da177e4 929 */
b0d3ded1 930void nfs4_schedule_state_manager(struct nfs_client *clp)
1da177e4 931{
5043e900 932 struct task_struct *task;
1da177e4 933
e005e804
TM
934 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
935 return;
5043e900
TM
936 __module_get(THIS_MODULE);
937 atomic_inc(&clp->cl_count);
e005e804 938 task = kthread_run(nfs4_run_state_manager, clp, "%s-manager",
5d8515ca
CL
939 rpc_peeraddr2str(clp->cl_rpcclient,
940 RPC_DISPLAY_ADDR));
5043e900
TM
941 if (!IS_ERR(task))
942 return;
e005e804 943 nfs4_clear_state_manager_bit(clp);
24c8dbbb 944 nfs_put_client(clp);
5043e900 945 module_put(THIS_MODULE);
1da177e4
LT
946}
947
948/*
949 * Schedule a state recovery attempt
950 */
adfa6f98 951void nfs4_schedule_state_recovery(struct nfs_client *clp)
1da177e4
LT
952{
953 if (!clp)
954 return;
e598d843
TM
955 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
956 set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
e005e804 957 nfs4_schedule_state_manager(clp);
1da177e4
LT
958}
959
a2c0b9e2 960int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
b79a4a1b
TM
961{
962
963 set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
964 /* Don't recover state that expired before the reboot */
965 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
966 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
967 return 0;
968 }
7eff03ae 969 set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
b79a4a1b
TM
970 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
971 return 1;
972}
973
9e33bed5 974int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
b79a4a1b
TM
975{
976 set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
977 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
7eff03ae 978 set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
b79a4a1b
TM
979 set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
980 return 1;
981}
982
02860014 983static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
1da177e4
LT
984{
985 struct inode *inode = state->inode;
19e03c57 986 struct nfs_inode *nfsi = NFS_I(inode);
1da177e4
LT
987 struct file_lock *fl;
988 int status = 0;
989
3f09df70
TM
990 if (inode->i_flock == NULL)
991 return 0;
992
993 /* Guard against delegation returns and new lock/unlock calls */
19e03c57 994 down_write(&nfsi->rwsem);
3f09df70 995 /* Protect inode->i_flock using the BKL */
b89f4321 996 lock_flocks();
90dc7d27 997 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
43b2a33a 998 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
1da177e4 999 continue;
cd3758e3 1000 if (nfs_file_open_context(fl->fl_file)->state != state)
1da177e4 1001 continue;
b89f4321 1002 unlock_flocks();
1da177e4 1003 status = ops->recover_lock(state, fl);
1da177e4 1004 switch (status) {
965b5d67
TM
1005 case 0:
1006 break;
1007 case -ESTALE:
1008 case -NFS4ERR_ADMIN_REVOKED:
1009 case -NFS4ERR_STALE_STATEID:
1010 case -NFS4ERR_BAD_STATEID:
1011 case -NFS4ERR_EXPIRED:
1012 case -NFS4ERR_NO_GRACE:
1013 case -NFS4ERR_STALE_CLIENTID:
9c4c761a
TM
1014 case -NFS4ERR_BADSESSION:
1015 case -NFS4ERR_BADSLOT:
1016 case -NFS4ERR_BAD_HIGH_SLOT:
1017 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
965b5d67 1018 goto out;
1da177e4
LT
1019 default:
1020 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
3110ff80 1021 __func__, status);
965b5d67
TM
1022 case -ENOMEM:
1023 case -NFS4ERR_DENIED:
1da177e4
LT
1024 case -NFS4ERR_RECLAIM_BAD:
1025 case -NFS4ERR_RECLAIM_CONFLICT:
43b2a33a 1026 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
965b5d67 1027 status = 0;
1da177e4 1028 }
b89f4321 1029 lock_flocks();
1da177e4 1030 }
b89f4321 1031 unlock_flocks();
965b5d67 1032out:
19e03c57 1033 up_write(&nfsi->rwsem);
1da177e4
LT
1034 return status;
1035}
1036
02860014 1037static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
1da177e4
LT
1038{
1039 struct nfs4_state *state;
1040 struct nfs4_lock_state *lock;
1041 int status = 0;
1042
1043 /* Note: we rely on the sp->so_states list being ordered
1044 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
1045 * states first.
1046 * This is needed to ensure that the server won't give us any
1047 * read delegations that we have to return if, say, we are
1048 * recovering after a network partition or a reboot from a
1049 * server that doesn't support a grace period.
1050 */
fe1d8195
TM
1051restart:
1052 spin_lock(&sp->so_lock);
1da177e4 1053 list_for_each_entry(state, &sp->so_states, open_states) {
b79a4a1b
TM
1054 if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
1055 continue;
1da177e4
LT
1056 if (state->state == 0)
1057 continue;
fe1d8195
TM
1058 atomic_inc(&state->count);
1059 spin_unlock(&sp->so_lock);
1da177e4 1060 status = ops->recover_open(sp, state);
1da177e4 1061 if (status >= 0) {
02860014
TM
1062 status = nfs4_reclaim_locks(state, ops);
1063 if (status >= 0) {
1064 list_for_each_entry(lock, &state->lock_states, ls_locks) {
1065 if (!(lock->ls_flags & NFS_LOCK_INITIALIZED))
1066 printk("%s: Lock reclaim failed!\n",
3110ff80 1067 __func__);
02860014 1068 }
fe1d8195
TM
1069 nfs4_put_open_state(state);
1070 goto restart;
1da177e4 1071 }
1da177e4
LT
1072 }
1073 switch (status) {
1074 default:
1075 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
3110ff80 1076 __func__, status);
1da177e4 1077 case -ENOENT:
965b5d67 1078 case -ENOMEM:
b79a4a1b 1079 case -ESTALE:
1da177e4
LT
1080 /*
1081 * Open state on this file cannot be recovered
1082 * All we can do is revert to using the zero stateid.
1083 */
1084 memset(state->stateid.data, 0,
1085 sizeof(state->stateid.data));
1086 /* Mark the file as being 'closed' */
1087 state->state = 0;
1088 break;
168667c4
TM
1089 case -EKEYEXPIRED:
1090 /*
1091 * User RPCSEC_GSS context has expired.
1092 * We cannot recover this stateid now, so
1093 * skip it and allow recovery thread to
1094 * proceed.
1095 */
1096 break;
965b5d67
TM
1097 case -NFS4ERR_ADMIN_REVOKED:
1098 case -NFS4ERR_STALE_STATEID:
1099 case -NFS4ERR_BAD_STATEID:
b79a4a1b
TM
1100 case -NFS4ERR_RECLAIM_BAD:
1101 case -NFS4ERR_RECLAIM_CONFLICT:
1f0e890d 1102 nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
b79a4a1b 1103 break;
1da177e4
LT
1104 case -NFS4ERR_EXPIRED:
1105 case -NFS4ERR_NO_GRACE:
1f0e890d 1106 nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
1da177e4 1107 case -NFS4ERR_STALE_CLIENTID:
9c4c761a
TM
1108 case -NFS4ERR_BADSESSION:
1109 case -NFS4ERR_BADSLOT:
1110 case -NFS4ERR_BAD_HIGH_SLOT:
1111 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1da177e4
LT
1112 goto out_err;
1113 }
fe1d8195
TM
1114 nfs4_put_open_state(state);
1115 goto restart;
1da177e4 1116 }
fe1d8195 1117 spin_unlock(&sp->so_lock);
1da177e4
LT
1118 return 0;
1119out_err:
fe1d8195 1120 nfs4_put_open_state(state);
1da177e4
LT
1121 return status;
1122}
1123
b79a4a1b
TM
1124static void nfs4_clear_open_state(struct nfs4_state *state)
1125{
1126 struct nfs4_lock_state *lock;
1127
1128 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1129 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1130 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1131 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1132 list_for_each_entry(lock, &state->lock_states, ls_locks) {
b79a4a1b
TM
1133 lock->ls_seqid.flags = 0;
1134 lock->ls_flags &= ~NFS_LOCK_INITIALIZED;
1135 }
1136}
1137
1138static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp, int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
cee54fc9
TM
1139{
1140 struct nfs4_state_owner *sp;
9f958ab8 1141 struct rb_node *pos;
cee54fc9 1142 struct nfs4_state *state;
cee54fc9
TM
1143
1144 /* Reset all sequence ids to zero */
9f958ab8
TM
1145 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1146 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
cee54fc9 1147 sp->so_seqid.flags = 0;
ec073428 1148 spin_lock(&sp->so_lock);
cee54fc9 1149 list_for_each_entry(state, &sp->so_states, open_states) {
b79a4a1b
TM
1150 if (mark_reclaim(clp, state))
1151 nfs4_clear_open_state(state);
cee54fc9 1152 }
ec073428 1153 spin_unlock(&sp->so_lock);
cee54fc9
TM
1154 }
1155}
1156
b79a4a1b
TM
1157static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
1158{
1159 /* Mark all delegations for reclaim */
1160 nfs_delegation_mark_reclaim(clp);
1161 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
1162}
1163
fce5c838
RL
1164static void nfs4_reclaim_complete(struct nfs_client *clp,
1165 const struct nfs4_state_recovery_ops *ops)
1166{
1167 /* Notify the server we're done reclaiming our state */
1168 if (ops->reclaim_complete)
1169 (void)ops->reclaim_complete(clp);
1170}
1171
6eaa6149 1172static int nfs4_state_clear_reclaim_reboot(struct nfs_client *clp)
b79a4a1b
TM
1173{
1174 struct nfs4_state_owner *sp;
1175 struct rb_node *pos;
1176 struct nfs4_state *state;
1177
1178 if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
6eaa6149 1179 return 0;
7cab89b2 1180
b79a4a1b
TM
1181 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1182 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
1183 spin_lock(&sp->so_lock);
1184 list_for_each_entry(state, &sp->so_states, open_states) {
1185 if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags))
1186 continue;
1187 nfs4_state_mark_reclaim_nograce(clp, state);
1188 }
1189 spin_unlock(&sp->so_lock);
1190 }
1191
1192 nfs_delegation_reap_unclaimed(clp);
6eaa6149
TM
1193 return 1;
1194}
1195
1196static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
1197{
1198 if (!nfs4_state_clear_reclaim_reboot(clp))
1199 return;
1200 nfs4_reclaim_complete(clp, clp->cl_mvops->reboot_recovery_ops);
b79a4a1b
TM
1201}
1202
1203static void nfs_delegation_clear_all(struct nfs_client *clp)
1204{
1205 nfs_delegation_mark_reclaim(clp);
1206 nfs_delegation_reap_unclaimed(clp);
1207}
1208
1209static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
1210{
1211 nfs_delegation_clear_all(clp);
1212 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
1213}
1214
168667c4
TM
1215static void nfs4_warn_keyexpired(const char *s)
1216{
1217 printk_ratelimited(KERN_WARNING "Error: state manager"
1218 " encountered RPCSEC_GSS session"
1219 " expired against NFSv4 server %s.\n",
1220 s);
1221}
1222
4f7cdf18 1223static int nfs4_recovery_handle_error(struct nfs_client *clp, int error)
e598d843
TM
1224{
1225 switch (error) {
1226 case -NFS4ERR_CB_PATH_DOWN:
707fb4b3 1227 nfs_handle_cb_pathdown(clp);
4f7cdf18 1228 return 0;
c8b7ae3d
TM
1229 case -NFS4ERR_NO_GRACE:
1230 nfs4_state_end_reclaim_reboot(clp);
1231 return 0;
e598d843
TM
1232 case -NFS4ERR_STALE_CLIENTID:
1233 case -NFS4ERR_LEASE_MOVED:
1234 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
6eaa6149 1235 nfs4_state_clear_reclaim_reboot(clp);
e598d843
TM
1236 nfs4_state_start_reclaim_reboot(clp);
1237 break;
1238 case -NFS4ERR_EXPIRED:
1239 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1240 nfs4_state_start_reclaim_nograce(clp);
8ba9bf8e 1241 break;
c3fad1b1
AA
1242 case -NFS4ERR_BADSESSION:
1243 case -NFS4ERR_BADSLOT:
1244 case -NFS4ERR_BAD_HIGH_SLOT:
1245 case -NFS4ERR_DEADSESSION:
1246 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1247 case -NFS4ERR_SEQ_FALSE_RETRY:
1248 case -NFS4ERR_SEQ_MISORDERED:
6df08189 1249 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
0b9e2d41
AA
1250 /* Zero session reset errors */
1251 return 0;
168667c4
TM
1252 case -EKEYEXPIRED:
1253 /* Nothing we can do */
1254 nfs4_warn_keyexpired(clp->cl_hostname);
1255 return 0;
e598d843 1256 }
4f7cdf18 1257 return error;
e598d843
TM
1258}
1259
02860014 1260static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
1da177e4 1261{
9f958ab8 1262 struct rb_node *pos;
1da177e4
LT
1263 int status = 0;
1264
7eff03ae
TM
1265restart:
1266 spin_lock(&clp->cl_lock);
02860014
TM
1267 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1268 struct nfs4_state_owner *sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
7eff03ae
TM
1269 if (!test_and_clear_bit(ops->owner_flag_bit, &sp->so_flags))
1270 continue;
1271 atomic_inc(&sp->so_count);
1272 spin_unlock(&clp->cl_lock);
02860014 1273 status = nfs4_reclaim_open_state(sp, ops);
7eff03ae
TM
1274 if (status < 0) {
1275 set_bit(ops->owner_flag_bit, &sp->so_flags);
1276 nfs4_put_state_owner(sp);
4f7cdf18 1277 return nfs4_recovery_handle_error(clp, status);
7eff03ae
TM
1278 }
1279 nfs4_put_state_owner(sp);
1280 goto restart;
02860014 1281 }
7eff03ae 1282 spin_unlock(&clp->cl_lock);
02860014
TM
1283 return status;
1284}
1285
1286static int nfs4_check_lease(struct nfs_client *clp)
1287{
1288 struct rpc_cred *cred;
c48f4f35
TM
1289 const struct nfs4_state_maintenance_ops *ops =
1290 clp->cl_mvops->state_renewal_ops;
02860014 1291 int status = -NFS4ERR_EXPIRED;
1da177e4 1292
0f605b56
TM
1293 /* Is the client already known to have an expired lease? */
1294 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1295 return 0;
a7b72103
AA
1296 spin_lock(&clp->cl_lock);
1297 cred = ops->get_state_renewal_cred_locked(clp);
1298 spin_unlock(&clp->cl_lock);
0f605b56
TM
1299 if (cred == NULL) {
1300 cred = nfs4_get_setclientid_cred(clp);
1301 if (cred == NULL)
1302 goto out;
286d7d6a 1303 }
8e69514f 1304 status = ops->renew_lease(clp, cred);
0f605b56
TM
1305 put_rpccred(cred);
1306out:
4f7cdf18 1307 return nfs4_recovery_handle_error(clp, status);
02860014
TM
1308}
1309
1310static int nfs4_reclaim_lease(struct nfs_client *clp)
1311{
1312 struct rpc_cred *cred;
c48f4f35
TM
1313 const struct nfs4_state_recovery_ops *ops =
1314 clp->cl_mvops->reboot_recovery_ops;
02860014
TM
1315 int status = -ENOENT;
1316
90a16617 1317 cred = ops->get_clid_cred(clp);
286d7d6a 1318 if (cred != NULL) {
591d71cb 1319 status = ops->establish_clid(clp, cred);
286d7d6a 1320 put_rpccred(cred);
a2b2bb88
TM
1321 /* Handle case where the user hasn't set up machine creds */
1322 if (status == -EACCES && cred == clp->cl_machine_cred) {
1323 nfs4_clear_machine_cred(clp);
02860014 1324 status = -EAGAIN;
a2b2bb88 1325 }
c2e713dd
BH
1326 if (status == -NFS4ERR_MINOR_VERS_MISMATCH)
1327 status = -EPROTONOSUPPORT;
286d7d6a 1328 }
02860014
TM
1329 return status;
1330}
1331
76db6d95 1332#ifdef CONFIG_NFS_V4_1
b9efa1b2
AA
1333void nfs41_handle_recall_slot(struct nfs_client *clp)
1334{
1335 set_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state);
1336 nfs4_schedule_state_recovery(clp);
1337}
1338
0f79fd6f
TM
1339static void nfs4_reset_all_state(struct nfs_client *clp)
1340{
1341 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
1342 clp->cl_boot_time = CURRENT_TIME;
1343 nfs4_state_start_reclaim_nograce(clp);
1344 nfs4_schedule_state_recovery(clp);
1345 }
1346}
1347
1348static void nfs41_handle_server_reboot(struct nfs_client *clp)
1349{
1350 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
1351 nfs4_state_start_reclaim_reboot(clp);
1352 nfs4_schedule_state_recovery(clp);
1353 }
1354}
1355
1356static void nfs41_handle_state_revoked(struct nfs_client *clp)
1357{
1358 /* Temporary */
1359 nfs4_reset_all_state(clp);
1360}
1361
1362static void nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
1363{
1364 /* This will need to handle layouts too */
1365 nfs_expire_all_delegations(clp);
1366}
1367
1368static void nfs41_handle_cb_path_down(struct nfs_client *clp)
1369{
1370 nfs_expire_all_delegations(clp);
1371 if (test_and_set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state) == 0)
1372 nfs4_schedule_state_recovery(clp);
1373}
1374
0629e370
AB
1375void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags)
1376{
1377 if (!flags)
1378 return;
0f79fd6f
TM
1379 else if (flags & SEQ4_STATUS_RESTART_RECLAIM_NEEDED)
1380 nfs41_handle_server_reboot(clp);
1381 else if (flags & (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED |
0629e370
AB
1382 SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED |
1383 SEQ4_STATUS_ADMIN_STATE_REVOKED |
0f79fd6f
TM
1384 SEQ4_STATUS_LEASE_MOVED))
1385 nfs41_handle_state_revoked(clp);
1386 else if (flags & SEQ4_STATUS_RECALLABLE_STATE_REVOKED)
1387 nfs41_handle_recallable_state_revoked(clp);
1388 else if (flags & (SEQ4_STATUS_CB_PATH_DOWN |
0629e370
AB
1389 SEQ4_STATUS_BACKCHANNEL_FAULT |
1390 SEQ4_STATUS_CB_PATH_DOWN_SESSION))
0f79fd6f 1391 nfs41_handle_cb_path_down(clp);
0629e370
AB
1392}
1393
c3fad1b1
AA
1394static int nfs4_reset_session(struct nfs_client *clp)
1395{
1396 int status;
1397
38045412 1398 nfs4_begin_drain_session(clp);
c3fad1b1
AA
1399 status = nfs4_proc_destroy_session(clp->cl_session);
1400 if (status && status != -NFS4ERR_BADSESSION &&
1401 status != -NFS4ERR_DEADSESSION) {
f455848a 1402 status = nfs4_recovery_handle_error(clp, status);
c3fad1b1
AA
1403 goto out;
1404 }
1405
1406 memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
f26468fb 1407 status = nfs4_proc_create_session(clp);
41f54a55 1408 if (status) {
f455848a 1409 status = nfs4_recovery_handle_error(clp, status);
41f54a55
AA
1410 goto out;
1411 }
1412 /* create_session negotiated new slot table */
1413 clear_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state);
9dfdf404 1414
41f54a55
AA
1415 /* Let the state manager reestablish state */
1416 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
5601a00d 1417 nfs41_setup_state_renewal(clp);
41f54a55 1418out:
c3fad1b1
AA
1419 return status;
1420}
76db6d95 1421
b9efa1b2
AA
1422static int nfs4_recall_slot(struct nfs_client *clp)
1423{
1424 struct nfs4_slot_table *fc_tbl = &clp->cl_session->fc_slot_table;
1425 struct nfs4_channel_attrs *fc_attrs = &clp->cl_session->fc_attrs;
1426 struct nfs4_slot *new, *old;
1427 int i;
1428
1429 nfs4_begin_drain_session(clp);
1430 new = kmalloc(fc_tbl->target_max_slots * sizeof(struct nfs4_slot),
8535b2be 1431 GFP_NOFS);
b9efa1b2
AA
1432 if (!new)
1433 return -ENOMEM;
1434
1435 spin_lock(&fc_tbl->slot_tbl_lock);
1436 for (i = 0; i < fc_tbl->target_max_slots; i++)
1437 new[i].seq_nr = fc_tbl->slots[i].seq_nr;
1438 old = fc_tbl->slots;
1439 fc_tbl->slots = new;
1440 fc_tbl->max_slots = fc_tbl->target_max_slots;
1441 fc_tbl->target_max_slots = 0;
1442 fc_attrs->max_reqs = fc_tbl->max_slots;
1443 spin_unlock(&fc_tbl->slot_tbl_lock);
1444
1445 kfree(old);
1446 nfs4_end_drain_session(clp);
1447 return 0;
1448}
1449
76db6d95 1450#else /* CONFIG_NFS_V4_1 */
c3fad1b1 1451static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
5601a00d 1452static int nfs4_end_drain_session(struct nfs_client *clp) { return 0; }
b9efa1b2 1453static int nfs4_recall_slot(struct nfs_client *clp) { return 0; }
76db6d95
AA
1454#endif /* CONFIG_NFS_V4_1 */
1455
78722e9c
AA
1456/* Set NFS4CLNT_LEASE_EXPIRED for all v4.0 errors and for recoverable errors
1457 * on EXCHANGE_ID for v4.1
1458 */
1459static void nfs4_set_lease_expired(struct nfs_client *clp, int status)
1460{
1461 if (nfs4_has_session(clp)) {
1462 switch (status) {
1463 case -NFS4ERR_DELAY:
1464 case -NFS4ERR_CLID_INUSE:
1465 case -EAGAIN:
1466 break;
1467
168667c4
TM
1468 case -EKEYEXPIRED:
1469 nfs4_warn_keyexpired(clp->cl_hostname);
78722e9c
AA
1470 case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
1471 * in nfs4_exchange_id */
1472 default:
1473 return;
1474 }
1475 }
1476 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1477}
1478
e005e804 1479static void nfs4_state_manager(struct nfs_client *clp)
02860014 1480{
02860014
TM
1481 int status = 0;
1482
02860014 1483 /* Ensure exclusive access to NFSv4 state */
f3c76491 1484 for(;;) {
b79a4a1b
TM
1485 if (test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
1486 /* We're going to have to re-establish a clientid */
1487 status = nfs4_reclaim_lease(clp);
1488 if (status) {
78722e9c 1489 nfs4_set_lease_expired(clp, status);
b6d408ba
TM
1490 if (test_bit(NFS4CLNT_LEASE_EXPIRED,
1491 &clp->cl_state))
b79a4a1b 1492 continue;
76db6d95
AA
1493 if (clp->cl_cons_state ==
1494 NFS_CS_SESSION_INITING)
1495 nfs_mark_client_ready(clp, status);
b79a4a1b
TM
1496 goto out_error;
1497 }
e598d843 1498 clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
7cab89b2 1499 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
974cec8c 1500 pnfs_destroy_all_layouts(clp);
e598d843
TM
1501 }
1502
1503 if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
1504 status = nfs4_check_lease(clp);
b6d408ba 1505 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
e598d843 1506 continue;
b6d408ba
TM
1507 if (status < 0 && status != -NFS4ERR_CB_PATH_DOWN)
1508 goto out_error;
b79a4a1b 1509 }
b6d408ba 1510
c3fad1b1 1511 /* Initialize or reset the session */
6df08189 1512 if (test_and_clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state)
7111dc73 1513 && nfs4_has_session(clp)) {
4d643d1d 1514 status = nfs4_reset_session(clp);
b6d408ba
TM
1515 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1516 continue;
1517 if (status < 0)
76db6d95 1518 goto out_error;
76db6d95 1519 }
b6d408ba 1520
b79a4a1b 1521 /* First recover reboot state... */
e345e88a 1522 if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
591d71cb 1523 status = nfs4_do_reclaim(clp,
c48f4f35 1524 clp->cl_mvops->reboot_recovery_ops);
b6d408ba 1525 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) ||
6df08189 1526 test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state))
c3fad1b1 1527 continue;
b79a4a1b 1528 nfs4_state_end_reclaim_reboot(clp);
b6d408ba
TM
1529 if (test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state))
1530 continue;
1531 if (status < 0)
1532 goto out_error;
02860014
TM
1533 }
1534
b79a4a1b
TM
1535 /* Now recover expired state... */
1536 if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
591d71cb 1537 status = nfs4_do_reclaim(clp,
c48f4f35 1538 clp->cl_mvops->nograce_recovery_ops);
b6d408ba 1539 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) ||
6df08189 1540 test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state) ||
b6d408ba
TM
1541 test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
1542 continue;
1543 if (status < 0)
b79a4a1b 1544 goto out_error;
1da177e4 1545 }
707fb4b3 1546
5601a00d 1547 nfs4_end_drain_session(clp);
707fb4b3
TM
1548 if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
1549 nfs_client_return_marked_delegations(clp);
1550 continue;
1551 }
b9efa1b2
AA
1552 /* Recall session slots */
1553 if (test_and_clear_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state)
1554 && nfs4_has_session(clp)) {
1555 status = nfs4_recall_slot(clp);
1556 if (status < 0)
1557 goto out_error;
1558 continue;
1559 }
1560
e005e804
TM
1561
1562 nfs4_clear_state_manager_bit(clp);
f3c76491
TM
1563 /* Did we race with an attempt to give us more work? */
1564 if (clp->cl_state == 0)
1565 break;
1566 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
1567 break;
1da177e4 1568 }
e005e804 1569 return;
1da177e4 1570out_error:
e005e804 1571 printk(KERN_WARNING "Error: state manager failed on NFSv4 server %s"
5d8515ca 1572 " with error %d\n", clp->cl_hostname, -status);
5601a00d 1573 nfs4_end_drain_session(clp);
e005e804
TM
1574 nfs4_clear_state_manager_bit(clp);
1575}
1576
1577static int nfs4_run_state_manager(void *ptr)
1578{
1579 struct nfs_client *clp = ptr;
1580
1581 allow_signal(SIGKILL);
1582 nfs4_state_manager(clp);
1583 nfs_put_client(clp);
1584 module_put_and_exit(0);
1585 return 0;
1da177e4
LT
1586}
1587
1588/*
1589 * Local variables:
1590 * c-basic-offset: 8
1591 * End:
1592 */
This page took 0.588812 seconds and 5 git commands to generate.