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