blob: 5853f53db73246df670ce9daedb73e10d62d2da3 [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 Myklebust58d97142006-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"
Trond Myklebustca8acf82013-08-13 10:36:56 -040023#include "nfs4trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Trond Myklebust905f8d12007-08-06 12:18:34 -040025static void nfs_free_delegation(struct nfs_delegation *delegation)
26{
Trond Myklebuste00b8a22011-01-27 14:55:39 -050027 if (delegation->cred) {
28 put_rpccred(delegation->cred);
29 delegation->cred = NULL;
30 }
Lai Jiangshan26f04dd2011-05-01 06:21:54 -070031 kfree_rcu(delegation, rcu);
Trond Myklebust8383e462007-07-06 15:12:04 -040032}
33
Chuck Leverd3978bb2010-12-24 01:33:04 +000034/**
35 * nfs_mark_delegation_referenced - set delegation's REFERENCED flag
36 * @delegation: delegation to process
37 *
38 */
Trond Myklebustb7391f42008-12-23 15:21:52 -050039void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
40{
41 set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
42}
43
Peng Tao15bb3af2014-07-03 13:05:00 +080044static int
45nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark)
Trond Myklebustb7391f42008-12-23 15:21:52 -050046{
47 struct nfs_delegation *delegation;
48 int ret = 0;
49
50 flags &= FMODE_READ|FMODE_WRITE;
51 rcu_read_lock();
52 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustd25be542013-02-05 11:43:28 -050053 if (delegation != NULL && (delegation->type & flags) == flags &&
54 !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) {
Peng Tao15bb3af2014-07-03 13:05:00 +080055 if (mark)
56 nfs_mark_delegation_referenced(delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -050057 ret = 1;
58 }
59 rcu_read_unlock();
60 return ret;
61}
Peng Tao15bb3af2014-07-03 13:05:00 +080062/**
63 * nfs_have_delegation - check if inode has a delegation, mark it
64 * NFS_DELEGATION_REFERENCED if there is one.
65 * @inode: inode to check
66 * @flags: delegation types to check for
67 *
68 * Returns one if inode has the indicated delegation, otherwise zero.
69 */
70int nfs4_have_delegation(struct inode *inode, fmode_t flags)
71{
72 return nfs4_do_check_delegation(inode, flags, true);
73}
74
75/*
76 * nfs4_check_delegation - check if inode has a delegation, do not mark
77 * NFS_DELEGATION_REFERENCED if it has one.
78 */
79int nfs4_check_delegation(struct inode *inode, fmode_t flags)
80{
81 return nfs4_do_check_delegation(inode, flags, false);
82}
Trond Myklebustb7391f42008-12-23 15:21:52 -050083
Trond Myklebustdb4f2e632013-04-01 15:56:46 -040084static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Trond Myklebust888e6942005-11-04 15:38:11 -050085{
86 struct inode *inode = state->inode;
87 struct file_lock *fl;
Trond Myklebustd5122202009-06-17 13:22:58 -070088 int status = 0;
Trond Myklebust888e6942005-11-04 15:38:11 -050089
Trond Myklebust3f09df72009-06-17 13:23:00 -070090 if (inode->i_flock == NULL)
Trond Myklebust65b62a22013-02-07 10:54:07 -050091 goto out;
Jeff Layton314d7cc2013-04-10 15:36:48 -040092
Jeff Layton1c8c6012013-06-21 08:58:15 -040093 /* Protect inode->i_flock using the i_lock */
94 spin_lock(&inode->i_lock);
Harvey Harrison90dc7d22008-02-20 13:03:05 -080095 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
Trond Myklebust888e6942005-11-04 15:38:11 -050096 if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK)))
97 continue;
Trond Myklebustcd3758e2007-08-10 17:44:32 -040098 if (nfs_file_open_context(fl->fl_file) != ctx)
Trond Myklebust888e6942005-11-04 15:38:11 -050099 continue;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400100 spin_unlock(&inode->i_lock);
Trond Myklebustdb4f2e632013-04-01 15:56:46 -0400101 status = nfs4_lock_delegation_recall(fl, state, stateid);
Trond Myklebustd5122202009-06-17 13:22:58 -0700102 if (status < 0)
Trond Myklebust3f09df72009-06-17 13:23:00 -0700103 goto out;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400104 spin_lock(&inode->i_lock);
Trond Myklebust888e6942005-11-04 15:38:11 -0500105 }
Jeff Layton1c8c6012013-06-21 08:58:15 -0400106 spin_unlock(&inode->i_lock);
Trond Myklebust3f09df72009-06-17 13:23:00 -0700107out:
Trond Myklebust888e6942005-11-04 15:38:11 -0500108 return status;
109}
110
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500111static int nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct nfs_inode *nfsi = NFS_I(inode);
114 struct nfs_open_context *ctx;
Trond Myklebustd25be542013-02-05 11:43:28 -0500115 struct nfs4_state_owner *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct nfs4_state *state;
Trond Myklebustd25be542013-02-05 11:43:28 -0500117 unsigned int seq;
Trond Myklebust888e6942005-11-04 15:38:11 -0500118 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120again:
121 spin_lock(&inode->i_lock);
122 list_for_each_entry(ctx, &nfsi->open_files, list) {
123 state = ctx->state;
124 if (state == NULL)
125 continue;
126 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
127 continue;
Trond Myklebustf597c532012-03-04 18:13:56 -0500128 if (!nfs4_stateid_match(&state->stateid, stateid))
Trond Myklebust90163022007-07-05 14:55:18 -0400129 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 get_nfs_open_context(ctx);
131 spin_unlock(&inode->i_lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500132 sp = state->owner;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500133 /* Block nfs4_proc_unlck */
134 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebustd25be542013-02-05 11:43:28 -0500135 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
Trond Myklebust13437e12007-07-06 15:10:43 -0400136 err = nfs4_open_delegation_recall(ctx, state, stateid);
Trond Myklebustd25be542013-02-05 11:43:28 -0500137 if (!err)
Trond Myklebustdb4f2e632013-04-01 15:56:46 -0400138 err = nfs_delegation_claim_locks(ctx, state, stateid);
Trond Myklebustd25be542013-02-05 11:43:28 -0500139 if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
140 err = -EAGAIN;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500141 mutex_unlock(&sp->so_delegreturn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 put_nfs_open_context(ctx);
Trond Myklebust888e6942005-11-04 15:38:11 -0500143 if (err != 0)
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500144 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto again;
146 }
147 spin_unlock(&inode->i_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Chuck Leverd3978bb2010-12-24 01:33:04 +0000151/**
152 * nfs_inode_reclaim_delegation - process a delegation reclaim request
153 * @inode: inode to process
154 * @cred: credential to use for request
155 * @res: new delegation state from server
156 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Chuck Leverd3978bb2010-12-24 01:33:04 +0000158void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred,
159 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Trond Myklebust8f649c32010-05-01 12:36:18 -0400161 struct nfs_delegation *delegation;
162 struct rpc_cred *oldcred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Trond Myklebust8f649c32010-05-01 12:36:18 -0400164 rcu_read_lock();
165 delegation = rcu_dereference(NFS_I(inode)->delegation);
166 if (delegation != NULL) {
167 spin_lock(&delegation->lock);
168 if (delegation->inode != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500169 nfs4_stateid_copy(&delegation->stateid, &res->delegation);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400170 delegation->type = res->delegation_type;
171 delegation->maxsize = res->maxsize;
172 oldcred = delegation->cred;
173 delegation->cred = get_rpccred(cred);
174 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
175 &delegation->flags);
176 NFS_I(inode)->delegation_state = delegation->type;
177 spin_unlock(&delegation->lock);
178 put_rpccred(oldcred);
179 rcu_read_unlock();
Trond Myklebustca8acf82013-08-13 10:36:56 -0400180 trace_nfs4_reclaim_delegation(inode, res->delegation_type);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400181 } else {
182 /* We appear to have raced with a delegation return. */
183 spin_unlock(&delegation->lock);
184 rcu_read_unlock();
185 nfs_inode_set_delegation(inode, cred, res);
186 }
187 } else {
188 rcu_read_unlock();
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Trond Myklebust57bfa892008-01-25 16:38:18 -0500192static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
193{
194 int res = 0;
195
196 res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid, issync);
197 nfs_free_delegation(delegation);
198 return res;
199}
200
Trond Myklebust86e89482008-12-23 15:21:39 -0500201static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
202{
203 struct inode *inode = NULL;
204
205 spin_lock(&delegation->lock);
206 if (delegation->inode != NULL)
207 inode = igrab(delegation->inode);
208 spin_unlock(&delegation->lock);
209 return inode;
210}
211
Chuck Leverdda4b222010-12-24 01:32:54 +0000212static struct nfs_delegation *
Trond Myklebustd25be542013-02-05 11:43:28 -0500213nfs_start_delegation_return_locked(struct nfs_inode *nfsi)
Trond Myklebust57bfa892008-01-25 16:38:18 -0500214{
Trond Myklebustd25be542013-02-05 11:43:28 -0500215 struct nfs_delegation *ret = NULL;
216 struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500217
218 if (delegation == NULL)
Trond Myklebustd25be542013-02-05 11:43:28 -0500219 goto out;
220 spin_lock(&delegation->lock);
221 if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
222 ret = delegation;
223 spin_unlock(&delegation->lock);
224out:
225 return ret;
226}
227
228static struct nfs_delegation *
229nfs_start_delegation_return(struct nfs_inode *nfsi)
230{
231 struct nfs_delegation *delegation;
232
233 rcu_read_lock();
234 delegation = nfs_start_delegation_return_locked(nfsi);
235 rcu_read_unlock();
236 return delegation;
237}
238
239static void
240nfs_abort_delegation_return(struct nfs_delegation *delegation,
241 struct nfs_client *clp)
242{
Chuck Leverdda4b222010-12-24 01:32:54 +0000243
Trond Myklebust34310432008-12-23 15:21:38 -0500244 spin_lock(&delegation->lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500245 clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
246 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
247 spin_unlock(&delegation->lock);
248 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
249}
250
251static struct nfs_delegation *
252nfs_detach_delegation_locked(struct nfs_inode *nfsi,
253 struct nfs_delegation *delegation,
254 struct nfs_client *clp)
255{
256 struct nfs_delegation *deleg_cur =
257 rcu_dereference_protected(nfsi->delegation,
258 lockdep_is_held(&clp->cl_lock));
259
260 if (deleg_cur == NULL || delegation != deleg_cur)
261 return NULL;
262
263 spin_lock(&delegation->lock);
264 set_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500265 list_del_rcu(&delegation->super_list);
Trond Myklebust86e89482008-12-23 15:21:39 -0500266 delegation->inode = NULL;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500267 nfsi->delegation_state = 0;
268 rcu_assign_pointer(nfsi->delegation, NULL);
Trond Myklebust34310432008-12-23 15:21:38 -0500269 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500270 return delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500271}
272
Chuck Leverdda4b222010-12-24 01:32:54 +0000273static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi,
Trond Myklebustd25be542013-02-05 11:43:28 -0500274 struct nfs_delegation *delegation,
275 struct nfs_server *server)
Chuck Leverdda4b222010-12-24 01:32:54 +0000276{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000277 struct nfs_client *clp = server->nfs_client;
Chuck Leverdda4b222010-12-24 01:32:54 +0000278
279 spin_lock(&clp->cl_lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500280 delegation = nfs_detach_delegation_locked(nfsi, delegation, clp);
Chuck Leverdda4b222010-12-24 01:32:54 +0000281 spin_unlock(&clp->cl_lock);
282 return delegation;
283}
284
Trond Myklebustd25be542013-02-05 11:43:28 -0500285static struct nfs_delegation *
286nfs_inode_detach_delegation(struct inode *inode)
287{
288 struct nfs_inode *nfsi = NFS_I(inode);
289 struct nfs_server *server = NFS_SERVER(inode);
290 struct nfs_delegation *delegation;
291
292 delegation = nfs_start_delegation_return(nfsi);
293 if (delegation == NULL)
294 return NULL;
295 return nfs_detach_delegation(nfsi, delegation, server);
296}
297
Chuck Leverd3978bb2010-12-24 01:33:04 +0000298/**
299 * nfs_inode_set_delegation - set up a delegation on an inode
300 * @inode: inode to which delegation applies
301 * @cred: cred to use for subsequent delegation processing
302 * @res: new delegation state from server
303 *
304 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
306int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
307{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000308 struct nfs_server *server = NFS_SERVER(inode);
309 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct nfs_inode *nfsi = NFS_I(inode);
David Howells17d2c0a2010-05-01 12:37:18 -0400311 struct nfs_delegation *delegation, *old_delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500312 struct nfs_delegation *freeme = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int status = 0;
314
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400315 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (delegation == NULL)
317 return -ENOMEM;
Trond Myklebustf597c532012-03-04 18:13:56 -0500318 nfs4_stateid_copy(&delegation->stateid, &res->delegation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 delegation->type = res->delegation_type;
320 delegation->maxsize = res->maxsize;
Trond Myklebusta9a4a872011-10-17 16:08:46 -0700321 delegation->change_attr = inode->i_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 delegation->cred = get_rpccred(cred);
323 delegation->inode = inode;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500324 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
Trond Myklebust34310432008-12-23 15:21:38 -0500325 spin_lock_init(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400328 old_delegation = rcu_dereference_protected(nfsi->delegation,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000329 lockdep_is_held(&clp->cl_lock));
David Howells17d2c0a2010-05-01 12:37:18 -0400330 if (old_delegation != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500331 if (nfs4_stateid_match(&delegation->stateid,
332 &old_delegation->stateid) &&
David Howells17d2c0a2010-05-01 12:37:18 -0400333 delegation->type == old_delegation->type) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500336 /*
337 * Deal with broken servers that hand out two
338 * delegations for the same file.
Trond Myklebust17280172012-03-11 13:11:00 -0400339 * Allow for upgrades to a WRITE delegation, but
340 * nothing else.
Trond Myklebust57bfa892008-01-25 16:38:18 -0500341 */
342 dfprintk(FILE, "%s: server %s handed out "
343 "a duplicate delegation!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700344 __func__, clp->cl_hostname);
Trond Myklebust17280172012-03-11 13:11:00 -0400345 if (delegation->type == old_delegation->type ||
346 !(delegation->type & FMODE_WRITE)) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500347 freeme = delegation;
348 delegation = NULL;
349 goto out;
350 }
Trond Myklebustd25be542013-02-05 11:43:28 -0500351 freeme = nfs_detach_delegation_locked(nfsi,
352 old_delegation, clp);
353 if (freeme == NULL)
354 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000356 list_add_rcu(&delegation->super_list, &server->delegations);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500357 nfsi->delegation_state = delegation->type;
358 rcu_assign_pointer(nfsi->delegation, delegation);
359 delegation = NULL;
Trond Myklebust412c77c2007-07-03 16:10:55 -0400360
361 /* Ensure we revalidate the attributes and page cache! */
362 spin_lock(&inode->i_lock);
363 nfsi->cache_validity |= NFS_INO_REVAL_FORCED;
364 spin_unlock(&inode->i_lock);
Trond Myklebustca8acf82013-08-13 10:36:56 -0400365 trace_nfs4_set_delegation(inode, res->delegation_type);
Trond Myklebust412c77c2007-07-03 16:10:55 -0400366
Trond Myklebust57bfa892008-01-25 16:38:18 -0500367out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 spin_unlock(&clp->cl_lock);
Trond Myklebust603c83d2007-10-18 19:59:20 -0400369 if (delegation != NULL)
370 nfs_free_delegation(delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500371 if (freeme != NULL)
372 nfs_do_return_delegation(inode, freeme, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return status;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * Basic procedure for returning a delegation to the server
378 */
Trond Myklebustd25be542013-02-05 11:43:28 -0500379static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Trond Myklebustd25be542013-02-05 11:43:28 -0500381 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500383 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Trond Myklebustd25be542013-02-05 11:43:28 -0500385 if (delegation == NULL)
386 return 0;
387 do {
388 err = nfs_delegation_claim_opens(inode, &delegation->stateid);
389 if (!issync || err != -EAGAIN)
390 break;
391 /*
392 * Guard against state recovery
393 */
394 err = nfs4_wait_clnt_recover(clp);
395 } while (err == 0);
396
397 if (err) {
398 nfs_abort_delegation_return(delegation, clp);
399 goto out;
400 }
401 if (!nfs_detach_delegation(nfsi, delegation, NFS_SERVER(inode)))
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500402 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500404 err = nfs_do_return_delegation(inode, delegation, issync);
405out:
406 return err;
Trond Myklebust90163022007-07-05 14:55:18 -0400407}
408
Trond Myklebustb7571442013-04-03 14:33:49 -0400409static bool nfs_delegation_need_return(struct nfs_delegation *delegation)
410{
411 bool ret = false;
412
413 if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
414 ret = true;
415 if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) {
416 struct inode *inode;
417
418 spin_lock(&delegation->lock);
419 inode = delegation->inode;
420 if (inode && list_empty(&NFS_I(inode)->open_files))
421 ret = true;
422 spin_unlock(&delegation->lock);
423 }
424 return ret;
425}
426
Chuck Leverd3978bb2010-12-24 01:33:04 +0000427/**
428 * nfs_client_return_marked_delegations - return previously marked delegations
429 * @clp: nfs_client to process
430 *
Trond Myklebustdc327ed2012-05-06 19:46:30 -0400431 * Note that this function is designed to be called by the state
432 * manager thread. For this reason, it cannot flush the dirty data,
433 * since that could deadlock in case of a state recovery error.
434 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000435 * Returns zero on success, or a negative errno value.
Trond Myklebust515d8612008-12-23 15:21:46 -0500436 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500437int nfs_client_return_marked_delegations(struct nfs_client *clp)
Trond Myklebust515d8612008-12-23 15:21:46 -0500438{
439 struct nfs_delegation *delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000440 struct nfs_server *server;
Trond Myklebust515d8612008-12-23 15:21:46 -0500441 struct inode *inode;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500442 int err = 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500443
444restart:
445 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000446 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
447 list_for_each_entry_rcu(delegation, &server->delegations,
448 super_list) {
Trond Myklebustb7571442013-04-03 14:33:49 -0400449 if (!nfs_delegation_need_return(delegation))
Chuck Leverd3978bb2010-12-24 01:33:04 +0000450 continue;
451 inode = nfs_delegation_grab_inode(delegation);
452 if (inode == NULL)
453 continue;
Trond Myklebustd25be542013-02-05 11:43:28 -0500454 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
Chuck Leverd3978bb2010-12-24 01:33:04 +0000455 rcu_read_unlock();
456
Trond Myklebustd25be542013-02-05 11:43:28 -0500457 err = nfs_end_delegation_return(inode, delegation, 0);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000458 iput(inode);
459 if (!err)
460 goto restart;
461 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
462 return err;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500463 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500464 }
465 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500466 return 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500467}
468
Chuck Leverd3978bb2010-12-24 01:33:04 +0000469/**
470 * nfs_inode_return_delegation_noreclaim - return delegation, don't reclaim opens
471 * @inode: inode to process
472 *
473 * Does not protect against delegation reclaims, therefore really only safe
474 * to be called from nfs4_clear_inode().
Trond Myklebuste6f81072008-01-24 18:14:34 -0500475 */
476void nfs_inode_return_delegation_noreclaim(struct inode *inode)
477{
Trond Myklebuste6f81072008-01-24 18:14:34 -0500478 struct nfs_delegation *delegation;
479
Trond Myklebustd25be542013-02-05 11:43:28 -0500480 delegation = nfs_inode_detach_delegation(inode);
481 if (delegation != NULL)
482 nfs_do_return_delegation(inode, delegation, 0);
Trond Myklebuste6f81072008-01-24 18:14:34 -0500483}
484
Chuck Leverd3978bb2010-12-24 01:33:04 +0000485/**
486 * nfs_inode_return_delegation - synchronously return a delegation
487 * @inode: inode to process
488 *
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400489 * This routine will always flush any dirty data to disk on the
490 * assumption that if we need to return the delegation, then
491 * we should stop caching.
492 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000493 * Returns zero on success, or a negative errno value.
494 */
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400495int nfs4_inode_return_delegation(struct inode *inode)
Trond Myklebust90163022007-07-05 14:55:18 -0400496{
Trond Myklebust90163022007-07-05 14:55:18 -0400497 struct nfs_inode *nfsi = NFS_I(inode);
498 struct nfs_delegation *delegation;
499 int err = 0;
500
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400501 nfs_wb_all(inode);
Trond Myklebustd25be542013-02-05 11:43:28 -0500502 delegation = nfs_start_delegation_return(nfsi);
503 if (delegation != NULL)
504 err = nfs_end_delegation_return(inode, delegation, 1);
Trond Myklebust90163022007-07-05 14:55:18 -0400505 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Trond Myklebustb7571442013-04-03 14:33:49 -0400508static void nfs_mark_return_if_closed_delegation(struct nfs_server *server,
509 struct nfs_delegation *delegation)
510{
511 set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags);
512 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
513}
514
Trond Myklebusted1e6212011-07-25 15:37:29 -0400515static void nfs_mark_return_delegation(struct nfs_server *server,
516 struct nfs_delegation *delegation)
Trond Myklebust6411bd42008-12-23 15:21:51 -0500517{
518 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
Trond Myklebusted1e6212011-07-25 15:37:29 -0400519 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500520}
521
Trond Myklebust5c31e232013-04-03 19:04:58 -0400522static bool nfs_server_mark_return_all_delegations(struct nfs_server *server)
523{
524 struct nfs_delegation *delegation;
525 bool ret = false;
526
527 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
528 nfs_mark_return_delegation(server, delegation);
529 ret = true;
530 }
531 return ret;
532}
533
Trond Myklebustb02ba0b2013-04-03 19:23:58 -0400534static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
535{
536 struct nfs_server *server;
537
538 rcu_read_lock();
539 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
540 nfs_server_mark_return_all_delegations(server);
541 rcu_read_unlock();
542}
543
544static void nfs_delegation_run_state_manager(struct nfs_client *clp)
545{
546 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
547 nfs4_schedule_state_manager(clp);
548}
549
550/**
551 * nfs_expire_all_delegations
552 * @clp: client to process
553 *
554 */
555void nfs_expire_all_delegations(struct nfs_client *clp)
556{
557 nfs_client_mark_return_all_delegations(clp);
558 nfs_delegation_run_state_manager(clp);
559}
560
Chuck Leverd3978bb2010-12-24 01:33:04 +0000561/**
562 * nfs_super_return_all_delegations - return delegations for one superblock
563 * @sb: sb to process
564 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Bryan Schumakereeebf912012-06-20 15:53:41 -0400566void nfs_server_return_all_delegations(struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000568 struct nfs_client *clp = server->nfs_client;
Trond Myklebust5c31e232013-04-03 19:04:58 -0400569 bool need_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 if (clp == NULL)
572 return;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000573
Trond Myklebust8383e462007-07-06 15:12:04 -0400574 rcu_read_lock();
Trond Myklebust5c31e232013-04-03 19:04:58 -0400575 need_wait = nfs_server_mark_return_all_delegations(server);
Trond Myklebust8383e462007-07-06 15:12:04 -0400576 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000577
Trond Myklebust5c31e232013-04-03 19:04:58 -0400578 if (need_wait) {
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500579 nfs4_schedule_state_manager(clp);
Trond Myklebust5c31e232013-04-03 19:04:58 -0400580 nfs4_wait_clnt_recover(clp);
581 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500582}
583
Trond Myklebust826e0012013-04-03 19:27:52 -0400584static void nfs_mark_return_unused_delegation_types(struct nfs_server *server,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000585 fmode_t flags)
Trond Myklebust515d8612008-12-23 15:21:46 -0500586{
587 struct nfs_delegation *delegation;
588
Chuck Leverd3978bb2010-12-24 01:33:04 +0000589 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500590 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
591 continue;
592 if (delegation->type & flags)
Trond Myklebust826e0012013-04-03 19:27:52 -0400593 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500594 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000595}
596
Trond Myklebust826e0012013-04-03 19:27:52 -0400597static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000598 fmode_t flags)
599{
600 struct nfs_server *server;
601
602 rcu_read_lock();
603 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
Trond Myklebust826e0012013-04-03 19:27:52 -0400604 nfs_mark_return_unused_delegation_types(server, flags);
Trond Myklebust515d8612008-12-23 15:21:46 -0500605 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500608void nfs_remove_bad_delegation(struct inode *inode)
609{
610 struct nfs_delegation *delegation;
611
Trond Myklebustd25be542013-02-05 11:43:28 -0500612 delegation = nfs_inode_detach_delegation(inode);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500613 if (delegation) {
614 nfs_inode_find_state_and_recover(inode, &delegation->stateid);
615 nfs_free_delegation(delegation);
616 }
617}
Andy Adamson9cb81962012-03-07 10:49:41 -0500618EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500619
Chuck Leverd3978bb2010-12-24 01:33:04 +0000620/**
Trond Myklebust826e0012013-04-03 19:27:52 -0400621 * nfs_expire_unused_delegation_types
Chuck Leverd3978bb2010-12-24 01:33:04 +0000622 * @clp: client to process
623 * @flags: delegation types to expire
624 *
625 */
Trond Myklebust826e0012013-04-03 19:27:52 -0400626void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags)
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500627{
Trond Myklebust826e0012013-04-03 19:27:52 -0400628 nfs_client_mark_return_unused_delegation_types(clp, flags);
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500629 nfs_delegation_run_state_manager(clp);
630}
631
Chuck Leverd3978bb2010-12-24 01:33:04 +0000632static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server)
Trond Myklebustb7391f42008-12-23 15:21:52 -0500633{
634 struct nfs_delegation *delegation;
635
Chuck Leverd3978bb2010-12-24 01:33:04 +0000636 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebustb7391f42008-12-23 15:21:52 -0500637 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
638 continue;
Trond Myklebustb7571442013-04-03 14:33:49 -0400639 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -0500640 }
Trond Myklebustb7391f42008-12-23 15:21:52 -0500641}
642
Chuck Leverd3978bb2010-12-24 01:33:04 +0000643/**
644 * nfs_expire_unreferenced_delegations - Eliminate unused delegations
645 * @clp: nfs_client to process
646 *
647 */
Trond Myklebustb7391f42008-12-23 15:21:52 -0500648void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
649{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000650 struct nfs_server *server;
651
652 rcu_read_lock();
653 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
654 nfs_mark_return_unreferenced_delegations(server);
655 rcu_read_unlock();
656
Trond Myklebustb7391f42008-12-23 15:21:52 -0500657 nfs_delegation_run_state_manager(clp);
658}
659
Chuck Leverd3978bb2010-12-24 01:33:04 +0000660/**
661 * nfs_async_inode_return_delegation - asynchronously return a delegation
662 * @inode: inode to process
Trond Myklebust8e663f02012-03-04 18:13:56 -0500663 * @stateid: state ID information
Chuck Leverd3978bb2010-12-24 01:33:04 +0000664 *
665 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Chuck Leverd3978bb2010-12-24 01:33:04 +0000667int nfs_async_inode_return_delegation(struct inode *inode,
668 const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Trond Myklebusted1e6212011-07-25 15:37:29 -0400670 struct nfs_server *server = NFS_SERVER(inode);
671 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6411bd42008-12-23 15:21:51 -0500672 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Trond Myklebustdc327ed2012-05-06 19:46:30 -0400674 filemap_flush(inode->i_mapping);
675
Trond Myklebust6411bd42008-12-23 15:21:51 -0500676 rcu_read_lock();
677 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebust755a48a2014-03-02 22:03:12 -0500678 if (delegation == NULL)
679 goto out_enoent;
Alexandros Batsakis25976412009-12-05 13:48:55 -0500680
Trond Myklebust755a48a2014-03-02 22:03:12 -0500681 if (!clp->cl_mvops->match_stateid(&delegation->stateid, stateid))
682 goto out_enoent;
Trond Myklebusted1e6212011-07-25 15:37:29 -0400683 nfs_mark_return_delegation(server, delegation);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500684 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000685
Trond Myklebust6411bd42008-12-23 15:21:51 -0500686 nfs_delegation_run_state_manager(clp);
687 return 0;
Trond Myklebust755a48a2014-03-02 22:03:12 -0500688out_enoent:
689 rcu_read_unlock();
690 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Chuck Leverd3978bb2010-12-24 01:33:04 +0000693static struct inode *
694nfs_delegation_find_inode_server(struct nfs_server *server,
695 const struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct nfs_delegation *delegation;
698 struct inode *res = NULL;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000699
700 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500701 spin_lock(&delegation->lock);
702 if (delegation->inode != NULL &&
703 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 res = igrab(delegation->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Trond Myklebust86e89482008-12-23 15:21:39 -0500706 spin_unlock(&delegation->lock);
707 if (res != NULL)
708 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000710 return res;
711}
712
713/**
714 * nfs_delegation_find_inode - retrieve the inode associated with a delegation
715 * @clp: client state handle
716 * @fhandle: filehandle from a delegation recall
717 *
718 * Returns pointer to inode matching "fhandle," or NULL if a matching inode
719 * cannot be found.
720 */
721struct inode *nfs_delegation_find_inode(struct nfs_client *clp,
722 const struct nfs_fh *fhandle)
723{
724 struct nfs_server *server;
725 struct inode *res = NULL;
726
727 rcu_read_lock();
728 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
729 res = nfs_delegation_find_inode_server(server, fhandle);
730 if (res != NULL)
731 break;
732 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400733 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return res;
735}
736
Chuck Leverd3978bb2010-12-24 01:33:04 +0000737static void nfs_delegation_mark_reclaim_server(struct nfs_server *server)
738{
739 struct nfs_delegation *delegation;
740
741 list_for_each_entry_rcu(delegation, &server->delegations, super_list)
742 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
743}
744
745/**
746 * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed
747 * @clp: nfs_client to process
748 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
David Howellsadfa6f92006-08-22 20:06:08 -0400750void nfs_delegation_mark_reclaim(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000752 struct nfs_server *server;
753
Trond Myklebust8383e462007-07-06 15:12:04 -0400754 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000755 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
756 nfs_delegation_mark_reclaim_server(server);
Trond Myklebust8383e462007-07-06 15:12:04 -0400757 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Chuck Leverd3978bb2010-12-24 01:33:04 +0000760/**
761 * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done
762 * @clp: nfs_client to process
763 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
David Howellsadfa6f92006-08-22 20:06:08 -0400765void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Trond Myklebust8383e462007-07-06 15:12:04 -0400767 struct nfs_delegation *delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000768 struct nfs_server *server;
Trond Myklebust86e89482008-12-23 15:21:39 -0500769 struct inode *inode;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000770
Trond Myklebust8383e462007-07-06 15:12:04 -0400771restart:
772 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000773 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
774 list_for_each_entry_rcu(delegation, &server->delegations,
775 super_list) {
776 if (test_bit(NFS_DELEGATION_NEED_RECLAIM,
777 &delegation->flags) == 0)
778 continue;
779 inode = nfs_delegation_grab_inode(delegation);
780 if (inode == NULL)
781 continue;
782 delegation = nfs_detach_delegation(NFS_I(inode),
Trond Myklebustd25be542013-02-05 11:43:28 -0500783 delegation, server);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000784 rcu_read_unlock();
785
786 if (delegation != NULL)
787 nfs_free_delegation(delegation);
788 iput(inode);
789 goto restart;
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400792 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500794
Chuck Leverd3978bb2010-12-24 01:33:04 +0000795/**
796 * nfs_delegations_present - check for existence of delegations
797 * @clp: client state handle
798 *
799 * Returns one if there are any nfs_delegation structures attached
800 * to this nfs_client.
801 */
802int nfs_delegations_present(struct nfs_client *clp)
803{
804 struct nfs_server *server;
805 int ret = 0;
806
807 rcu_read_lock();
808 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
809 if (!list_empty(&server->delegations)) {
810 ret = 1;
811 break;
812 }
813 rcu_read_unlock();
814 return ret;
815}
816
817/**
818 * nfs4_copy_delegation_stateid - Copy inode's state ID information
819 * @dst: stateid data structure to fill in
820 * @inode: inode to check
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500821 * @flags: delegation type requirement
Chuck Leverd3978bb2010-12-24 01:33:04 +0000822 *
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500823 * Returns "true" and fills in "dst->data" * if inode had a delegation,
824 * otherwise "false" is returned.
Chuck Leverd3978bb2010-12-24 01:33:04 +0000825 */
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500826bool nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode,
827 fmode_t flags)
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500828{
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500829 struct nfs_inode *nfsi = NFS_I(inode);
830 struct nfs_delegation *delegation;
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500831 bool ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500832
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500833 flags &= FMODE_READ|FMODE_WRITE;
Trond Myklebust8383e462007-07-06 15:12:04 -0400834 rcu_read_lock();
835 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500836 ret = (delegation != NULL && (delegation->type & flags) == flags);
837 if (ret) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500838 nfs4_stateid_copy(dst, &delegation->stateid);
Trond Myklebust0032a7a2012-03-08 17:16:12 -0500839 nfs_mark_delegation_referenced(delegation);
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500840 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400841 rcu_read_unlock();
842 return ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500843}