blob: 232a7eead33a488c4a5d67bc83e3a1971d9665df [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040014#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/spinlock.h>
16
17#include <linux/nfs4.h>
18#include <linux/nfs_fs.h>
19#include <linux/nfs_xdr.h>
20
Trond Myklebust4ce79712005-06-22 17:16:21 +000021#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040023#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Trond Myklebust905f8d12007-08-06 12:18:34 -040025static void nfs_do_free_delegation(struct nfs_delegation *delegation)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
David Howells17d2c0a2010-05-01 12:37:18 -040027 if (delegation->cred)
28 put_rpccred(delegation->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 kfree(delegation);
30}
31
Trond Myklebust8383e462007-07-06 15:12:04 -040032static void nfs_free_delegation_callback(struct rcu_head *head)
33{
34 struct nfs_delegation *delegation = container_of(head, struct nfs_delegation, rcu);
35
Trond Myklebust905f8d12007-08-06 12:18:34 -040036 nfs_do_free_delegation(delegation);
37}
38
39static void nfs_free_delegation(struct nfs_delegation *delegation)
40{
Trond Myklebust905f8d12007-08-06 12:18:34 -040041 call_rcu(&delegation->rcu, nfs_free_delegation_callback);
Trond Myklebust8383e462007-07-06 15:12:04 -040042}
43
Trond Myklebustb7391f42008-12-23 15:21:52 -050044void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
45{
46 set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
47}
48
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -050049int nfs_have_delegation(struct inode *inode, fmode_t flags)
Trond Myklebustb7391f42008-12-23 15:21:52 -050050{
51 struct nfs_delegation *delegation;
52 int ret = 0;
53
54 flags &= FMODE_READ|FMODE_WRITE;
55 rcu_read_lock();
56 delegation = rcu_dereference(NFS_I(inode)->delegation);
57 if (delegation != NULL && (delegation->type & flags) == flags) {
58 nfs_mark_delegation_referenced(delegation);
59 ret = 1;
60 }
61 rcu_read_unlock();
62 return ret;
63}
64
Trond Myklebust888e6942005-11-04 15:38:11 -050065static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state)
66{
67 struct inode *inode = state->inode;
68 struct file_lock *fl;
Trond Myklebustd5122202009-06-17 13:22:58 -070069 int status = 0;
Trond Myklebust888e6942005-11-04 15:38:11 -050070
Trond Myklebust3f09df72009-06-17 13:23:00 -070071 if (inode->i_flock == NULL)
72 goto out;
73
Arnd Bergmannb89f4322010-09-18 15:09:31 +020074 /* Protect inode->i_flock using the file locks lock */
75 lock_flocks();
Harvey Harrison90dc7d22008-02-20 13:03:05 -080076 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
Trond Myklebust888e6942005-11-04 15:38:11 -050077 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
78 continue;
Trond Myklebustcd3758e2007-08-10 17:44:32 -040079 if (nfs_file_open_context(fl->fl_file) != ctx)
Trond Myklebust888e6942005-11-04 15:38:11 -050080 continue;
Arnd Bergmannb89f4322010-09-18 15:09:31 +020081 unlock_flocks();
Trond Myklebust888e6942005-11-04 15:38:11 -050082 status = nfs4_lock_delegation_recall(state, fl);
Trond Myklebustd5122202009-06-17 13:22:58 -070083 if (status < 0)
Trond Myklebust3f09df72009-06-17 13:23:00 -070084 goto out;
Arnd Bergmannb89f4322010-09-18 15:09:31 +020085 lock_flocks();
Trond Myklebust888e6942005-11-04 15:38:11 -050086 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +020087 unlock_flocks();
Trond Myklebust3f09df72009-06-17 13:23:00 -070088out:
Trond Myklebust888e6942005-11-04 15:38:11 -050089 return status;
90}
91
Trond Myklebustd18cc1f2009-12-03 08:10:17 -050092static int nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct nfs_inode *nfsi = NFS_I(inode);
95 struct nfs_open_context *ctx;
96 struct nfs4_state *state;
Trond Myklebust888e6942005-11-04 15:38:11 -050097 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99again:
100 spin_lock(&inode->i_lock);
101 list_for_each_entry(ctx, &nfsi->open_files, list) {
102 state = ctx->state;
103 if (state == NULL)
104 continue;
105 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
106 continue;
Trond Myklebust90163022007-07-05 14:55:18 -0400107 if (memcmp(state->stateid.data, stateid->data, sizeof(state->stateid.data)) != 0)
108 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 get_nfs_open_context(ctx);
110 spin_unlock(&inode->i_lock);
Trond Myklebust13437e12007-07-06 15:10:43 -0400111 err = nfs4_open_delegation_recall(ctx, state, stateid);
Trond Myklebust888e6942005-11-04 15:38:11 -0500112 if (err >= 0)
113 err = nfs_delegation_claim_locks(ctx, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 put_nfs_open_context(ctx);
Trond Myklebust888e6942005-11-04 15:38:11 -0500115 if (err != 0)
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 goto again;
118 }
119 spin_unlock(&inode->i_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123/*
124 * Set up a delegation on an inode
125 */
126void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
127{
Trond Myklebust8f649c32010-05-01 12:36:18 -0400128 struct nfs_delegation *delegation;
129 struct rpc_cred *oldcred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Trond Myklebust8f649c32010-05-01 12:36:18 -0400131 rcu_read_lock();
132 delegation = rcu_dereference(NFS_I(inode)->delegation);
133 if (delegation != NULL) {
134 spin_lock(&delegation->lock);
135 if (delegation->inode != NULL) {
136 memcpy(delegation->stateid.data, res->delegation.data,
137 sizeof(delegation->stateid.data));
138 delegation->type = res->delegation_type;
139 delegation->maxsize = res->maxsize;
140 oldcred = delegation->cred;
141 delegation->cred = get_rpccred(cred);
142 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
143 &delegation->flags);
144 NFS_I(inode)->delegation_state = delegation->type;
145 spin_unlock(&delegation->lock);
146 put_rpccred(oldcred);
147 rcu_read_unlock();
148 } else {
149 /* We appear to have raced with a delegation return. */
150 spin_unlock(&delegation->lock);
151 rcu_read_unlock();
152 nfs_inode_set_delegation(inode, cred, res);
153 }
154 } else {
155 rcu_read_unlock();
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Trond Myklebust57bfa892008-01-25 16:38:18 -0500159static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
160{
161 int res = 0;
162
163 res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid, issync);
164 nfs_free_delegation(delegation);
165 return res;
166}
167
Trond Myklebust86e89482008-12-23 15:21:39 -0500168static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
169{
170 struct inode *inode = NULL;
171
172 spin_lock(&delegation->lock);
173 if (delegation->inode != NULL)
174 inode = igrab(delegation->inode);
175 spin_unlock(&delegation->lock);
176 return inode;
177}
178
David Howells17d2c0a2010-05-01 12:37:18 -0400179static struct nfs_delegation *nfs_detach_delegation_locked(struct nfs_inode *nfsi,
180 const nfs4_stateid *stateid,
181 struct nfs_client *clp)
Trond Myklebust57bfa892008-01-25 16:38:18 -0500182{
David Howells17d2c0a2010-05-01 12:37:18 -0400183 struct nfs_delegation *delegation =
184 rcu_dereference_protected(nfsi->delegation,
185 lockdep_is_held(&clp->cl_lock));
Trond Myklebust57bfa892008-01-25 16:38:18 -0500186
187 if (delegation == NULL)
188 goto nomatch;
Trond Myklebust34310432008-12-23 15:21:38 -0500189 spin_lock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500190 if (stateid != NULL && memcmp(delegation->stateid.data, stateid->data,
191 sizeof(delegation->stateid.data)) != 0)
Trond Myklebust34310432008-12-23 15:21:38 -0500192 goto nomatch_unlock;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500193 list_del_rcu(&delegation->super_list);
Trond Myklebust86e89482008-12-23 15:21:39 -0500194 delegation->inode = NULL;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500195 nfsi->delegation_state = 0;
196 rcu_assign_pointer(nfsi->delegation, NULL);
Trond Myklebust34310432008-12-23 15:21:38 -0500197 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500198 return delegation;
Trond Myklebust34310432008-12-23 15:21:38 -0500199nomatch_unlock:
200 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500201nomatch:
202 return NULL;
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
206 * Set up a delegation on an inode
207 */
208int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
209{
David Howells7539bba2006-08-22 20:06:09 -0400210 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct nfs_inode *nfsi = NFS_I(inode);
David Howells17d2c0a2010-05-01 12:37:18 -0400212 struct nfs_delegation *delegation, *old_delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500213 struct nfs_delegation *freeme = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int status = 0;
215
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400216 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (delegation == NULL)
218 return -ENOMEM;
219 memcpy(delegation->stateid.data, res->delegation.data,
220 sizeof(delegation->stateid.data));
221 delegation->type = res->delegation_type;
222 delegation->maxsize = res->maxsize;
Trond Myklebustbeb2a5e2006-01-03 09:55:37 +0100223 delegation->change_attr = nfsi->change_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 delegation->cred = get_rpccred(cred);
225 delegation->inode = inode;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500226 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
Trond Myklebust34310432008-12-23 15:21:38 -0500227 spin_lock_init(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400230 old_delegation = rcu_dereference_protected(nfsi->delegation,
231 lockdep_is_held(&clp->cl_lock));
232 if (old_delegation != NULL) {
233 if (memcmp(&delegation->stateid, &old_delegation->stateid,
234 sizeof(old_delegation->stateid)) == 0 &&
235 delegation->type == old_delegation->type) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500238 /*
239 * Deal with broken servers that hand out two
240 * delegations for the same file.
241 */
242 dfprintk(FILE, "%s: server %s handed out "
243 "a duplicate delegation!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700244 __func__, clp->cl_hostname);
David Howells17d2c0a2010-05-01 12:37:18 -0400245 if (delegation->type <= old_delegation->type) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500246 freeme = delegation;
247 delegation = NULL;
248 goto out;
249 }
David Howells17d2c0a2010-05-01 12:37:18 -0400250 freeme = nfs_detach_delegation_locked(nfsi, NULL, clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500252 list_add_rcu(&delegation->super_list, &clp->cl_delegations);
253 nfsi->delegation_state = delegation->type;
254 rcu_assign_pointer(nfsi->delegation, delegation);
255 delegation = NULL;
Trond Myklebust412c77c2007-07-03 16:10:55 -0400256
257 /* Ensure we revalidate the attributes and page cache! */
258 spin_lock(&inode->i_lock);
259 nfsi->cache_validity |= NFS_INO_REVAL_FORCED;
260 spin_unlock(&inode->i_lock);
261
Trond Myklebust57bfa892008-01-25 16:38:18 -0500262out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spin_unlock(&clp->cl_lock);
Trond Myklebust603c83d2007-10-18 19:59:20 -0400264 if (delegation != NULL)
265 nfs_free_delegation(delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500266 if (freeme != NULL)
267 nfs_do_return_delegation(inode, freeme, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return status;
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
272 * Basic procedure for returning a delegation to the server
273 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500274static int __nfs_inode_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500277 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Trond Myklebust3f09df72009-06-17 13:23:00 -0700279 /*
280 * Guard against new delegated open/lock/unlock calls and against
281 * state recovery
282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 down_write(&nfsi->rwsem);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500284 err = nfs_delegation_claim_opens(inode, &delegation->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 up_write(&nfsi->rwsem);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500286 if (err)
287 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500289 err = nfs_do_return_delegation(inode, delegation, issync);
290out:
291 return err;
Trond Myklebust90163022007-07-05 14:55:18 -0400292}
293
Trond Myklebuste6f81072008-01-24 18:14:34 -0500294/*
Trond Myklebust515d8612008-12-23 15:21:46 -0500295 * Return all delegations that have been marked for return
296 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500297int nfs_client_return_marked_delegations(struct nfs_client *clp)
Trond Myklebust515d8612008-12-23 15:21:46 -0500298{
299 struct nfs_delegation *delegation;
300 struct inode *inode;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500301 int err = 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500302
303restart:
304 rcu_read_lock();
305 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
306 if (!test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
307 continue;
308 inode = nfs_delegation_grab_inode(delegation);
309 if (inode == NULL)
310 continue;
311 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400312 delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp);
Trond Myklebust515d8612008-12-23 15:21:46 -0500313 spin_unlock(&clp->cl_lock);
314 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500315 if (delegation != NULL) {
316 filemap_flush(inode->i_mapping);
317 err = __nfs_inode_return_delegation(inode, delegation, 0);
318 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500319 iput(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500320 if (!err)
321 goto restart;
322 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
323 return err;
Trond Myklebust515d8612008-12-23 15:21:46 -0500324 }
325 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500326 return 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500327}
328
329/*
Trond Myklebuste6f81072008-01-24 18:14:34 -0500330 * This function returns the delegation without reclaiming opens
331 * or protecting against delegation reclaims.
332 * It is therefore really only safe to be called from
333 * nfs4_clear_inode()
334 */
335void nfs_inode_return_delegation_noreclaim(struct inode *inode)
336{
337 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
338 struct nfs_inode *nfsi = NFS_I(inode);
339 struct nfs_delegation *delegation;
340
David Howells17d2c0a2010-05-01 12:37:18 -0400341 if (rcu_access_pointer(nfsi->delegation) != NULL) {
Trond Myklebuste6f81072008-01-24 18:14:34 -0500342 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400343 delegation = nfs_detach_delegation_locked(nfsi, NULL, clp);
Trond Myklebuste6f81072008-01-24 18:14:34 -0500344 spin_unlock(&clp->cl_lock);
345 if (delegation != NULL)
346 nfs_do_return_delegation(inode, delegation, 0);
347 }
348}
349
Trond Myklebust90163022007-07-05 14:55:18 -0400350int nfs_inode_return_delegation(struct inode *inode)
351{
352 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
353 struct nfs_inode *nfsi = NFS_I(inode);
354 struct nfs_delegation *delegation;
355 int err = 0;
356
David Howells17d2c0a2010-05-01 12:37:18 -0400357 if (rcu_access_pointer(nfsi->delegation) != NULL) {
Trond Myklebust90163022007-07-05 14:55:18 -0400358 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400359 delegation = nfs_detach_delegation_locked(nfsi, NULL, clp);
Trond Myklebust90163022007-07-05 14:55:18 -0400360 spin_unlock(&clp->cl_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500361 if (delegation != NULL) {
Trond Myklebust1b924e52010-07-31 14:29:06 -0400362 nfs_wb_all(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500363 err = __nfs_inode_return_delegation(inode, delegation, 1);
364 }
Trond Myklebust90163022007-07-05 14:55:18 -0400365 }
366 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Trond Myklebust6411bd42008-12-23 15:21:51 -0500369static void nfs_mark_return_delegation(struct nfs_client *clp, struct nfs_delegation *delegation)
370{
371 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
372 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * Return all delegations associated to a super block
377 */
Trond Myklebust515d8612008-12-23 15:21:46 -0500378void nfs_super_return_all_delegations(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
David Howells7539bba2006-08-22 20:06:09 -0400380 struct nfs_client *clp = NFS_SB(sb)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (clp == NULL)
384 return;
Trond Myklebust8383e462007-07-06 15:12:04 -0400385 rcu_read_lock();
386 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500387 spin_lock(&delegation->lock);
388 if (delegation->inode != NULL && delegation->inode->i_sb == sb)
Trond Myklebust515d8612008-12-23 15:21:46 -0500389 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
Trond Myklebust86e89482008-12-23 15:21:39 -0500390 spin_unlock(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400392 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500393 if (nfs_client_return_marked_delegations(clp) != 0)
394 nfs4_schedule_state_manager(clp);
Trond Myklebust515d8612008-12-23 15:21:46 -0500395}
396
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500397static
398void nfs_client_mark_return_all_delegation_types(struct nfs_client *clp, fmode_t flags)
Trond Myklebust515d8612008-12-23 15:21:46 -0500399{
400 struct nfs_delegation *delegation;
401
402 rcu_read_lock();
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500403 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500404 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
405 continue;
406 if (delegation->type & flags)
407 nfs_mark_return_delegation(clp, delegation);
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500408 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500409 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500412static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
413{
414 nfs_client_mark_return_all_delegation_types(clp, FMODE_READ|FMODE_WRITE);
415}
416
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500417static void nfs_delegation_run_state_manager(struct nfs_client *clp)
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100418{
Trond Myklebustb0d3ded2008-12-23 15:21:50 -0500419 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
420 nfs4_schedule_state_manager(clp);
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100421}
422
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500423void nfs_expire_all_delegation_types(struct nfs_client *clp, fmode_t flags)
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500424{
425 nfs_client_mark_return_all_delegation_types(clp, flags);
426 nfs_delegation_run_state_manager(clp);
427}
428
David Howellsadfa6f92006-08-22 20:06:08 -0400429void nfs_expire_all_delegations(struct nfs_client *clp)
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100430{
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500431 nfs_expire_all_delegation_types(clp, FMODE_READ|FMODE_WRITE);
Trond Myklebust58d9714a2006-01-03 09:55:24 +0100432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
435 * Return all delegations following an NFS4ERR_CB_PATH_DOWN error.
436 */
David Howellsadfa6f92006-08-22 20:06:08 -0400437void nfs_handle_cb_pathdown(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (clp == NULL)
440 return;
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500441 nfs_client_mark_return_all_delegations(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Trond Myklebustb7391f42008-12-23 15:21:52 -0500444static void nfs_client_mark_return_unreferenced_delegations(struct nfs_client *clp)
445{
446 struct nfs_delegation *delegation;
447
448 rcu_read_lock();
449 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
450 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
451 continue;
Alexandros Batsakisb4a6f492009-12-05 13:19:11 -0500452 nfs_mark_return_delegation(clp, delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -0500453 }
454 rcu_read_unlock();
455}
456
457void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
458{
459 nfs_client_mark_return_unreferenced_delegations(clp);
460 nfs_delegation_run_state_manager(clp);
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
464 * Asynchronous delegation recall!
465 */
Trond Myklebuste047a102010-06-16 09:52:27 -0400466int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Trond Myklebust6411bd42008-12-23 15:21:51 -0500468 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
469 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Trond Myklebust6411bd42008-12-23 15:21:51 -0500471 rcu_read_lock();
472 delegation = rcu_dereference(NFS_I(inode)->delegation);
Alexandros Batsakis25976412009-12-05 13:48:55 -0500473
Trond Myklebuste047a102010-06-16 09:52:27 -0400474 if (!clp->cl_mvops->validate_stateid(delegation, stateid)) {
Trond Myklebust6411bd42008-12-23 15:21:51 -0500475 rcu_read_unlock();
476 return -ENOENT;
477 }
Alexandros Batsakis25976412009-12-05 13:48:55 -0500478
Trond Myklebust6411bd42008-12-23 15:21:51 -0500479 nfs_mark_return_delegation(clp, delegation);
480 rcu_read_unlock();
481 nfs_delegation_run_state_manager(clp);
482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485/*
486 * Retrieve the inode associated with a delegation
487 */
David Howellsadfa6f92006-08-22 20:06:08 -0400488struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 struct nfs_delegation *delegation;
491 struct inode *res = NULL;
Trond Myklebust8383e462007-07-06 15:12:04 -0400492 rcu_read_lock();
493 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500494 spin_lock(&delegation->lock);
495 if (delegation->inode != NULL &&
496 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 res = igrab(delegation->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Trond Myklebust86e89482008-12-23 15:21:39 -0500499 spin_unlock(&delegation->lock);
500 if (res != NULL)
501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400503 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return res;
505}
506
507/*
508 * Mark all delegations as needing to be reclaimed
509 */
David Howellsadfa6f92006-08-22 20:06:08 -0400510void nfs_delegation_mark_reclaim(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 struct nfs_delegation *delegation;
Trond Myklebust8383e462007-07-06 15:12:04 -0400513 rcu_read_lock();
514 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list)
Trond Myklebust15c831b2008-12-23 15:21:39 -0500515 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
Trond Myklebust8383e462007-07-06 15:12:04 -0400516 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/*
520 * Reap all unclaimed delegations after reboot recovery is done
521 */
David Howellsadfa6f92006-08-22 20:06:08 -0400522void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Trond Myklebust8383e462007-07-06 15:12:04 -0400524 struct nfs_delegation *delegation;
Trond Myklebust86e89482008-12-23 15:21:39 -0500525 struct inode *inode;
Trond Myklebust8383e462007-07-06 15:12:04 -0400526restart:
527 rcu_read_lock();
528 list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) {
Trond Myklebust15c831b2008-12-23 15:21:39 -0500529 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 continue;
Trond Myklebust86e89482008-12-23 15:21:39 -0500531 inode = nfs_delegation_grab_inode(delegation);
532 if (inode == NULL)
533 continue;
Trond Myklebust8383e462007-07-06 15:12:04 -0400534 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400535 delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp);
Trond Myklebust8383e462007-07-06 15:12:04 -0400536 spin_unlock(&clp->cl_lock);
537 rcu_read_unlock();
538 if (delegation != NULL)
Trond Myklebust905f8d12007-08-06 12:18:34 -0400539 nfs_free_delegation(delegation);
Trond Myklebust86e89482008-12-23 15:21:39 -0500540 iput(inode);
Trond Myklebust8383e462007-07-06 15:12:04 -0400541 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400543 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500545
546int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode)
547{
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500548 struct nfs_inode *nfsi = NFS_I(inode);
549 struct nfs_delegation *delegation;
Trond Myklebust8383e462007-07-06 15:12:04 -0400550 int ret = 0;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500551
Trond Myklebust8383e462007-07-06 15:12:04 -0400552 rcu_read_lock();
553 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500554 if (delegation != NULL) {
555 memcpy(dst->data, delegation->stateid.data, sizeof(dst->data));
Trond Myklebust8383e462007-07-06 15:12:04 -0400556 ret = 1;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500557 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400558 rcu_read_unlock();
559 return ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500560}