01b1856705941b8b7c157e770b302edea80dd747
[releases.git] / nfs4state.c
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
41 #include <linux/kernel.h>
42 #include <linux/slab.h>
43 #include <linux/fs.h>
44 #include <linux/nfs_fs.h>
45 #include <linux/kthread.h>
46 #include <linux/module.h>
47 #include <linux/random.h>
48 #include <linux/ratelimit.h>
49 #include <linux/workqueue.h>
50 #include <linux/bitops.h>
51 #include <linux/jiffies.h>
52 #include <linux/sched/mm.h>
53
54 #include <linux/sunrpc/clnt.h>
55
56 #include "nfs4_fs.h"
57 #include "callback.h"
58 #include "delegation.h"
59 #include "internal.h"
60 #include "nfs4idmap.h"
61 #include "nfs4session.h"
62 #include "pnfs.h"
63 #include "netns.h"
64
65 #define NFSDBG_FACILITY         NFSDBG_STATE
66
67 #define OPENOWNER_POOL_SIZE     8
68
69 static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp);
70
71 const nfs4_stateid zero_stateid = {
72         { .data = { 0 } },
73         .type = NFS4_SPECIAL_STATEID_TYPE,
74 };
75 const nfs4_stateid invalid_stateid = {
76         {
77                 /* Funky initialiser keeps older gcc versions happy */
78                 .data = { 0xff, 0xff, 0xff, 0xff, 0 },
79         },
80         .type = NFS4_INVALID_STATEID_TYPE,
81 };
82
83 const nfs4_stateid current_stateid = {
84         {
85                 /* Funky initialiser keeps older gcc versions happy */
86                 .data = { 0x0, 0x0, 0x0, 0x1, 0 },
87         },
88         .type = NFS4_SPECIAL_STATEID_TYPE,
89 };
90
91 static DEFINE_MUTEX(nfs_clid_init_mutex);
92
93 static int nfs4_setup_state_renewal(struct nfs_client *clp)
94 {
95         int status;
96         struct nfs_fsinfo fsinfo;
97
98         if (!test_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state)) {
99                 nfs4_schedule_state_renewal(clp);
100                 return 0;
101         }
102
103         status = nfs4_proc_get_lease_time(clp, &fsinfo);
104         if (status == 0) {
105                 nfs4_set_lease_period(clp, fsinfo.lease_time * HZ);
106                 nfs4_schedule_state_renewal(clp);
107         }
108
109         return status;
110 }
111
112 int nfs4_init_clientid(struct nfs_client *clp, const struct cred *cred)
113 {
114         struct nfs4_setclientid_res clid = {
115                 .clientid = clp->cl_clientid,
116                 .confirm = clp->cl_confirm,
117         };
118         unsigned short port;
119         int status;
120         struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
121
122         if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
123                 goto do_confirm;
124         port = nn->nfs_callback_tcpport;
125         if (clp->cl_addr.ss_family == AF_INET6)
126                 port = nn->nfs_callback_tcpport6;
127
128         status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
129         if (status != 0)
130                 goto out;
131         clp->cl_clientid = clid.clientid;
132         clp->cl_confirm = clid.confirm;
133         set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
134 do_confirm:
135         status = nfs4_proc_setclientid_confirm(clp, &clid, cred);
136         if (status != 0)
137                 goto out;
138         clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
139         nfs4_setup_state_renewal(clp);
140 out:
141         return status;
142 }
143
144 /**
145  * nfs40_discover_server_trunking - Detect server IP address trunking (mv0)
146  *
147  * @clp: nfs_client under test
148  * @result: OUT: found nfs_client, or clp
149  * @cred: credential to use for trunking test
150  *
151  * Returns zero, a negative errno, or a negative NFS4ERR status.
152  * If zero is returned, an nfs_client pointer is planted in
153  * "result".
154  *
155  * Note: The returned client may not yet be marked ready.
156  */
157 int nfs40_discover_server_trunking(struct nfs_client *clp,
158                                    struct nfs_client **result,
159                                    const struct cred *cred)
160 {
161         struct nfs4_setclientid_res clid = {
162                 .clientid = clp->cl_clientid,
163                 .confirm = clp->cl_confirm,
164         };
165         struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
166         unsigned short port;
167         int status;
168
169         port = nn->nfs_callback_tcpport;
170         if (clp->cl_addr.ss_family == AF_INET6)
171                 port = nn->nfs_callback_tcpport6;
172
173         status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
174         if (status != 0)
175                 goto out;
176         clp->cl_clientid = clid.clientid;
177         clp->cl_confirm = clid.confirm;
178
179         status = nfs40_walk_client_list(clp, result, cred);
180         if (status == 0) {
181                 /* Sustain the lease, even if it's empty.  If the clientid4
182                  * goes stale it's of no use for trunking discovery. */
183                 nfs4_schedule_state_renewal(*result);
184
185                 /* If the client state need to recover, do it. */
186                 if (clp->cl_state)
187                         nfs4_schedule_state_manager(clp);
188         }
189 out:
190         return status;
191 }
192
193 const struct cred *nfs4_get_machine_cred(struct nfs_client *clp)
194 {
195         return get_cred(rpc_machine_cred());
196 }
197
198 static void nfs4_root_machine_cred(struct nfs_client *clp)
199 {
200
201         /* Force root creds instead of machine */
202         clp->cl_principal = NULL;
203         clp->cl_rpcclient->cl_principal = NULL;
204 }
205
206 static const struct cred *
207 nfs4_get_renew_cred_server_locked(struct nfs_server *server)
208 {
209         const struct cred *cred = NULL;
210         struct nfs4_state_owner *sp;
211         struct rb_node *pos;
212
213         for (pos = rb_first(&server->state_owners);
214              pos != NULL;
215              pos = rb_next(pos)) {
216                 sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
217                 if (list_empty(&sp->so_states))
218                         continue;
219                 cred = get_cred(sp->so_cred);
220                 break;
221         }
222         return cred;
223 }
224
225 /**
226  * nfs4_get_renew_cred - Acquire credential for a renew operation
227  * @clp: client state handle
228  *
229  * Returns an rpc_cred with reference count bumped, or NULL.
230  * Caller must hold clp->cl_lock.
231  */
232 const struct cred *nfs4_get_renew_cred(struct nfs_client *clp)
233 {
234         const struct cred *cred = NULL;
235         struct nfs_server *server;
236
237         /* Use machine credentials if available */
238         cred = nfs4_get_machine_cred(clp);
239         if (cred != NULL)
240                 goto out;
241
242         spin_lock(&clp->cl_lock);
243         rcu_read_lock();
244         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
245                 cred = nfs4_get_renew_cred_server_locked(server);
246                 if (cred != NULL)
247                         break;
248         }
249         rcu_read_unlock();
250         spin_unlock(&clp->cl_lock);
251
252 out:
253         return cred;
254 }
255
256 static void nfs4_end_drain_slot_table(struct nfs4_slot_table *tbl)
257 {
258         if (test_and_clear_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) {
259                 spin_lock(&tbl->slot_tbl_lock);
260                 nfs41_wake_slot_table(tbl);
261                 spin_unlock(&tbl->slot_tbl_lock);
262         }
263 }
264
265 static void nfs4_end_drain_session(struct nfs_client *clp)
266 {
267         struct nfs4_session *ses = clp->cl_session;
268
269         if (clp->cl_slot_tbl) {
270                 nfs4_end_drain_slot_table(clp->cl_slot_tbl);
271                 return;
272         }
273
274         if (ses != NULL) {
275                 nfs4_end_drain_slot_table(&ses->bc_slot_table);
276                 nfs4_end_drain_slot_table(&ses->fc_slot_table);
277         }
278 }
279
280 static int nfs4_drain_slot_tbl(struct nfs4_slot_table *tbl)
281 {
282         set_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state);
283         spin_lock(&tbl->slot_tbl_lock);
284         if (tbl->highest_used_slotid != NFS4_NO_SLOT) {
285                 reinit_completion(&tbl->complete);
286                 spin_unlock(&tbl->slot_tbl_lock);
287                 return wait_for_completion_interruptible(&tbl->complete);
288         }
289         spin_unlock(&tbl->slot_tbl_lock);
290         return 0;
291 }
292
293 static int nfs4_begin_drain_session(struct nfs_client *clp)
294 {
295         struct nfs4_session *ses = clp->cl_session;
296         int ret;
297
298         if (clp->cl_slot_tbl)
299                 return nfs4_drain_slot_tbl(clp->cl_slot_tbl);
300
301         /* back channel */
302         ret = nfs4_drain_slot_tbl(&ses->bc_slot_table);
303         if (ret)
304                 return ret;
305         /* fore channel */
306         return nfs4_drain_slot_tbl(&ses->fc_slot_table);
307 }
308
309 #if defined(CONFIG_NFS_V4_1)
310
311 static void nfs41_finish_session_reset(struct nfs_client *clp)
312 {
313         clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
314         clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
315         /* create_session negotiated new slot table */
316         clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
317         nfs4_setup_state_renewal(clp);
318 }
319
320 int nfs41_init_clientid(struct nfs_client *clp, const struct cred *cred)
321 {
322         int status;
323
324         if (test_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state))
325                 goto do_confirm;
326         status = nfs4_proc_exchange_id(clp, cred);
327         if (status != 0)
328                 goto out;
329         set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
330 do_confirm:
331         status = nfs4_proc_create_session(clp, cred);
332         if (status != 0)
333                 goto out;
334         if (!(clp->cl_exchange_flags & EXCHGID4_FLAG_CONFIRMED_R))
335                 nfs4_state_start_reclaim_reboot(clp);
336         nfs41_finish_session_reset(clp);
337         nfs_mark_client_ready(clp, NFS_CS_READY);
338 out:
339         return status;
340 }
341
342 /**
343  * nfs41_discover_server_trunking - Detect server IP address trunking (mv1)
344  *
345  * @clp: nfs_client under test
346  * @result: OUT: found nfs_client, or clp
347  * @cred: credential to use for trunking test
348  *
349  * Returns NFS4_OK, a negative errno, or a negative NFS4ERR status.
350  * If NFS4_OK is returned, an nfs_client pointer is planted in
351  * "result".
352  *
353  * Note: The returned client may not yet be marked ready.
354  */
355 int nfs41_discover_server_trunking(struct nfs_client *clp,
356                                    struct nfs_client **result,
357                                    const struct cred *cred)
358 {
359         int status;
360
361         status = nfs4_proc_exchange_id(clp, cred);
362         if (status != NFS4_OK)
363                 return status;
364
365         status = nfs41_walk_client_list(clp, result, cred);
366         if (status < 0)
367                 return status;
368         if (clp != *result)
369                 return 0;
370
371         /*
372          * Purge state if the client id was established in a prior
373          * instance and the client id could not have arrived on the
374          * server via Transparent State Migration.
375          */
376         if (clp->cl_exchange_flags & EXCHGID4_FLAG_CONFIRMED_R) {
377                 if (!test_bit(NFS_CS_TSM_POSSIBLE, &clp->cl_flags))
378                         set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
379                 else
380                         set_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
381         }
382         nfs4_schedule_state_manager(clp);
383         status = nfs_wait_client_init_complete(clp);
384         if (status < 0)
385                 nfs_put_client(clp);
386         return status;
387 }
388
389 #endif /* CONFIG_NFS_V4_1 */
390
391 /**
392  * nfs4_get_clid_cred - Acquire credential for a setclientid operation
393  * @clp: client state handle
394  *
395  * Returns a cred with reference count bumped, or NULL.
396  */
397 const struct cred *nfs4_get_clid_cred(struct nfs_client *clp)
398 {
399         const struct cred *cred;
400
401         cred = nfs4_get_machine_cred(clp);
402         return cred;
403 }
404
405 static struct nfs4_state_owner *
406 nfs4_find_state_owner_locked(struct nfs_server *server, const struct cred *cred)
407 {
408         struct rb_node **p = &server->state_owners.rb_node,
409                        *parent = NULL;
410         struct nfs4_state_owner *sp;
411         int cmp;
412
413         while (*p != NULL) {
414                 parent = *p;
415                 sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
416                 cmp = cred_fscmp(cred, sp->so_cred);
417
418                 if (cmp < 0)
419                         p = &parent->rb_left;
420                 else if (cmp > 0)
421                         p = &parent->rb_right;
422                 else {
423                         if (!list_empty(&sp->so_lru))
424                                 list_del_init(&sp->so_lru);
425                         atomic_inc(&sp->so_count);
426                         return sp;
427                 }
428         }
429         return NULL;
430 }
431
432 static struct nfs4_state_owner *
433 nfs4_insert_state_owner_locked(struct nfs4_state_owner *new)
434 {
435         struct nfs_server *server = new->so_server;
436         struct rb_node **p = &server->state_owners.rb_node,
437                        *parent = NULL;
438         struct nfs4_state_owner *sp;
439         int cmp;
440
441         while (*p != NULL) {
442                 parent = *p;
443                 sp = rb_entry(parent, struct nfs4_state_owner, so_server_node);
444                 cmp = cred_fscmp(new->so_cred, sp->so_cred);
445
446                 if (cmp < 0)
447                         p = &parent->rb_left;
448                 else if (cmp > 0)
449                         p = &parent->rb_right;
450                 else {
451                         if (!list_empty(&sp->so_lru))
452                                 list_del_init(&sp->so_lru);
453                         atomic_inc(&sp->so_count);
454                         return sp;
455                 }
456         }
457         rb_link_node(&new->so_server_node, parent, p);
458         rb_insert_color(&new->so_server_node, &server->state_owners);
459         return new;
460 }
461
462 static void
463 nfs4_remove_state_owner_locked(struct nfs4_state_owner *sp)
464 {
465         struct nfs_server *server = sp->so_server;
466
467         if (!RB_EMPTY_NODE(&sp->so_server_node))
468                 rb_erase(&sp->so_server_node, &server->state_owners);
469 }
470
471 static void
472 nfs4_init_seqid_counter(struct nfs_seqid_counter *sc)
473 {
474         sc->create_time = ktime_get();
475         sc->flags = 0;
476         sc->counter = 0;
477         spin_lock_init(&sc->lock);
478         INIT_LIST_HEAD(&sc->list);
479         rpc_init_wait_queue(&sc->wait, "Seqid_waitqueue");
480 }
481
482 static void
483 nfs4_destroy_seqid_counter(struct nfs_seqid_counter *sc)
484 {
485         rpc_destroy_wait_queue(&sc->wait);
486 }
487
488 /*
489  * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
490  * create a new state_owner.
491  *
492  */
493 static struct nfs4_state_owner *
494 nfs4_alloc_state_owner(struct nfs_server *server,
495                 const struct cred *cred,
496                 gfp_t gfp_flags)
497 {
498         struct nfs4_state_owner *sp;
499
500         sp = kzalloc(sizeof(*sp), gfp_flags);
501         if (!sp)
502                 return NULL;
503         sp->so_seqid.owner_id = ida_simple_get(&server->openowner_id, 0, 0,
504                                                 gfp_flags);
505         if (sp->so_seqid.owner_id < 0) {
506                 kfree(sp);
507                 return NULL;
508         }
509         sp->so_server = server;
510         sp->so_cred = get_cred(cred);
511         spin_lock_init(&sp->so_lock);
512         INIT_LIST_HEAD(&sp->so_states);
513         nfs4_init_seqid_counter(&sp->so_seqid);
514         atomic_set(&sp->so_count, 1);
515         INIT_LIST_HEAD(&sp->so_lru);
516         seqcount_init(&sp->so_reclaim_seqcount);
517         mutex_init(&sp->so_delegreturn_mutex);
518         return sp;
519 }
520
521 static void
522 nfs4_reset_state_owner(struct nfs4_state_owner *sp)
523 {
524         /* This state_owner is no longer usable, but must
525          * remain in place so that state recovery can find it
526          * and the opens associated with it.
527          * It may also be used for new 'open' request to
528          * return a delegation to the server.
529          * So update the 'create_time' so that it looks like
530          * a new state_owner.  This will cause the server to
531          * request an OPEN_CONFIRM to start a new sequence.
532          */
533         sp->so_seqid.create_time = ktime_get();
534 }
535
536 static void nfs4_free_state_owner(struct nfs4_state_owner *sp)
537 {
538         nfs4_destroy_seqid_counter(&sp->so_seqid);
539         put_cred(sp->so_cred);
540         ida_simple_remove(&sp->so_server->openowner_id, sp->so_seqid.owner_id);
541         kfree(sp);
542 }
543
544 static void nfs4_gc_state_owners(struct nfs_server *server)
545 {
546         struct nfs_client *clp = server->nfs_client;
547         struct nfs4_state_owner *sp, *tmp;
548         unsigned long time_min, time_max;
549         LIST_HEAD(doomed);
550
551         spin_lock(&clp->cl_lock);
552         time_max = jiffies;
553         time_min = (long)time_max - (long)clp->cl_lease_time;
554         list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) {
555                 /* NB: LRU is sorted so that oldest is at the head */
556                 if (time_in_range(sp->so_expires, time_min, time_max))
557                         break;
558                 list_move(&sp->so_lru, &doomed);
559                 nfs4_remove_state_owner_locked(sp);
560         }
561         spin_unlock(&clp->cl_lock);
562
563         list_for_each_entry_safe(sp, tmp, &doomed, so_lru) {
564                 list_del(&sp->so_lru);
565                 nfs4_free_state_owner(sp);
566         }
567 }
568
569 /**
570  * nfs4_get_state_owner - Look up a state owner given a credential
571  * @server: nfs_server to search
572  * @cred: RPC credential to match
573  * @gfp_flags: allocation mode
574  *
575  * Returns a pointer to an instantiated nfs4_state_owner struct, or NULL.
576  */
577 struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server,
578                                               const struct cred *cred,
579                                               gfp_t gfp_flags)
580 {
581         struct nfs_client *clp = server->nfs_client;
582         struct nfs4_state_owner *sp, *new;
583
584         spin_lock(&clp->cl_lock);
585         sp = nfs4_find_state_owner_locked(server, cred);
586         spin_unlock(&clp->cl_lock);
587         if (sp != NULL)
588                 goto out;
589         new = nfs4_alloc_state_owner(server, cred, gfp_flags);
590         if (new == NULL)
591                 goto out;
592         spin_lock(&clp->cl_lock);
593         sp = nfs4_insert_state_owner_locked(new);
594         spin_unlock(&clp->cl_lock);
595         if (sp != new)
596                 nfs4_free_state_owner(new);
597 out:
598         nfs4_gc_state_owners(server);
599         return sp;
600 }
601
602 /**
603  * nfs4_put_state_owner - Release a nfs4_state_owner
604  * @sp: state owner data to release
605  *
606  * Note that we keep released state owners on an LRU
607  * list.
608  * This caches valid state owners so that they can be
609  * reused, to avoid the OPEN_CONFIRM on minor version 0.
610  * It also pins the uniquifier of dropped state owners for
611  * a while, to ensure that those state owner names are
612  * never reused.
613  */
614 void nfs4_put_state_owner(struct nfs4_state_owner *sp)
615 {
616         struct nfs_server *server = sp->so_server;
617         struct nfs_client *clp = server->nfs_client;
618
619         if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
620                 return;
621
622         sp->so_expires = jiffies;
623         list_add_tail(&sp->so_lru, &server->state_owners_lru);
624         spin_unlock(&clp->cl_lock);
625 }
626
627 /**
628  * nfs4_purge_state_owners - Release all cached state owners
629  * @server: nfs_server with cached state owners to release
630  * @head: resulting list of state owners
631  *
632  * Called at umount time.  Remaining state owners will be on
633  * the LRU with ref count of zero.
634  * Note that the state owners are not freed, but are added
635  * to the list @head, which can later be used as an argument
636  * to nfs4_free_state_owners.
637  */
638 void nfs4_purge_state_owners(struct nfs_server *server, struct list_head *head)
639 {
640         struct nfs_client *clp = server->nfs_client;
641         struct nfs4_state_owner *sp, *tmp;
642
643         spin_lock(&clp->cl_lock);
644         list_for_each_entry_safe(sp, tmp, &server->state_owners_lru, so_lru) {
645                 list_move(&sp->so_lru, head);
646                 nfs4_remove_state_owner_locked(sp);
647         }
648         spin_unlock(&clp->cl_lock);
649 }
650
651 /**
652  * nfs4_purge_state_owners - Release all cached state owners
653  * @head: resulting list of state owners
654  *
655  * Frees a list of state owners that was generated by
656  * nfs4_purge_state_owners
657  */
658 void nfs4_free_state_owners(struct list_head *head)
659 {
660         struct nfs4_state_owner *sp, *tmp;
661
662         list_for_each_entry_safe(sp, tmp, head, so_lru) {
663                 list_del(&sp->so_lru);
664                 nfs4_free_state_owner(sp);
665         }
666 }
667
668 static struct nfs4_state *
669 nfs4_alloc_open_state(void)
670 {
671         struct nfs4_state *state;
672
673         state = kzalloc(sizeof(*state), GFP_NOFS);
674         if (!state)
675                 return NULL;
676         refcount_set(&state->count, 1);
677         INIT_LIST_HEAD(&state->lock_states);
678         spin_lock_init(&state->state_lock);
679         seqlock_init(&state->seqlock);
680         init_waitqueue_head(&state->waitq);
681         return state;
682 }
683
684 void
685 nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
686 {
687         if (state->state == fmode)
688                 return;
689         /* NB! List reordering - see the reclaim code for why.  */
690         if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
691                 if (fmode & FMODE_WRITE)
692                         list_move(&state->open_states, &state->owner->so_states);
693                 else
694                         list_move_tail(&state->open_states, &state->owner->so_states);
695         }
696         state->state = fmode;
697 }
698
699 static struct nfs4_state *
700 __nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
701 {
702         struct nfs_inode *nfsi = NFS_I(inode);
703         struct nfs4_state *state;
704
705         list_for_each_entry_rcu(state, &nfsi->open_states, inode_states) {
706                 if (state->owner != owner)
707                         continue;
708                 if (!nfs4_valid_open_stateid(state))
709                         continue;
710                 if (refcount_inc_not_zero(&state->count))
711                         return state;
712         }
713         return NULL;
714 }
715
716 static void
717 nfs4_free_open_state(struct nfs4_state *state)
718 {
719         kfree_rcu(state, rcu_head);
720 }
721
722 struct nfs4_state *
723 nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
724 {
725         struct nfs4_state *state, *new;
726         struct nfs_inode *nfsi = NFS_I(inode);
727
728         rcu_read_lock();
729         state = __nfs4_find_state_byowner(inode, owner);
730         rcu_read_unlock();
731         if (state)
732                 goto out;
733         new = nfs4_alloc_open_state();
734         spin_lock(&owner->so_lock);
735         spin_lock(&inode->i_lock);
736         state = __nfs4_find_state_byowner(inode, owner);
737         if (state == NULL && new != NULL) {
738                 state = new;
739                 state->owner = owner;
740                 atomic_inc(&owner->so_count);
741                 ihold(inode);
742                 state->inode = inode;
743                 list_add_rcu(&state->inode_states, &nfsi->open_states);
744                 spin_unlock(&inode->i_lock);
745                 /* Note: The reclaim code dictates that we add stateless
746                  * and read-only stateids to the end of the list */
747                 list_add_tail(&state->open_states, &owner->so_states);
748                 spin_unlock(&owner->so_lock);
749         } else {
750                 spin_unlock(&inode->i_lock);
751                 spin_unlock(&owner->so_lock);
752                 if (new)
753                         nfs4_free_open_state(new);
754         }
755 out:
756         return state;
757 }
758
759 void nfs4_put_open_state(struct nfs4_state *state)
760 {
761         struct inode *inode = state->inode;
762         struct nfs4_state_owner *owner = state->owner;
763
764         if (!refcount_dec_and_lock(&state->count, &owner->so_lock))
765                 return;
766         spin_lock(&inode->i_lock);
767         list_del_rcu(&state->inode_states);
768         list_del(&state->open_states);
769         spin_unlock(&inode->i_lock);
770         spin_unlock(&owner->so_lock);
771         iput(inode);
772         nfs4_free_open_state(state);
773         nfs4_put_state_owner(owner);
774 }
775
776 /*
777  * Close the current file.
778  */
779 static void __nfs4_close(struct nfs4_state *state,
780                 fmode_t fmode, gfp_t gfp_mask, int wait)
781 {
782         struct nfs4_state_owner *owner = state->owner;
783         int call_close = 0;
784         fmode_t newstate;
785
786         atomic_inc(&owner->so_count);
787         /* Protect against nfs4_find_state() */
788         spin_lock(&owner->so_lock);
789         switch (fmode & (FMODE_READ | FMODE_WRITE)) {
790                 case FMODE_READ:
791                         state->n_rdonly--;
792                         break;
793                 case FMODE_WRITE:
794                         state->n_wronly--;
795                         break;
796                 case FMODE_READ|FMODE_WRITE:
797                         state->n_rdwr--;
798         }
799         newstate = FMODE_READ|FMODE_WRITE;
800         if (state->n_rdwr == 0) {
801                 if (state->n_rdonly == 0) {
802                         newstate &= ~FMODE_READ;
803                         call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
804                         call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
805                 }
806                 if (state->n_wronly == 0) {
807                         newstate &= ~FMODE_WRITE;
808                         call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
809                         call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
810                 }
811                 if (newstate == 0)
812                         clear_bit(NFS_DELEGATED_STATE, &state->flags);
813         }
814         nfs4_state_set_mode_locked(state, newstate);
815         spin_unlock(&owner->so_lock);
816
817         if (!call_close) {
818                 nfs4_put_open_state(state);
819                 nfs4_put_state_owner(owner);
820         } else
821                 nfs4_do_close(state, gfp_mask, wait);
822 }
823
824 void nfs4_close_state(struct nfs4_state *state, fmode_t fmode)
825 {
826         __nfs4_close(state, fmode, GFP_NOFS, 0);
827 }
828
829 void nfs4_close_sync(struct nfs4_state *state, fmode_t fmode)
830 {
831         __nfs4_close(state, fmode, GFP_KERNEL, 1);
832 }
833
834 /*
835  * Search the state->lock_states for an existing lock_owner
836  * that is compatible with either of the given owners.
837  * If the second is non-zero, then the first refers to a Posix-lock
838  * owner (current->files) and the second refers to a flock/OFD
839  * owner (struct file*).  In that case, prefer a match for the first
840  * owner.
841  * If both sorts of locks are held on the one file we cannot know
842  * which stateid was intended to be used, so a "correct" choice cannot
843  * be made.  Failing that, a "consistent" choice is preferable.  The
844  * consistent choice we make is to prefer the first owner, that of a
845  * Posix lock.
846  */
847 static struct nfs4_lock_state *
848 __nfs4_find_lock_state(struct nfs4_state *state,
849                        fl_owner_t fl_owner, fl_owner_t fl_owner2)
850 {
851         struct nfs4_lock_state *pos, *ret = NULL;
852         list_for_each_entry(pos, &state->lock_states, ls_locks) {
853                 if (pos->ls_owner == fl_owner) {
854                         ret = pos;
855                         break;
856                 }
857                 if (pos->ls_owner == fl_owner2)
858                         ret = pos;
859         }
860         if (ret)
861                 refcount_inc(&ret->ls_count);
862         return ret;
863 }
864
865 /*
866  * Return a compatible lock_state. If no initialized lock_state structure
867  * exists, return an uninitialized one.
868  *
869  */
870 static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
871 {
872         struct nfs4_lock_state *lsp;
873         struct nfs_server *server = state->owner->so_server;
874
875         lsp = kzalloc(sizeof(*lsp), GFP_NOFS);
876         if (lsp == NULL)
877                 return NULL;
878         nfs4_init_seqid_counter(&lsp->ls_seqid);
879         refcount_set(&lsp->ls_count, 1);
880         lsp->ls_state = state;
881         lsp->ls_owner = fl_owner;
882         lsp->ls_seqid.owner_id = ida_simple_get(&server->lockowner_id, 0, 0, GFP_NOFS);
883         if (lsp->ls_seqid.owner_id < 0)
884                 goto out_free;
885         INIT_LIST_HEAD(&lsp->ls_locks);
886         return lsp;
887 out_free:
888         kfree(lsp);
889         return NULL;
890 }
891
892 void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
893 {
894         ida_simple_remove(&server->lockowner_id, lsp->ls_seqid.owner_id);
895         nfs4_destroy_seqid_counter(&lsp->ls_seqid);
896         kfree(lsp);
897 }
898
899 /*
900  * Return a compatible lock_state. If no initialized lock_state structure
901  * exists, return an uninitialized one.
902  *
903  */
904 static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
905 {
906         struct nfs4_lock_state *lsp, *new = NULL;
907         
908         for(;;) {
909                 spin_lock(&state->state_lock);
910                 lsp = __nfs4_find_lock_state(state, owner, NULL);
911                 if (lsp != NULL)
912                         break;
913                 if (new != NULL) {
914                         list_add(&new->ls_locks, &state->lock_states);
915                         set_bit(LK_STATE_IN_USE, &state->flags);
916                         lsp = new;
917                         new = NULL;
918                         break;
919                 }
920                 spin_unlock(&state->state_lock);
921                 new = nfs4_alloc_lock_state(state, owner);
922                 if (new == NULL)
923                         return NULL;
924         }
925         spin_unlock(&state->state_lock);
926         if (new != NULL)
927                 nfs4_free_lock_state(state->owner->so_server, new);
928         return lsp;
929 }
930
931 /*
932  * Release reference to lock_state, and free it if we see that
933  * it is no longer in use
934  */
935 void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
936 {
937         struct nfs_server *server;
938         struct nfs4_state *state;
939
940         if (lsp == NULL)
941                 return;
942         state = lsp->ls_state;
943         if (!refcount_dec_and_lock(&lsp->ls_count, &state->state_lock))
944                 return;
945         list_del(&lsp->ls_locks);
946         if (list_empty(&state->lock_states))
947                 clear_bit(LK_STATE_IN_USE, &state->flags);
948         spin_unlock(&state->state_lock);
949         server = state->owner->so_server;
950         if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
951                 struct nfs_client *clp = server->nfs_client;
952
953                 clp->cl_mvops->free_lock_state(server, lsp);
954         } else
955                 nfs4_free_lock_state(server, lsp);
956 }
957
958 static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
959 {
960         struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
961
962         dst->fl_u.nfs4_fl.owner = lsp;
963         refcount_inc(&lsp->ls_count);
964 }
965
966 static void nfs4_fl_release_lock(struct file_lock *fl)
967 {
968         nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
969 }
970
971 static const struct file_lock_operations nfs4_fl_lock_ops = {
972         .fl_copy_lock = nfs4_fl_copy_lock,
973         .fl_release_private = nfs4_fl_release_lock,
974 };
975
976 int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
977 {
978         struct nfs4_lock_state *lsp;
979
980         if (fl->fl_ops != NULL)
981                 return 0;
982         lsp = nfs4_get_lock_state(state, fl->fl_owner);
983         if (lsp == NULL)
984                 return -ENOMEM;
985         fl->fl_u.nfs4_fl.owner = lsp;
986         fl->fl_ops = &nfs4_fl_lock_ops;
987         return 0;
988 }
989
990 static int nfs4_copy_lock_stateid(nfs4_stateid *dst,
991                 struct nfs4_state *state,
992                 const struct nfs_lock_context *l_ctx)
993 {
994         struct nfs4_lock_state *lsp;
995         fl_owner_t fl_owner, fl_flock_owner;
996         int ret = -ENOENT;
997
998         if (l_ctx == NULL)
999                 goto out;
1000
1001         if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
1002                 goto out;
1003
1004         fl_owner = l_ctx->lockowner;
1005         fl_flock_owner = l_ctx->open_context->flock_owner;
1006
1007         spin_lock(&state->state_lock);
1008         lsp = __nfs4_find_lock_state(state, fl_owner, fl_flock_owner);
1009         if (lsp && test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
1010                 ret = -EIO;
1011         else if (lsp != NULL && test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) {
1012                 nfs4_stateid_copy(dst, &lsp->ls_stateid);
1013                 ret = 0;
1014         }
1015         spin_unlock(&state->state_lock);
1016         nfs4_put_lock_state(lsp);
1017 out:
1018         return ret;
1019 }
1020
1021 bool nfs4_copy_open_stateid(nfs4_stateid *dst, struct nfs4_state *state)
1022 {
1023         bool ret;
1024         const nfs4_stateid *src;
1025         int seq;
1026
1027         do {
1028                 ret = false;
1029                 src = &zero_stateid;
1030                 seq = read_seqbegin(&state->seqlock);
1031                 if (test_bit(NFS_OPEN_STATE, &state->flags)) {
1032                         src = &state->open_stateid;
1033                         ret = true;
1034                 }
1035                 nfs4_stateid_copy(dst, src);
1036         } while (read_seqretry(&state->seqlock, seq));
1037         return ret;
1038 }
1039
1040 /*
1041  * Byte-range lock aware utility to initialize the stateid of read/write
1042  * requests.
1043  */
1044 int nfs4_select_rw_stateid(struct nfs4_state *state,
1045                 fmode_t fmode, const struct nfs_lock_context *l_ctx,
1046                 nfs4_stateid *dst, const struct cred **cred)
1047 {
1048         int ret;
1049
1050         if (!nfs4_valid_open_stateid(state))
1051                 return -EIO;
1052         if (cred != NULL)
1053                 *cred = NULL;
1054         ret = nfs4_copy_lock_stateid(dst, state, l_ctx);
1055         if (ret == -EIO)
1056                 /* A lost lock - don't even consider delegations */
1057                 goto out;
1058         /* returns true if delegation stateid found and copied */
1059         if (nfs4_copy_delegation_stateid(state->inode, fmode, dst, cred)) {
1060                 ret = 0;
1061                 goto out;
1062         }
1063         if (ret != -ENOENT)
1064                 /* nfs4_copy_delegation_stateid() didn't over-write
1065                  * dst, so it still has the lock stateid which we now
1066                  * choose to use.
1067                  */
1068                 goto out;
1069         ret = nfs4_copy_open_stateid(dst, state) ? 0 : -EAGAIN;
1070 out:
1071         if (nfs_server_capable(state->inode, NFS_CAP_STATEID_NFSV41))
1072                 dst->seqid = 0;
1073         return ret;
1074 }
1075
1076 struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask)
1077 {
1078         struct nfs_seqid *new;
1079
1080         new = kmalloc(sizeof(*new), gfp_mask);
1081         if (new == NULL)
1082                 return ERR_PTR(-ENOMEM);
1083         new->sequence = counter;
1084         INIT_LIST_HEAD(&new->list);
1085         new->task = NULL;
1086         return new;
1087 }
1088
1089 void nfs_release_seqid(struct nfs_seqid *seqid)
1090 {
1091         struct nfs_seqid_counter *sequence;
1092
1093         if (seqid == NULL || list_empty(&seqid->list))
1094                 return;
1095         sequence = seqid->sequence;
1096         spin_lock(&sequence->lock);
1097         list_del_init(&seqid->list);
1098         if (!list_empty(&sequence->list)) {
1099                 struct nfs_seqid *next;
1100
1101                 next = list_first_entry(&sequence->list,
1102                                 struct nfs_seqid, list);
1103                 rpc_wake_up_queued_task(&sequence->wait, next->task);
1104         }
1105         spin_unlock(&sequence->lock);
1106 }
1107
1108 void nfs_free_seqid(struct nfs_seqid *seqid)
1109 {
1110         nfs_release_seqid(seqid);
1111         kfree(seqid);
1112 }
1113
1114 /*
1115  * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
1116  * failed with a seqid incrementing error -
1117  * see comments nfs4.h:seqid_mutating_error()
1118  */
1119 static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
1120 {
1121         switch (status) {
1122                 case 0:
1123                         break;
1124                 case -NFS4ERR_BAD_SEQID:
1125                         if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
1126                                 return;
1127                         pr_warn_ratelimited("NFS: v4 server returned a bad"
1128                                         " sequence-id error on an"
1129                                         " unconfirmed sequence %p!\n",
1130                                         seqid->sequence);
1131                 case -NFS4ERR_STALE_CLIENTID:
1132                 case -NFS4ERR_STALE_STATEID:
1133                 case -NFS4ERR_BAD_STATEID:
1134                 case -NFS4ERR_BADXDR:
1135                 case -NFS4ERR_RESOURCE:
1136                 case -NFS4ERR_NOFILEHANDLE:
1137                 case -NFS4ERR_MOVED:
1138                         /* Non-seqid mutating errors */
1139                         return;
1140         };
1141         /*
1142          * Note: no locking needed as we are guaranteed to be first
1143          * on the sequence list
1144          */
1145         seqid->sequence->counter++;
1146 }
1147
1148 void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
1149 {
1150         struct nfs4_state_owner *sp;
1151
1152         if (seqid == NULL)
1153                 return;
1154
1155         sp = container_of(seqid->sequence, struct nfs4_state_owner, so_seqid);
1156         if (status == -NFS4ERR_BAD_SEQID)
1157                 nfs4_reset_state_owner(sp);
1158         if (!nfs4_has_session(sp->so_server->nfs_client))
1159                 nfs_increment_seqid(status, seqid);
1160 }
1161
1162 /*
1163  * Increment the seqid if the LOCK/LOCKU succeeded, or
1164  * failed with a seqid incrementing error -
1165  * see comments nfs4.h:seqid_mutating_error()
1166  */
1167 void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
1168 {
1169         if (seqid != NULL)
1170                 nfs_increment_seqid(status, seqid);
1171 }
1172
1173 int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
1174 {
1175         struct nfs_seqid_counter *sequence;
1176         int status = 0;
1177
1178         if (seqid == NULL)
1179                 goto out;
1180         sequence = seqid->sequence;
1181         spin_lock(&sequence->lock);
1182         seqid->task = task;
1183         if (list_empty(&seqid->list))
1184                 list_add_tail(&seqid->list, &sequence->list);
1185         if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid)
1186                 goto unlock;
1187         rpc_sleep_on(&sequence->wait, task, NULL);
1188         status = -EAGAIN;
1189 unlock:
1190         spin_unlock(&sequence->lock);
1191 out:
1192         return status;
1193 }
1194
1195 static int nfs4_run_state_manager(void *);
1196
1197 static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
1198 {
1199         smp_mb__before_atomic();
1200         clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
1201         smp_mb__after_atomic();
1202         wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
1203         rpc_wake_up(&clp->cl_rpcwaitq);
1204 }
1205
1206 /*
1207  * Schedule the nfs_client asynchronous state management routine
1208  */
1209 void nfs4_schedule_state_manager(struct nfs_client *clp)
1210 {
1211         struct task_struct *task;
1212         char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1];
1213
1214         set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
1215         if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
1216                 return;
1217         __module_get(THIS_MODULE);
1218         refcount_inc(&clp->cl_count);
1219
1220         /* The rcu_read_lock() is not strictly necessary, as the state
1221          * manager is the only thread that ever changes the rpc_xprt
1222          * after it's initialized.  At this point, we're single threaded. */
1223         rcu_read_lock();
1224         snprintf(buf, sizeof(buf), "%s-manager",
1225                         rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR));
1226         rcu_read_unlock();
1227         task = kthread_run(nfs4_run_state_manager, clp, "%s", buf);
1228         if (IS_ERR(task)) {
1229                 printk(KERN_ERR "%s: kthread_run: %ld\n",
1230                         __func__, PTR_ERR(task));
1231                 if (!nfs_client_init_is_complete(clp))
1232                         nfs_mark_client_ready(clp, PTR_ERR(task));
1233                 nfs4_clear_state_manager_bit(clp);
1234                 nfs_put_client(clp);
1235                 module_put(THIS_MODULE);
1236         }
1237 }
1238
1239 /*
1240  * Schedule a lease recovery attempt
1241  */
1242 void nfs4_schedule_lease_recovery(struct nfs_client *clp)
1243 {
1244         if (!clp)
1245                 return;
1246         if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1247                 set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
1248         dprintk("%s: scheduling lease recovery for server %s\n", __func__,
1249                         clp->cl_hostname);
1250         nfs4_schedule_state_manager(clp);
1251 }
1252 EXPORT_SYMBOL_GPL(nfs4_schedule_lease_recovery);
1253
1254 /**
1255  * nfs4_schedule_migration_recovery - trigger migration recovery
1256  *
1257  * @server: FSID that is migrating
1258  *
1259  * Returns zero if recovery has started, otherwise a negative NFS4ERR
1260  * value is returned.
1261  */
1262 int nfs4_schedule_migration_recovery(const struct nfs_server *server)
1263 {
1264         struct nfs_client *clp = server->nfs_client;
1265
1266         if (server->fh_expire_type != NFS4_FH_PERSISTENT) {
1267                 pr_err("NFS: volatile file handles not supported (server %s)\n",
1268                                 clp->cl_hostname);
1269                 return -NFS4ERR_IO;
1270         }
1271
1272         if (test_bit(NFS_MIG_FAILED, &server->mig_status))
1273                 return -NFS4ERR_IO;
1274
1275         dprintk("%s: scheduling migration recovery for (%llx:%llx) on %s\n",
1276                         __func__,
1277                         (unsigned long long)server->fsid.major,
1278                         (unsigned long long)server->fsid.minor,
1279                         clp->cl_hostname);
1280
1281         set_bit(NFS_MIG_IN_TRANSITION,
1282                         &((struct nfs_server *)server)->mig_status);
1283         set_bit(NFS4CLNT_MOVED, &clp->cl_state);
1284
1285         nfs4_schedule_state_manager(clp);
1286         return 0;
1287 }
1288 EXPORT_SYMBOL_GPL(nfs4_schedule_migration_recovery);
1289
1290 /**
1291  * nfs4_schedule_lease_moved_recovery - start lease-moved recovery
1292  *
1293  * @clp: server to check for moved leases
1294  *
1295  */
1296 void nfs4_schedule_lease_moved_recovery(struct nfs_client *clp)
1297 {
1298         dprintk("%s: scheduling lease-moved recovery for client ID %llx on %s\n",
1299                 __func__, clp->cl_clientid, clp->cl_hostname);
1300
1301         set_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state);
1302         nfs4_schedule_state_manager(clp);
1303 }
1304 EXPORT_SYMBOL_GPL(nfs4_schedule_lease_moved_recovery);
1305
1306 int nfs4_wait_clnt_recover(struct nfs_client *clp)
1307 {
1308         int res;
1309
1310         might_sleep();
1311
1312         refcount_inc(&clp->cl_count);
1313         res = wait_on_bit_action(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
1314                                  nfs_wait_bit_killable, TASK_KILLABLE);
1315         if (res)
1316                 goto out;
1317         if (clp->cl_cons_state < 0)
1318                 res = clp->cl_cons_state;
1319 out:
1320         nfs_put_client(clp);
1321         return res;
1322 }
1323
1324 int nfs4_client_recover_expired_lease(struct nfs_client *clp)
1325 {
1326         unsigned int loop;
1327         int ret;
1328
1329         for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
1330                 ret = nfs4_wait_clnt_recover(clp);
1331                 if (ret != 0)
1332                         break;
1333                 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1334                     !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
1335                         break;
1336                 nfs4_schedule_state_manager(clp);
1337                 ret = -EIO;
1338         }
1339         return ret;
1340 }
1341
1342 /*
1343  * nfs40_handle_cb_pathdown - return all delegations after NFS4ERR_CB_PATH_DOWN
1344  * @clp: client to process
1345  *
1346  * Set the NFS4CLNT_LEASE_EXPIRED state in order to force a
1347  * resend of the SETCLIENTID and hence re-establish the
1348  * callback channel. Then return all existing delegations.
1349  */
1350 static void nfs40_handle_cb_pathdown(struct nfs_client *clp)
1351 {
1352         set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1353         nfs_expire_all_delegations(clp);
1354         dprintk("%s: handling CB_PATHDOWN recovery for server %s\n", __func__,
1355                         clp->cl_hostname);
1356 }
1357
1358 void nfs4_schedule_path_down_recovery(struct nfs_client *clp)
1359 {
1360         nfs40_handle_cb_pathdown(clp);
1361         nfs4_schedule_state_manager(clp);
1362 }
1363
1364 static int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
1365 {
1366
1367         if (!nfs4_valid_open_stateid(state))
1368                 return 0;
1369         set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
1370         /* Don't recover state that expired before the reboot */
1371         if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
1372                 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
1373                 return 0;
1374         }
1375         set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
1376         set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
1377         return 1;
1378 }
1379
1380 int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
1381 {
1382         if (!nfs4_valid_open_stateid(state))
1383                 return 0;
1384         set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
1385         clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
1386         set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
1387         set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
1388         return 1;
1389 }
1390
1391 int nfs4_schedule_stateid_recovery(const struct nfs_server *server, struct nfs4_state *state)
1392 {
1393         struct nfs_client *clp = server->nfs_client;
1394
1395         if (!nfs4_state_mark_reclaim_nograce(clp, state))
1396                 return -EBADF;
1397         nfs_inode_find_delegation_state_and_recover(state->inode,
1398                         &state->stateid);
1399         dprintk("%s: scheduling stateid recovery for server %s\n", __func__,
1400                         clp->cl_hostname);
1401         nfs4_schedule_state_manager(clp);
1402         return 0;
1403 }
1404 EXPORT_SYMBOL_GPL(nfs4_schedule_stateid_recovery);
1405
1406 static struct nfs4_lock_state *
1407 nfs_state_find_lock_state_by_stateid(struct nfs4_state *state,
1408                 const nfs4_stateid *stateid)
1409 {
1410         struct nfs4_lock_state *pos;
1411
1412         list_for_each_entry(pos, &state->lock_states, ls_locks) {
1413                 if (!test_bit(NFS_LOCK_INITIALIZED, &pos->ls_flags))
1414                         continue;
1415                 if (nfs4_stateid_match_other(&pos->ls_stateid, stateid))
1416                         return pos;
1417         }
1418         return NULL;
1419 }
1420
1421 static bool nfs_state_lock_state_matches_stateid(struct nfs4_state *state,
1422                 const nfs4_stateid *stateid)
1423 {
1424         bool found = false;
1425
1426         if (test_bit(LK_STATE_IN_USE, &state->flags)) {
1427                 spin_lock(&state->state_lock);
1428                 if (nfs_state_find_lock_state_by_stateid(state, stateid))
1429                         found = true;
1430                 spin_unlock(&state->state_lock);
1431         }
1432         return found;
1433 }
1434
1435 void nfs_inode_find_state_and_recover(struct inode *inode,
1436                 const nfs4_stateid *stateid)
1437 {
1438         struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
1439         struct nfs_inode *nfsi = NFS_I(inode);
1440         struct nfs_open_context *ctx;
1441         struct nfs4_state *state;
1442         bool found = false;
1443
1444         rcu_read_lock();
1445         list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
1446                 state = ctx->state;
1447                 if (state == NULL)
1448                         continue;
1449                 if (nfs4_stateid_match_other(&state->stateid, stateid) &&
1450                     nfs4_state_mark_reclaim_nograce(clp, state)) {
1451                         found = true;
1452                         continue;
1453                 }
1454                 if (nfs4_stateid_match_other(&state->open_stateid, stateid) &&
1455                     nfs4_state_mark_reclaim_nograce(clp, state)) {
1456                         found = true;
1457                         continue;
1458                 }
1459                 if (nfs_state_lock_state_matches_stateid(state, stateid) &&
1460                     nfs4_state_mark_reclaim_nograce(clp, state))
1461                         found = true;
1462         }
1463         rcu_read_unlock();
1464
1465         nfs_inode_find_delegation_state_and_recover(inode, stateid);
1466         if (found)
1467                 nfs4_schedule_state_manager(clp);
1468 }
1469
1470 static void nfs4_state_mark_open_context_bad(struct nfs4_state *state, int err)
1471 {
1472         struct inode *inode = state->inode;
1473         struct nfs_inode *nfsi = NFS_I(inode);
1474         struct nfs_open_context *ctx;
1475
1476         rcu_read_lock();
1477         list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
1478                 if (ctx->state != state)
1479                         continue;
1480                 set_bit(NFS_CONTEXT_BAD, &ctx->flags);
1481                 pr_warn("NFSv4: state recovery failed for open file %pd2, "
1482                                 "error = %d\n", ctx->dentry, err);
1483         }
1484         rcu_read_unlock();
1485 }
1486
1487 static void nfs4_state_mark_recovery_failed(struct nfs4_state *state, int error)
1488 {
1489         set_bit(NFS_STATE_RECOVERY_FAILED, &state->flags);
1490         nfs4_state_mark_open_context_bad(state, error);
1491 }
1492
1493
1494 static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
1495 {
1496         struct inode *inode = state->inode;
1497         struct nfs_inode *nfsi = NFS_I(inode);
1498         struct file_lock *fl;
1499         struct nfs4_lock_state *lsp;
1500         int status = 0;
1501         struct file_lock_context *flctx = inode->i_flctx;
1502         struct list_head *list;
1503
1504         if (flctx == NULL)
1505                 return 0;
1506
1507         list = &flctx->flc_posix;
1508
1509         /* Guard against delegation returns and new lock/unlock calls */
1510         down_write(&nfsi->rwsem);
1511         spin_lock(&flctx->flc_lock);
1512 restart:
1513         list_for_each_entry(fl, list, fl_list) {
1514                 if (nfs_file_open_context(fl->fl_file)->state != state)
1515                         continue;
1516                 spin_unlock(&flctx->flc_lock);
1517                 status = ops->recover_lock(state, fl);
1518                 switch (status) {
1519                 case 0:
1520                         break;
1521                 case -ETIMEDOUT:
1522                 case -ESTALE:
1523                 case -NFS4ERR_ADMIN_REVOKED:
1524                 case -NFS4ERR_STALE_STATEID:
1525                 case -NFS4ERR_BAD_STATEID:
1526                 case -NFS4ERR_EXPIRED:
1527                 case -NFS4ERR_NO_GRACE:
1528                 case -NFS4ERR_STALE_CLIENTID:
1529                 case -NFS4ERR_BADSESSION:
1530                 case -NFS4ERR_BADSLOT:
1531                 case -NFS4ERR_BAD_HIGH_SLOT:
1532                 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1533                         goto out;
1534                 default:
1535                         pr_err("NFS: %s: unhandled error %d\n",
1536                                         __func__, status);
1537                         /* Fall through */
1538                 case -ENOMEM:
1539                 case -NFS4ERR_DENIED:
1540                 case -NFS4ERR_RECLAIM_BAD:
1541                 case -NFS4ERR_RECLAIM_CONFLICT:
1542                         lsp = fl->fl_u.nfs4_fl.owner;
1543                         if (lsp)
1544                                 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
1545                         status = 0;
1546                 }
1547                 spin_lock(&flctx->flc_lock);
1548         }
1549         if (list == &flctx->flc_posix) {
1550                 list = &flctx->flc_flock;
1551                 goto restart;
1552         }
1553         spin_unlock(&flctx->flc_lock);
1554 out:
1555         up_write(&nfsi->rwsem);
1556         return status;
1557 }
1558
1559 #ifdef CONFIG_NFS_V4_2
1560 static void nfs42_complete_copies(struct nfs4_state_owner *sp, struct nfs4_state *state)
1561 {
1562         struct nfs4_copy_state *copy;
1563
1564         if (!test_bit(NFS_CLNT_DST_SSC_COPY_STATE, &state->flags))
1565                 return;
1566
1567         spin_lock(&sp->so_server->nfs_client->cl_lock);
1568         list_for_each_entry(copy, &sp->so_server->ss_copies, copies) {
1569                 if (!nfs4_stateid_match_other(&state->stateid, &copy->parent_state->stateid))
1570                         continue;
1571                 copy->flags = 1;
1572                 complete(&copy->completion);
1573                 break;
1574         }
1575         spin_unlock(&sp->so_server->nfs_client->cl_lock);
1576 }
1577 #else /* !CONFIG_NFS_V4_2 */
1578 static inline void nfs42_complete_copies(struct nfs4_state_owner *sp,
1579                                          struct nfs4_state *state)
1580 {
1581 }
1582 #endif /* CONFIG_NFS_V4_2 */
1583
1584 static int __nfs4_reclaim_open_state(struct nfs4_state_owner *sp, struct nfs4_state *state,
1585                                      const struct nfs4_state_recovery_ops *ops)
1586 {
1587         struct nfs4_lock_state *lock;
1588         int status;
1589
1590         status = ops->recover_open(sp, state);
1591         if (status < 0)
1592                 return status;
1593
1594         status = nfs4_reclaim_locks(state, ops);
1595         if (status < 0)
1596                 return status;
1597
1598         if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) {
1599                 spin_lock(&state->state_lock);
1600                 list_for_each_entry(lock, &state->lock_states, ls_locks) {
1601                         if (!test_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags))
1602                                 pr_warn_ratelimited("NFS: %s: Lock reclaim failed!\n", __func__);
1603                 }
1604                 spin_unlock(&state->state_lock);
1605         }
1606
1607         nfs42_complete_copies(sp, state);
1608         clear_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
1609         return status;
1610 }
1611
1612 static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
1613 {
1614         struct nfs4_state *state;
1615         unsigned int loop = 0;
1616         int status = 0;
1617
1618         /* Note: we rely on the sp->so_states list being ordered 
1619          * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
1620          * states first.
1621          * This is needed to ensure that the server won't give us any
1622          * read delegations that we have to return if, say, we are
1623          * recovering after a network partition or a reboot from a
1624          * server that doesn't support a grace period.
1625          */
1626         spin_lock(&sp->so_lock);
1627         raw_write_seqcount_begin(&sp->so_reclaim_seqcount);
1628 restart:
1629         list_for_each_entry(state, &sp->so_states, open_states) {
1630                 if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
1631                         continue;
1632                 if (!nfs4_valid_open_stateid(state))
1633                         continue;
1634                 if (state->state == 0)
1635                         continue;
1636                 refcount_inc(&state->count);
1637                 spin_unlock(&sp->so_lock);
1638                 status = __nfs4_reclaim_open_state(sp, state, ops);
1639
1640                 switch (status) {
1641                 default:
1642                         if (status >= 0) {
1643                                 loop = 0;
1644                                 break;
1645                         }
1646                         printk(KERN_ERR "NFS: %s: unhandled error %d\n", __func__, status);
1647                         /* Fall through */
1648                 case -ENOENT:
1649                 case -ENOMEM:
1650                 case -EACCES:
1651                 case -EROFS:
1652                 case -EIO:
1653                 case -ESTALE:
1654                         /* Open state on this file cannot be recovered */
1655                         nfs4_state_mark_recovery_failed(state, status);
1656                         break;
1657                 case -EAGAIN:
1658                         ssleep(1);
1659                         if (loop++ < 10) {
1660                                 set_bit(ops->state_flag_bit, &state->flags);
1661                                 break;
1662                         }
1663                         /* Fall through */
1664                 case -NFS4ERR_ADMIN_REVOKED:
1665                 case -NFS4ERR_STALE_STATEID:
1666                 case -NFS4ERR_OLD_STATEID:
1667                 case -NFS4ERR_BAD_STATEID:
1668                 case -NFS4ERR_RECLAIM_BAD:
1669                 case -NFS4ERR_RECLAIM_CONFLICT:
1670                         nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
1671                         break;
1672                 case -NFS4ERR_EXPIRED:
1673                 case -NFS4ERR_NO_GRACE:
1674                         nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
1675                         /* Fall through */
1676                 case -NFS4ERR_STALE_CLIENTID:
1677                 case -NFS4ERR_BADSESSION:
1678                 case -NFS4ERR_BADSLOT:
1679                 case -NFS4ERR_BAD_HIGH_SLOT:
1680                 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1681                 case -ETIMEDOUT:
1682                         goto out_err;
1683                 }
1684                 nfs4_put_open_state(state);
1685                 spin_lock(&sp->so_lock);
1686                 goto restart;
1687         }
1688         raw_write_seqcount_end(&sp->so_reclaim_seqcount);
1689         spin_unlock(&sp->so_lock);
1690         return 0;
1691 out_err:
1692         nfs4_put_open_state(state);
1693         spin_lock(&sp->so_lock);
1694         raw_write_seqcount_end(&sp->so_reclaim_seqcount);
1695         spin_unlock(&sp->so_lock);
1696         return status;
1697 }
1698
1699 static void nfs4_clear_open_state(struct nfs4_state *state)
1700 {
1701         struct nfs4_lock_state *lock;
1702
1703         clear_bit(NFS_DELEGATED_STATE, &state->flags);
1704         clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1705         clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1706         clear_bit(NFS_O_RDWR_STATE, &state->flags);
1707         spin_lock(&state->state_lock);
1708         list_for_each_entry(lock, &state->lock_states, ls_locks) {
1709                 lock->ls_seqid.flags = 0;
1710                 clear_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags);
1711         }
1712         spin_unlock(&state->state_lock);
1713 }
1714
1715 static void nfs4_reset_seqids(struct nfs_server *server,
1716         int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
1717 {
1718         struct nfs_client *clp = server->nfs_client;
1719         struct nfs4_state_owner *sp;
1720         struct rb_node *pos;
1721         struct nfs4_state *state;
1722
1723         spin_lock(&clp->cl_lock);
1724         for (pos = rb_first(&server->state_owners);
1725              pos != NULL;
1726              pos = rb_next(pos)) {
1727                 sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
1728                 sp->so_seqid.flags = 0;
1729                 spin_lock(&sp->so_lock);
1730                 list_for_each_entry(state, &sp->so_states, open_states) {
1731                         if (mark_reclaim(clp, state))
1732                                 nfs4_clear_open_state(state);
1733                 }
1734                 spin_unlock(&sp->so_lock);
1735         }
1736         spin_unlock(&clp->cl_lock);
1737 }
1738
1739 static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp,
1740         int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
1741 {
1742         struct nfs_server *server;
1743
1744         rcu_read_lock();
1745         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1746                 nfs4_reset_seqids(server, mark_reclaim);
1747         rcu_read_unlock();
1748 }
1749
1750 static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
1751 {
1752         set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
1753         /* Mark all delegations for reclaim */
1754         nfs_delegation_mark_reclaim(clp);
1755         nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
1756 }
1757
1758 static int nfs4_reclaim_complete(struct nfs_client *clp,
1759                                  const struct nfs4_state_recovery_ops *ops,
1760                                  const struct cred *cred)
1761 {
1762         /* Notify the server we're done reclaiming our state */
1763         if (ops->reclaim_complete)
1764                 return ops->reclaim_complete(clp, cred);
1765         return 0;
1766 }
1767
1768 static void nfs4_clear_reclaim_server(struct nfs_server *server)
1769 {
1770         struct nfs_client *clp = server->nfs_client;
1771         struct nfs4_state_owner *sp;
1772         struct rb_node *pos;
1773         struct nfs4_state *state;
1774
1775         spin_lock(&clp->cl_lock);
1776         for (pos = rb_first(&server->state_owners);
1777              pos != NULL;
1778              pos = rb_next(pos)) {
1779                 sp = rb_entry(pos, struct nfs4_state_owner, so_server_node);
1780                 spin_lock(&sp->so_lock);
1781                 list_for_each_entry(state, &sp->so_states, open_states) {
1782                         if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT,
1783                                                 &state->flags))
1784                                 continue;
1785                         nfs4_state_mark_reclaim_nograce(clp, state);
1786                 }
1787                 spin_unlock(&sp->so_lock);
1788         }
1789         spin_unlock(&clp->cl_lock);
1790 }
1791
1792 static int nfs4_state_clear_reclaim_reboot(struct nfs_client *clp)
1793 {
1794         struct nfs_server *server;
1795
1796         if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
1797                 return 0;
1798
1799         rcu_read_lock();
1800         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1801                 nfs4_clear_reclaim_server(server);
1802         rcu_read_unlock();
1803
1804         nfs_delegation_reap_unclaimed(clp);
1805         return 1;
1806 }
1807
1808 static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
1809 {
1810         const struct nfs4_state_recovery_ops *ops;
1811         const struct cred *cred;
1812         int err;
1813
1814         if (!nfs4_state_clear_reclaim_reboot(clp))
1815                 return;
1816         ops = clp->cl_mvops->reboot_recovery_ops;
1817         cred = nfs4_get_clid_cred(clp);
1818         err = nfs4_reclaim_complete(clp, ops, cred);
1819         put_cred(cred);
1820         if (err == -NFS4ERR_CONN_NOT_BOUND_TO_SESSION)
1821                 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
1822 }
1823
1824 static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
1825 {
1826         nfs_mark_test_expired_all_delegations(clp);
1827         nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
1828 }
1829
1830 static int nfs4_recovery_handle_error(struct nfs_client *clp, int error)
1831 {
1832         switch (error) {
1833         case 0:
1834                 break;
1835         case -NFS4ERR_CB_PATH_DOWN:
1836                 nfs40_handle_cb_pathdown(clp);
1837                 break;
1838         case -NFS4ERR_NO_GRACE:
1839                 nfs4_state_end_reclaim_reboot(clp);
1840                 break;
1841         case -NFS4ERR_STALE_CLIENTID:
1842                 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1843                 nfs4_state_start_reclaim_reboot(clp);
1844                 break;
1845         case -NFS4ERR_EXPIRED:
1846                 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1847                 nfs4_state_start_reclaim_nograce(clp);
1848                 break;
1849         case -NFS4ERR_BADSESSION:
1850         case -NFS4ERR_BADSLOT:
1851         case -NFS4ERR_BAD_HIGH_SLOT:
1852         case -NFS4ERR_DEADSESSION:
1853         case -NFS4ERR_SEQ_FALSE_RETRY:
1854         case -NFS4ERR_SEQ_MISORDERED:
1855                 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
1856                 /* Zero session reset errors */
1857                 break;
1858         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1859                 set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
1860                 break;
1861         default:
1862                 dprintk("%s: failed to handle error %d for server %s\n",
1863                                 __func__, error, clp->cl_hostname);
1864                 return error;
1865         }
1866         dprintk("%s: handled error %d for server %s\n", __func__, error,
1867                         clp->cl_hostname);
1868         return 0;
1869 }
1870
1871 static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
1872 {
1873         struct nfs4_state_owner *sp;
1874         struct nfs_server *server;
1875         struct rb_node *pos;
1876         LIST_HEAD(freeme);
1877         int status = 0;
1878
1879 restart:
1880         rcu_read_lock();
1881         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
1882                 nfs4_purge_state_owners(server, &freeme);
1883                 spin_lock(&clp->cl_lock);
1884                 for (pos = rb_first(&server->state_owners);
1885                      pos != NULL;
1886                      pos = rb_next(pos)) {
1887                         sp = rb_entry(pos,
1888                                 struct nfs4_state_owner, so_server_node);
1889                         if (!test_and_clear_bit(ops->owner_flag_bit,
1890                                                         &sp->so_flags))
1891                                 continue;
1892                         if (!atomic_inc_not_zero(&sp->so_count))
1893                                 continue;
1894                         spin_unlock(&clp->cl_lock);
1895                         rcu_read_unlock();
1896
1897                         status = nfs4_reclaim_open_state(sp, ops);
1898                         if (status < 0) {
1899                                 set_bit(ops->owner_flag_bit, &sp->so_flags);
1900                                 nfs4_put_state_owner(sp);
1901                                 status = nfs4_recovery_handle_error(clp, status);
1902                                 return (status != 0) ? status : -EAGAIN;
1903                         }
1904
1905                         nfs4_put_state_owner(sp);
1906                         goto restart;
1907                 }
1908                 spin_unlock(&clp->cl_lock);
1909         }
1910         rcu_read_unlock();
1911         nfs4_free_state_owners(&freeme);
1912         return 0;
1913 }
1914
1915 static int nfs4_check_lease(struct nfs_client *clp)
1916 {
1917         const struct cred *cred;
1918         const struct nfs4_state_maintenance_ops *ops =
1919                 clp->cl_mvops->state_renewal_ops;
1920         int status;
1921
1922         /* Is the client already known to have an expired lease? */
1923         if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1924                 return 0;
1925         cred = ops->get_state_renewal_cred(clp);
1926         if (cred == NULL) {
1927                 cred = nfs4_get_clid_cred(clp);
1928                 status = -ENOKEY;
1929                 if (cred == NULL)
1930                         goto out;
1931         }
1932         status = ops->renew_lease(clp, cred);
1933         put_cred(cred);
1934         if (status == -ETIMEDOUT) {
1935                 set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
1936                 return 0;
1937         }
1938 out:
1939         return nfs4_recovery_handle_error(clp, status);
1940 }
1941
1942 /* Set NFS4CLNT_LEASE_EXPIRED and reclaim reboot state for all v4.0 errors
1943  * and for recoverable errors on EXCHANGE_ID for v4.1
1944  */
1945 static int nfs4_handle_reclaim_lease_error(struct nfs_client *clp, int status)
1946 {
1947         switch (status) {
1948         case -NFS4ERR_SEQ_MISORDERED:
1949                 if (test_and_set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state))
1950                         return -ESERVERFAULT;
1951                 /* Lease confirmation error: retry after purging the lease */
1952                 ssleep(1);
1953                 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
1954                 break;
1955         case -NFS4ERR_STALE_CLIENTID:
1956                 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
1957                 nfs4_state_start_reclaim_reboot(clp);
1958                 break;
1959         case -NFS4ERR_CLID_INUSE:
1960                 pr_err("NFS: Server %s reports our clientid is in use\n",
1961                         clp->cl_hostname);
1962                 nfs_mark_client_ready(clp, -EPERM);
1963                 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
1964                 return -EPERM;
1965         case -EACCES:
1966         case -NFS4ERR_DELAY:
1967         case -EAGAIN:
1968                 ssleep(1);
1969                 break;
1970
1971         case -NFS4ERR_MINOR_VERS_MISMATCH:
1972                 if (clp->cl_cons_state == NFS_CS_SESSION_INITING)
1973                         nfs_mark_client_ready(clp, -EPROTONOSUPPORT);
1974                 dprintk("%s: exit with error %d for server %s\n",
1975                                 __func__, -EPROTONOSUPPORT, clp->cl_hostname);
1976                 return -EPROTONOSUPPORT;
1977         case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
1978                                  * in nfs4_exchange_id */
1979         default:
1980                 dprintk("%s: exit with error %d for server %s\n", __func__,
1981                                 status, clp->cl_hostname);
1982                 return status;
1983         }
1984         set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1985         dprintk("%s: handled error %d for server %s\n", __func__, status,
1986                         clp->cl_hostname);
1987         return 0;
1988 }
1989
1990 static int nfs4_establish_lease(struct nfs_client *clp)
1991 {
1992         const struct cred *cred;
1993         const struct nfs4_state_recovery_ops *ops =
1994                 clp->cl_mvops->reboot_recovery_ops;
1995         int status;
1996
1997         status = nfs4_begin_drain_session(clp);
1998         if (status != 0)
1999                 return status;
2000         cred = nfs4_get_clid_cred(clp);
2001         if (cred == NULL)
2002                 return -ENOENT;
2003         status = ops->establish_clid(clp, cred);
2004         put_cred(cred);
2005         if (status != 0)
2006                 return status;
2007         pnfs_destroy_all_layouts(clp);
2008         return 0;
2009 }
2010
2011 /*
2012  * Returns zero or a negative errno.  NFS4ERR values are converted
2013  * to local errno values.
2014  */
2015 static int nfs4_reclaim_lease(struct nfs_client *clp)
2016 {
2017         int status;
2018
2019         status = nfs4_establish_lease(clp);
2020         if (status < 0)
2021                 return nfs4_handle_reclaim_lease_error(clp, status);
2022         if (test_and_clear_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state))
2023                 nfs4_state_start_reclaim_nograce(clp);
2024         if (!test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state))
2025                 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
2026         clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
2027         clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
2028         return 0;
2029 }
2030
2031 static int nfs4_purge_lease(struct nfs_client *clp)
2032 {
2033         int status;
2034
2035         status = nfs4_establish_lease(clp);
2036         if (status < 0)
2037                 return nfs4_handle_reclaim_lease_error(clp, status);
2038         clear_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
2039         set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
2040         nfs4_state_start_reclaim_nograce(clp);
2041         return 0;
2042 }
2043
2044 /*
2045  * Try remote migration of one FSID from a source server to a
2046  * destination server.  The source server provides a list of
2047  * potential destinations.
2048  *
2049  * Returns zero or a negative NFS4ERR status code.
2050  */
2051 static int nfs4_try_migration(struct nfs_server *server, const struct cred *cred)
2052 {
2053         struct nfs_client *clp = server->nfs_client;
2054         struct nfs4_fs_locations *locations = NULL;
2055         struct inode *inode;
2056         struct page *page;
2057         int status, result;
2058
2059         dprintk("--> %s: FSID %llx:%llx on \"%s\"\n", __func__,
2060                         (unsigned long long)server->fsid.major,
2061                         (unsigned long long)server->fsid.minor,
2062                         clp->cl_hostname);
2063
2064         result = 0;
2065         page = alloc_page(GFP_KERNEL);
2066         locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2067         if (page == NULL || locations == NULL) {
2068                 dprintk("<-- %s: no memory\n", __func__);
2069                 goto out;
2070         }
2071
2072         inode = d_inode(server->super->s_root);
2073         result = nfs4_proc_get_locations(inode, locations, page, cred);
2074         if (result) {
2075                 dprintk("<-- %s: failed to retrieve fs_locations: %d\n",
2076                         __func__, result);
2077                 goto out;
2078         }
2079
2080         result = -NFS4ERR_NXIO;
2081         if (!locations->nlocations)
2082                 goto out;
2083
2084         if (!(locations->fattr.valid & NFS_ATTR_FATTR_V4_LOCATIONS)) {
2085                 dprintk("<-- %s: No fs_locations data, migration skipped\n",
2086                         __func__);
2087                 goto out;
2088         }
2089
2090         status = nfs4_begin_drain_session(clp);
2091         if (status != 0) {
2092                 result = status;
2093                 goto out;
2094         }
2095
2096         status = nfs4_replace_transport(server, locations);
2097         if (status != 0) {
2098                 dprintk("<-- %s: failed to replace transport: %d\n",
2099                         __func__, status);
2100                 goto out;
2101         }
2102
2103         result = 0;
2104         dprintk("<-- %s: migration succeeded\n", __func__);
2105
2106 out:
2107         if (page != NULL)
2108                 __free_page(page);
2109         kfree(locations);
2110         if (result) {
2111                 pr_err("NFS: migration recovery failed (server %s)\n",
2112                                 clp->cl_hostname);
2113                 set_bit(NFS_MIG_FAILED, &server->mig_status);
2114         }
2115         return result;
2116 }
2117
2118 /*
2119  * Returns zero or a negative NFS4ERR status code.
2120  */
2121 static int nfs4_handle_migration(struct nfs_client *clp)
2122 {
2123         const struct nfs4_state_maintenance_ops *ops =
2124                                 clp->cl_mvops->state_renewal_ops;
2125         struct nfs_server *server;
2126         const struct cred *cred;
2127
2128         dprintk("%s: migration reported on \"%s\"\n", __func__,
2129                         clp->cl_hostname);
2130
2131         cred = ops->get_state_renewal_cred(clp);
2132         if (cred == NULL)
2133                 return -NFS4ERR_NOENT;
2134
2135         clp->cl_mig_gen++;
2136 restart:
2137         rcu_read_lock();
2138         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
2139                 int status;
2140
2141                 if (server->mig_gen == clp->cl_mig_gen)
2142                         continue;
2143                 server->mig_gen = clp->cl_mig_gen;
2144
2145                 if (!test_and_clear_bit(NFS_MIG_IN_TRANSITION,
2146                                                 &server->mig_status))
2147                         continue;
2148
2149                 rcu_read_unlock();
2150                 status = nfs4_try_migration(server, cred);
2151                 if (status < 0) {
2152                         put_cred(cred);
2153                         return status;
2154                 }
2155                 goto restart;
2156         }
2157         rcu_read_unlock();
2158         put_cred(cred);
2159         return 0;
2160 }
2161
2162 /*
2163  * Test each nfs_server on the clp's cl_superblocks list to see
2164  * if it's moved to another server.  Stop when the server no longer
2165  * returns NFS4ERR_LEASE_MOVED.
2166  */
2167 static int nfs4_handle_lease_moved(struct nfs_client *clp)
2168 {
2169         const struct nfs4_state_maintenance_ops *ops =
2170                                 clp->cl_mvops->state_renewal_ops;
2171         struct nfs_server *server;
2172         const struct cred *cred;
2173
2174         dprintk("%s: lease moved reported on \"%s\"\n", __func__,
2175                         clp->cl_hostname);
2176
2177         cred = ops->get_state_renewal_cred(clp);
2178         if (cred == NULL)
2179                 return -NFS4ERR_NOENT;
2180
2181         clp->cl_mig_gen++;
2182 restart:
2183         rcu_read_lock();
2184         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
2185                 struct inode *inode;
2186                 int status;
2187
2188                 if (server->mig_gen == clp->cl_mig_gen)
2189                         continue;
2190                 server->mig_gen = clp->cl_mig_gen;
2191
2192                 rcu_read_unlock();
2193
2194                 inode = d_inode(server->super->s_root);
2195                 status = nfs4_proc_fsid_present(inode, cred);
2196                 if (status != -NFS4ERR_MOVED)
2197                         goto restart;   /* wasn't this one */
2198                 if (nfs4_try_migration(server, cred) == -NFS4ERR_LEASE_MOVED)
2199                         goto restart;   /* there are more */
2200                 goto out;
2201         }
2202         rcu_read_unlock();
2203
2204 out:
2205         put_cred(cred);
2206         return 0;
2207 }
2208
2209 /**
2210  * nfs4_discover_server_trunking - Detect server IP address trunking
2211  *
2212  * @clp: nfs_client under test
2213  * @result: OUT: found nfs_client, or clp
2214  *
2215  * Returns zero or a negative errno.  If zero is returned,
2216  * an nfs_client pointer is planted in "result".
2217  *
2218  * Note: since we are invoked in process context, and
2219  * not from inside the state manager, we cannot use
2220  * nfs4_handle_reclaim_lease_error().
2221  */
2222 int nfs4_discover_server_trunking(struct nfs_client *clp,
2223                                   struct nfs_client **result)
2224 {
2225         const struct nfs4_state_recovery_ops *ops =
2226                                 clp->cl_mvops->reboot_recovery_ops;
2227         struct rpc_clnt *clnt;
2228         const struct cred *cred;
2229         int i, status;
2230
2231         dprintk("NFS: %s: testing '%s'\n", __func__, clp->cl_hostname);
2232
2233         clnt = clp->cl_rpcclient;
2234         i = 0;
2235
2236         mutex_lock(&nfs_clid_init_mutex);
2237 again:
2238         status  = -ENOENT;
2239         cred = nfs4_get_clid_cred(clp);
2240         if (cred == NULL)
2241                 goto out_unlock;
2242
2243         status = ops->detect_trunking(clp, result, cred);
2244         put_cred(cred);
2245         switch (status) {
2246         case 0:
2247         case -EINTR:
2248         case -ERESTARTSYS:
2249                 break;
2250         case -ETIMEDOUT:
2251                 if (clnt->cl_softrtry)
2252                         break;
2253                 /* Fall through */
2254         case -NFS4ERR_DELAY:
2255         case -EAGAIN:
2256                 ssleep(1);
2257                 /* Fall through */
2258         case -NFS4ERR_STALE_CLIENTID:
2259                 dprintk("NFS: %s after status %d, retrying\n",
2260                         __func__, status);
2261                 goto again;
2262         case -EACCES:
2263                 if (i++ == 0) {
2264                         nfs4_root_machine_cred(clp);
2265                         goto again;
2266                 }
2267                 if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX)
2268                         break;
2269                 /* Fall through */
2270         case -NFS4ERR_CLID_INUSE:
2271         case -NFS4ERR_WRONGSEC:
2272                 /* No point in retrying if we already used RPC_AUTH_UNIX */
2273                 if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX) {
2274                         status = -EPERM;
2275                         break;
2276                 }
2277                 clnt = rpc_clone_client_set_auth(clnt, RPC_AUTH_UNIX);
2278                 if (IS_ERR(clnt)) {
2279                         status = PTR_ERR(clnt);
2280                         break;
2281                 }
2282                 /* Note: this is safe because we haven't yet marked the
2283                  * client as ready, so we are the only user of
2284                  * clp->cl_rpcclient
2285                  */
2286                 clnt = xchg(&clp->cl_rpcclient, clnt);
2287                 rpc_shutdown_client(clnt);
2288                 clnt = clp->cl_rpcclient;
2289                 goto again;
2290
2291         case -NFS4ERR_MINOR_VERS_MISMATCH:
2292                 status = -EPROTONOSUPPORT;
2293                 break;
2294
2295         case -EKEYEXPIRED:
2296         case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
2297                                  * in nfs4_exchange_id */
2298                 status = -EKEYEXPIRED;
2299                 break;
2300         default:
2301                 pr_warn("NFS: %s unhandled error %d. Exiting with error EIO\n",
2302                                 __func__, status);
2303                 status = -EIO;
2304         }
2305
2306 out_unlock:
2307         mutex_unlock(&nfs_clid_init_mutex);
2308         dprintk("NFS: %s: status = %d\n", __func__, status);
2309         return status;
2310 }
2311
2312 #ifdef CONFIG_NFS_V4_1
2313 void nfs4_schedule_session_recovery(struct nfs4_session *session, int err)
2314 {
2315         struct nfs_client *clp = session->clp;
2316
2317         switch (err) {
2318         default:
2319                 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
2320                 break;
2321         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
2322                 set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
2323         }
2324         nfs4_schedule_state_manager(clp);
2325 }
2326 EXPORT_SYMBOL_GPL(nfs4_schedule_session_recovery);
2327
2328 void nfs41_notify_server(struct nfs_client *clp)
2329 {
2330         /* Use CHECK_LEASE to ping the server with a SEQUENCE */
2331         set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
2332         nfs4_schedule_state_manager(clp);
2333 }
2334
2335 static void nfs4_reset_all_state(struct nfs_client *clp)
2336 {
2337         if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
2338                 set_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state);
2339                 clear_bit(NFS4CLNT_LEASE_CONFIRM, &clp->cl_state);
2340                 nfs4_state_start_reclaim_nograce(clp);
2341                 dprintk("%s: scheduling reset of all state for server %s!\n",
2342                                 __func__, clp->cl_hostname);
2343                 nfs4_schedule_state_manager(clp);
2344         }
2345 }
2346
2347 static void nfs41_handle_server_reboot(struct nfs_client *clp)
2348 {
2349         if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
2350                 nfs4_state_start_reclaim_reboot(clp);
2351                 dprintk("%s: server %s rebooted!\n", __func__,
2352                                 clp->cl_hostname);
2353                 nfs4_schedule_state_manager(clp);
2354         }
2355 }
2356
2357 static void nfs41_handle_all_state_revoked(struct nfs_client *clp)
2358 {
2359         nfs4_reset_all_state(clp);
2360         dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
2361 }
2362
2363 static void nfs41_handle_some_state_revoked(struct nfs_client *clp)
2364 {
2365         nfs4_state_start_reclaim_nograce(clp);
2366         nfs4_schedule_state_manager(clp);
2367
2368         dprintk("%s: state revoked on server %s\n", __func__, clp->cl_hostname);
2369 }
2370
2371 static void nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
2372 {
2373         /* FIXME: For now, we destroy all layouts. */
2374         pnfs_destroy_all_layouts(clp);
2375         nfs_test_expired_all_delegations(clp);
2376         dprintk("%s: Recallable state revoked on server %s!\n", __func__,
2377                         clp->cl_hostname);
2378 }
2379
2380 static void nfs41_handle_backchannel_fault(struct nfs_client *clp)
2381 {
2382         set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
2383         nfs4_schedule_state_manager(clp);
2384
2385         dprintk("%s: server %s declared a backchannel fault\n", __func__,
2386                         clp->cl_hostname);
2387 }
2388
2389 static void nfs41_handle_cb_path_down(struct nfs_client *clp)
2390 {
2391         if (test_and_set_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
2392                 &clp->cl_state) == 0)
2393                 nfs4_schedule_state_manager(clp);
2394 }
2395
2396 void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags,
2397                 bool recovery)
2398 {
2399         if (!flags)
2400                 return;
2401
2402         dprintk("%s: \"%s\" (client ID %llx) flags=0x%08x\n",
2403                 __func__, clp->cl_hostname, clp->cl_clientid, flags);
2404         /*
2405          * If we're called from the state manager thread, then assume we're
2406          * already handling the RECLAIM_NEEDED and/or STATE_REVOKED.
2407          * Those flags are expected to remain set until we're done
2408          * recovering (see RFC5661, section 18.46.3).
2409          */
2410         if (recovery)
2411                 goto out_recovery;
2412
2413         if (flags & SEQ4_STATUS_RESTART_RECLAIM_NEEDED)
2414                 nfs41_handle_server_reboot(clp);
2415         if (flags & (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED))
2416                 nfs41_handle_all_state_revoked(clp);
2417         if (flags & (SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED |
2418                             SEQ4_STATUS_ADMIN_STATE_REVOKED))
2419                 nfs41_handle_some_state_revoked(clp);
2420         if (flags & SEQ4_STATUS_LEASE_MOVED)
2421                 nfs4_schedule_lease_moved_recovery(clp);
2422         if (flags & SEQ4_STATUS_RECALLABLE_STATE_REVOKED)
2423                 nfs41_handle_recallable_state_revoked(clp);
2424 out_recovery:
2425         if (flags & SEQ4_STATUS_BACKCHANNEL_FAULT)
2426                 nfs41_handle_backchannel_fault(clp);
2427         else if (flags & (SEQ4_STATUS_CB_PATH_DOWN |
2428                                 SEQ4_STATUS_CB_PATH_DOWN_SESSION))
2429                 nfs41_handle_cb_path_down(clp);
2430 }
2431
2432 static int nfs4_reset_session(struct nfs_client *clp)
2433 {
2434         const struct cred *cred;
2435         int status;
2436
2437         if (!nfs4_has_session(clp))
2438                 return 0;
2439         status = nfs4_begin_drain_session(clp);
2440         if (status != 0)
2441                 return status;
2442         cred = nfs4_get_clid_cred(clp);
2443         status = nfs4_proc_destroy_session(clp->cl_session, cred);
2444         switch (status) {
2445         case 0:
2446         case -NFS4ERR_BADSESSION:
2447         case -NFS4ERR_DEADSESSION:
2448                 break;
2449         case -NFS4ERR_BACK_CHAN_BUSY:
2450         case -NFS4ERR_DELAY:
2451                 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
2452                 status = 0;
2453                 ssleep(1);
2454                 goto out;
2455         default:
2456                 status = nfs4_recovery_handle_error(clp, status);
2457                 goto out;
2458         }
2459
2460         memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
2461         status = nfs4_proc_create_session(clp, cred);
2462         if (status) {
2463                 dprintk("%s: session reset failed with status %d for server %s!\n",
2464                         __func__, status, clp->cl_hostname);
2465                 status = nfs4_handle_reclaim_lease_error(clp, status);
2466                 goto out;
2467         }
2468         nfs41_finish_session_reset(clp);
2469         dprintk("%s: session reset was successful for server %s!\n",
2470                         __func__, clp->cl_hostname);
2471 out:
2472         put_cred(cred);
2473         return status;
2474 }
2475
2476 static int nfs4_bind_conn_to_session(struct nfs_client *clp)
2477 {
2478         const struct cred *cred;
2479         int ret;
2480
2481         if (!nfs4_has_session(clp))
2482                 return 0;
2483         ret = nfs4_begin_drain_session(clp);
2484         if (ret != 0)
2485                 return ret;
2486         cred = nfs4_get_clid_cred(clp);
2487         ret = nfs4_proc_bind_conn_to_session(clp, cred);
2488         put_cred(cred);
2489         clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
2490         switch (ret) {
2491         case 0:
2492                 dprintk("%s: bind_conn_to_session was successful for server %s!\n",
2493                         __func__, clp->cl_hostname);
2494                 break;
2495         case -NFS4ERR_DELAY:
2496                 ssleep(1);
2497                 set_bit(NFS4CLNT_BIND_CONN_TO_SESSION, &clp->cl_state);
2498                 break;
2499         default:
2500                 return nfs4_recovery_handle_error(clp, ret);
2501         }
2502         return 0;
2503 }
2504 #else /* CONFIG_NFS_V4_1 */
2505 static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
2506
2507 static int nfs4_bind_conn_to_session(struct nfs_client *clp)
2508 {
2509         return 0;
2510 }
2511 #endif /* CONFIG_NFS_V4_1 */
2512
2513 static void nfs4_state_manager(struct nfs_client *clp)
2514 {
2515         unsigned int memflags;
2516         int status = 0;
2517         const char *section = "", *section_sep = "";
2518
2519         /*
2520          * State recovery can deadlock if the direct reclaim code tries
2521          * start NFS writeback. So ensure memory allocations are all
2522          * GFP_NOFS.
2523          */
2524         memflags = memalloc_nofs_save();
2525
2526         /* Ensure exclusive access to NFSv4 state */
2527         do {
2528                 clear_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
2529                 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
2530                         section = "purge state";
2531                         status = nfs4_purge_lease(clp);
2532                         if (status < 0)
2533                                 goto out_error;
2534                         continue;
2535                 }
2536
2537                 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
2538                         section = "lease expired";
2539                         /* We're going to have to re-establish a clientid */
2540                         status = nfs4_reclaim_lease(clp);
2541                         if (status < 0)
2542                                 goto out_error;
2543                         continue;
2544                 }
2545
2546                 /* Initialize or reset the session */
2547                 if (test_and_clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state)) {
2548                         section = "reset session";
2549                         status = nfs4_reset_session(clp);
2550                         if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
2551                                 continue;
2552                         if (status < 0)
2553                                 goto out_error;
2554                 }
2555
2556                 /* Send BIND_CONN_TO_SESSION */
2557                 if (test_and_clear_bit(NFS4CLNT_BIND_CONN_TO_SESSION,
2558                                 &clp->cl_state)) {
2559                         section = "bind conn to session";
2560                         status = nfs4_bind_conn_to_session(clp);
2561                         if (status < 0)
2562                                 goto out_error;
2563                         continue;
2564                 }
2565
2566                 if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
2567                         section = "check lease";
2568                         status = nfs4_check_lease(clp);
2569                         if (status < 0)
2570                                 goto out_error;
2571                         continue;
2572                 }
2573
2574                 if (test_and_clear_bit(NFS4CLNT_MOVED, &clp->cl_state)) {
2575                         section = "migration";
2576                         status = nfs4_handle_migration(clp);
2577                         if (status < 0)
2578                                 goto out_error;
2579                 }
2580
2581                 if (test_and_clear_bit(NFS4CLNT_LEASE_MOVED, &clp->cl_state)) {
2582                         section = "lease moved";
2583                         status = nfs4_handle_lease_moved(clp);
2584                         if (status < 0)
2585                                 goto out_error;
2586                 }
2587
2588                 /* First recover reboot state... */
2589                 if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
2590                         section = "reclaim reboot";
2591                         status = nfs4_do_reclaim(clp,
2592                                 clp->cl_mvops->reboot_recovery_ops);
2593                         if (status == -EAGAIN)
2594                                 continue;
2595                         if (status < 0)
2596                                 goto out_error;
2597                         nfs4_state_end_reclaim_reboot(clp);
2598                         continue;
2599                 }
2600
2601                 /* Detect expired delegations... */
2602                 if (test_and_clear_bit(NFS4CLNT_DELEGATION_EXPIRED, &clp->cl_state)) {
2603                         section = "detect expired delegations";
2604                         nfs_reap_expired_delegations(clp);
2605                         continue;
2606                 }
2607
2608                 /* Now recover expired state... */
2609                 if (test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
2610                         section = "reclaim nograce";
2611                         status = nfs4_do_reclaim(clp,
2612                                 clp->cl_mvops->nograce_recovery_ops);
2613                         if (status == -EAGAIN)
2614                                 continue;
2615                         if (status < 0)
2616                                 goto out_error;
2617                         clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
2618                 }
2619
2620                 memalloc_nofs_restore(memflags);
2621                 nfs4_end_drain_session(clp);
2622                 nfs4_clear_state_manager_bit(clp);
2623
2624                 if (!test_and_set_bit(NFS4CLNT_DELEGRETURN_RUNNING, &clp->cl_state)) {
2625                         if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
2626                                 nfs_client_return_marked_delegations(clp);
2627                                 set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state);
2628                         }
2629                         clear_bit(NFS4CLNT_DELEGRETURN_RUNNING, &clp->cl_state);
2630                 }
2631
2632                 /* Did we race with an attempt to give us more work? */
2633                 if (!test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state))
2634                         return;
2635                 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
2636                         return;
2637                 memflags = memalloc_nofs_save();
2638         } while (refcount_read(&clp->cl_count) > 1 && !signalled());
2639         goto out_drain;
2640
2641 out_error:
2642         if (strlen(section))
2643                 section_sep = ": ";
2644         pr_warn_ratelimited("NFS: state manager%s%s failed on NFSv4 server %s"
2645                         " with error %d\n", section_sep, section,
2646                         clp->cl_hostname, -status);
2647         ssleep(1);
2648 out_drain:
2649         memalloc_nofs_restore(memflags);
2650         nfs4_end_drain_session(clp);
2651         nfs4_clear_state_manager_bit(clp);
2652 }
2653
2654 static int nfs4_run_state_manager(void *ptr)
2655 {
2656         struct nfs_client *clp = ptr;
2657
2658         allow_signal(SIGKILL);
2659         nfs4_state_manager(clp);
2660         nfs_put_client(clp);
2661         module_put_and_exit(0);
2662         return 0;
2663 }
2664
2665 /*
2666  * Local variables:
2667  *  c-basic-offset: 8
2668  * End:
2669  */