blob: 286084f148e3ef754ee0541a7d1a9b03859207b3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4state.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 * Implementation of the NFSv4 state model. For the time being,
37 * this is minimal, but will be made much more complex in a
38 * subsequent patch.
39 */
40
Trond Myklebust6f43ddc2007-07-08 16:49:11 -040041#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/slab.h>
Arnd Bergmannb89f4322010-09-18 15:09:31 +020043#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/nfs_fs.h>
45#include <linux/nfs_idmap.h>
Trond Myklebust5043e902006-01-03 09:55:23 +010046#include <linux/kthread.h>
47#include <linux/module.h>
Trond Myklebust9f958ab2007-07-02 13:58:33 -040048#include <linux/random.h>
Randy Dunlap8c7597f2010-10-22 16:18:52 -070049#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/workqueue.h>
51#include <linux/bitops.h>
52
Trond Myklebust4ce79712005-06-22 17:16:21 +000053#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "callback.h"
55#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040056#include "internal.h"
Andy Adamson974cec82010-10-20 00:18:02 -040057#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define OPENOWNER_POOL_SIZE 8
60
Trond Myklebust4ce79712005-06-22 17:16:21 +000061const nfs4_stateid zero_stateid;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static LIST_HEAD(nfs4_clientid_list);
64
Andy Adamson591d71c2009-04-01 09:22:47 -040065int nfs4_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Trond Myklebustbb8b27e2010-04-16 16:43:06 -040067 struct nfs4_setclientid_res clid;
Chuck Leverf738f512009-03-18 20:48:06 -040068 unsigned short port;
69 int status;
70
71 port = nfs_callback_tcpport;
72 if (clp->cl_addr.ss_family == AF_INET6)
73 port = nfs_callback_tcpport6;
74
Trond Myklebustbb8b27e2010-04-16 16:43:06 -040075 status = nfs4_proc_setclientid(clp, NFS4_CALLBACK, port, cred, &clid);
76 if (status != 0)
77 goto out;
78 status = nfs4_proc_setclientid_confirm(clp, &clid, cred);
79 if (status != 0)
80 goto out;
81 clp->cl_clientid = clid.clientid;
82 nfs4_schedule_state_renewal(clp);
83out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return status;
85}
86
Andy Adamsona7b72102009-04-01 09:22:46 -040087struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp)
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040088{
89 struct rpc_cred *cred = NULL;
90
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040091 if (clp->cl_machine_cred != NULL)
92 cred = get_rpccred(clp->cl_machine_cred);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -040093 return cred;
94}
95
96static void nfs4_clear_machine_cred(struct nfs_client *clp)
97{
98 struct rpc_cred *cred;
99
100 spin_lock(&clp->cl_lock);
101 cred = clp->cl_machine_cred;
102 clp->cl_machine_cred = NULL;
103 spin_unlock(&clp->cl_lock);
104 if (cred != NULL)
105 put_rpccred(cred);
106}
107
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500108struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp)
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100109{
110 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400111 struct rb_node *pos;
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100112 struct rpc_cred *cred = NULL;
113
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400114 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
115 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebustb4454fe2006-01-03 09:55:25 +0100116 if (list_empty(&sp->so_states))
117 continue;
118 cred = get_rpccred(sp->so_cred);
119 break;
120 }
121 return cred;
122}
123
Andy Adamsonb4b82602009-04-01 09:22:49 -0400124#if defined(CONFIG_NFS_V4_1)
125
Ricardo Labiaga9430fb62009-12-06 12:23:46 -0500126static int nfs41_setup_state_renewal(struct nfs_client *clp)
127{
128 int status;
129 struct nfs_fsinfo fsinfo;
130
131 status = nfs4_proc_get_lease_time(clp, &fsinfo);
132 if (status == 0) {
133 /* Update lease time and schedule renewal */
134 spin_lock(&clp->cl_lock);
135 clp->cl_lease_time = fsinfo.lease_time * HZ;
136 clp->cl_last_renewal = jiffies;
137 spin_unlock(&clp->cl_lock);
138
139 nfs4_schedule_state_renewal(clp);
140 }
141
142 return status;
143}
144
Andy Adamson42acd022011-01-06 02:04:34 +0000145/*
146 * Back channel returns NFS4ERR_DELAY for new requests when
147 * NFS4_SESSION_DRAINING is set so there is no work to be done when draining
148 * is ended.
149 */
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800150static void nfs4_end_drain_session(struct nfs_client *clp)
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500151{
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800152 struct nfs4_session *ses = clp->cl_session;
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800153 int max_slots;
154
Trond Myklebusta2118c32010-06-16 09:52:26 -0400155 if (ses == NULL)
156 return;
157 if (test_and_clear_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800158 spin_lock(&ses->fc_slot_table.slot_tbl_lock);
159 max_slots = ses->fc_slot_table.max_slots;
160 while (max_slots--) {
161 struct rpc_task *task;
162
163 task = rpc_wake_up_next(&ses->fc_slot_table.
164 slot_tbl_waitq);
165 if (!task)
166 break;
167 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
168 }
169 spin_unlock(&ses->fc_slot_table.slot_tbl_lock);
170 }
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500171}
172
Andy Adamson42acd022011-01-06 02:04:34 +0000173static int nfs4_wait_on_slot_tbl(struct nfs4_slot_table *tbl)
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500174{
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500175 spin_lock(&tbl->slot_tbl_lock);
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500176 if (tbl->highest_used_slotid != -1) {
Andy Adamson42acd022011-01-06 02:04:34 +0000177 INIT_COMPLETION(tbl->complete);
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500178 spin_unlock(&tbl->slot_tbl_lock);
Andy Adamson42acd022011-01-06 02:04:34 +0000179 return wait_for_completion_interruptible(&tbl->complete);
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -0500180 }
181 spin_unlock(&tbl->slot_tbl_lock);
182 return 0;
183}
184
Andy Adamson42acd022011-01-06 02:04:34 +0000185static int nfs4_begin_drain_session(struct nfs_client *clp)
186{
187 struct nfs4_session *ses = clp->cl_session;
188 int ret = 0;
189
190 set_bit(NFS4_SESSION_DRAINING, &ses->session_state);
191 /* back channel */
192 ret = nfs4_wait_on_slot_tbl(&ses->bc_slot_table);
193 if (ret)
194 return ret;
195 /* fore channel */
196 return nfs4_wait_on_slot_tbl(&ses->fc_slot_table);
197}
198
Andy Adamson4d643d12009-12-04 15:52:24 -0500199int nfs41_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
200{
201 int status;
202
Trond Myklebust38045412009-12-15 17:36:57 -0500203 nfs4_begin_drain_session(clp);
Andy Adamson4d643d12009-12-04 15:52:24 -0500204 status = nfs4_proc_exchange_id(clp, cred);
Ricardo Labiaga9430fb62009-12-06 12:23:46 -0500205 if (status != 0)
206 goto out;
207 status = nfs4_proc_create_session(clp);
208 if (status != 0)
209 goto out;
Andy Adamson2c2618c2011-01-06 02:04:31 +0000210 status = nfs4_set_callback_sessionid(clp);
211 if (status != 0) {
212 printk(KERN_WARNING "Sessionid not set. No callback service\n");
213 nfs_callback_down(1);
214 status = 0;
215 }
Ricardo Labiaga9430fb62009-12-06 12:23:46 -0500216 nfs41_setup_state_renewal(clp);
217 nfs_mark_client_ready(clp, NFS_CS_READY);
218out:
Andy Adamson4d643d12009-12-04 15:52:24 -0500219 return status;
220}
221
Andy Adamsonb4b82602009-04-01 09:22:49 -0400222struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp)
223{
224 struct rpc_cred *cred;
225
226 spin_lock(&clp->cl_lock);
227 cred = nfs4_get_machine_cred_locked(clp);
228 spin_unlock(&clp->cl_lock);
229 return cred;
230}
231
232#endif /* CONFIG_NFS_V4_1 */
233
Andy Adamsona7b72102009-04-01 09:22:46 -0400234struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp)
Trond Myklebust286d7d62006-01-03 09:55:26 +0100235{
236 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400237 struct rb_node *pos;
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400238 struct rpc_cred *cred;
Trond Myklebust286d7d62006-01-03 09:55:26 +0100239
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500240 spin_lock(&clp->cl_lock);
241 cred = nfs4_get_machine_cred_locked(clp);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400242 if (cred != NULL)
243 goto out;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400244 pos = rb_first(&clp->cl_state_owners);
245 if (pos != NULL) {
246 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400247 cred = get_rpccred(sp->so_cred);
Trond Myklebust286d7d62006-01-03 09:55:26 +0100248 }
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400249out:
Trond Myklebust6dc9d572008-12-23 15:21:41 -0500250 spin_unlock(&clp->cl_lock);
Trond Myklebusta2b2bb82008-04-08 16:02:17 -0400251 return cred;
Trond Myklebust286d7d62006-01-03 09:55:26 +0100252}
253
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400254static void nfs_alloc_unique_id(struct rb_root *root, struct nfs_unique_id *new,
255 __u64 minval, int maxbits)
256{
257 struct rb_node **p, *parent;
258 struct nfs_unique_id *pos;
259 __u64 mask = ~0ULL;
260
261 if (maxbits < 64)
262 mask = (1ULL << maxbits) - 1ULL;
263
264 /* Ensure distribution is more or less flat */
265 get_random_bytes(&new->id, sizeof(new->id));
266 new->id &= mask;
267 if (new->id < minval)
268 new->id += minval;
269retry:
270 p = &root->rb_node;
271 parent = NULL;
272
273 while (*p != NULL) {
274 parent = *p;
275 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
276
277 if (new->id < pos->id)
278 p = &(*p)->rb_left;
279 else if (new->id > pos->id)
280 p = &(*p)->rb_right;
281 else
282 goto id_exists;
283 }
284 rb_link_node(&new->rb_node, parent, p);
285 rb_insert_color(&new->rb_node, root);
286 return;
287id_exists:
288 for (;;) {
289 new->id++;
290 if (new->id < minval || (new->id & mask) != new->id) {
291 new->id = minval;
292 break;
293 }
294 parent = rb_next(parent);
295 if (parent == NULL)
296 break;
297 pos = rb_entry(parent, struct nfs_unique_id, rb_node);
298 if (new->id < pos->id)
299 break;
300 }
301 goto retry;
302}
303
304static void nfs_free_unique_id(struct rb_root *root, struct nfs_unique_id *id)
305{
306 rb_erase(&id->rb_node, root);
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static struct nfs4_state_owner *
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400310nfs4_find_state_owner(struct nfs_server *server, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400312 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400313 struct rb_node **p = &clp->cl_state_owners.rb_node,
314 *parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct nfs4_state_owner *sp, *res = NULL;
316
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400317 while (*p != NULL) {
318 parent = *p;
319 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
320
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400321 if (server < sp->so_server) {
322 p = &parent->rb_left;
323 continue;
324 }
325 if (server > sp->so_server) {
326 p = &parent->rb_right;
327 continue;
328 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400329 if (cred < sp->so_cred)
330 p = &parent->rb_left;
331 else if (cred > sp->so_cred)
332 p = &parent->rb_right;
333 else {
334 atomic_inc(&sp->so_count);
335 res = sp;
336 break;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 return res;
340}
341
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400342static struct nfs4_state_owner *
343nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new)
344{
345 struct rb_node **p = &clp->cl_state_owners.rb_node,
346 *parent = NULL;
347 struct nfs4_state_owner *sp;
348
349 while (*p != NULL) {
350 parent = *p;
351 sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
352
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400353 if (new->so_server < sp->so_server) {
354 p = &parent->rb_left;
355 continue;
356 }
357 if (new->so_server > sp->so_server) {
358 p = &parent->rb_right;
359 continue;
360 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400361 if (new->so_cred < sp->so_cred)
362 p = &parent->rb_left;
363 else if (new->so_cred > sp->so_cred)
364 p = &parent->rb_right;
365 else {
366 atomic_inc(&sp->so_count);
367 return sp;
368 }
369 }
370 nfs_alloc_unique_id(&clp->cl_openowner_id, &new->so_owner_id, 1, 64);
371 rb_link_node(&new->so_client_node, parent, p);
372 rb_insert_color(&new->so_client_node, &clp->cl_state_owners);
373 return new;
374}
375
376static void
377nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp)
378{
379 if (!RB_EMPTY_NODE(&sp->so_client_node))
380 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
381 nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id);
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
385 * nfs4_alloc_state_owner(): this is called on the OPEN or CREATE path to
386 * create a new state_owner.
387 *
388 */
389static struct nfs4_state_owner *
390nfs4_alloc_state_owner(void)
391{
392 struct nfs4_state_owner *sp;
393
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400394 sp = kzalloc(sizeof(*sp),GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!sp)
396 return NULL;
Trond Myklebustec073422005-10-20 14:22:47 -0700397 spin_lock_init(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 INIT_LIST_HEAD(&sp->so_states);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700399 rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue");
400 sp->so_seqid.sequence = &sp->so_sequence;
401 spin_lock_init(&sp->so_sequence.lock);
402 INIT_LIST_HEAD(&sp->so_sequence.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 atomic_set(&sp->so_count, 1);
404 return sp;
405}
406
Adrian Bunk1d2e88e2008-05-02 13:42:45 -0700407static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408nfs4_drop_state_owner(struct nfs4_state_owner *sp)
409{
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400410 if (!RB_EMPTY_NODE(&sp->so_client_node)) {
Trond Myklebust1f0e8902010-06-24 15:11:43 -0400411 struct nfs_client *clp = sp->so_server->nfs_client;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400412
413 spin_lock(&clp->cl_lock);
414 rb_erase(&sp->so_client_node, &clp->cl_state_owners);
415 RB_CLEAR_NODE(&sp->so_client_node);
416 spin_unlock(&clp->cl_lock);
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred)
421{
David Howells7539bba2006-08-22 20:06:09 -0400422 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct nfs4_state_owner *sp, *new;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 spin_lock(&clp->cl_lock);
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400426 sp = nfs4_find_state_owner(server, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 spin_unlock(&clp->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (sp != NULL)
429 return sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400430 new = nfs4_alloc_state_owner();
431 if (new == NULL)
432 return NULL;
Trond Myklebust6f2e64d2007-07-06 10:53:21 -0400433 new->so_server = server;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400434 new->so_cred = cred;
435 spin_lock(&clp->cl_lock);
436 sp = nfs4_insert_state_owner(clp, new);
437 spin_unlock(&clp->cl_lock);
438 if (sp == new)
439 get_rpccred(cred);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500440 else {
441 rpc_destroy_wait_queue(&new->so_sequence.wait);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400442 kfree(new);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500443 }
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400444 return sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447void nfs4_put_state_owner(struct nfs4_state_owner *sp)
448{
Trond Myklebust1f0e8902010-06-24 15:11:43 -0400449 struct nfs_client *clp = sp->so_server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct rpc_cred *cred = sp->so_cred;
451
452 if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
453 return;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400454 nfs4_remove_state_owner(clp, sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 spin_unlock(&clp->cl_lock);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500456 rpc_destroy_wait_queue(&sp->so_sequence.wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 put_rpccred(cred);
458 kfree(sp);
459}
460
461static struct nfs4_state *
462nfs4_alloc_open_state(void)
463{
464 struct nfs4_state *state;
465
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400466 state = kzalloc(sizeof(*state), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!state)
468 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 atomic_set(&state->count, 1);
470 INIT_LIST_HEAD(&state->lock_states);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000471 spin_lock_init(&state->state_lock);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400472 seqlock_init(&state->seqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return state;
474}
475
Trond Myklebust4cecb762005-11-04 15:32:58 -0500476void
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500477nfs4_state_set_mode_locked(struct nfs4_state *state, fmode_t fmode)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500478{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500479 if (state->state == fmode)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500480 return;
481 /* NB! List reordering - see the reclaim code for why. */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500482 if ((fmode & FMODE_WRITE) != (state->state & FMODE_WRITE)) {
483 if (fmode & FMODE_WRITE)
Trond Myklebust4cecb762005-11-04 15:32:58 -0500484 list_move(&state->open_states, &state->owner->so_states);
485 else
486 list_move_tail(&state->open_states, &state->owner->so_states);
487 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500488 state->state = fmode;
Trond Myklebust4cecb762005-11-04 15:32:58 -0500489}
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491static struct nfs4_state *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492__nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
493{
494 struct nfs_inode *nfsi = NFS_I(inode);
495 struct nfs4_state *state;
496
497 list_for_each_entry(state, &nfsi->open_states, inode_states) {
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400498 if (state->owner != owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 continue;
Trond Myklebust1c816ef2007-07-03 14:41:19 -0400500 if (atomic_inc_not_zero(&state->count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 return NULL;
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506static void
507nfs4_free_open_state(struct nfs4_state *state)
508{
509 kfree(state);
510}
511
512struct nfs4_state *
513nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
514{
515 struct nfs4_state *state, *new;
516 struct nfs_inode *nfsi = NFS_I(inode);
517
518 spin_lock(&inode->i_lock);
519 state = __nfs4_find_state_byowner(inode, owner);
520 spin_unlock(&inode->i_lock);
521 if (state)
522 goto out;
523 new = nfs4_alloc_open_state();
Trond Myklebustec073422005-10-20 14:22:47 -0700524 spin_lock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 spin_lock(&inode->i_lock);
526 state = __nfs4_find_state_byowner(inode, owner);
527 if (state == NULL && new != NULL) {
528 state = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 state->owner = owner;
530 atomic_inc(&owner->so_count);
531 list_add(&state->inode_states, &nfsi->open_states);
532 state->inode = igrab(inode);
533 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700534 /* Note: The reclaim code dictates that we add stateless
535 * and read-only stateids to the end of the list */
536 list_add_tail(&state->open_states, &owner->so_states);
537 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 } else {
539 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700540 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (new)
542 nfs4_free_open_state(new);
543 }
544out:
545 return state;
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548void nfs4_put_open_state(struct nfs4_state *state)
549{
550 struct inode *inode = state->inode;
551 struct nfs4_state_owner *owner = state->owner;
552
Trond Myklebustec073422005-10-20 14:22:47 -0700553 if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return;
Trond Myklebustec073422005-10-20 14:22:47 -0700555 spin_lock(&inode->i_lock);
Trond Myklebustba683032007-07-27 10:23:05 -0400556 list_del(&state->inode_states);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 list_del(&state->open_states);
Trond Myklebustec073422005-10-20 14:22:47 -0700558 spin_unlock(&inode->i_lock);
559 spin_unlock(&owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 nfs4_free_open_state(state);
562 nfs4_put_state_owner(owner);
563}
564
565/*
Trond Myklebust83c9d412005-10-18 14:20:13 -0700566 * Close the current file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400568static void __nfs4_close(struct path *path, struct nfs4_state *state,
569 fmode_t fmode, gfp_t gfp_mask, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct nfs4_state_owner *owner = state->owner;
Trond Myklebust003707c2007-07-05 18:07:55 -0400572 int call_close = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500573 fmode_t newstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 atomic_inc(&owner->so_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* Protect against nfs4_find_state() */
Trond Myklebustec073422005-10-20 14:22:47 -0700577 spin_lock(&owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500578 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100579 case FMODE_READ:
580 state->n_rdonly--;
581 break;
582 case FMODE_WRITE:
583 state->n_wronly--;
584 break;
585 case FMODE_READ|FMODE_WRITE:
586 state->n_rdwr--;
587 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400588 newstate = FMODE_READ|FMODE_WRITE;
Trond Myklebuste7616922006-01-03 09:55:13 +0100589 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400590 if (state->n_rdonly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100591 newstate &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -0400592 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
593 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
594 }
595 if (state->n_wronly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100596 newstate &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -0400597 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
598 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
599 }
600 if (newstate == 0)
601 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100602 }
Trond Myklebust003707c2007-07-05 18:07:55 -0400603 nfs4_state_set_mode_locked(state, newstate);
Trond Myklebustec073422005-10-20 14:22:47 -0700604 spin_unlock(&owner->so_lock);
Trond Myklebust4cecb762005-11-04 15:32:58 -0500605
Trond Myklebust003707c2007-07-05 18:07:55 -0400606 if (!call_close) {
Trond Myklebustb39e6252007-06-11 23:05:07 -0400607 nfs4_put_open_state(state);
608 nfs4_put_state_owner(owner);
Fred Isamanf7e89172011-01-06 11:36:32 +0000609 } else {
610 bool roc = pnfs_roc(state->inode);
611
612 nfs4_do_close(path, state, gfp_mask, wait, roc);
613 }
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400614}
615
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500616void nfs4_close_state(struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400617{
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400618 __nfs4_close(path, state, fmode, GFP_NOFS, 0);
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400619}
620
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500621void nfs4_close_sync(struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebusta49c3c72007-10-18 18:03:27 -0400622{
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400623 __nfs4_close(path, state, fmode, GFP_KERNEL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/*
627 * Search the state->lock_states for an existing lock_owner
628 * that is compatible with current->files
629 */
630static struct nfs4_lock_state *
Trond Myklebust77041ed2010-07-01 12:49:11 -0400631__nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 struct nfs4_lock_state *pos;
634 list_for_each_entry(pos, &state->lock_states, ls_locks) {
Trond Myklebust77041ed2010-07-01 12:49:11 -0400635 if (type != NFS4_ANY_LOCK_TYPE && pos->ls_owner.lo_type != type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 continue;
Trond Myklebust77041ed2010-07-01 12:49:11 -0400637 switch (pos->ls_owner.lo_type) {
638 case NFS4_POSIX_LOCK_TYPE:
639 if (pos->ls_owner.lo_u.posix_owner != fl_owner)
640 continue;
641 break;
642 case NFS4_FLOCK_LOCK_TYPE:
643 if (pos->ls_owner.lo_u.flock_owner != fl_pid)
644 continue;
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 atomic_inc(&pos->ls_count);
647 return pos;
648 }
649 return NULL;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652/*
653 * Return a compatible lock_state. If no initialized lock_state structure
654 * exists, return an uninitialized one.
655 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Trond Myklebust77041ed2010-07-01 12:49:11 -0400657static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 struct nfs4_lock_state *lsp;
Trond Myklebust1f0e8902010-06-24 15:11:43 -0400660 struct nfs_client *clp = state->owner->so_server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400662 lsp = kzalloc(sizeof(*lsp), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (lsp == NULL)
664 return NULL;
Trond Myklebustd0dc3702008-01-10 16:07:54 -0500665 rpc_init_wait_queue(&lsp->ls_sequence.wait, "lock_seqid_waitqueue");
666 spin_lock_init(&lsp->ls_sequence.lock);
667 INIT_LIST_HEAD(&lsp->ls_sequence.list);
668 lsp->ls_seqid.sequence = &lsp->ls_sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 atomic_set(&lsp->ls_count, 1);
Trond Myklebustb64aec82009-07-21 16:47:46 -0400670 lsp->ls_state = state;
Trond Myklebust77041ed2010-07-01 12:49:11 -0400671 lsp->ls_owner.lo_type = type;
672 switch (lsp->ls_owner.lo_type) {
673 case NFS4_FLOCK_LOCK_TYPE:
674 lsp->ls_owner.lo_u.flock_owner = fl_pid;
675 break;
676 case NFS4_POSIX_LOCK_TYPE:
677 lsp->ls_owner.lo_u.posix_owner = fl_owner;
678 break;
679 default:
680 kfree(lsp);
681 return NULL;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 spin_lock(&clp->cl_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400684 nfs_alloc_unique_id(&clp->cl_lockowner_id, &lsp->ls_id, 1, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 spin_unlock(&clp->cl_lock);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000686 INIT_LIST_HEAD(&lsp->ls_locks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return lsp;
688}
689
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400690static void nfs4_free_lock_state(struct nfs4_lock_state *lsp)
691{
Trond Myklebust1f0e8902010-06-24 15:11:43 -0400692 struct nfs_client *clp = lsp->ls_state->owner->so_server->nfs_client;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400693
694 spin_lock(&clp->cl_lock);
695 nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id);
696 spin_unlock(&clp->cl_lock);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500697 rpc_destroy_wait_queue(&lsp->ls_sequence.wait);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400698 kfree(lsp);
699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/*
702 * Return a compatible lock_state. If no initialized lock_state structure
703 * exists, return an uninitialized one.
704 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Trond Myklebust77041ed2010-07-01 12:49:11 -0400706static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner, pid_t pid, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000708 struct nfs4_lock_state *lsp, *new = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000710 for(;;) {
711 spin_lock(&state->state_lock);
Trond Myklebust77041ed2010-07-01 12:49:11 -0400712 lsp = __nfs4_find_lock_state(state, owner, pid, type);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000713 if (lsp != NULL)
714 break;
715 if (new != NULL) {
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000716 list_add(&new->ls_locks, &state->lock_states);
717 set_bit(LK_STATE_IN_USE, &state->flags);
718 lsp = new;
719 new = NULL;
720 break;
721 }
722 spin_unlock(&state->state_lock);
Trond Myklebust77041ed2010-07-01 12:49:11 -0400723 new = nfs4_alloc_lock_state(state, owner, pid, type);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000724 if (new == NULL)
725 return NULL;
726 }
727 spin_unlock(&state->state_lock);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400728 if (new != NULL)
729 nfs4_free_lock_state(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return lsp;
731}
732
733/*
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000734 * Release reference to lock_state, and free it if we see that
735 * it is no longer in use
736 */
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700737void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000738{
739 struct nfs4_state *state;
740
741 if (lsp == NULL)
742 return;
743 state = lsp->ls_state;
744 if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
745 return;
746 list_del(&lsp->ls_locks);
747 if (list_empty(&state->lock_states))
748 clear_bit(LK_STATE_IN_USE, &state->flags);
749 spin_unlock(&state->state_lock);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400750 if (lsp->ls_flags & NFS_LOCK_INITIALIZED)
751 nfs4_release_lockowner(lsp);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400752 nfs4_free_lock_state(lsp);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000753}
754
755static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
756{
757 struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
758
759 dst->fl_u.nfs4_fl.owner = lsp;
760 atomic_inc(&lsp->ls_count);
761}
762
763static void nfs4_fl_release_lock(struct file_lock *fl)
764{
765 nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
766}
767
Alexey Dobriyan6aed6282009-09-21 17:01:11 -0700768static const struct file_lock_operations nfs4_fl_lock_ops = {
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000769 .fl_copy_lock = nfs4_fl_copy_lock,
770 .fl_release_private = nfs4_fl_release_lock,
771};
772
773int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
774{
775 struct nfs4_lock_state *lsp;
776
777 if (fl->fl_ops != NULL)
778 return 0;
Trond Myklebust77041ed2010-07-01 12:49:11 -0400779 if (fl->fl_flags & FL_POSIX)
780 lsp = nfs4_get_lock_state(state, fl->fl_owner, 0, NFS4_POSIX_LOCK_TYPE);
781 else if (fl->fl_flags & FL_FLOCK)
782 lsp = nfs4_get_lock_state(state, 0, fl->fl_pid, NFS4_FLOCK_LOCK_TYPE);
783 else
784 return -EINVAL;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000785 if (lsp == NULL)
786 return -ENOMEM;
787 fl->fl_u.nfs4_fl.owner = lsp;
788 fl->fl_ops = &nfs4_fl_lock_ops;
789 return 0;
790}
791
792/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * Byte-range lock aware utility to initialize the stateid of read/write
794 * requests.
795 */
Trond Myklebust77041ed2010-07-01 12:49:11 -0400796void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner, pid_t fl_pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000798 struct nfs4_lock_state *lsp;
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400799 int seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400801 do {
802 seq = read_seqbegin(&state->seqlock);
803 memcpy(dst, &state->stateid, sizeof(*dst));
804 } while (read_seqretry(&state->seqlock, seq));
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000805 if (test_bit(LK_STATE_IN_USE, &state->flags) == 0)
806 return;
807
808 spin_lock(&state->state_lock);
Trond Myklebust77041ed2010-07-01 12:49:11 -0400809 lsp = __nfs4_find_lock_state(state, fl_owner, fl_pid, NFS4_ANY_LOCK_TYPE);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +0000810 if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
811 memcpy(dst, &lsp->ls_stateid, sizeof(*dst));
812 spin_unlock(&state->state_lock);
813 nfs4_put_lock_state(lsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400816struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700818 struct nfs_seqid *new;
819
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400820 new = kmalloc(sizeof(*new), gfp_mask);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700821 if (new != NULL) {
822 new->sequence = counter;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500823 INIT_LIST_HEAD(&new->list);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700824 }
825 return new;
826}
827
Trond Myklebust72211db2009-12-15 14:47:36 -0500828void nfs_release_seqid(struct nfs_seqid *seqid)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700829{
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500830 if (!list_empty(&seqid->list)) {
831 struct rpc_sequence *sequence = seqid->sequence->sequence;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700832
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500833 spin_lock(&sequence->lock);
Trond Myklebust72211db2009-12-15 14:47:36 -0500834 list_del_init(&seqid->list);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500835 spin_unlock(&sequence->lock);
836 rpc_wake_up(&sequence->wait);
837 }
Trond Myklebust72211db2009-12-15 14:47:36 -0500838}
839
840void nfs_free_seqid(struct nfs_seqid *seqid)
841{
842 nfs_release_seqid(seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700843 kfree(seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700847 * Increment the seqid if the OPEN/OPEN_DOWNGRADE/CLOSE succeeded, or
848 * failed with a seqid incrementing error -
849 * see comments nfs_fs.h:seqid_mutating_error()
850 */
Trond Myklebust88d90932007-07-02 14:03:03 -0400851static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500853 BUG_ON(list_first_entry(&seqid->sequence->sequence->list, struct nfs_seqid, list) != seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700854 switch (status) {
855 case 0:
856 break;
857 case -NFS4ERR_BAD_SEQID:
Trond Myklebust6f43ddc2007-07-08 16:49:11 -0400858 if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
859 return;
860 printk(KERN_WARNING "NFS: v4 server returned a bad"
Dan Muntz497799e2008-02-13 13:09:35 -0800861 " sequence-id error on an"
862 " unconfirmed sequence %p!\n",
Trond Myklebust6f43ddc2007-07-08 16:49:11 -0400863 seqid->sequence);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700864 case -NFS4ERR_STALE_CLIENTID:
865 case -NFS4ERR_STALE_STATEID:
866 case -NFS4ERR_BAD_STATEID:
867 case -NFS4ERR_BADXDR:
868 case -NFS4ERR_RESOURCE:
869 case -NFS4ERR_NOFILEHANDLE:
870 /* Non-seqid mutating errors */
871 return;
872 };
873 /*
874 * Note: no locking needed as we are guaranteed to be first
875 * on the sequence list
876 */
877 seqid->sequence->counter++;
878}
879
880void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
881{
Benny Halevy34dc1ad2009-04-01 09:22:52 -0400882 struct nfs4_state_owner *sp = container_of(seqid->sequence,
883 struct nfs4_state_owner, so_seqid);
884 struct nfs_server *server = sp->so_server;
885
886 if (status == -NFS4ERR_BAD_SEQID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 nfs4_drop_state_owner(sp);
Benny Halevy34dc1ad2009-04-01 09:22:52 -0400888 if (!nfs4_has_session(server->nfs_client))
889 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700890}
891
892/*
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700893 * Increment the seqid if the LOCK/LOCKU succeeded, or
894 * failed with a seqid incrementing error -
895 * see comments nfs_fs.h:seqid_mutating_error()
896 */
897void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid)
898{
Trond Myklebust88d90932007-07-02 14:03:03 -0400899 nfs_increment_seqid(status, seqid);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700900}
901
902int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
903{
904 struct rpc_sequence *sequence = seqid->sequence->sequence;
905 int status = 0;
906
907 spin_lock(&sequence->lock);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500908 if (list_empty(&seqid->list))
909 list_add_tail(&seqid->list, &sequence->list);
910 if (list_first_entry(&sequence->list, struct nfs_seqid, list) == seqid)
911 goto unlock;
Trond Myklebust5d008372008-02-22 16:34:17 -0500912 rpc_sleep_on(&sequence->wait, task, NULL);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -0500913 status = -EAGAIN;
914unlock:
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700915 spin_unlock(&sequence->lock);
916 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Trond Myklebuste005e802008-12-23 15:21:48 -0500919static int nfs4_run_state_manager(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Trond Myklebuste005e802008-12-23 15:21:48 -0500921static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
Trond Myklebust433fbe42006-01-03 09:55:22 +0100922{
923 smp_mb__before_clear_bit();
Trond Myklebuste005e802008-12-23 15:21:48 -0500924 clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
Trond Myklebust433fbe42006-01-03 09:55:22 +0100925 smp_mb__after_clear_bit();
Trond Myklebuste005e802008-12-23 15:21:48 -0500926 wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
Trond Myklebust433fbe42006-01-03 09:55:22 +0100927 rpc_wake_up(&clp->cl_rpcwaitq);
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
Trond Myklebuste005e802008-12-23 15:21:48 -0500931 * Schedule the nfs_client asynchronous state management routine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500933void nfs4_schedule_state_manager(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Trond Myklebust5043e902006-01-03 09:55:23 +0100935 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Trond Myklebuste005e802008-12-23 15:21:48 -0500937 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
938 return;
Trond Myklebust5043e902006-01-03 09:55:23 +0100939 __module_get(THIS_MODULE);
940 atomic_inc(&clp->cl_count);
Trond Myklebuste005e802008-12-23 15:21:48 -0500941 task = kthread_run(nfs4_run_state_manager, clp, "%s-manager",
Chuck Lever5d8515c2007-12-10 14:57:16 -0500942 rpc_peeraddr2str(clp->cl_rpcclient,
943 RPC_DISPLAY_ADDR));
Trond Myklebust5043e902006-01-03 09:55:23 +0100944 if (!IS_ERR(task))
945 return;
Trond Myklebuste005e802008-12-23 15:21:48 -0500946 nfs4_clear_state_manager_bit(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400947 nfs_put_client(clp);
Trond Myklebust5043e902006-01-03 09:55:23 +0100948 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951/*
952 * Schedule a state recovery attempt
953 */
David Howellsadfa6f92006-08-22 20:06:08 -0400954void nfs4_schedule_state_recovery(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 if (!clp)
957 return;
Trond Myklebuste598d842008-12-23 15:21:42 -0500958 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
959 set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
Trond Myklebuste005e802008-12-23 15:21:48 -0500960 nfs4_schedule_state_manager(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500963int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500964{
965
966 set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
967 /* Don't recover state that expired before the reboot */
968 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
969 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
970 return 0;
971 }
Trond Myklebust7eff03a2008-12-23 15:21:43 -0500972 set_bit(NFS_OWNER_RECLAIM_REBOOT, &state->owner->so_flags);
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500973 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
974 return 1;
975}
976
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500977int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500978{
979 set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
980 clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
Trond Myklebust7eff03a2008-12-23 15:21:43 -0500981 set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
Trond Myklebustb79a4a12008-12-23 15:21:41 -0500982 set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
983 return 1;
984}
985
Trond Myklebust02860012008-12-23 15:21:40 -0500986static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct inode *inode = state->inode;
Trond Myklebust19e03c52008-12-23 15:21:44 -0500989 struct nfs_inode *nfsi = NFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 struct file_lock *fl;
991 int status = 0;
992
Trond Myklebust3f09df72009-06-17 13:23:00 -0700993 if (inode->i_flock == NULL)
994 return 0;
995
996 /* Guard against delegation returns and new lock/unlock calls */
Trond Myklebust19e03c52008-12-23 15:21:44 -0500997 down_write(&nfsi->rwsem);
Trond Myklebust3f09df72009-06-17 13:23:00 -0700998 /* Protect inode->i_flock using the BKL */
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200999 lock_flocks();
Harvey Harrison90dc7d22008-02-20 13:03:05 -08001000 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
Trond Myklebust43b2a332005-11-04 15:35:30 -05001001 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 continue;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001003 if (nfs_file_open_context(fl->fl_file)->state != state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 continue;
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001005 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 status = ops->recover_lock(state, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 switch (status) {
Trond Myklebust965b5d62009-06-17 13:22:59 -07001008 case 0:
1009 break;
1010 case -ESTALE:
1011 case -NFS4ERR_ADMIN_REVOKED:
1012 case -NFS4ERR_STALE_STATEID:
1013 case -NFS4ERR_BAD_STATEID:
1014 case -NFS4ERR_EXPIRED:
1015 case -NFS4ERR_NO_GRACE:
1016 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust9c4c7612009-12-03 15:58:56 -05001017 case -NFS4ERR_BADSESSION:
1018 case -NFS4ERR_BADSLOT:
1019 case -NFS4ERR_BAD_HIGH_SLOT:
1020 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 default:
1023 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001024 __func__, status);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001025 case -ENOMEM:
1026 case -NFS4ERR_DENIED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 case -NFS4ERR_RECLAIM_BAD:
1028 case -NFS4ERR_RECLAIM_CONFLICT:
Trond Myklebust43b2a332005-11-04 15:35:30 -05001029 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
Trond Myklebust965b5d62009-06-17 13:22:59 -07001030 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001032 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001034 unlock_flocks();
Trond Myklebust965b5d62009-06-17 13:22:59 -07001035out:
Trond Myklebust19e03c52008-12-23 15:21:44 -05001036 up_write(&nfsi->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return status;
1038}
1039
Trond Myklebust02860012008-12-23 15:21:40 -05001040static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 struct nfs4_state *state;
1043 struct nfs4_lock_state *lock;
1044 int status = 0;
1045
1046 /* Note: we rely on the sp->so_states list being ordered
1047 * so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
1048 * states first.
1049 * This is needed to ensure that the server won't give us any
1050 * read delegations that we have to return if, say, we are
1051 * recovering after a network partition or a reboot from a
1052 * server that doesn't support a grace period.
1053 */
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001054restart:
1055 spin_lock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 list_for_each_entry(state, &sp->so_states, open_states) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001057 if (!test_and_clear_bit(ops->state_flag_bit, &state->flags))
1058 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (state->state == 0)
1060 continue;
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001061 atomic_inc(&state->count);
1062 spin_unlock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 status = ops->recover_open(sp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (status >= 0) {
Trond Myklebust02860012008-12-23 15:21:40 -05001065 status = nfs4_reclaim_locks(state, ops);
1066 if (status >= 0) {
1067 list_for_each_entry(lock, &state->lock_states, ls_locks) {
1068 if (!(lock->ls_flags & NFS_LOCK_INITIALIZED))
1069 printk("%s: Lock reclaim failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001070 __func__);
Trond Myklebust02860012008-12-23 15:21:40 -05001071 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001072 nfs4_put_open_state(state);
1073 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076 switch (status) {
1077 default:
1078 printk(KERN_ERR "%s: unhandled error %d. Zeroing state\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001079 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 case -ENOENT:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001081 case -ENOMEM:
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001082 case -ESTALE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /*
1084 * Open state on this file cannot be recovered
1085 * All we can do is revert to using the zero stateid.
1086 */
1087 memset(state->stateid.data, 0,
1088 sizeof(state->stateid.data));
1089 /* Mark the file as being 'closed' */
1090 state->state = 0;
1091 break;
Trond Myklebust168667c2010-10-19 19:47:49 -04001092 case -EKEYEXPIRED:
1093 /*
1094 * User RPCSEC_GSS context has expired.
1095 * We cannot recover this stateid now, so
1096 * skip it and allow recovery thread to
1097 * proceed.
1098 */
1099 break;
Trond Myklebust965b5d62009-06-17 13:22:59 -07001100 case -NFS4ERR_ADMIN_REVOKED:
1101 case -NFS4ERR_STALE_STATEID:
1102 case -NFS4ERR_BAD_STATEID:
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001103 case -NFS4ERR_RECLAIM_BAD:
1104 case -NFS4ERR_RECLAIM_CONFLICT:
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001105 nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 case -NFS4ERR_EXPIRED:
1108 case -NFS4ERR_NO_GRACE:
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001109 nfs4_state_mark_reclaim_nograce(sp->so_server->nfs_client, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust9c4c7612009-12-03 15:58:56 -05001111 case -NFS4ERR_BADSESSION:
1112 case -NFS4ERR_BADSLOT:
1113 case -NFS4ERR_BAD_HIGH_SLOT:
1114 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 goto out_err;
1116 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001117 nfs4_put_open_state(state);
1118 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001120 spin_unlock(&sp->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 0;
1122out_err:
Trond Myklebustfe1d8192008-12-23 15:21:43 -05001123 nfs4_put_open_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return status;
1125}
1126
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001127static void nfs4_clear_open_state(struct nfs4_state *state)
1128{
1129 struct nfs4_lock_state *lock;
1130
1131 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1132 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1133 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1134 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1135 list_for_each_entry(lock, &state->lock_states, ls_locks) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001136 lock->ls_seqid.flags = 0;
1137 lock->ls_flags &= ~NFS_LOCK_INITIALIZED;
1138 }
1139}
1140
1141static void nfs4_state_mark_reclaim_helper(struct nfs_client *clp, int (*mark_reclaim)(struct nfs_client *clp, struct nfs4_state *state))
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001142{
1143 struct nfs4_state_owner *sp;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001144 struct rb_node *pos;
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001145 struct nfs4_state *state;
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001146
1147 /* Reset all sequence ids to zero */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001148 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1149 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001150 sp->so_seqid.flags = 0;
Trond Myklebustec073422005-10-20 14:22:47 -07001151 spin_lock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001152 list_for_each_entry(state, &sp->so_states, open_states) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001153 if (mark_reclaim(clp, state))
1154 nfs4_clear_open_state(state);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001155 }
Trond Myklebustec073422005-10-20 14:22:47 -07001156 spin_unlock(&sp->so_lock);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001157 }
1158}
1159
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001160static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
1161{
1162 /* Mark all delegations for reclaim */
1163 nfs_delegation_mark_reclaim(clp);
1164 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
1165}
1166
Ricardo Labiagafce5c832009-12-05 16:08:41 -05001167static void nfs4_reclaim_complete(struct nfs_client *clp,
1168 const struct nfs4_state_recovery_ops *ops)
1169{
1170 /* Notify the server we're done reclaiming our state */
1171 if (ops->reclaim_complete)
1172 (void)ops->reclaim_complete(clp);
1173}
1174
Trond Myklebust6eaa6142010-10-04 17:59:08 -04001175static int nfs4_state_clear_reclaim_reboot(struct nfs_client *clp)
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001176{
1177 struct nfs4_state_owner *sp;
1178 struct rb_node *pos;
1179 struct nfs4_state *state;
1180
1181 if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
Trond Myklebust6eaa6142010-10-04 17:59:08 -04001182 return 0;
Ricardo Labiaga7cab89b2009-12-08 14:35:28 -05001183
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001184 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1185 sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
1186 spin_lock(&sp->so_lock);
1187 list_for_each_entry(state, &sp->so_states, open_states) {
1188 if (!test_and_clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags))
1189 continue;
1190 nfs4_state_mark_reclaim_nograce(clp, state);
1191 }
1192 spin_unlock(&sp->so_lock);
1193 }
1194
1195 nfs_delegation_reap_unclaimed(clp);
Trond Myklebust6eaa6142010-10-04 17:59:08 -04001196 return 1;
1197}
1198
1199static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
1200{
1201 if (!nfs4_state_clear_reclaim_reboot(clp))
1202 return;
1203 nfs4_reclaim_complete(clp, clp->cl_mvops->reboot_recovery_ops);
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001204}
1205
1206static void nfs_delegation_clear_all(struct nfs_client *clp)
1207{
1208 nfs_delegation_mark_reclaim(clp);
1209 nfs_delegation_reap_unclaimed(clp);
1210}
1211
1212static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
1213{
1214 nfs_delegation_clear_all(clp);
1215 nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
1216}
1217
Trond Myklebust168667c2010-10-19 19:47:49 -04001218static void nfs4_warn_keyexpired(const char *s)
1219{
1220 printk_ratelimited(KERN_WARNING "Error: state manager"
1221 " encountered RPCSEC_GSS session"
1222 " expired against NFSv4 server %s.\n",
1223 s);
1224}
1225
Trond Myklebust4f7cdf12009-12-03 15:53:20 -05001226static int nfs4_recovery_handle_error(struct nfs_client *clp, int error)
Trond Myklebuste598d842008-12-23 15:21:42 -05001227{
1228 switch (error) {
1229 case -NFS4ERR_CB_PATH_DOWN:
Trond Myklebust707fb4b2008-12-23 15:21:47 -05001230 nfs_handle_cb_pathdown(clp);
Trond Myklebust4f7cdf12009-12-03 15:53:20 -05001231 return 0;
Trond Myklebustc8b7ae3d2009-12-03 15:53:21 -05001232 case -NFS4ERR_NO_GRACE:
1233 nfs4_state_end_reclaim_reboot(clp);
1234 return 0;
Trond Myklebuste598d842008-12-23 15:21:42 -05001235 case -NFS4ERR_STALE_CLIENTID:
1236 case -NFS4ERR_LEASE_MOVED:
1237 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Trond Myklebust6eaa6142010-10-04 17:59:08 -04001238 nfs4_state_clear_reclaim_reboot(clp);
Trond Myklebuste598d842008-12-23 15:21:42 -05001239 nfs4_state_start_reclaim_reboot(clp);
1240 break;
1241 case -NFS4ERR_EXPIRED:
1242 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1243 nfs4_state_start_reclaim_nograce(clp);
Andy Adamson8ba9bf82009-12-04 15:55:34 -05001244 break;
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001245 case -NFS4ERR_BADSESSION:
1246 case -NFS4ERR_BADSLOT:
1247 case -NFS4ERR_BAD_HIGH_SLOT:
1248 case -NFS4ERR_DEADSESSION:
1249 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1250 case -NFS4ERR_SEQ_FALSE_RETRY:
1251 case -NFS4ERR_SEQ_MISORDERED:
Andy Adamson6df08182009-12-04 15:55:05 -05001252 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
Andy Adamson0b9e2d42009-12-04 16:02:14 -05001253 /* Zero session reset errors */
1254 return 0;
Trond Myklebust168667c2010-10-19 19:47:49 -04001255 case -EKEYEXPIRED:
1256 /* Nothing we can do */
1257 nfs4_warn_keyexpired(clp->cl_hostname);
1258 return 0;
Trond Myklebuste598d842008-12-23 15:21:42 -05001259 }
Trond Myklebust4f7cdf12009-12-03 15:53:20 -05001260 return error;
Trond Myklebuste598d842008-12-23 15:21:42 -05001261}
1262
Trond Myklebust02860012008-12-23 15:21:40 -05001263static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001265 struct rb_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 int status = 0;
1267
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001268restart:
1269 spin_lock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001270 for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
1271 struct nfs4_state_owner *sp = rb_entry(pos, struct nfs4_state_owner, so_client_node);
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001272 if (!test_and_clear_bit(ops->owner_flag_bit, &sp->so_flags))
1273 continue;
1274 atomic_inc(&sp->so_count);
1275 spin_unlock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001276 status = nfs4_reclaim_open_state(sp, ops);
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001277 if (status < 0) {
1278 set_bit(ops->owner_flag_bit, &sp->so_flags);
1279 nfs4_put_state_owner(sp);
Trond Myklebust4f7cdf12009-12-03 15:53:20 -05001280 return nfs4_recovery_handle_error(clp, status);
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001281 }
1282 nfs4_put_state_owner(sp);
1283 goto restart;
Trond Myklebust02860012008-12-23 15:21:40 -05001284 }
Trond Myklebust7eff03a2008-12-23 15:21:43 -05001285 spin_unlock(&clp->cl_lock);
Trond Myklebust02860012008-12-23 15:21:40 -05001286 return status;
1287}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Trond Myklebust02860012008-12-23 15:21:40 -05001289static int nfs4_check_lease(struct nfs_client *clp)
1290{
1291 struct rpc_cred *cred;
Trond Myklebustc48f4f32010-06-16 09:52:27 -04001292 const struct nfs4_state_maintenance_ops *ops =
1293 clp->cl_mvops->state_renewal_ops;
Trond Myklebust02860012008-12-23 15:21:40 -05001294 int status = -NFS4ERR_EXPIRED;
1295
Trond Myklebust0f605b52008-12-23 15:21:42 -05001296 /* Is the client already known to have an expired lease? */
1297 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1298 return 0;
Andy Adamsona7b72102009-04-01 09:22:46 -04001299 spin_lock(&clp->cl_lock);
1300 cred = ops->get_state_renewal_cred_locked(clp);
1301 spin_unlock(&clp->cl_lock);
Trond Myklebust0f605b52008-12-23 15:21:42 -05001302 if (cred == NULL) {
1303 cred = nfs4_get_setclientid_cred(clp);
1304 if (cred == NULL)
1305 goto out;
Trond Myklebust02860012008-12-23 15:21:40 -05001306 }
Benny Halevy8e69514f2009-04-01 09:22:45 -04001307 status = ops->renew_lease(clp, cred);
Trond Myklebust0f605b52008-12-23 15:21:42 -05001308 put_rpccred(cred);
1309out:
Trond Myklebust4f7cdf12009-12-03 15:53:20 -05001310 return nfs4_recovery_handle_error(clp, status);
Trond Myklebust02860012008-12-23 15:21:40 -05001311}
1312
1313static int nfs4_reclaim_lease(struct nfs_client *clp)
1314{
1315 struct rpc_cred *cred;
Trond Myklebustc48f4f32010-06-16 09:52:27 -04001316 const struct nfs4_state_recovery_ops *ops =
1317 clp->cl_mvops->reboot_recovery_ops;
Trond Myklebust02860012008-12-23 15:21:40 -05001318 int status = -ENOENT;
1319
Andy Adamson90a16612009-04-01 09:22:48 -04001320 cred = ops->get_clid_cred(clp);
Trond Myklebust02860012008-12-23 15:21:40 -05001321 if (cred != NULL) {
Andy Adamson591d71c2009-04-01 09:22:47 -04001322 status = ops->establish_clid(clp, cred);
Trond Myklebust02860012008-12-23 15:21:40 -05001323 put_rpccred(cred);
1324 /* Handle case where the user hasn't set up machine creds */
1325 if (status == -EACCES && cred == clp->cl_machine_cred) {
1326 nfs4_clear_machine_cred(clp);
1327 status = -EAGAIN;
1328 }
Benny Halevyc2e713d2009-04-01 09:21:51 -04001329 if (status == -NFS4ERR_MINOR_VERS_MISMATCH)
1330 status = -EPROTONOSUPPORT;
Trond Myklebust02860012008-12-23 15:21:40 -05001331 }
1332 return status;
1333}
1334
Andy Adamson76db6d92009-04-01 09:22:38 -04001335#ifdef CONFIG_NFS_V4_1
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001336void nfs41_handle_recall_slot(struct nfs_client *clp)
1337{
1338 set_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state);
1339 nfs4_schedule_state_recovery(clp);
1340}
1341
Trond Myklebust0f79fd62010-03-02 13:06:21 -05001342static void nfs4_reset_all_state(struct nfs_client *clp)
1343{
1344 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
1345 clp->cl_boot_time = CURRENT_TIME;
1346 nfs4_state_start_reclaim_nograce(clp);
1347 nfs4_schedule_state_recovery(clp);
1348 }
1349}
1350
1351static void nfs41_handle_server_reboot(struct nfs_client *clp)
1352{
1353 if (test_and_set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) {
1354 nfs4_state_start_reclaim_reboot(clp);
1355 nfs4_schedule_state_recovery(clp);
1356 }
1357}
1358
1359static void nfs41_handle_state_revoked(struct nfs_client *clp)
1360{
1361 /* Temporary */
1362 nfs4_reset_all_state(clp);
1363}
1364
1365static void nfs41_handle_recallable_state_revoked(struct nfs_client *clp)
1366{
1367 /* This will need to handle layouts too */
1368 nfs_expire_all_delegations(clp);
1369}
1370
1371static void nfs41_handle_cb_path_down(struct nfs_client *clp)
1372{
1373 nfs_expire_all_delegations(clp);
1374 if (test_and_set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state) == 0)
1375 nfs4_schedule_state_recovery(clp);
1376}
1377
Alexandros Batsakis0629e372009-12-05 13:46:14 -05001378void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags)
1379{
1380 if (!flags)
1381 return;
Trond Myklebust0f79fd62010-03-02 13:06:21 -05001382 else if (flags & SEQ4_STATUS_RESTART_RECLAIM_NEEDED)
1383 nfs41_handle_server_reboot(clp);
1384 else if (flags & (SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED |
Alexandros Batsakis0629e372009-12-05 13:46:14 -05001385 SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED |
1386 SEQ4_STATUS_ADMIN_STATE_REVOKED |
Trond Myklebust0f79fd62010-03-02 13:06:21 -05001387 SEQ4_STATUS_LEASE_MOVED))
1388 nfs41_handle_state_revoked(clp);
1389 else if (flags & SEQ4_STATUS_RECALLABLE_STATE_REVOKED)
1390 nfs41_handle_recallable_state_revoked(clp);
1391 else if (flags & (SEQ4_STATUS_CB_PATH_DOWN |
Alexandros Batsakis0629e372009-12-05 13:46:14 -05001392 SEQ4_STATUS_BACKCHANNEL_FAULT |
1393 SEQ4_STATUS_CB_PATH_DOWN_SESSION))
Trond Myklebust0f79fd62010-03-02 13:06:21 -05001394 nfs41_handle_cb_path_down(clp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05001395}
1396
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001397static int nfs4_reset_session(struct nfs_client *clp)
1398{
1399 int status;
1400
Trond Myklebust38045412009-12-15 17:36:57 -05001401 nfs4_begin_drain_session(clp);
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001402 status = nfs4_proc_destroy_session(clp->cl_session);
1403 if (status && status != -NFS4ERR_BADSESSION &&
1404 status != -NFS4ERR_DEADSESSION) {
Ricardo Labiagaf4558482009-12-07 09:16:09 -05001405 status = nfs4_recovery_handle_error(clp, status);
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001406 goto out;
1407 }
1408
1409 memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
Trond Myklebustf26468f2009-12-05 19:32:11 -05001410 status = nfs4_proc_create_session(clp);
Andy Adamson41f54a52010-01-21 14:54:13 -05001411 if (status) {
Ricardo Labiagaf4558482009-12-07 09:16:09 -05001412 status = nfs4_recovery_handle_error(clp, status);
Andy Adamson41f54a52010-01-21 14:54:13 -05001413 goto out;
1414 }
1415 /* create_session negotiated new slot table */
1416 clear_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state);
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05001417
Andy Adamson41f54a52010-01-21 14:54:13 -05001418 /* Let the state manager reestablish state */
1419 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
Alexandros Batsakis5601a002009-12-14 21:27:58 -08001420 nfs41_setup_state_renewal(clp);
Andy Adamson41f54a52010-01-21 14:54:13 -05001421out:
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001422 return status;
1423}
Andy Adamson76db6d92009-04-01 09:22:38 -04001424
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001425static int nfs4_recall_slot(struct nfs_client *clp)
1426{
1427 struct nfs4_slot_table *fc_tbl = &clp->cl_session->fc_slot_table;
1428 struct nfs4_channel_attrs *fc_attrs = &clp->cl_session->fc_attrs;
1429 struct nfs4_slot *new, *old;
1430 int i;
1431
1432 nfs4_begin_drain_session(clp);
1433 new = kmalloc(fc_tbl->target_max_slots * sizeof(struct nfs4_slot),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001434 GFP_NOFS);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001435 if (!new)
1436 return -ENOMEM;
1437
1438 spin_lock(&fc_tbl->slot_tbl_lock);
1439 for (i = 0; i < fc_tbl->target_max_slots; i++)
1440 new[i].seq_nr = fc_tbl->slots[i].seq_nr;
1441 old = fc_tbl->slots;
1442 fc_tbl->slots = new;
1443 fc_tbl->max_slots = fc_tbl->target_max_slots;
1444 fc_tbl->target_max_slots = 0;
1445 fc_attrs->max_reqs = fc_tbl->max_slots;
1446 spin_unlock(&fc_tbl->slot_tbl_lock);
1447
1448 kfree(old);
1449 nfs4_end_drain_session(clp);
1450 return 0;
1451}
1452
Andy Adamson76db6d92009-04-01 09:22:38 -04001453#else /* CONFIG_NFS_V4_1 */
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001454static int nfs4_reset_session(struct nfs_client *clp) { return 0; }
Alexandros Batsakis5601a002009-12-14 21:27:58 -08001455static int nfs4_end_drain_session(struct nfs_client *clp) { return 0; }
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001456static int nfs4_recall_slot(struct nfs_client *clp) { return 0; }
Andy Adamson76db6d92009-04-01 09:22:38 -04001457#endif /* CONFIG_NFS_V4_1 */
1458
Andy Adamson78722e92009-06-16 14:43:15 -04001459/* Set NFS4CLNT_LEASE_EXPIRED for all v4.0 errors and for recoverable errors
1460 * on EXCHANGE_ID for v4.1
1461 */
1462static void nfs4_set_lease_expired(struct nfs_client *clp, int status)
1463{
1464 if (nfs4_has_session(clp)) {
1465 switch (status) {
1466 case -NFS4ERR_DELAY:
1467 case -NFS4ERR_CLID_INUSE:
1468 case -EAGAIN:
1469 break;
1470
Trond Myklebust168667c2010-10-19 19:47:49 -04001471 case -EKEYEXPIRED:
1472 nfs4_warn_keyexpired(clp->cl_hostname);
Andy Adamson78722e92009-06-16 14:43:15 -04001473 case -NFS4ERR_NOT_SAME: /* FixMe: implement recovery
1474 * in nfs4_exchange_id */
1475 default:
1476 return;
1477 }
1478 }
1479 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
1480}
1481
Trond Myklebuste005e802008-12-23 15:21:48 -05001482static void nfs4_state_manager(struct nfs_client *clp)
Trond Myklebust02860012008-12-23 15:21:40 -05001483{
Trond Myklebust02860012008-12-23 15:21:40 -05001484 int status = 0;
1485
Trond Myklebust02860012008-12-23 15:21:40 -05001486 /* Ensure exclusive access to NFSv4 state */
Trond Myklebustf3c76492008-12-23 15:21:48 -05001487 for(;;) {
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001488 if (test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) {
1489 /* We're going to have to re-establish a clientid */
1490 status = nfs4_reclaim_lease(clp);
1491 if (status) {
Andy Adamson78722e92009-06-16 14:43:15 -04001492 nfs4_set_lease_expired(clp, status);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001493 if (test_bit(NFS4CLNT_LEASE_EXPIRED,
1494 &clp->cl_state))
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001495 continue;
Andy Adamson76db6d92009-04-01 09:22:38 -04001496 if (clp->cl_cons_state ==
1497 NFS_CS_SESSION_INITING)
1498 nfs_mark_client_ready(clp, status);
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001499 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Trond Myklebuste598d842008-12-23 15:21:42 -05001501 clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
Ricardo Labiaga7cab89b2009-12-08 14:35:28 -05001502 set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state);
Andy Adamson974cec82010-10-20 00:18:02 -04001503 pnfs_destroy_all_layouts(clp);
Trond Myklebuste598d842008-12-23 15:21:42 -05001504 }
1505
1506 if (test_and_clear_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state)) {
1507 status = nfs4_check_lease(clp);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001508 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
Trond Myklebuste598d842008-12-23 15:21:42 -05001509 continue;
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001510 if (status < 0 && status != -NFS4ERR_CB_PATH_DOWN)
1511 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001513
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001514 /* Initialize or reset the session */
Andy Adamson6df08182009-12-04 15:55:05 -05001515 if (test_and_clear_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state)
Trond Myklebust7111dc72009-08-24 19:21:29 -04001516 && nfs4_has_session(clp)) {
Andy Adamson4d643d12009-12-04 15:52:24 -05001517 status = nfs4_reset_session(clp);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001518 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
1519 continue;
1520 if (status < 0)
Andy Adamson76db6d92009-04-01 09:22:38 -04001521 goto out_error;
Andy Adamson76db6d92009-04-01 09:22:38 -04001522 }
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001523
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001524 /* First recover reboot state... */
Trond Myklebuste345e882009-12-03 15:52:41 -05001525 if (test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state)) {
Andy Adamson591d71c2009-04-01 09:22:47 -04001526 status = nfs4_do_reclaim(clp,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04001527 clp->cl_mvops->reboot_recovery_ops);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001528 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) ||
Andy Adamson6df08182009-12-04 15:55:05 -05001529 test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state))
Andy Adamsonc3fad1b2009-04-01 09:22:39 -04001530 continue;
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001531 nfs4_state_end_reclaim_reboot(clp);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001532 if (test_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state))
1533 continue;
1534 if (status < 0)
1535 goto out_error;
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001536 }
1537
1538 /* Now recover expired state... */
1539 if (test_and_clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state)) {
Andy Adamson591d71c2009-04-01 09:22:47 -04001540 status = nfs4_do_reclaim(clp,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04001541 clp->cl_mvops->nograce_recovery_ops);
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001542 if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) ||
Andy Adamson6df08182009-12-04 15:55:05 -05001543 test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state) ||
Trond Myklebustb6d408b2009-12-03 15:53:22 -05001544 test_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
1545 continue;
1546 if (status < 0)
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001547 goto out_error;
Trond Myklebustb79a4a12008-12-23 15:21:41 -05001548 }
Trond Myklebust707fb4b2008-12-23 15:21:47 -05001549
Alexandros Batsakis5601a002009-12-14 21:27:58 -08001550 nfs4_end_drain_session(clp);
Trond Myklebust707fb4b2008-12-23 15:21:47 -05001551 if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
1552 nfs_client_return_marked_delegations(clp);
1553 continue;
1554 }
Andy Adamsonb9efa1b2010-01-20 16:06:27 -05001555 /* Recall session slots */
1556 if (test_and_clear_bit(NFS4CLNT_RECALL_SLOT, &clp->cl_state)
1557 && nfs4_has_session(clp)) {
1558 status = nfs4_recall_slot(clp);
1559 if (status < 0)
1560 goto out_error;
1561 continue;
1562 }
1563
Trond Myklebuste005e802008-12-23 15:21:48 -05001564
1565 nfs4_clear_state_manager_bit(clp);
Trond Myklebustf3c76492008-12-23 15:21:48 -05001566 /* Did we race with an attempt to give us more work? */
1567 if (clp->cl_state == 0)
1568 break;
1569 if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
1570 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Trond Myklebuste005e802008-12-23 15:21:48 -05001572 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573out_error:
Trond Myklebuste005e802008-12-23 15:21:48 -05001574 printk(KERN_WARNING "Error: state manager failed on NFSv4 server %s"
Chuck Lever5d8515c2007-12-10 14:57:16 -05001575 " with error %d\n", clp->cl_hostname, -status);
Alexandros Batsakis5601a002009-12-14 21:27:58 -08001576 nfs4_end_drain_session(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05001577 nfs4_clear_state_manager_bit(clp);
1578}
1579
1580static int nfs4_run_state_manager(void *ptr)
1581{
1582 struct nfs_client *clp = ptr;
1583
1584 allow_signal(SIGKILL);
1585 nfs4_state_manager(clp);
1586 nfs_put_client(clp);
1587 module_put_and_exit(0);
1588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
1591/*
1592 * Local variables:
1593 * c-basic-offset: 8
1594 * End:
1595 */