4 * Client-side XDR for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Kendrick Smith <kmsmith@umich.edu>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
36 * Implementation of the NFSv4 state model. For the time being,
37 * this is minimal, but will be made much more complex in a
41 #include <linux/kernel.h>
42 #include <linux/slab.h>
43 #include <linux/smp_lock.h>
44 #include <linux/nfs_fs.h>
45 #include <linux/nfs_idmap.h>
46 #include <linux/kthread.h>
47 #include <linux/module.h>
48 #include <linux/random.h>
49 #include <linux/workqueue.h>
50 #include <linux/bitops.h>
54 #include "delegation.h"
57 #define OPENOWNER_POOL_SIZE 8
59 const nfs4_stateid zero_stateid
;
61 static LIST_HEAD(nfs4_clientid_list
);
63 int nfs4_init_clientid(struct nfs_client
*clp
, struct rpc_cred
*cred
)
65 struct nfs4_setclientid_res clid
;
69 port
= nfs_callback_tcpport
;
70 if (clp
->cl_addr
.ss_family
== AF_INET6
)
71 port
= nfs_callback_tcpport6
;
73 status
= nfs4_proc_setclientid(clp
, NFS4_CALLBACK
, port
, cred
, &clid
);
76 status
= nfs4_proc_setclientid_confirm(clp
, &clid
, cred
);
79 clp
->cl_clientid
= clid
.clientid
;
80 nfs4_schedule_state_renewal(clp
);
85 struct rpc_cred
*nfs4_get_machine_cred_locked(struct nfs_client
*clp
)
87 struct rpc_cred
*cred
= NULL
;
89 if (clp
->cl_machine_cred
!= NULL
)
90 cred
= get_rpccred(clp
->cl_machine_cred
);
94 static void nfs4_clear_machine_cred(struct nfs_client
*clp
)
96 struct rpc_cred
*cred
;
98 spin_lock(&clp
->cl_lock
);
99 cred
= clp
->cl_machine_cred
;
100 clp
->cl_machine_cred
= NULL
;
101 spin_unlock(&clp
->cl_lock
);
106 struct rpc_cred
*nfs4_get_renew_cred_locked(struct nfs_client
*clp
)
108 struct nfs4_state_owner
*sp
;
110 struct rpc_cred
*cred
= NULL
;
112 for (pos
= rb_first(&clp
->cl_state_owners
); pos
!= NULL
; pos
= rb_next(pos
)) {
113 sp
= rb_entry(pos
, struct nfs4_state_owner
, so_client_node
);
114 if (list_empty(&sp
->so_states
))
116 cred
= get_rpccred(sp
->so_cred
);
122 #if defined(CONFIG_NFS_V4_1)
124 static int nfs41_setup_state_renewal(struct nfs_client
*clp
)
127 struct nfs_fsinfo fsinfo
;
129 status
= nfs4_proc_get_lease_time(clp
, &fsinfo
);
131 /* Update lease time and schedule renewal */
132 spin_lock(&clp
->cl_lock
);
133 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
134 clp
->cl_last_renewal
= jiffies
;
135 spin_unlock(&clp
->cl_lock
);
137 nfs4_schedule_state_renewal(clp
);
143 static void nfs4_end_drain_session(struct nfs_client
*clp
)
145 struct nfs4_session
*ses
= clp
->cl_session
;
148 if (test_and_clear_bit(NFS4CLNT_SESSION_DRAINING
, &clp
->cl_state
)) {
149 spin_lock(&ses
->fc_slot_table
.slot_tbl_lock
);
150 max_slots
= ses
->fc_slot_table
.max_slots
;
151 while (max_slots
--) {
152 struct rpc_task
*task
;
154 task
= rpc_wake_up_next(&ses
->fc_slot_table
.
158 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
160 spin_unlock(&ses
->fc_slot_table
.slot_tbl_lock
);
164 static int nfs4_begin_drain_session(struct nfs_client
*clp
)
166 struct nfs4_session
*ses
= clp
->cl_session
;
167 struct nfs4_slot_table
*tbl
= &ses
->fc_slot_table
;
169 spin_lock(&tbl
->slot_tbl_lock
);
170 set_bit(NFS4CLNT_SESSION_DRAINING
, &clp
->cl_state
);
171 if (tbl
->highest_used_slotid
!= -1) {
172 INIT_COMPLETION(ses
->complete
);
173 spin_unlock(&tbl
->slot_tbl_lock
);
174 return wait_for_completion_interruptible(&ses
->complete
);
176 spin_unlock(&tbl
->slot_tbl_lock
);
180 int nfs41_init_clientid(struct nfs_client
*clp
, struct rpc_cred
*cred
)
184 nfs4_begin_drain_session(clp
);
185 status
= nfs4_proc_exchange_id(clp
, cred
);
188 status
= nfs4_proc_create_session(clp
);
191 nfs41_setup_state_renewal(clp
);
192 nfs_mark_client_ready(clp
, NFS_CS_READY
);
197 struct rpc_cred
*nfs4_get_exchange_id_cred(struct nfs_client
*clp
)
199 struct rpc_cred
*cred
;
201 spin_lock(&clp
->cl_lock
);
202 cred
= nfs4_get_machine_cred_locked(clp
);
203 spin_unlock(&clp
->cl_lock
);
207 #endif /* CONFIG_NFS_V4_1 */
209 struct rpc_cred
*nfs4_get_setclientid_cred(struct nfs_client
*clp
)
211 struct nfs4_state_owner
*sp
;
213 struct rpc_cred
*cred
;
215 spin_lock(&clp
->cl_lock
);
216 cred
= nfs4_get_machine_cred_locked(clp
);
219 pos
= rb_first(&clp
->cl_state_owners
);
221 sp
= rb_entry(pos
, struct nfs4_state_owner
, so_client_node
);
222 cred
= get_rpccred(sp
->so_cred
);
225 spin_unlock(&clp
->cl_lock
);
229 static void nfs_alloc_unique_id(struct rb_root
*root
, struct nfs_unique_id
*new,
230 __u64 minval
, int maxbits
)
232 struct rb_node
**p
, *parent
;
233 struct nfs_unique_id
*pos
;
237 mask
= (1ULL << maxbits
) - 1ULL;
239 /* Ensure distribution is more or less flat */
240 get_random_bytes(&new->id
, sizeof(new->id
));
242 if (new->id
< minval
)
250 pos
= rb_entry(parent
, struct nfs_unique_id
, rb_node
);
252 if (new->id
< pos
->id
)
254 else if (new->id
> pos
->id
)
259 rb_link_node(&new->rb_node
, parent
, p
);
260 rb_insert_color(&new->rb_node
, root
);
265 if (new->id
< minval
|| (new->id
& mask
) != new->id
) {
269 parent
= rb_next(parent
);
272 pos
= rb_entry(parent
, struct nfs_unique_id
, rb_node
);
273 if (new->id
< pos
->id
)
279 static void nfs_free_unique_id(struct rb_root
*root
, struct nfs_unique_id
*id
)
281 rb_erase(&id
->rb_node
, root
);
284 static struct nfs4_state_owner
*
285 nfs4_find_state_owner(struct nfs_server
*server
, struct rpc_cred
*cred
)
287 struct nfs_client
*clp
= server
->nfs_client
;
288 struct rb_node
**p
= &clp
->cl_state_owners
.rb_node
,
290 struct nfs4_state_owner
*sp
, *res
= NULL
;
294 sp
= rb_entry(parent
, struct nfs4_state_owner
, so_client_node
);
296 if (server
< sp
->so_server
) {
297 p
= &parent
->rb_left
;
300 if (server
> sp
->so_server
) {
301 p
= &parent
->rb_right
;
304 if (cred
< sp
->so_cred
)
305 p
= &parent
->rb_left
;
306 else if (cred
> sp
->so_cred
)
307 p
= &parent
->rb_right
;
309 atomic_inc(&sp
->so_count
);
317 static struct nfs4_state_owner
*
318 nfs4_insert_state_owner(struct nfs_client
*clp
, struct nfs4_state_owner
*new)
320 struct rb_node
**p
= &clp
->cl_state_owners
.rb_node
,
322 struct nfs4_state_owner
*sp
;
326 sp
= rb_entry(parent
, struct nfs4_state_owner
, so_client_node
);
328 if (new->so_server
< sp
->so_server
) {
329 p
= &parent
->rb_left
;
332 if (new->so_server
> sp
->so_server
) {
333 p
= &parent
->rb_right
;
336 if (new->so_cred
< sp
->so_cred
)
337 p
= &parent
->rb_left
;
338 else if (new->so_cred
> sp
->so_cred
)
339 p
= &parent
->rb_right
;
341 atomic_inc(&sp
->so_count
);
345 nfs_alloc_unique_id(&clp
->cl_openowner_id
, &new->so_owner_id
, 1, 64);
346 rb_link_node(&new->so_client_node
, parent
, p
);
347 rb_insert_color(&new->so_client_node
, &clp
->cl_state_owners
);
352 nfs4_remove_state_owner(struct nfs_client
*clp
, struct nfs4_state_owner
*sp
)
354 if (!RB_EMPTY_NODE(&sp
->so_client_node
))
355 rb_erase(&sp
->so_client_node
, &clp
->cl_state_owners
);
356 nfs_free_unique_id(&clp
->cl_openowner_id
, &sp
->so_owner_id
);
360 * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
361 * create a new state_owner.
364 static struct nfs4_state_owner
*
365 nfs4_alloc_state_owner(void)
367 struct nfs4_state_owner
*sp
;
369 sp
= kzalloc(sizeof(*sp
),GFP_NOFS
);
372 spin_lock_init(&sp
->so_lock
);
373 INIT_LIST_HEAD(&sp
->so_states
);
374 INIT_LIST_HEAD(&sp
->so_delegations
);
375 rpc_init_wait_queue(&sp
->so_sequence
.wait
, "Seqid_waitqueue");
376 sp
->so_seqid
.sequence
= &sp
->so_sequence
;
377 spin_lock_init(&sp
->so_sequence
.lock
);
378 INIT_LIST_HEAD(&sp
->so_sequence
.list
);
379 atomic_set(&sp
->so_count
, 1);
384 nfs4_drop_state_owner(struct nfs4_state_owner
*sp
)
386 if (!RB_EMPTY_NODE(&sp
->so_client_node
)) {
387 struct nfs_client
*clp
= sp
->so_client
;
389 spin_lock(&clp
->cl_lock
);
390 rb_erase(&sp
->so_client_node
, &clp
->cl_state_owners
);
391 RB_CLEAR_NODE(&sp
->so_client_node
);
392 spin_unlock(&clp
->cl_lock
);
396 struct nfs4_state_owner
*nfs4_get_state_owner(struct nfs_server
*server
, struct rpc_cred
*cred
)
398 struct nfs_client
*clp
= server
->nfs_client
;
399 struct nfs4_state_owner
*sp
, *new;
401 spin_lock(&clp
->cl_lock
);
402 sp
= nfs4_find_state_owner(server
, cred
);
403 spin_unlock(&clp
->cl_lock
);
406 new = nfs4_alloc_state_owner();
409 new->so_client
= clp
;
410 new->so_server
= server
;
412 spin_lock(&clp
->cl_lock
);
413 sp
= nfs4_insert_state_owner(clp
, new);
414 spin_unlock(&clp
->cl_lock
);
418 rpc_destroy_wait_queue(&new->so_sequence
.wait
);
424 void nfs4_put_state_owner(struct nfs4_state_owner
*sp
)
426 struct nfs_client
*clp
= sp
->so_client
;
427 struct rpc_cred
*cred
= sp
->so_cred
;
429 if (!atomic_dec_and_lock(&sp
->so_count
, &clp
->cl_lock
))
431 nfs4_remove_state_owner(clp
, sp
);
432 spin_unlock(&clp
->cl_lock
);
433 rpc_destroy_wait_queue(&sp
->so_sequence
.wait
);
438 static struct nfs4_state
*
439 nfs4_alloc_open_state(void)
441 struct nfs4_state
*state
;
443 state
= kzalloc(sizeof(*state
), GFP_NOFS
);
446 atomic_set(&state
->count
, 1);
447 INIT_LIST_HEAD(&state
->lock_states
);
448 spin_lock_init(&state
->state_lock
);
449 seqlock_init(&state
->seqlock
);
454 nfs4_state_set_mode_locked(struct nfs4_state
*state
, fmode_t fmode
)
456 if (state
->state
== fmode
)
458 /* NB! List reordering - see the reclaim code for why. */
459 if ((fmode
& FMODE_WRITE
) != (state
->state
& FMODE_WRITE
)) {
460 if (fmode
& FMODE_WRITE
)
461 list_move(&state
->open_states
, &state
->owner
->so_states
);
463 list_move_tail(&state
->open_states
, &state
->owner
->so_states
);
465 state
->state
= fmode
;
468 static struct nfs4_state
*
469 __nfs4_find_state_byowner(struct inode
*inode
, struct nfs4_state_owner
*owner
)
471 struct nfs_inode
*nfsi
= NFS_I(inode
);
472 struct nfs4_state
*state
;
474 list_for_each_entry(state
, &nfsi
->open_states
, inode_states
) {
475 if (state
->owner
!= owner
)
477 if (atomic_inc_not_zero(&state
->count
))
484 nfs4_free_open_state(struct nfs4_state
*state
)
490 nfs4_get_open_state(struct inode
*inode
, struct nfs4_state_owner
*owner
)
492 struct nfs4_state
*state
, *new;
493 struct nfs_inode
*nfsi
= NFS_I(inode
);
495 spin_lock(&inode
->i_lock
);
496 state
= __nfs4_find_state_byowner(inode
, owner
);
497 spin_unlock(&inode
->i_lock
);
500 new = nfs4_alloc_open_state();
501 spin_lock(&owner
->so_lock
);
502 spin_lock(&inode
->i_lock
);
503 state
= __nfs4_find_state_byowner(inode
, owner
);
504 if (state
== NULL
&& new != NULL
) {
506 state
->owner
= owner
;
507 atomic_inc(&owner
->so_count
);
508 list_add(&state
->inode_states
, &nfsi
->open_states
);
509 state
->inode
= igrab(inode
);
510 spin_unlock(&inode
->i_lock
);
511 /* Note: The reclaim code dictates that we add stateless
512 * and read-only stateids to the end of the list */
513 list_add_tail(&state
->open_states
, &owner
->so_states
);
514 spin_unlock(&owner
->so_lock
);
516 spin_unlock(&inode
->i_lock
);
517 spin_unlock(&owner
->so_lock
);
519 nfs4_free_open_state(new);
525 void nfs4_put_open_state(struct nfs4_state
*state
)
527 struct inode
*inode
= state
->inode
;
528 struct nfs4_state_owner
*owner
= state
->owner
;
530 if (!atomic_dec_and_lock(&state
->count
, &owner
->so_lock
))
532 spin_lock(&inode
->i_lock
);
533 list_del(&state
->inode_states
);
534 list_del(&state
->open_states
);
535 spin_unlock(&inode
->i_lock
);
536 spin_unlock(&owner
->so_lock
);
538 nfs4_free_open_state(state
);
539 nfs4_put_state_owner(owner
);
543 * Close the current file.
545 static void __nfs4_close(struct path
*path
, struct nfs4_state
*state
,
546 fmode_t fmode
, gfp_t gfp_mask
, int wait
)
548 struct nfs4_state_owner
*owner
= state
->owner
;
552 atomic_inc(&owner
->so_count
);
553 /* Protect against nfs4_find_state() */
554 spin_lock(&owner
->so_lock
);
555 switch (fmode
& (FMODE_READ
| FMODE_WRITE
)) {
562 case FMODE_READ
|FMODE_WRITE
:
565 newstate
= FMODE_READ
|FMODE_WRITE
;
566 if (state
->n_rdwr
== 0) {
567 if (state
->n_rdonly
== 0) {
568 newstate
&= ~FMODE_READ
;
569 call_close
|= test_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
570 call_close
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
);
572 if (state
->n_wronly
== 0) {
573 newstate
&= ~FMODE_WRITE
;
574 call_close
|= test_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
575 call_close
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
);
578 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
580 nfs4_state_set_mode_locked(state
, newstate
);
581 spin_unlock(&owner
->so_lock
);
584 nfs4_put_open_state(state
);
585 nfs4_put_state_owner(owner
);
587 nfs4_do_close(path
, state
, gfp_mask
, wait
);
590 void nfs4_close_state(struct path
*path
, struct nfs4_state
*state
, fmode_t fmode
)
592 __nfs4_close(path
, state
, fmode
, GFP_NOFS
, 0);
595 void nfs4_close_sync(struct path
*path
, struct nfs4_state
*state
, fmode_t fmode
)
597 __nfs4_close(path
, state
, fmode
, GFP_KERNEL
, 1);
601 * Search the state->lock_states for an existing lock_owner
602 * that is compatible with current->files
604 static struct nfs4_lock_state
*
605 __nfs4_find_lock_state(struct nfs4_state
*state
, fl_owner_t fl_owner
)
607 struct nfs4_lock_state
*pos
;
608 list_for_each_entry(pos
, &state
->lock_states
, ls_locks
) {
609 if (pos
->ls_owner
!= fl_owner
)
611 atomic_inc(&pos
->ls_count
);
618 * Return a compatible lock_state. If no initialized lock_state structure
619 * exists, return an uninitialized one.
622 static struct nfs4_lock_state
*nfs4_alloc_lock_state(struct nfs4_state
*state
, fl_owner_t fl_owner
)
624 struct nfs4_lock_state
*lsp
;
625 struct nfs_client
*clp
= state
->owner
->so_client
;
627 lsp
= kzalloc(sizeof(*lsp
), GFP_NOFS
);
630 rpc_init_wait_queue(&lsp
->ls_sequence
.wait
, "lock_seqid_waitqueue");
631 spin_lock_init(&lsp
->ls_sequence
.lock
);
632 INIT_LIST_HEAD(&lsp
->ls_sequence
.list
);
633 lsp
->ls_seqid
.sequence
= &lsp
->ls_sequence
;
634 atomic_set(&lsp
->ls_count
, 1);
635 lsp
->ls_state
= state
;
636 lsp
->ls_owner
= fl_owner
;
637 spin_lock(&clp
->cl_lock
);
638 nfs_alloc_unique_id(&clp
->cl_lockowner_id
, &lsp
->ls_id
, 1, 64);
639 spin_unlock(&clp
->cl_lock
);
640 INIT_LIST_HEAD(&lsp
->ls_locks
);
644 static void nfs4_free_lock_state(struct nfs4_lock_state
*lsp
)
646 struct nfs_client
*clp
= lsp
->ls_state
->owner
->so_client
;
648 spin_lock(&clp
->cl_lock
);
649 nfs_free_unique_id(&clp
->cl_lockowner_id
, &lsp
->ls_id
);
650 spin_unlock(&clp
->cl_lock
);
651 rpc_destroy_wait_queue(&lsp
->ls_sequence
.wait
);
656 * Return a compatible lock_state. If no initialized lock_state structure
657 * exists, return an uninitialized one.
660 static struct nfs4_lock_state
*nfs4_get_lock_state(struct nfs4_state
*state
, fl_owner_t owner
)
662 struct nfs4_lock_state
*lsp
, *new = NULL
;
665 spin_lock(&state
->state_lock
);
666 lsp
= __nfs4_find_lock_state(state
, owner
);
670 list_add(&new->ls_locks
, &state
->lock_states
);
671 set_bit(LK_STATE_IN_USE
, &state
->flags
);
676 spin_unlock(&state
->state_lock
);
677 new = nfs4_alloc_lock_state(state
, owner
);
681 spin_unlock(&state
->state_lock
);
683 nfs4_free_lock_state(new);
688 * Release reference to lock_state, and free it if we see that
689 * it is no longer in use
691 void nfs4_put_lock_state(struct nfs4_lock_state
*lsp
)
693 struct nfs4_state
*state
;
697 state
= lsp
->ls_state
;
698 if (!atomic_dec_and_lock(&lsp
->ls_count
, &state
->state_lock
))
700 list_del(&lsp
->ls_locks
);
701 if (list_empty(&state
->lock_states
))
702 clear_bit(LK_STATE_IN_USE
, &state
->flags
);
703 spin_unlock(&state
->state_lock
);
704 nfs4_free_lock_state(lsp
);
707 static void nfs4_fl_copy_lock(struct file_lock
*dst
, struct file_lock
*src
)
709 struct nfs4_lock_state
*lsp
= src
->fl_u
.nfs4_fl
.owner
;
711 dst
->fl_u
.nfs4_fl
.owner
= lsp
;
712 atomic_inc(&lsp
->ls_count
);
715 static void nfs4_fl_release_lock(struct file_lock
*fl
)
717 nfs4_put_lock_state(fl
->fl_u
.nfs4_fl
.owner
);
720 static const struct file_lock_operations nfs4_fl_lock_ops
= {
721 .fl_copy_lock
= nfs4_fl_copy_lock
,
722 .fl_release_private
= nfs4_fl_release_lock
,
725 int nfs4_set_lock_state(struct nfs4_state
*state
, struct file_lock
*fl
)
727 struct nfs4_lock_state
*lsp
;
729 if (fl
->fl_ops
!= NULL
)
731 lsp
= nfs4_get_lock_state(state
, fl
->fl_owner
);
734 fl
->fl_u
.nfs4_fl
.owner
= lsp
;
735 fl
->fl_ops
= &nfs4_fl_lock_ops
;
740 * Byte-range lock aware utility to initialize the stateid of read/write
743 void nfs4_copy_stateid(nfs4_stateid
*dst
, struct nfs4_state
*state
, fl_owner_t fl_owner
)
745 struct nfs4_lock_state
*lsp
;
749 seq
= read_seqbegin(&state
->seqlock
);
750 memcpy(dst
, &state
->stateid
, sizeof(*dst
));
751 } while (read_seqretry(&state
->seqlock
, seq
));
752 if (test_bit(LK_STATE_IN_USE
, &state
->flags
) == 0)
755 spin_lock(&state
->state_lock
);
756 lsp
= __nfs4_find_lock_state(state
, fl_owner
);
757 if (lsp
!= NULL
&& (lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) != 0)
758 memcpy(dst
, &lsp
->ls_stateid
, sizeof(*dst
));
759 spin_unlock(&state
->state_lock
);
760 nfs4_put_lock_state(lsp
);
763 struct nfs_seqid
*nfs_alloc_seqid(struct nfs_seqid_counter
*counter
, gfp_t gfp_mask
)
765 struct nfs_seqid
*new;
767 new = kmalloc(sizeof(*new), gfp_mask
);
769 new->sequence
= counter
;
770 INIT_LIST_HEAD(&new->list
);
775 void nfs_release_seqid(struct nfs_seqid
*seqid
)
777 if (!list_empty(&seqid
->list
)) {
778 struct rpc_sequence
*sequence
= seqid
->sequence
->sequence
;
780 spin_lock(&sequence
->lock
);
781 list_del_init(&seqid
->list
);
782 spin_unlock(&sequence
->lock
);
783 rpc_wake_up(&sequence
->wait
);
787 void nfs_free_seqid(struct nfs_seqid
*seqid
)
789 nfs_release_seqid(seqid
);
794 * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
795 * failed with a seqid incrementing error -
796 * see comments nfs_fs.h:seqid_mutating_error()
798 static void nfs_increment_seqid(int status
, struct nfs_seqid
*seqid
)
800 BUG_ON(list_first_entry(&seqid
->sequence
->sequence
->list
, struct nfs_seqid
, list
) != seqid
);
804 case -NFS4ERR_BAD_SEQID
:
805 if (seqid
->sequence
->flags
& NFS_SEQID_CONFIRMED
)
807 printk(KERN_WARNING
"NFS: v4 server returned a bad"
808 " sequence-id error on an"
809 " unconfirmed sequence %p!\n",
811 case -NFS4ERR_STALE_CLIENTID
:
812 case -NFS4ERR_STALE_STATEID
:
813 case -NFS4ERR_BAD_STATEID
:
814 case -NFS4ERR_BADXDR
:
815 case -NFS4ERR_RESOURCE
:
816 case -NFS4ERR_NOFILEHANDLE
:
817 /* Non-seqid mutating errors */
821 * Note: no locking needed as we are guaranteed to be first
822 * on the sequence list
824 seqid
->sequence
->counter
++;
827 void nfs_increment_open_seqid(int status
, struct nfs_seqid
*seqid
)
829 struct nfs4_state_owner
*sp
= container_of(seqid
->sequence
,
830 struct nfs4_state_owner
, so_seqid
);
831 struct nfs_server
*server
= sp
->so_server
;
833 if (status
== -NFS4ERR_BAD_SEQID
)
834 nfs4_drop_state_owner(sp
);
835 if (!nfs4_has_session(server
->nfs_client
))
836 nfs_increment_seqid(status
, seqid
);
840 * Increment the seqid if the LOCK/LOCKU succeeded, or
841 * failed with a seqid incrementing error -
842 * see comments nfs_fs.h:seqid_mutating_error()
844 void nfs_increment_lock_seqid(int status
, struct nfs_seqid
*seqid
)
846 nfs_increment_seqid(status
, seqid
);
849 int nfs_wait_on_sequence(struct nfs_seqid
*seqid
, struct rpc_task
*task
)
851 struct rpc_sequence
*sequence
= seqid
->sequence
->sequence
;
854 spin_lock(&sequence
->lock
);
855 if (list_empty(&seqid
->list
))
856 list_add_tail(&seqid
->list
, &sequence
->list
);
857 if (list_first_entry(&sequence
->list
, struct nfs_seqid
, list
) == seqid
)
859 rpc_sleep_on(&sequence
->wait
, task
, NULL
);
862 spin_unlock(&sequence
->lock
);
866 static int nfs4_run_state_manager(void *);
868 static void nfs4_clear_state_manager_bit(struct nfs_client
*clp
)
870 smp_mb__before_clear_bit();
871 clear_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
);
872 smp_mb__after_clear_bit();
873 wake_up_bit(&clp
->cl_state
, NFS4CLNT_MANAGER_RUNNING
);
874 rpc_wake_up(&clp
->cl_rpcwaitq
);
878 * Schedule the nfs_client asynchronous state management routine
880 void nfs4_schedule_state_manager(struct nfs_client
*clp
)
882 struct task_struct
*task
;
884 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
) != 0)
886 __module_get(THIS_MODULE
);
887 atomic_inc(&clp
->cl_count
);
888 task
= kthread_run(nfs4_run_state_manager
, clp
, "%s-manager",
889 rpc_peeraddr2str(clp
->cl_rpcclient
,
893 nfs4_clear_state_manager_bit(clp
);
895 module_put(THIS_MODULE
);
899 * Schedule a state recovery attempt
901 void nfs4_schedule_state_recovery(struct nfs_client
*clp
)
905 if (!test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
))
906 set_bit(NFS4CLNT_CHECK_LEASE
, &clp
->cl_state
);
907 nfs4_schedule_state_manager(clp
);
910 int nfs4_state_mark_reclaim_reboot(struct nfs_client
*clp
, struct nfs4_state
*state
)
913 set_bit(NFS_STATE_RECLAIM_REBOOT
, &state
->flags
);
914 /* Don't recover state that expired before the reboot */
915 if (test_bit(NFS_STATE_RECLAIM_NOGRACE
, &state
->flags
)) {
916 clear_bit(NFS_STATE_RECLAIM_REBOOT
, &state
->flags
);
919 set_bit(NFS_OWNER_RECLAIM_REBOOT
, &state
->owner
->so_flags
);
920 set_bit(NFS4CLNT_RECLAIM_REBOOT
, &clp
->cl_state
);
924 int nfs4_state_mark_reclaim_nograce(struct nfs_client
*clp
, struct nfs4_state
*state
)
926 set_bit(NFS_STATE_RECLAIM_NOGRACE
, &state
->flags
);
927 clear_bit(NFS_STATE_RECLAIM_REBOOT
, &state
->flags
);
928 set_bit(NFS_OWNER_RECLAIM_NOGRACE
, &state
->owner
->so_flags
);
929 set_bit(NFS4CLNT_RECLAIM_NOGRACE
, &clp
->cl_state
);
933 static int nfs4_reclaim_locks(struct nfs4_state
*state
, const struct nfs4_state_recovery_ops
*ops
)
935 struct inode
*inode
= state
->inode
;
936 struct nfs_inode
*nfsi
= NFS_I(inode
);
937 struct file_lock
*fl
;
940 if (inode
->i_flock
== NULL
)
943 /* Guard against delegation returns and new lock/unlock calls */
944 down_write(&nfsi
->rwsem
);
945 /* Protect inode->i_flock using the BKL */
947 for (fl
= inode
->i_flock
; fl
!= NULL
; fl
= fl
->fl_next
) {
948 if (!(fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)))
950 if (nfs_file_open_context(fl
->fl_file
)->state
!= state
)
953 status
= ops
->recover_lock(state
, fl
);
958 case -NFS4ERR_ADMIN_REVOKED
:
959 case -NFS4ERR_STALE_STATEID
:
960 case -NFS4ERR_BAD_STATEID
:
961 case -NFS4ERR_EXPIRED
:
962 case -NFS4ERR_NO_GRACE
:
963 case -NFS4ERR_STALE_CLIENTID
:
964 case -NFS4ERR_BADSESSION
:
965 case -NFS4ERR_BADSLOT
:
966 case -NFS4ERR_BAD_HIGH_SLOT
:
967 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
970 printk(KERN_ERR
"%s: unhandled error %d. Zeroing state\n",
973 case -NFS4ERR_DENIED
:
974 case -NFS4ERR_RECLAIM_BAD
:
975 case -NFS4ERR_RECLAIM_CONFLICT
:
976 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
983 up_write(&nfsi
->rwsem
);
987 static int nfs4_reclaim_open_state(struct nfs4_state_owner
*sp
, const struct nfs4_state_recovery_ops
*ops
)
989 struct nfs4_state
*state
;
990 struct nfs4_lock_state
*lock
;
993 /* Note: we rely on the sp->so_states list being ordered
994 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
996 * This is needed to ensure that the server won't give us any
997 * read delegations that we have to return if, say, we are
998 * recovering after a network partition or a reboot from a
999 * server that doesn't support a grace period.
1002 spin_lock(&sp
->so_lock
);
1003 list_for_each_entry(state
, &sp
->so_states
, open_states
) {
1004 if (!test_and_clear_bit(ops
->state_flag_bit
, &state
->flags
))
1006 if (state
->state
== 0)
1008 atomic_inc(&state
->count
);
1009 spin_unlock(&sp
->so_lock
);
1010 status
= ops
->recover_open(sp
, state
);
1012 status
= nfs4_reclaim_locks(state
, ops
);
1014 list_for_each_entry(lock
, &state
->lock_states
, ls_locks
) {
1015 if (!(lock
->ls_flags
& NFS_LOCK_INITIALIZED
))
1016 printk("%s: Lock reclaim failed!\n",
1019 nfs4_put_open_state(state
);
1025 printk(KERN_ERR
"%s: unhandled error %d. Zeroing state\n",
1031 * Open state on this file cannot be recovered
1032 * All we can do is revert to using the zero stateid.
1034 memset(state
->stateid
.data
, 0,
1035 sizeof(state
->stateid
.data
));
1036 /* Mark the file as being 'closed' */
1039 case -NFS4ERR_ADMIN_REVOKED
:
1040 case -NFS4ERR_STALE_STATEID
:
1041 case -NFS4ERR_BAD_STATEID
:
1042 case -NFS4ERR_RECLAIM_BAD
:
1043 case -NFS4ERR_RECLAIM_CONFLICT
:
1044 nfs4_state_mark_reclaim_nograce(sp
->so_client
, state
);
1046 case -NFS4ERR_EXPIRED
:
1047 case -NFS4ERR_NO_GRACE
:
1048 nfs4_state_mark_reclaim_nograce(sp
->so_client
, state
);
1049 case -NFS4ERR_STALE_CLIENTID
:
1050 case -NFS4ERR_BADSESSION
:
1051 case -NFS4ERR_BADSLOT
:
1052 case -NFS4ERR_BAD_HIGH_SLOT
:
1053 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
1056 nfs4_put_open_state(state
);
1059 spin_unlock(&sp
->so_lock
);
1062 nfs4_put_open_state(state
);
1066 static void nfs4_clear_open_state(struct nfs4_state
*state
)
1068 struct nfs4_lock_state
*lock
;
1070 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
1071 clear_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1072 clear_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1073 clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1074 list_for_each_entry(lock
, &state
->lock_states
, ls_locks
) {
1075 lock
->ls_seqid
.flags
= 0;
1076 lock
->ls_flags
&= ~NFS_LOCK_INITIALIZED
;
1080 static void nfs4_state_mark_reclaim_helper(struct nfs_client
*clp
, int (*mark_reclaim
)(struct nfs_client
*clp
, struct nfs4_state
*state
))
1082 struct nfs4_state_owner
*sp
;
1083 struct rb_node
*pos
;
1084 struct nfs4_state
*state
;
1086 /* Reset all sequence ids to zero */
1087 for (pos
= rb_first(&clp
->cl_state_owners
); pos
!= NULL
; pos
= rb_next(pos
)) {
1088 sp
= rb_entry(pos
, struct nfs4_state_owner
, so_client_node
);
1089 sp
->so_seqid
.flags
= 0;
1090 spin_lock(&sp
->so_lock
);
1091 list_for_each_entry(state
, &sp
->so_states
, open_states
) {
1092 if (mark_reclaim(clp
, state
))
1093 nfs4_clear_open_state(state
);
1095 spin_unlock(&sp
->so_lock
);
1099 static void nfs4_state_start_reclaim_reboot(struct nfs_client
*clp
)
1101 /* Mark all delegations for reclaim */
1102 nfs_delegation_mark_reclaim(clp
);
1103 nfs4_state_mark_reclaim_helper(clp
, nfs4_state_mark_reclaim_reboot
);
1106 static void nfs4_reclaim_complete(struct nfs_client
*clp
,
1107 const struct nfs4_state_recovery_ops
*ops
)
1109 /* Notify the server we're done reclaiming our state */
1110 if (ops
->reclaim_complete
)
1111 (void)ops
->reclaim_complete(clp
);
1114 static int nfs4_state_clear_reclaim_reboot(struct nfs_client
*clp
)
1116 struct nfs4_state_owner
*sp
;
1117 struct rb_node
*pos
;
1118 struct nfs4_state
*state
;
1120 if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT
, &clp
->cl_state
))
1123 for (pos
= rb_first(&clp
->cl_state_owners
); pos
!= NULL
; pos
= rb_next(pos
)) {
1124 sp
= rb_entry(pos
, struct nfs4_state_owner
, so_client_node
);
1125 spin_lock(&sp
->so_lock
);
1126 list_for_each_entry(state
, &sp
->so_states
, open_states
) {
1127 if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT
, &state
->flags
))
1129 nfs4_state_mark_reclaim_nograce(clp
, state
);
1131 spin_unlock(&sp
->so_lock
);
1134 nfs_delegation_reap_unclaimed(clp
);
1138 static void nfs4_state_end_reclaim_reboot(struct nfs_client
*clp
)
1140 if (!nfs4_state_clear_reclaim_reboot(clp
))
1142 nfs4_reclaim_complete(clp
, nfs4_reboot_recovery_ops
[clp
->cl_minorversion
]);
1145 static void nfs_delegation_clear_all(struct nfs_client
*clp
)
1147 nfs_delegation_mark_reclaim(clp
);
1148 nfs_delegation_reap_unclaimed(clp
);
1151 static void nfs4_state_start_reclaim_nograce(struct nfs_client
*clp
)
1153 nfs_delegation_clear_all(clp
);
1154 nfs4_state_mark_reclaim_helper(clp
, nfs4_state_mark_reclaim_nograce
);
1157 static int nfs4_recovery_handle_error(struct nfs_client
*clp
, int error
)
1160 case -NFS4ERR_CB_PATH_DOWN
:
1161 nfs_handle_cb_pathdown(clp
);
1163 case -NFS4ERR_NO_GRACE
:
1164 nfs4_state_end_reclaim_reboot(clp
);
1166 case -NFS4ERR_STALE_CLIENTID
:
1167 case -NFS4ERR_LEASE_MOVED
:
1168 set_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
);
1169 nfs4_state_clear_reclaim_reboot(clp
);
1170 nfs4_state_start_reclaim_reboot(clp
);
1172 case -NFS4ERR_EXPIRED
:
1173 set_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
);
1174 nfs4_state_start_reclaim_nograce(clp
);
1176 case -NFS4ERR_BADSESSION
:
1177 case -NFS4ERR_BADSLOT
:
1178 case -NFS4ERR_BAD_HIGH_SLOT
:
1179 case -NFS4ERR_DEADSESSION
:
1180 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
1181 case -NFS4ERR_SEQ_FALSE_RETRY
:
1182 case -NFS4ERR_SEQ_MISORDERED
:
1183 set_bit(NFS4CLNT_SESSION_RESET
, &clp
->cl_state
);
1184 /* Zero session reset errors */
1190 static int nfs4_do_reclaim(struct nfs_client
*clp
, const struct nfs4_state_recovery_ops
*ops
)
1192 struct rb_node
*pos
;
1196 spin_lock(&clp
->cl_lock
);
1197 for (pos
= rb_first(&clp
->cl_state_owners
); pos
!= NULL
; pos
= rb_next(pos
)) {
1198 struct nfs4_state_owner
*sp
= rb_entry(pos
, struct nfs4_state_owner
, so_client_node
);
1199 if (!test_and_clear_bit(ops
->owner_flag_bit
, &sp
->so_flags
))
1201 atomic_inc(&sp
->so_count
);
1202 spin_unlock(&clp
->cl_lock
);
1203 status
= nfs4_reclaim_open_state(sp
, ops
);
1205 set_bit(ops
->owner_flag_bit
, &sp
->so_flags
);
1206 nfs4_put_state_owner(sp
);
1207 return nfs4_recovery_handle_error(clp
, status
);
1209 nfs4_put_state_owner(sp
);
1212 spin_unlock(&clp
->cl_lock
);
1216 static int nfs4_check_lease(struct nfs_client
*clp
)
1218 struct rpc_cred
*cred
;
1219 struct nfs4_state_maintenance_ops
*ops
=
1220 nfs4_state_renewal_ops
[clp
->cl_minorversion
];
1221 int status
= -NFS4ERR_EXPIRED
;
1223 /* Is the client already known to have an expired lease? */
1224 if (test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
))
1226 spin_lock(&clp
->cl_lock
);
1227 cred
= ops
->get_state_renewal_cred_locked(clp
);
1228 spin_unlock(&clp
->cl_lock
);
1230 cred
= nfs4_get_setclientid_cred(clp
);
1234 status
= ops
->renew_lease(clp
, cred
);
1237 return nfs4_recovery_handle_error(clp
, status
);
1240 static int nfs4_reclaim_lease(struct nfs_client
*clp
)
1242 struct rpc_cred
*cred
;
1243 struct nfs4_state_recovery_ops
*ops
=
1244 nfs4_reboot_recovery_ops
[clp
->cl_minorversion
];
1245 int status
= -ENOENT
;
1247 cred
= ops
->get_clid_cred(clp
);
1249 status
= ops
->establish_clid(clp
, cred
);
1251 /* Handle case where the user hasn't set up machine creds */
1252 if (status
== -EACCES
&& cred
== clp
->cl_machine_cred
) {
1253 nfs4_clear_machine_cred(clp
);
1256 if (status
== -NFS4ERR_MINOR_VERS_MISMATCH
)
1257 status
= -EPROTONOSUPPORT
;
1262 #ifdef CONFIG_NFS_V4_1
1263 void nfs41_handle_recall_slot(struct nfs_client
*clp
)
1265 set_bit(NFS4CLNT_RECALL_SLOT
, &clp
->cl_state
);
1266 nfs4_schedule_state_recovery(clp
);
1269 static void nfs4_reset_all_state(struct nfs_client
*clp
)
1271 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) == 0) {
1272 clp
->cl_boot_time
= CURRENT_TIME
;
1273 nfs4_state_start_reclaim_nograce(clp
);
1274 nfs4_schedule_state_recovery(clp
);
1278 static void nfs41_handle_server_reboot(struct nfs_client
*clp
)
1280 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) == 0) {
1281 nfs4_state_start_reclaim_reboot(clp
);
1282 nfs4_schedule_state_recovery(clp
);
1286 static void nfs41_handle_state_revoked(struct nfs_client
*clp
)
1289 nfs4_reset_all_state(clp
);
1292 static void nfs41_handle_recallable_state_revoked(struct nfs_client
*clp
)
1294 /* This will need to handle layouts too */
1295 nfs_expire_all_delegations(clp
);
1298 static void nfs41_handle_cb_path_down(struct nfs_client
*clp
)
1300 nfs_expire_all_delegations(clp
);
1301 if (test_and_set_bit(NFS4CLNT_SESSION_RESET
, &clp
->cl_state
) == 0)
1302 nfs4_schedule_state_recovery(clp
);
1305 void nfs41_handle_sequence_flag_errors(struct nfs_client
*clp
, u32 flags
)
1309 else if (flags
& SEQ4_STATUS_RESTART_RECLAIM_NEEDED
)
1310 nfs41_handle_server_reboot(clp
);
1311 else if (flags
& (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED
|
1312 SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED
|
1313 SEQ4_STATUS_ADMIN_STATE_REVOKED
|
1314 SEQ4_STATUS_LEASE_MOVED
))
1315 nfs41_handle_state_revoked(clp
);
1316 else if (flags
& SEQ4_STATUS_RECALLABLE_STATE_REVOKED
)
1317 nfs41_handle_recallable_state_revoked(clp
);
1318 else if (flags
& (SEQ4_STATUS_CB_PATH_DOWN
|
1319 SEQ4_STATUS_BACKCHANNEL_FAULT
|
1320 SEQ4_STATUS_CB_PATH_DOWN_SESSION
))
1321 nfs41_handle_cb_path_down(clp
);
1324 static int nfs4_reset_session(struct nfs_client
*clp
)
1328 nfs4_begin_drain_session(clp
);
1329 status
= nfs4_proc_destroy_session(clp
->cl_session
);
1330 if (status
&& status
!= -NFS4ERR_BADSESSION
&&
1331 status
!= -NFS4ERR_DEADSESSION
) {
1332 status
= nfs4_recovery_handle_error(clp
, status
);
1336 memset(clp
->cl_session
->sess_id
.data
, 0, NFS4_MAX_SESSIONID_LEN
);
1337 status
= nfs4_proc_create_session(clp
);
1339 status
= nfs4_recovery_handle_error(clp
, status
);
1342 /* create_session negotiated new slot table */
1343 clear_bit(NFS4CLNT_RECALL_SLOT
, &clp
->cl_state
);
1345 /* Let the state manager reestablish state */
1346 if (!test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
))
1347 nfs41_setup_state_renewal(clp
);
1352 static int nfs4_recall_slot(struct nfs_client
*clp
)
1354 struct nfs4_slot_table
*fc_tbl
= &clp
->cl_session
->fc_slot_table
;
1355 struct nfs4_channel_attrs
*fc_attrs
= &clp
->cl_session
->fc_attrs
;
1356 struct nfs4_slot
*new, *old
;
1359 nfs4_begin_drain_session(clp
);
1360 new = kmalloc(fc_tbl
->target_max_slots
* sizeof(struct nfs4_slot
),
1365 spin_lock(&fc_tbl
->slot_tbl_lock
);
1366 for (i
= 0; i
< fc_tbl
->target_max_slots
; i
++)
1367 new[i
].seq_nr
= fc_tbl
->slots
[i
].seq_nr
;
1368 old
= fc_tbl
->slots
;
1369 fc_tbl
->slots
= new;
1370 fc_tbl
->max_slots
= fc_tbl
->target_max_slots
;
1371 fc_tbl
->target_max_slots
= 0;
1372 fc_attrs
->max_reqs
= fc_tbl
->max_slots
;
1373 spin_unlock(&fc_tbl
->slot_tbl_lock
);
1376 nfs4_end_drain_session(clp
);
1380 #else /* CONFIG_NFS_V4_1 */
1381 static int nfs4_reset_session(struct nfs_client
*clp
) { return 0; }
1382 static int nfs4_end_drain_session(struct nfs_client
*clp
) { return 0; }
1383 static int nfs4_recall_slot(struct nfs_client
*clp
) { return 0; }
1384 #endif /* CONFIG_NFS_V4_1 */
1386 /* Set NFS4CLNT_LEASE_EXPIRED for all v4.0 errors and for recoverable errors
1387 * on EXCHANGE_ID for v4.1
1389 static void nfs4_set_lease_expired(struct nfs_client
*clp
, int status
)
1391 if (nfs4_has_session(clp
)) {
1393 case -NFS4ERR_DELAY
:
1394 case -NFS4ERR_CLID_INUSE
:
1399 case -NFS4ERR_NOT_SAME
: /* FixMe: implement recovery
1400 * in nfs4_exchange_id */
1405 set_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
);
1408 static void nfs4_state_manager(struct nfs_client
*clp
)
1412 /* Ensure exclusive access to NFSv4 state */
1414 if (test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
)) {
1415 /* We're going to have to re-establish a clientid */
1416 status
= nfs4_reclaim_lease(clp
);
1418 nfs4_set_lease_expired(clp
, status
);
1419 if (test_bit(NFS4CLNT_LEASE_EXPIRED
,
1422 if (clp
->cl_cons_state
==
1423 NFS_CS_SESSION_INITING
)
1424 nfs_mark_client_ready(clp
, status
);
1427 clear_bit(NFS4CLNT_CHECK_LEASE
, &clp
->cl_state
);
1428 set_bit(NFS4CLNT_RECLAIM_REBOOT
, &clp
->cl_state
);
1431 if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE
, &clp
->cl_state
)) {
1432 status
= nfs4_check_lease(clp
);
1433 if (test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
))
1435 if (status
< 0 && status
!= -NFS4ERR_CB_PATH_DOWN
)
1439 /* Initialize or reset the session */
1440 if (test_and_clear_bit(NFS4CLNT_SESSION_RESET
, &clp
->cl_state
)
1441 && nfs4_has_session(clp
)) {
1442 status
= nfs4_reset_session(clp
);
1443 if (test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
))
1449 /* First recover reboot state... */
1450 if (test_bit(NFS4CLNT_RECLAIM_REBOOT
, &clp
->cl_state
)) {
1451 status
= nfs4_do_reclaim(clp
,
1452 nfs4_reboot_recovery_ops
[clp
->cl_minorversion
]);
1453 if (test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) ||
1454 test_bit(NFS4CLNT_SESSION_RESET
, &clp
->cl_state
))
1456 nfs4_state_end_reclaim_reboot(clp
);
1457 if (test_bit(NFS4CLNT_RECLAIM_NOGRACE
, &clp
->cl_state
))
1463 /* Now recover expired state... */
1464 if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE
, &clp
->cl_state
)) {
1465 status
= nfs4_do_reclaim(clp
,
1466 nfs4_nograce_recovery_ops
[clp
->cl_minorversion
]);
1467 if (test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) ||
1468 test_bit(NFS4CLNT_SESSION_RESET
, &clp
->cl_state
) ||
1469 test_bit(NFS4CLNT_RECLAIM_REBOOT
, &clp
->cl_state
))
1475 nfs4_end_drain_session(clp
);
1476 if (test_and_clear_bit(NFS4CLNT_DELEGRETURN
, &clp
->cl_state
)) {
1477 nfs_client_return_marked_delegations(clp
);
1480 /* Recall session slots */
1481 if (test_and_clear_bit(NFS4CLNT_RECALL_SLOT
, &clp
->cl_state
)
1482 && nfs4_has_session(clp
)) {
1483 status
= nfs4_recall_slot(clp
);
1490 nfs4_clear_state_manager_bit(clp
);
1491 /* Did we race with an attempt to give us more work? */
1492 if (clp
->cl_state
== 0)
1494 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
) != 0)
1499 printk(KERN_WARNING
"Error: state manager failed on NFSv4 server %s"
1500 " with error %d\n", clp
->cl_hostname
, -status
);
1501 nfs4_end_drain_session(clp
);
1502 nfs4_clear_state_manager_bit(clp
);
1505 static int nfs4_run_state_manager(void *ptr
)
1507 struct nfs_client
*clp
= ptr
;
1509 allow_signal(SIGKILL
);
1510 nfs4_state_manager(clp
);
1511 nfs_put_client(clp
);
1512 module_put_and_exit(0);