blob: 1fd62fc49be36310b45e54028f69905b4e4f0237 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/delegation.c
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFS file delegation management
7 *
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/completion.h>
Trond Myklebust58d9714a2006-01-03 09:55:24 +010010#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/spinlock.h>
15
16#include <linux/nfs4.h>
17#include <linux/nfs_fs.h>
18#include <linux/nfs_xdr.h>
19
Trond Myklebust4ce79712005-06-22 17:16:21 +000020#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040022#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Trond Myklebust905f8d12007-08-06 12:18:34 -040024static void nfs_do_free_delegation(struct nfs_delegation *delegation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
David Howells17d2c0a2010-05-01 12:37:18 -040026 if (delegation->cred)
27 put_rpccred(delegation->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 kfree(delegation);
29}
30
Trond Myklebust8383e462007-07-06 15:12:04 -040031static void nfs_free_delegation_callback(struct rcu_head *head)
32{
33 struct nfs_delegation *delegation = container_of(head, struct nfs_delegation, rcu);
34
Trond Myklebust905f8d12007-08-06 12:18:34 -040035 nfs_do_free_delegation(delegation);
36}
37
38static void nfs_free_delegation(struct nfs_delegation *delegation)
39{
Trond Myklebust905f8d12007-08-06 12:18:34 -040040 call_rcu(&delegation->rcu, nfs_free_delegation_callback);
Trond Myklebust8383e462007-07-06 15:12:04 -040041}
42
Trond Myklebustb7391f42008-12-23 15:21:52 -050043void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
44{
45 set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
46}
47
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -050048int nfs_have_delegation(struct inode *inode, fmode_t flags)
Trond Myklebustb7391f42008-12-23 15:21:52 -050049{
50 struct nfs_delegation *delegation;
51 int ret = 0;
52
53 flags &= FMODE_READ|FMODE_WRITE;
54 rcu_read_lock();
55 delegation = rcu_dereference(NFS_I(inode)->delegation);
56 if (delegation != NULL && (delegation->type & flags) == flags) {
57 nfs_mark_delegation_referenced(delegation);
58 ret = 1;
59 }
60 rcu_read_unlock();
61 return ret;
62}
63
Trond Myklebust888e6942005-11-04 15:38:11 -050064static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state)
65{
66 struct inode *inode = state->inode;
67 struct file_lock *fl;
Trond Myklebustd5122202009-06-17 13:22:58 -070068 int status = 0;
Trond Myklebust888e6942005-11-04 15:38:11 -050069
Trond Myklebust3f09df72009-06-17 13:23:00 -070070 if (inode->i_flock == NULL)
71 goto out;
72
Arnd Bergmannb89f4322010-09-18 15:09:31 +020073 /* Protect inode->i_flock using the file locks lock */
74 lock_flocks();
Harvey Harrison90dc7d22008-02-20 13:03:05 -080075 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
Trond Myklebust888e6942005-11-04 15:38:11 -050076 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
77 continue;
Trond Myklebustcd3758e2007-08-10 17:44:32 -040078 if (nfs_file_open_context(fl->fl_file) != ctx)
Trond Myklebust888e6942005-11-04 15:38:11 -050079 continue;
Arnd Bergmannb89f4322010-09-18 15:09:31 +020080 unlock_flocks();
Trond Myklebust888e6942005-11-04 15:38:11 -050081 status = nfs4_lock_delegation_recall(state, fl);
Trond Myklebustd5122202009-06-17 13:22:58 -070082 if (status < 0)
Trond Myklebust3f09df72009-06-17 13:23:00 -070083 goto out;
Arnd Bergmannb89f4322010-09-18 15:09:31 +020084 lock_flocks();
Trond Myklebust888e6942005-11-04 15:38:11 -050085 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +020086 unlock_flocks();
Trond Myklebust3f09df72009-06-17 13:23:00 -070087out:
Trond Myklebust888e6942005-11-04 15:38:11 -050088 return status;
89}
90
Trond Myklebustd18cc1f2009-12-03 08:10:17 -050091static int nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 struct nfs_inode *nfsi = NFS_I(inode);
94 struct nfs_open_context *ctx;
95 struct nfs4_state *state;
Trond Myklebust888e6942005-11-04 15:38:11 -050096 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98again:
99 spin_lock(&inode->i_lock);
100 list_for_each_entry(ctx, &nfsi->open_files, list) {
101 state = ctx->state;
102 if (state == NULL)
103 continue;
104 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
105 continue;
Trond Myklebust90163022007-07-05 14:55:18 -0400106 if (memcmp(state->stateid.data, stateid->data, sizeof(state->stateid.data)) != 0)
107 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 get_nfs_open_context(ctx);
109 spin_unlock(&inode->i_lock);
Trond Myklebust13437e12007-07-06 15:10:43 -0400110 err = nfs4_open_delegation_recall(ctx, state, stateid);
Trond Myklebust888e6942005-11-04 15:38:11 -0500111 if (err >= 0)
112 err = nfs_delegation_claim_locks(ctx, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 put_nfs_open_context(ctx);
Trond Myklebust888e6942005-11-04 15:38:11 -0500114 if (err != 0)
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500115 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto again;
117 }
118 spin_unlock(&inode->i_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/*
123 * Set up a delegation on an inode
124 */
125void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
126{
Trond Myklebust8f649c32010-05-01 12:36:18 -0400127 struct nfs_delegation *delegation;
128 struct rpc_cred *oldcred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Trond Myklebust8f649c32010-05-01 12:36:18 -0400130 rcu_read_lock();
131 delegation = rcu_dereference(NFS_I(inode)->delegation);
132 if (delegation != NULL) {
133 spin_lock(&delegation->lock);
134 if (delegation->inode != NULL) {
135 memcpy(delegation->stateid.data, res->delegation.data,
136 sizeof(delegation->stateid.data));
137 delegation->type = res->delegation_type;
138 delegation->maxsize = res->maxsize;
139 oldcred = delegation->cred;
140 delegation->cred = get_rpccred(cred);
141 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
142 &delegation->flags);
143 NFS_I(inode)->delegation_state = delegation->type;
144 spin_unlock(&delegation->lock);
145 put_rpccred(oldcred);
146 rcu_read_unlock();
147 } else {
148 /* We appear to have raced with a delegation return. */
149 spin_unlock(&delegation->lock);
150 rcu_read_unlock();
151 nfs_inode_set_delegation(inode, cred, res);
152 }
153 } else {
154 rcu_read_unlock();
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Trond Myklebust57bfa892008-01-25 16:38:18 -0500158static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
159{
160 int res = 0;
161
162 res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid, issync);
163 nfs_free_delegation(delegation);
164 return res;
165}
166
Trond Myklebust86e89482008-12-23 15:21:39 -0500167static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
168{
169 struct inode *inode = NULL;
170
171 spin_lock(&delegation->lock);
172 if (delegation->inode != NULL)
173 inode = igrab(delegation->inode);
174 spin_unlock(&delegation->lock);
175 return inode;
176}
177
David Howells17d2c0a2010-05-01 12:37:18 -0400178static struct nfs_delegation *nfs_detach_delegation_locked(struct nfs_inode *nfsi,
179 const nfs4_stateid *stateid,
180 struct nfs_client *clp)
Trond Myklebust57bfa892008-01-25 16:38:18 -0500181{
David Howells17d2c0a2010-05-01 12:37:18 -0400182 struct nfs_delegation *delegation =
183 rcu_dereference_protected(nfsi->delegation,
184 lockdep_is_held(&clp->cl_lock));
Trond Myklebust57bfa892008-01-25 16:38:18 -0500185
186 if (delegation == NULL)
187 goto nomatch;
Trond Myklebust34310432008-12-23 15:21:38 -0500188 spin_lock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500189 if (stateid != NULL && memcmp(delegation->stateid.data, stateid->data,
190 sizeof(delegation->stateid.data)) != 0)
Trond Myklebust34310432008-12-23 15:21:38 -0500191 goto nomatch_unlock;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500192 list_del_rcu(&delegation->super_list);
Trond Myklebust86e89482008-12-23 15:21:39 -0500193 delegation->inode = NULL;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500194 nfsi->delegation_state = 0;
195 rcu_assign_pointer(nfsi->delegation, NULL);
Trond Myklebust34310432008-12-23 15:21:38 -0500196 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500197 return delegation;
Trond Myklebust34310432008-12-23 15:21:38 -0500198nomatch_unlock:
199 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500200nomatch:
201 return NULL;
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Set up a delegation on an inode
206 */
207int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
208{
David Howells7539bba2006-08-22 20:06:09 -0400209 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct nfs_inode *nfsi = NFS_I(inode);
David Howells17d2c0a2010-05-01 12:37:18 -0400211 struct nfs_delegation *delegation, *old_delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500212 struct nfs_delegation *freeme = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int status = 0;
214
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400215 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (delegation == NULL)
217 return -ENOMEM;
218 memcpy(delegation->stateid.data, res->delegation.data,
219 sizeof(delegation->stateid.data));
220 delegation->type = res->delegation_type;
221 delegation->maxsize = res->maxsize;
Trond Myklebustbeb2a5e2006-01-03 09:55:37 +0100222 delegation->change_attr = nfsi->change_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 delegation->cred = get_rpccred(cred);
224 delegation->inode = inode;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500225 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
Trond Myklebust34310432008-12-23 15:21:38 -0500226 spin_lock_init(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400229 old_delegation = rcu_dereference_protected(nfsi->delegation,
230 lockdep_is_held(&clp->cl_lock));
231 if (old_delegation != NULL) {
232 if (memcmp(&delegation->stateid, &old_delegation->stateid,
233 sizeof(old_delegation->stateid)) == 0 &&
234 delegation->type == old_delegation->type) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500235 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500237 /*
238 * Deal with broken servers that hand out two
239 * delegations for the same file.
240 */
241 dfprintk(FILE, "%s: server %s handed out "
242 "a duplicate delegation!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700243 __func__, clp->cl_hostname);
David Howells17d2c0a2010-05-01 12:37:18 -0400244 if (delegation->type <= old_delegation->type) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500245 freeme = delegation;
246 delegation = NULL;
247 goto out;
248 }
David Howells17d2c0a2010-05-01 12:37:18 -0400249 freeme = nfs_detach_delegation_locked(nfsi, NULL, clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500251 list_add_rcu(&delegation->super_list, &clp->cl_delegations);
252 nfsi->delegation_state = delegation->type;
253 rcu_assign_pointer(nfsi->delegation, delegation);
254 delegation = NULL;
Trond Myklebust412c77c2007-07-03 16:10:55 -0400255
256 /* Ensure we revalidate the attributes and page cache! */
257 spin_lock(&inode->i_lock);
258 nfsi->cache_validity |= NFS_INO_REVAL_FORCED;
259 spin_unlock(&inode->i_lock);
260
Trond Myklebust57bfa892008-01-25 16:38:18 -0500261out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 spin_unlock(&clp->cl_lock);
Trond Myklebust603c83d2007-10-18 19:59:20 -0400263 if (delegation != NULL)
264 nfs_free_delegation(delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500265 if (freeme != NULL)
266 nfs_do_return_delegation(inode, freeme, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return status;
268}
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270/*
271 * Basic procedure for returning a delegation to the server
272 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500273static int __nfs_inode_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500276 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Trond Myklebust3f09df72009-06-17 13:23:00 -0700278 /*
279 * Guard against new delegated open/lock/unlock calls and against
280 * state recovery
281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 down_write(&nfsi->rwsem);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500283 err = nfs_delegation_claim_opens(inode, &delegation->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 up_write(&nfsi->rwsem);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500285 if (err)
286 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500288 err = nfs_do_return_delegation(inode, delegation, issync);
289out:
290 return err;
Trond Myklebust90163022007-07-05 14:55:18 -0400291}
292
Trond Myklebuste6f81072008-01-24 18:14:34 -0500293/*
Trond Myklebust515d8612008-12-23 15:21:46 -0500294 * Return all delegations that have been marked for return
295 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500296int nfs_client_return_marked_delegations(struct nfs_client *clp)
Trond Myklebust515d8612008-12-23 15:21:46 -0500297{
298 struct nfs_delegation *delegation;
299 struct inode *inode;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500300 int err = 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500301
302restart:
303 rcu_read_lock();
304 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
305 if (!test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
306 continue;
307 inode = nfs_delegation_grab_inode(delegation);
308 if (inode == NULL)
309 continue;
310 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400311 delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp);
Trond Myklebust515d8612008-12-23 15:21:46 -0500312 spin_unlock(&clp->cl_lock);
313 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500314 if (delegation != NULL) {
315 filemap_flush(inode->i_mapping);
316 err = __nfs_inode_return_delegation(inode, delegation, 0);
317 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500318 iput(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500319 if (!err)
320 goto restart;
321 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
322 return err;
Trond Myklebust515d8612008-12-23 15:21:46 -0500323 }
324 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500325 return 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500326}
327
328/*
Trond Myklebuste6f81072008-01-24 18:14:34 -0500329 * This function returns the delegation without reclaiming opens
330 * or protecting against delegation reclaims.
331 * It is therefore really only safe to be called from
332 * nfs4_clear_inode()
333 */
334void nfs_inode_return_delegation_noreclaim(struct inode *inode)
335{
336 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
337 struct nfs_inode *nfsi = NFS_I(inode);
338 struct nfs_delegation *delegation;
339
David Howells17d2c0a2010-05-01 12:37:18 -0400340 if (rcu_access_pointer(nfsi->delegation) != NULL) {
Trond Myklebuste6f81072008-01-24 18:14:34 -0500341 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400342 delegation = nfs_detach_delegation_locked(nfsi, NULL, clp);
Trond Myklebuste6f81072008-01-24 18:14:34 -0500343 spin_unlock(&clp->cl_lock);
344 if (delegation != NULL)
345 nfs_do_return_delegation(inode, delegation, 0);
346 }
347}
348
Trond Myklebust90163022007-07-05 14:55:18 -0400349int nfs_inode_return_delegation(struct inode *inode)
350{
351 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
352 struct nfs_inode *nfsi = NFS_I(inode);
353 struct nfs_delegation *delegation;
354 int err = 0;
355
David Howells17d2c0a2010-05-01 12:37:18 -0400356 if (rcu_access_pointer(nfsi->delegation) != NULL) {
Trond Myklebust90163022007-07-05 14:55:18 -0400357 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400358 delegation = nfs_detach_delegation_locked(nfsi, NULL, clp);
Trond Myklebust90163022007-07-05 14:55:18 -0400359 spin_unlock(&clp->cl_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500360 if (delegation != NULL) {
Trond Myklebust1b924e52010-07-31 14:29:06 -0400361 nfs_wb_all(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500362 err = __nfs_inode_return_delegation(inode, delegation, 1);
363 }
Trond Myklebust90163022007-07-05 14:55:18 -0400364 }
365 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Trond Myklebust6411bd42008-12-23 15:21:51 -0500368static void nfs_mark_return_delegation(struct nfs_client *clp, struct nfs_delegation *delegation)
369{
370 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
371 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*
375 * Return all delegations associated to a super block
376 */
Trond Myklebust515d8612008-12-23 15:21:46 -0500377void nfs_super_return_all_delegations(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
David Howells7539bba2006-08-22 20:06:09 -0400379 struct nfs_client *clp = NFS_SB(sb)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (clp == NULL)
383 return;
Trond Myklebust8383e462007-07-06 15:12:04 -0400384 rcu_read_lock();
385 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500386 spin_lock(&delegation->lock);
387 if (delegation->inode != NULL && delegation->inode->i_sb == sb)
Trond Myklebust515d8612008-12-23 15:21:46 -0500388 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
Trond Myklebust86e89482008-12-23 15:21:39 -0500389 spin_unlock(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400391 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500392 if (nfs_client_return_marked_delegations(clp) != 0)
393 nfs4_schedule_state_manager(clp);
Trond Myklebust515d8612008-12-23 15:21:46 -0500394}
395
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500396static
397void nfs_client_mark_return_all_delegation_types(struct nfs_client *clp, fmode_t flags)
Trond Myklebust515d8612008-12-23 15:21:46 -0500398{
399 struct nfs_delegation *delegation;
400
401 rcu_read_lock();
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500402 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500403 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
404 continue;
405 if (delegation->type & flags)
406 nfs_mark_return_delegation(clp, delegation);
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500407 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500408 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500411static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
412{
413 nfs_client_mark_return_all_delegation_types(clp, FMODE_READ|FMODE_WRITE);
414}
415
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500416static void nfs_delegation_run_state_manager(struct nfs_client *clp)
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100417{
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500418 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
419 nfs4_schedule_state_manager(clp);
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100420}
421
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500422void nfs_expire_all_delegation_types(struct nfs_client *clp, fmode_t flags)
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500423{
424 nfs_client_mark_return_all_delegation_types(clp, flags);
425 nfs_delegation_run_state_manager(clp);
426}
427
David Howellsadfa6f92006-08-22 20:06:08 -0400428void nfs_expire_all_delegations(struct nfs_client *clp)
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100429{
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500430 nfs_expire_all_delegation_types(clp, FMODE_READ|FMODE_WRITE);
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
434 * Return all delegations following an NFS4ERR_CB_PATH_DOWN error.
435 */
David Howellsadfa6f92006-08-22 20:06:08 -0400436void nfs_handle_cb_pathdown(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (clp == NULL)
439 return;
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500440 nfs_client_mark_return_all_delegations(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Trond Myklebustb7391f42008-12-23 15:21:52 -0500443static void nfs_client_mark_return_unreferenced_delegations(struct nfs_client *clp)
444{
445 struct nfs_delegation *delegation;
446
447 rcu_read_lock();
448 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
449 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
450 continue;
Alexandros Batsakisb4a6f492009-12-05 13:19:11 -0500451 nfs_mark_return_delegation(clp, delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -0500452 }
453 rcu_read_unlock();
454}
455
456void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
457{
458 nfs_client_mark_return_unreferenced_delegations(clp);
459 nfs_delegation_run_state_manager(clp);
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
463 * Asynchronous delegation recall!
464 */
Trond Myklebuste047a102010-06-16 09:52:27 -0400465int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Trond Myklebust6411bd42008-12-23 15:21:51 -0500467 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
468 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Trond Myklebust6411bd42008-12-23 15:21:51 -0500470 rcu_read_lock();
471 delegation = rcu_dereference(NFS_I(inode)->delegation);
Alexandros Batsakis25976412009-12-05 13:48:55 -0500472
Trond Myklebuste047a102010-06-16 09:52:27 -0400473 if (!clp->cl_mvops->validate_stateid(delegation, stateid)) {
Trond Myklebust6411bd42008-12-23 15:21:51 -0500474 rcu_read_unlock();
475 return -ENOENT;
476 }
Alexandros Batsakis25976412009-12-05 13:48:55 -0500477
Trond Myklebust6411bd42008-12-23 15:21:51 -0500478 nfs_mark_return_delegation(clp, delegation);
479 rcu_read_unlock();
480 nfs_delegation_run_state_manager(clp);
481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484/*
485 * Retrieve the inode associated with a delegation
486 */
David Howellsadfa6f92006-08-22 20:06:08 -0400487struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct nfs_delegation *delegation;
490 struct inode *res = NULL;
Trond Myklebust8383e462007-07-06 15:12:04 -0400491 rcu_read_lock();
492 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500493 spin_lock(&delegation->lock);
494 if (delegation->inode != NULL &&
495 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 res = igrab(delegation->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Trond Myklebust86e89482008-12-23 15:21:39 -0500498 spin_unlock(&delegation->lock);
499 if (res != NULL)
500 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400502 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return res;
504}
505
506/*
507 * Mark all delegations as needing to be reclaimed
508 */
David Howellsadfa6f92006-08-22 20:06:08 -0400509void nfs_delegation_mark_reclaim(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct nfs_delegation *delegation;
Trond Myklebust8383e462007-07-06 15:12:04 -0400512 rcu_read_lock();
513 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list)
Trond Myklebust15c831b2008-12-23 15:21:39 -0500514 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
Trond Myklebust8383e462007-07-06 15:12:04 -0400515 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518/*
519 * Reap all unclaimed delegations after reboot recovery is done
520 */
David Howellsadfa6f92006-08-22 20:06:08 -0400521void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Trond Myklebust8383e462007-07-06 15:12:04 -0400523 struct nfs_delegation *delegation;
Trond Myklebust86e89482008-12-23 15:21:39 -0500524 struct inode *inode;
Trond Myklebust8383e462007-07-06 15:12:04 -0400525restart:
526 rcu_read_lock();
527 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust15c831b2008-12-23 15:21:39 -0500528 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 continue;
Trond Myklebust86e89482008-12-23 15:21:39 -0500530 inode = nfs_delegation_grab_inode(delegation);
531 if (inode == NULL)
532 continue;
Trond Myklebust8383e462007-07-06 15:12:04 -0400533 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400534 delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp);
Trond Myklebust8383e462007-07-06 15:12:04 -0400535 spin_unlock(&clp->cl_lock);
536 rcu_read_unlock();
537 if (delegation != NULL)
Trond Myklebust905f8d12007-08-06 12:18:34 -0400538 nfs_free_delegation(delegation);
Trond Myklebust86e89482008-12-23 15:21:39 -0500539 iput(inode);
Trond Myklebust8383e462007-07-06 15:12:04 -0400540 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400542 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500544
545int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode)
546{
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500547 struct nfs_inode *nfsi = NFS_I(inode);
548 struct nfs_delegation *delegation;
Trond Myklebust8383e462007-07-06 15:12:04 -0400549 int ret = 0;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500550
Trond Myklebust8383e462007-07-06 15:12:04 -0400551 rcu_read_lock();
552 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500553 if (delegation != NULL) {
554 memcpy(dst->data, delegation->stateid.data, sizeof(dst->data));
Trond Myklebust8383e462007-07-06 15:12:04 -0400555 ret = 1;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500556 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400557 rcu_read_unlock();
558 return ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500559}