blob: 0ffead281555f08f7a021222831c98fd45dca815 [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
Trond Myklebustaa05c872016-09-22 13:38:54 -040044static bool
45nfs4_is_valid_delegation(const struct nfs_delegation *delegation,
46 fmode_t flags)
47{
48 if (delegation != NULL && (delegation->type & flags) == flags &&
49 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) &&
50 !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
51 return true;
52 return false;
53}
54
Peng Tao15bb3af2014-07-03 13:05:00 +080055static int
56nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark)
Trond Myklebustb7391f42008-12-23 15:21:52 -050057{
58 struct nfs_delegation *delegation;
59 int ret = 0;
60
61 flags &= FMODE_READ|FMODE_WRITE;
62 rcu_read_lock();
63 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustaa05c872016-09-22 13:38:54 -040064 if (nfs4_is_valid_delegation(delegation, flags)) {
Peng Tao15bb3af2014-07-03 13:05:00 +080065 if (mark)
66 nfs_mark_delegation_referenced(delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -050067 ret = 1;
68 }
69 rcu_read_unlock();
70 return ret;
71}
Peng Tao15bb3af2014-07-03 13:05:00 +080072/**
73 * nfs_have_delegation - check if inode has a delegation, mark it
74 * NFS_DELEGATION_REFERENCED if there is one.
75 * @inode: inode to check
76 * @flags: delegation types to check for
77 *
78 * Returns one if inode has the indicated delegation, otherwise zero.
79 */
80int nfs4_have_delegation(struct inode *inode, fmode_t flags)
81{
82 return nfs4_do_check_delegation(inode, flags, true);
83}
84
85/*
86 * nfs4_check_delegation - check if inode has a delegation, do not mark
87 * NFS_DELEGATION_REFERENCED if it has one.
88 */
89int nfs4_check_delegation(struct inode *inode, fmode_t flags)
90{
91 return nfs4_do_check_delegation(inode, flags, false);
92}
Trond Myklebustb7391f42008-12-23 15:21:52 -050093
Trond Myklebustdb4f2e62013-04-01 15:56:46 -040094static 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 -050095{
96 struct inode *inode = state->inode;
97 struct file_lock *fl;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -050098 struct file_lock_context *flctx = inode->i_flctx;
99 struct list_head *list;
Trond Myklebustd5122202009-06-17 13:22:58 -0700100 int status = 0;
Trond Myklebust888e6942005-11-04 15:38:11 -0500101
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500102 if (flctx == NULL)
Trond Myklebust65b62a22013-02-07 10:54:07 -0500103 goto out;
Jeff Layton314d7cc2013-04-10 15:36:48 -0400104
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500105 list = &flctx->flc_posix;
Jeff Layton6109c852015-01-16 15:05:57 -0500106 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500107restart:
108 list_for_each_entry(fl, list, fl_list) {
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400109 if (nfs_file_open_context(fl->fl_file) != ctx)
Trond Myklebust888e6942005-11-04 15:38:11 -0500110 continue;
Jeff Layton6109c852015-01-16 15:05:57 -0500111 spin_unlock(&flctx->flc_lock);
Trond Myklebustdb4f2e62013-04-01 15:56:46 -0400112 status = nfs4_lock_delegation_recall(fl, state, stateid);
Trond Myklebustd5122202009-06-17 13:22:58 -0700113 if (status < 0)
Trond Myklebust3f09df72009-06-17 13:23:00 -0700114 goto out;
Jeff Layton6109c852015-01-16 15:05:57 -0500115 spin_lock(&flctx->flc_lock);
Trond Myklebust888e6942005-11-04 15:38:11 -0500116 }
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500117 if (list == &flctx->flc_posix) {
118 list = &flctx->flc_flock;
119 goto restart;
Jeff Layton5263e312015-01-16 15:05:55 -0500120 }
Jeff Layton6109c852015-01-16 15:05:57 -0500121 spin_unlock(&flctx->flc_lock);
Trond Myklebust3f09df72009-06-17 13:23:00 -0700122out:
Trond Myklebust888e6942005-11-04 15:38:11 -0500123 return status;
124}
125
Trond Myklebust24311f82015-09-20 10:50:17 -0400126static int nfs_delegation_claim_opens(struct inode *inode,
127 const nfs4_stateid *stateid, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct nfs_inode *nfsi = NFS_I(inode);
130 struct nfs_open_context *ctx;
Trond Myklebustd25be542013-02-05 11:43:28 -0500131 struct nfs4_state_owner *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct nfs4_state *state;
Trond Myklebustd25be542013-02-05 11:43:28 -0500133 unsigned int seq;
Trond Myklebust888e6942005-11-04 15:38:11 -0500134 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136again:
137 spin_lock(&inode->i_lock);
138 list_for_each_entry(ctx, &nfsi->open_files, list) {
139 state = ctx->state;
140 if (state == NULL)
141 continue;
142 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
143 continue;
Trond Myklebustf8ebf7a2014-10-17 23:02:52 +0300144 if (!nfs4_valid_open_stateid(state))
145 continue;
Trond Myklebustf597c532012-03-04 18:13:56 -0500146 if (!nfs4_stateid_match(&state->stateid, stateid))
Trond Myklebust90163022007-07-05 14:55:18 -0400147 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 get_nfs_open_context(ctx);
149 spin_unlock(&inode->i_lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500150 sp = state->owner;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500151 /* Block nfs4_proc_unlck */
152 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebustd25be542013-02-05 11:43:28 -0500153 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
Trond Myklebust24311f82015-09-20 10:50:17 -0400154 err = nfs4_open_delegation_recall(ctx, state, stateid, type);
Trond Myklebustd25be542013-02-05 11:43:28 -0500155 if (!err)
Trond Myklebustdb4f2e62013-04-01 15:56:46 -0400156 err = nfs_delegation_claim_locks(ctx, state, stateid);
Trond Myklebustd25be542013-02-05 11:43:28 -0500157 if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
158 err = -EAGAIN;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500159 mutex_unlock(&sp->so_delegreturn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 put_nfs_open_context(ctx);
Trond Myklebust888e6942005-11-04 15:38:11 -0500161 if (err != 0)
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500162 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 goto again;
164 }
165 spin_unlock(&inode->i_lock);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Chuck Leverd3978bb2010-12-24 01:33:04 +0000169/**
170 * nfs_inode_reclaim_delegation - process a delegation reclaim request
171 * @inode: inode to process
172 * @cred: credential to use for request
173 * @res: new delegation state from server
174 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
Chuck Leverd3978bb2010-12-24 01:33:04 +0000176void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred,
177 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Trond Myklebust8f649c32010-05-01 12:36:18 -0400179 struct nfs_delegation *delegation;
180 struct rpc_cred *oldcred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Trond Myklebust8f649c32010-05-01 12:36:18 -0400182 rcu_read_lock();
183 delegation = rcu_dereference(NFS_I(inode)->delegation);
184 if (delegation != NULL) {
185 spin_lock(&delegation->lock);
186 if (delegation->inode != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500187 nfs4_stateid_copy(&delegation->stateid, &res->delegation);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400188 delegation->type = res->delegation_type;
Trond Myklebust7d160a62015-09-05 19:06:57 -0400189 delegation->pagemod_limit = res->pagemod_limit;
Trond Myklebust8f649c32010-05-01 12:36:18 -0400190 oldcred = delegation->cred;
191 delegation->cred = get_rpccred(cred);
192 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
193 &delegation->flags);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400194 spin_unlock(&delegation->lock);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400195 rcu_read_unlock();
Trond Myklebust7c0af9f2015-02-26 12:54:46 -0500196 put_rpccred(oldcred);
Trond Myklebustca8acf82013-08-13 10:36:56 -0400197 trace_nfs4_reclaim_delegation(inode, res->delegation_type);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400198 } else {
199 /* We appear to have raced with a delegation return. */
200 spin_unlock(&delegation->lock);
201 rcu_read_unlock();
202 nfs_inode_set_delegation(inode, cred, res);
203 }
204 } else {
205 rcu_read_unlock();
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Trond Myklebust57bfa892008-01-25 16:38:18 -0500209static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
210{
211 int res = 0;
212
Trond Myklebust869f9df2014-11-10 18:43:56 -0500213 if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
214 res = nfs4_proc_delegreturn(inode,
215 delegation->cred,
216 &delegation->stateid,
217 issync);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500218 nfs_free_delegation(delegation);
219 return res;
220}
221
Trond Myklebust86e89482008-12-23 15:21:39 -0500222static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
223{
224 struct inode *inode = NULL;
225
226 spin_lock(&delegation->lock);
227 if (delegation->inode != NULL)
228 inode = igrab(delegation->inode);
229 spin_unlock(&delegation->lock);
230 return inode;
231}
232
Chuck Leverdda4b222010-12-24 01:32:54 +0000233static struct nfs_delegation *
Trond Myklebustd25be542013-02-05 11:43:28 -0500234nfs_start_delegation_return_locked(struct nfs_inode *nfsi)
Trond Myklebust57bfa892008-01-25 16:38:18 -0500235{
Trond Myklebustd25be542013-02-05 11:43:28 -0500236 struct nfs_delegation *ret = NULL;
237 struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500238
239 if (delegation == NULL)
Trond Myklebustd25be542013-02-05 11:43:28 -0500240 goto out;
241 spin_lock(&delegation->lock);
242 if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
243 ret = delegation;
244 spin_unlock(&delegation->lock);
245out:
246 return ret;
247}
248
249static struct nfs_delegation *
250nfs_start_delegation_return(struct nfs_inode *nfsi)
251{
252 struct nfs_delegation *delegation;
253
254 rcu_read_lock();
255 delegation = nfs_start_delegation_return_locked(nfsi);
256 rcu_read_unlock();
257 return delegation;
258}
259
260static void
261nfs_abort_delegation_return(struct nfs_delegation *delegation,
262 struct nfs_client *clp)
263{
Chuck Leverdda4b222010-12-24 01:32:54 +0000264
Trond Myklebust34310432008-12-23 15:21:38 -0500265 spin_lock(&delegation->lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500266 clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
267 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
268 spin_unlock(&delegation->lock);
269 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
270}
271
272static struct nfs_delegation *
273nfs_detach_delegation_locked(struct nfs_inode *nfsi,
274 struct nfs_delegation *delegation,
275 struct nfs_client *clp)
276{
277 struct nfs_delegation *deleg_cur =
278 rcu_dereference_protected(nfsi->delegation,
279 lockdep_is_held(&clp->cl_lock));
280
281 if (deleg_cur == NULL || delegation != deleg_cur)
282 return NULL;
283
284 spin_lock(&delegation->lock);
285 set_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500286 list_del_rcu(&delegation->super_list);
Trond Myklebust86e89482008-12-23 15:21:39 -0500287 delegation->inode = NULL;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500288 rcu_assign_pointer(nfsi->delegation, NULL);
Trond Myklebust34310432008-12-23 15:21:38 -0500289 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500290 return delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500291}
292
Chuck Leverdda4b222010-12-24 01:32:54 +0000293static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi,
Trond Myklebustd25be542013-02-05 11:43:28 -0500294 struct nfs_delegation *delegation,
295 struct nfs_server *server)
Chuck Leverdda4b222010-12-24 01:32:54 +0000296{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000297 struct nfs_client *clp = server->nfs_client;
Chuck Leverdda4b222010-12-24 01:32:54 +0000298
299 spin_lock(&clp->cl_lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500300 delegation = nfs_detach_delegation_locked(nfsi, delegation, clp);
Chuck Leverdda4b222010-12-24 01:32:54 +0000301 spin_unlock(&clp->cl_lock);
302 return delegation;
303}
304
Trond Myklebustd25be542013-02-05 11:43:28 -0500305static struct nfs_delegation *
306nfs_inode_detach_delegation(struct inode *inode)
307{
308 struct nfs_inode *nfsi = NFS_I(inode);
309 struct nfs_server *server = NFS_SERVER(inode);
310 struct nfs_delegation *delegation;
311
312 delegation = nfs_start_delegation_return(nfsi);
313 if (delegation == NULL)
314 return NULL;
315 return nfs_detach_delegation(nfsi, delegation, server);
316}
317
Trond Myklebustcf6726e2014-12-19 11:22:28 -0500318static void
319nfs_update_inplace_delegation(struct nfs_delegation *delegation,
320 const struct nfs_delegation *update)
321{
322 if (nfs4_stateid_is_newer(&update->stateid, &delegation->stateid)) {
323 delegation->stateid.seqid = update->stateid.seqid;
324 smp_wmb();
325 delegation->type = update->type;
326 }
327}
328
Chuck Leverd3978bb2010-12-24 01:33:04 +0000329/**
330 * nfs_inode_set_delegation - set up a delegation on an inode
331 * @inode: inode to which delegation applies
332 * @cred: cred to use for subsequent delegation processing
333 * @res: new delegation state from server
334 *
335 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
338{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000339 struct nfs_server *server = NFS_SERVER(inode);
340 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct nfs_inode *nfsi = NFS_I(inode);
David Howells17d2c0a2010-05-01 12:37:18 -0400342 struct nfs_delegation *delegation, *old_delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500343 struct nfs_delegation *freeme = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int status = 0;
345
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400346 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (delegation == NULL)
348 return -ENOMEM;
Trond Myklebustf597c532012-03-04 18:13:56 -0500349 nfs4_stateid_copy(&delegation->stateid, &res->delegation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 delegation->type = res->delegation_type;
Trond Myklebust7d160a62015-09-05 19:06:57 -0400351 delegation->pagemod_limit = res->pagemod_limit;
Trond Myklebusta9a4a872011-10-17 16:08:46 -0700352 delegation->change_attr = inode->i_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 delegation->cred = get_rpccred(cred);
354 delegation->inode = inode;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500355 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
Trond Myklebust34310432008-12-23 15:21:38 -0500356 spin_lock_init(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400359 old_delegation = rcu_dereference_protected(nfsi->delegation,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000360 lockdep_is_held(&clp->cl_lock));
David Howells17d2c0a2010-05-01 12:37:18 -0400361 if (old_delegation != NULL) {
Trond Myklebustcf6726e2014-12-19 11:22:28 -0500362 /* Is this an update of the existing delegation? */
363 if (nfs4_stateid_match_other(&old_delegation->stateid,
364 &delegation->stateid)) {
365 nfs_update_inplace_delegation(old_delegation,
366 delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500367 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500369 /*
370 * Deal with broken servers that hand out two
371 * delegations for the same file.
Trond Myklebust17280172012-03-11 13:11:00 -0400372 * Allow for upgrades to a WRITE delegation, but
373 * nothing else.
Trond Myklebust57bfa892008-01-25 16:38:18 -0500374 */
375 dfprintk(FILE, "%s: server %s handed out "
376 "a duplicate delegation!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700377 __func__, clp->cl_hostname);
Trond Myklebust17280172012-03-11 13:11:00 -0400378 if (delegation->type == old_delegation->type ||
379 !(delegation->type & FMODE_WRITE)) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500380 freeme = delegation;
381 delegation = NULL;
382 goto out;
383 }
Trond Myklebustade04642015-02-27 14:25:50 -0500384 if (test_and_set_bit(NFS_DELEGATION_RETURNING,
385 &old_delegation->flags))
386 goto out;
387 freeme = nfs_detach_delegation_locked(nfsi,
Trond Myklebustd25be542013-02-05 11:43:28 -0500388 old_delegation, clp);
389 if (freeme == NULL)
390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Trond Myklebust38942ba2015-03-04 15:59:05 -0500392 list_add_tail_rcu(&delegation->super_list, &server->delegations);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500393 rcu_assign_pointer(nfsi->delegation, delegation);
394 delegation = NULL;
Trond Myklebust412c77c2007-07-03 16:10:55 -0400395
396 /* Ensure we revalidate the attributes and page cache! */
397 spin_lock(&inode->i_lock);
398 nfsi->cache_validity |= NFS_INO_REVAL_FORCED;
399 spin_unlock(&inode->i_lock);
Trond Myklebustca8acf82013-08-13 10:36:56 -0400400 trace_nfs4_set_delegation(inode, res->delegation_type);
Trond Myklebust412c77c2007-07-03 16:10:55 -0400401
Trond Myklebust57bfa892008-01-25 16:38:18 -0500402out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 spin_unlock(&clp->cl_lock);
Trond Myklebust603c83d2007-10-18 19:59:20 -0400404 if (delegation != NULL)
405 nfs_free_delegation(delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500406 if (freeme != NULL)
407 nfs_do_return_delegation(inode, freeme, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return status;
409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/*
412 * Basic procedure for returning a delegation to the server
413 */
Trond Myklebustd25be542013-02-05 11:43:28 -0500414static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Trond Myklebustd25be542013-02-05 11:43:28 -0500416 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust869f9df2014-11-10 18:43:56 -0500418 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Trond Myklebustd25be542013-02-05 11:43:28 -0500420 if (delegation == NULL)
421 return 0;
422 do {
Trond Myklebust869f9df2014-11-10 18:43:56 -0500423 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
424 break;
Trond Myklebust24311f82015-09-20 10:50:17 -0400425 err = nfs_delegation_claim_opens(inode, &delegation->stateid,
426 delegation->type);
Trond Myklebustd25be542013-02-05 11:43:28 -0500427 if (!issync || err != -EAGAIN)
428 break;
429 /*
430 * Guard against state recovery
431 */
432 err = nfs4_wait_clnt_recover(clp);
433 } while (err == 0);
434
435 if (err) {
436 nfs_abort_delegation_return(delegation, clp);
437 goto out;
438 }
439 if (!nfs_detach_delegation(nfsi, delegation, NFS_SERVER(inode)))
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500440 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500442 err = nfs_do_return_delegation(inode, delegation, issync);
443out:
444 return err;
Trond Myklebust90163022007-07-05 14:55:18 -0400445}
446
Trond Myklebustb7571442013-04-03 14:33:49 -0400447static bool nfs_delegation_need_return(struct nfs_delegation *delegation)
448{
449 bool ret = false;
450
Trond Myklebustec3ca4e2015-02-26 14:05:05 -0500451 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
452 goto out;
Trond Myklebustb7571442013-04-03 14:33:49 -0400453 if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
454 ret = true;
455 if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) {
456 struct inode *inode;
457
458 spin_lock(&delegation->lock);
459 inode = delegation->inode;
460 if (inode && list_empty(&NFS_I(inode)->open_files))
461 ret = true;
462 spin_unlock(&delegation->lock);
463 }
Trond Myklebustec3ca4e2015-02-26 14:05:05 -0500464out:
Trond Myklebustb7571442013-04-03 14:33:49 -0400465 return ret;
466}
467
Chuck Leverd3978bb2010-12-24 01:33:04 +0000468/**
469 * nfs_client_return_marked_delegations - return previously marked delegations
470 * @clp: nfs_client to process
471 *
Trond Myklebustdc327ed2012-05-06 19:46:30 -0400472 * Note that this function is designed to be called by the state
473 * manager thread. For this reason, it cannot flush the dirty data,
474 * since that could deadlock in case of a state recovery error.
475 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000476 * Returns zero on success, or a negative errno value.
Trond Myklebust515d8612008-12-23 15:21:46 -0500477 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500478int nfs_client_return_marked_delegations(struct nfs_client *clp)
Trond Myklebust515d8612008-12-23 15:21:46 -0500479{
480 struct nfs_delegation *delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000481 struct nfs_server *server;
Trond Myklebust515d8612008-12-23 15:21:46 -0500482 struct inode *inode;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500483 int err = 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500484
485restart:
486 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000487 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
488 list_for_each_entry_rcu(delegation, &server->delegations,
489 super_list) {
Trond Myklebustb7571442013-04-03 14:33:49 -0400490 if (!nfs_delegation_need_return(delegation))
Chuck Leverd3978bb2010-12-24 01:33:04 +0000491 continue;
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500492 if (!nfs_sb_active(server->super))
Chuck Leverd3978bb2010-12-24 01:33:04 +0000493 continue;
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500494 inode = nfs_delegation_grab_inode(delegation);
495 if (inode == NULL) {
496 rcu_read_unlock();
497 nfs_sb_deactive(server->super);
498 goto restart;
499 }
Trond Myklebustd25be542013-02-05 11:43:28 -0500500 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
Chuck Leverd3978bb2010-12-24 01:33:04 +0000501 rcu_read_unlock();
502
Trond Myklebustd25be542013-02-05 11:43:28 -0500503 err = nfs_end_delegation_return(inode, delegation, 0);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000504 iput(inode);
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500505 nfs_sb_deactive(server->super);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000506 if (!err)
507 goto restart;
508 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
509 return err;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500510 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500511 }
512 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500513 return 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500514}
515
Chuck Leverd3978bb2010-12-24 01:33:04 +0000516/**
517 * nfs_inode_return_delegation_noreclaim - return delegation, don't reclaim opens
518 * @inode: inode to process
519 *
520 * Does not protect against delegation reclaims, therefore really only safe
521 * to be called from nfs4_clear_inode().
Trond Myklebuste6f81072008-01-24 18:14:34 -0500522 */
523void nfs_inode_return_delegation_noreclaim(struct inode *inode)
524{
Trond Myklebuste6f81072008-01-24 18:14:34 -0500525 struct nfs_delegation *delegation;
526
Trond Myklebustd25be542013-02-05 11:43:28 -0500527 delegation = nfs_inode_detach_delegation(inode);
528 if (delegation != NULL)
Trond Myklebust5fcdfac2015-03-25 13:19:42 -0400529 nfs_do_return_delegation(inode, delegation, 1);
Trond Myklebuste6f81072008-01-24 18:14:34 -0500530}
531
Chuck Leverd3978bb2010-12-24 01:33:04 +0000532/**
533 * nfs_inode_return_delegation - synchronously return a delegation
534 * @inode: inode to process
535 *
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400536 * This routine will always flush any dirty data to disk on the
537 * assumption that if we need to return the delegation, then
538 * we should stop caching.
539 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000540 * Returns zero on success, or a negative errno value.
541 */
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400542int nfs4_inode_return_delegation(struct inode *inode)
Trond Myklebust90163022007-07-05 14:55:18 -0400543{
Trond Myklebust90163022007-07-05 14:55:18 -0400544 struct nfs_inode *nfsi = NFS_I(inode);
545 struct nfs_delegation *delegation;
546 int err = 0;
547
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400548 nfs_wb_all(inode);
Trond Myklebustd25be542013-02-05 11:43:28 -0500549 delegation = nfs_start_delegation_return(nfsi);
550 if (delegation != NULL)
551 err = nfs_end_delegation_return(inode, delegation, 1);
Trond Myklebust90163022007-07-05 14:55:18 -0400552 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Trond Myklebustb7571442013-04-03 14:33:49 -0400555static void nfs_mark_return_if_closed_delegation(struct nfs_server *server,
556 struct nfs_delegation *delegation)
557{
558 set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags);
559 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
560}
561
Trond Myklebusted1e62112011-07-25 15:37:29 -0400562static void nfs_mark_return_delegation(struct nfs_server *server,
563 struct nfs_delegation *delegation)
Trond Myklebust6411bd42008-12-23 15:21:51 -0500564{
565 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
Trond Myklebusted1e62112011-07-25 15:37:29 -0400566 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500567}
568
Trond Myklebust5c31e232013-04-03 19:04:58 -0400569static bool nfs_server_mark_return_all_delegations(struct nfs_server *server)
570{
571 struct nfs_delegation *delegation;
572 bool ret = false;
573
574 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
575 nfs_mark_return_delegation(server, delegation);
576 ret = true;
577 }
578 return ret;
579}
580
Trond Myklebustb02ba0b2013-04-03 19:23:58 -0400581static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
582{
583 struct nfs_server *server;
584
585 rcu_read_lock();
586 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
587 nfs_server_mark_return_all_delegations(server);
588 rcu_read_unlock();
589}
590
591static void nfs_delegation_run_state_manager(struct nfs_client *clp)
592{
593 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
594 nfs4_schedule_state_manager(clp);
595}
596
597/**
598 * nfs_expire_all_delegations
599 * @clp: client to process
600 *
601 */
602void nfs_expire_all_delegations(struct nfs_client *clp)
603{
604 nfs_client_mark_return_all_delegations(clp);
605 nfs_delegation_run_state_manager(clp);
606}
607
Chuck Leverd3978bb2010-12-24 01:33:04 +0000608/**
609 * nfs_super_return_all_delegations - return delegations for one superblock
610 * @sb: sb to process
611 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
Bryan Schumakereeebf912012-06-20 15:53:41 -0400613void nfs_server_return_all_delegations(struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000615 struct nfs_client *clp = server->nfs_client;
Trond Myklebust5c31e232013-04-03 19:04:58 -0400616 bool need_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (clp == NULL)
619 return;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000620
Trond Myklebust8383e462007-07-06 15:12:04 -0400621 rcu_read_lock();
Trond Myklebust5c31e232013-04-03 19:04:58 -0400622 need_wait = nfs_server_mark_return_all_delegations(server);
Trond Myklebust8383e462007-07-06 15:12:04 -0400623 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000624
Trond Myklebust5c31e232013-04-03 19:04:58 -0400625 if (need_wait) {
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500626 nfs4_schedule_state_manager(clp);
Trond Myklebust5c31e232013-04-03 19:04:58 -0400627 nfs4_wait_clnt_recover(clp);
628 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500629}
630
Trond Myklebust826e0012013-04-03 19:27:52 -0400631static void nfs_mark_return_unused_delegation_types(struct nfs_server *server,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000632 fmode_t flags)
Trond Myklebust515d8612008-12-23 15:21:46 -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) {
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500637 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
638 continue;
639 if (delegation->type & flags)
Trond Myklebust826e0012013-04-03 19:27:52 -0400640 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500641 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000642}
643
Trond Myklebust826e0012013-04-03 19:27:52 -0400644static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000645 fmode_t flags)
646{
647 struct nfs_server *server;
648
649 rcu_read_lock();
650 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
Trond Myklebust826e0012013-04-03 19:27:52 -0400651 nfs_mark_return_unused_delegation_types(server, flags);
Trond Myklebust515d8612008-12-23 15:21:46 -0500652 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Trond Myklebust41020b62016-09-22 13:38:58 -0400655static void nfs_mark_delegation_revoked(struct nfs_server *server,
656 struct nfs_delegation *delegation)
Trond Myklebust869f9df2014-11-10 18:43:56 -0500657{
Trond Myklebust41020b62016-09-22 13:38:58 -0400658 set_bit(NFS_DELEGATION_REVOKED, &delegation->flags);
659 nfs_mark_return_delegation(server, delegation);
Trond Myklebust869f9df2014-11-10 18:43:56 -0500660}
661
Trond Myklebust41020b62016-09-22 13:38:58 -0400662static bool nfs_revoke_delegation(struct inode *inode,
663 const nfs4_stateid *stateid)
664{
665 struct nfs_delegation *delegation;
666 bool ret = false;
667
668 rcu_read_lock();
669 delegation = rcu_dereference(NFS_I(inode)->delegation);
670 if (delegation == NULL)
671 goto out;
672 if (stateid && !nfs4_stateid_match(stateid, &delegation->stateid))
673 goto out;
674 nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation);
675 ret = true;
676out:
677 rcu_read_unlock();
678 return ret;
679}
680
681void nfs_remove_bad_delegation(struct inode *inode,
682 const nfs4_stateid *stateid)
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500683{
684 struct nfs_delegation *delegation;
685
Trond Myklebust41020b62016-09-22 13:38:58 -0400686 if (!nfs_revoke_delegation(inode, stateid))
687 return;
Trond Myklebustd25be542013-02-05 11:43:28 -0500688 delegation = nfs_inode_detach_delegation(inode);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500689 if (delegation) {
690 nfs_inode_find_state_and_recover(inode, &delegation->stateid);
691 nfs_free_delegation(delegation);
692 }
693}
Andy Adamson9cb81962012-03-07 10:49:41 -0500694EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500695
Chuck Leverd3978bb2010-12-24 01:33:04 +0000696/**
Trond Myklebust826e0012013-04-03 19:27:52 -0400697 * nfs_expire_unused_delegation_types
Chuck Leverd3978bb2010-12-24 01:33:04 +0000698 * @clp: client to process
699 * @flags: delegation types to expire
700 *
701 */
Trond Myklebust826e0012013-04-03 19:27:52 -0400702void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags)
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500703{
Trond Myklebust826e0012013-04-03 19:27:52 -0400704 nfs_client_mark_return_unused_delegation_types(clp, flags);
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500705 nfs_delegation_run_state_manager(clp);
706}
707
Chuck Leverd3978bb2010-12-24 01:33:04 +0000708static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server)
Trond Myklebustb7391f42008-12-23 15:21:52 -0500709{
710 struct nfs_delegation *delegation;
711
Chuck Leverd3978bb2010-12-24 01:33:04 +0000712 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebustb7391f42008-12-23 15:21:52 -0500713 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
714 continue;
Trond Myklebustb7571442013-04-03 14:33:49 -0400715 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -0500716 }
Trond Myklebustb7391f42008-12-23 15:21:52 -0500717}
718
Chuck Leverd3978bb2010-12-24 01:33:04 +0000719/**
720 * nfs_expire_unreferenced_delegations - Eliminate unused delegations
721 * @clp: nfs_client to process
722 *
723 */
Trond Myklebustb7391f42008-12-23 15:21:52 -0500724void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
725{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000726 struct nfs_server *server;
727
728 rcu_read_lock();
729 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
730 nfs_mark_return_unreferenced_delegations(server);
731 rcu_read_unlock();
732
Trond Myklebustb7391f42008-12-23 15:21:52 -0500733 nfs_delegation_run_state_manager(clp);
734}
735
Chuck Leverd3978bb2010-12-24 01:33:04 +0000736/**
737 * nfs_async_inode_return_delegation - asynchronously return a delegation
738 * @inode: inode to process
Trond Myklebust8e663f02012-03-04 18:13:56 -0500739 * @stateid: state ID information
Chuck Leverd3978bb2010-12-24 01:33:04 +0000740 *
741 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
Chuck Leverd3978bb2010-12-24 01:33:04 +0000743int nfs_async_inode_return_delegation(struct inode *inode,
744 const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Trond Myklebusted1e62112011-07-25 15:37:29 -0400746 struct nfs_server *server = NFS_SERVER(inode);
747 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6411bd42008-12-23 15:21:51 -0500748 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Trond Myklebust6411bd42008-12-23 15:21:51 -0500750 rcu_read_lock();
751 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebust755a48a2014-03-02 22:03:12 -0500752 if (delegation == NULL)
753 goto out_enoent;
Trond Myklebust4816fda2015-09-20 14:58:42 -0400754 if (stateid != NULL &&
755 !clp->cl_mvops->match_stateid(&delegation->stateid, stateid))
Trond Myklebust755a48a2014-03-02 22:03:12 -0500756 goto out_enoent;
Trond Myklebusted1e62112011-07-25 15:37:29 -0400757 nfs_mark_return_delegation(server, delegation);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500758 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000759
Trond Myklebust6411bd42008-12-23 15:21:51 -0500760 nfs_delegation_run_state_manager(clp);
761 return 0;
Trond Myklebust755a48a2014-03-02 22:03:12 -0500762out_enoent:
763 rcu_read_unlock();
764 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Chuck Leverd3978bb2010-12-24 01:33:04 +0000767static struct inode *
768nfs_delegation_find_inode_server(struct nfs_server *server,
769 const struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct nfs_delegation *delegation;
772 struct inode *res = NULL;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000773
774 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500775 spin_lock(&delegation->lock);
776 if (delegation->inode != NULL &&
777 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 res = igrab(delegation->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Trond Myklebust86e89482008-12-23 15:21:39 -0500780 spin_unlock(&delegation->lock);
781 if (res != NULL)
782 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000784 return res;
785}
786
787/**
788 * nfs_delegation_find_inode - retrieve the inode associated with a delegation
789 * @clp: client state handle
790 * @fhandle: filehandle from a delegation recall
791 *
792 * Returns pointer to inode matching "fhandle," or NULL if a matching inode
793 * cannot be found.
794 */
795struct inode *nfs_delegation_find_inode(struct nfs_client *clp,
796 const struct nfs_fh *fhandle)
797{
798 struct nfs_server *server;
799 struct inode *res = NULL;
800
801 rcu_read_lock();
802 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
803 res = nfs_delegation_find_inode_server(server, fhandle);
804 if (res != NULL)
805 break;
806 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400807 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return res;
809}
810
Chuck Leverd3978bb2010-12-24 01:33:04 +0000811static void nfs_delegation_mark_reclaim_server(struct nfs_server *server)
812{
813 struct nfs_delegation *delegation;
814
Trond Myklebust45870d62016-09-22 13:38:59 -0400815 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
816 /*
817 * If the delegation may have been admin revoked, then we
818 * cannot reclaim it.
819 */
820 if (test_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags))
821 continue;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000822 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
Trond Myklebust45870d62016-09-22 13:38:59 -0400823 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000824}
825
826/**
827 * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed
828 * @clp: nfs_client to process
829 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 */
David Howellsadfa6f92006-08-22 20:06:08 -0400831void nfs_delegation_mark_reclaim(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000833 struct nfs_server *server;
834
Trond Myklebust8383e462007-07-06 15:12:04 -0400835 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000836 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
837 nfs_delegation_mark_reclaim_server(server);
Trond Myklebust8383e462007-07-06 15:12:04 -0400838 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Chuck Leverd3978bb2010-12-24 01:33:04 +0000841/**
842 * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done
843 * @clp: nfs_client to process
844 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
David Howellsadfa6f92006-08-22 20:06:08 -0400846void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Trond Myklebust8383e462007-07-06 15:12:04 -0400848 struct nfs_delegation *delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000849 struct nfs_server *server;
Trond Myklebust86e89482008-12-23 15:21:39 -0500850 struct inode *inode;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000851
Trond Myklebust8383e462007-07-06 15:12:04 -0400852restart:
853 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000854 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
855 list_for_each_entry_rcu(delegation, &server->delegations,
856 super_list) {
Trond Myklebustec3ca4e2015-02-26 14:05:05 -0500857 if (test_bit(NFS_DELEGATION_RETURNING,
858 &delegation->flags))
859 continue;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000860 if (test_bit(NFS_DELEGATION_NEED_RECLAIM,
861 &delegation->flags) == 0)
862 continue;
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500863 if (!nfs_sb_active(server->super))
Chuck Leverd3978bb2010-12-24 01:33:04 +0000864 continue;
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500865 inode = nfs_delegation_grab_inode(delegation);
866 if (inode == NULL) {
867 rcu_read_unlock();
868 nfs_sb_deactive(server->super);
869 goto restart;
870 }
Trond Myklebustb04b22f2015-02-26 13:59:38 -0500871 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
Chuck Leverd3978bb2010-12-24 01:33:04 +0000872 rcu_read_unlock();
Trond Myklebustb04b22f2015-02-26 13:59:38 -0500873 if (delegation != NULL) {
874 delegation = nfs_detach_delegation(NFS_I(inode),
875 delegation, server);
876 if (delegation != NULL)
877 nfs_free_delegation(delegation);
878 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000879 iput(inode);
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500880 nfs_sb_deactive(server->super);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000881 goto restart;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400884 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
Trond Myklebust3e4f6292006-03-20 13:44:46 -0500886
Trond Myklebustbb3d1a32016-09-22 13:39:00 -0400887static inline bool nfs4_server_rebooted(const struct nfs_client *clp)
888{
889 return (clp->cl_state & (BIT(NFS4CLNT_CHECK_LEASE) |
890 BIT(NFS4CLNT_LEASE_EXPIRED) |
891 BIT(NFS4CLNT_SESSION_RESET))) != 0;
892}
893
Trond Myklebust45870d62016-09-22 13:38:59 -0400894static void nfs_mark_test_expired_delegation(struct nfs_server *server,
895 struct nfs_delegation *delegation)
896{
897 clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
898 set_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
899 set_bit(NFS4CLNT_DELEGATION_EXPIRED, &server->nfs_client->cl_state);
900}
901
Trond Myklebustbb3d1a32016-09-22 13:39:00 -0400902static void nfs_inode_mark_test_expired_delegation(struct nfs_server *server,
903 struct inode *inode)
904{
905 struct nfs_delegation *delegation;
906
907 rcu_read_lock();
908 delegation = rcu_dereference(NFS_I(inode)->delegation);
909 if (delegation)
910 nfs_mark_test_expired_delegation(server, delegation);
911 rcu_read_unlock();
912
913}
914
Trond Myklebust45870d62016-09-22 13:38:59 -0400915static void nfs_delegation_mark_test_expired_server(struct nfs_server *server)
916{
917 struct nfs_delegation *delegation;
918
919 list_for_each_entry_rcu(delegation, &server->delegations, super_list)
920 nfs_mark_test_expired_delegation(server, delegation);
921}
922
923/**
924 * nfs_mark_test_expired_all_delegations - mark all delegations for testing
925 * @clp: nfs_client to process
926 *
927 * Iterates through all the delegations associated with this server and
928 * marks them as needing to be checked for validity.
929 */
930void nfs_mark_test_expired_all_delegations(struct nfs_client *clp)
931{
932 struct nfs_server *server;
933
934 rcu_read_lock();
935 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
936 nfs_delegation_mark_test_expired_server(server);
937 rcu_read_unlock();
938}
939
940/**
941 * nfs_reap_expired_delegations - reap expired delegations
942 * @clp: nfs_client to process
943 *
944 * Iterates through all the delegations associated with this server and
945 * checks if they have may have been revoked. This function is usually
946 * expected to be called in cases where the server may have lost its
947 * lease.
948 */
949void nfs_reap_expired_delegations(struct nfs_client *clp)
950{
951 const struct nfs4_minor_version_ops *ops = clp->cl_mvops;
952 struct nfs_delegation *delegation;
953 struct nfs_server *server;
954 struct inode *inode;
955 struct rpc_cred *cred;
956 nfs4_stateid stateid;
957
958restart:
959 rcu_read_lock();
960 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
961 list_for_each_entry_rcu(delegation, &server->delegations,
962 super_list) {
963 if (test_bit(NFS_DELEGATION_RETURNING,
964 &delegation->flags))
965 continue;
966 if (test_bit(NFS_DELEGATION_TEST_EXPIRED,
967 &delegation->flags) == 0)
968 continue;
969 if (!nfs_sb_active(server->super))
970 continue;
971 inode = nfs_delegation_grab_inode(delegation);
972 if (inode == NULL) {
973 rcu_read_unlock();
974 nfs_sb_deactive(server->super);
975 goto restart;
976 }
977 cred = get_rpccred_rcu(delegation->cred);
978 nfs4_stateid_copy(&stateid, &delegation->stateid);
979 clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
980 rcu_read_unlock();
981 if (cred != NULL &&
982 ops->test_and_free_expired(server, &stateid, cred) < 0) {
983 nfs_revoke_delegation(inode, &stateid);
984 nfs_inode_find_state_and_recover(inode, &stateid);
985 }
986 put_rpccred(cred);
Trond Myklebustbb3d1a32016-09-22 13:39:00 -0400987 if (nfs4_server_rebooted(clp)) {
988 nfs_inode_mark_test_expired_delegation(server,inode);
989 iput(inode);
990 nfs_sb_deactive(server->super);
991 return;
992 }
Trond Myklebust45870d62016-09-22 13:38:59 -0400993 iput(inode);
994 nfs_sb_deactive(server->super);
995 goto restart;
996 }
997 }
998 rcu_read_unlock();
999}
1000
Chuck Leverd3978bb2010-12-24 01:33:04 +00001001/**
1002 * nfs_delegations_present - check for existence of delegations
1003 * @clp: client state handle
1004 *
1005 * Returns one if there are any nfs_delegation structures attached
1006 * to this nfs_client.
1007 */
1008int nfs_delegations_present(struct nfs_client *clp)
1009{
1010 struct nfs_server *server;
1011 int ret = 0;
1012
1013 rcu_read_lock();
1014 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1015 if (!list_empty(&server->delegations)) {
1016 ret = 1;
1017 break;
1018 }
1019 rcu_read_unlock();
1020 return ret;
1021}
1022
1023/**
1024 * nfs4_copy_delegation_stateid - Copy inode's state ID information
Chuck Leverd3978bb2010-12-24 01:33:04 +00001025 * @inode: inode to check
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001026 * @flags: delegation type requirement
Trond Myklebustabf4e132016-05-16 17:42:44 -04001027 * @dst: stateid data structure to fill in
1028 * @cred: optional argument to retrieve credential
Chuck Leverd3978bb2010-12-24 01:33:04 +00001029 *
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001030 * Returns "true" and fills in "dst->data" * if inode had a delegation,
1031 * otherwise "false" is returned.
Chuck Leverd3978bb2010-12-24 01:33:04 +00001032 */
Trond Myklebustabf4e132016-05-16 17:42:44 -04001033bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags,
1034 nfs4_stateid *dst, struct rpc_cred **cred)
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001035{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001036 struct nfs_inode *nfsi = NFS_I(inode);
1037 struct nfs_delegation *delegation;
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001038 bool ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001039
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001040 flags &= FMODE_READ|FMODE_WRITE;
Trond Myklebust8383e462007-07-06 15:12:04 -04001041 rcu_read_lock();
1042 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebustaa05c872016-09-22 13:38:54 -04001043 ret = nfs4_is_valid_delegation(delegation, flags);
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001044 if (ret) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001045 nfs4_stateid_copy(dst, &delegation->stateid);
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001046 nfs_mark_delegation_referenced(delegation);
Trond Myklebustabf4e132016-05-16 17:42:44 -04001047 if (cred)
1048 *cred = get_rpccred(delegation->cred);
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001049 }
Trond Myklebust8383e462007-07-06 15:12:04 -04001050 rcu_read_unlock();
1051 return ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001052}
Trond Myklebust5445b1f2015-09-05 19:06:58 -04001053
1054/**
1055 * nfs4_delegation_flush_on_close - Check if we must flush file on close
1056 * @inode: inode to check
1057 *
1058 * This function checks the number of outstanding writes to the file
1059 * against the delegation 'space_limit' field to see if
1060 * the spec requires us to flush the file on close.
1061 */
1062bool nfs4_delegation_flush_on_close(const struct inode *inode)
1063{
1064 struct nfs_inode *nfsi = NFS_I(inode);
1065 struct nfs_delegation *delegation;
1066 bool ret = true;
1067
1068 rcu_read_lock();
1069 delegation = rcu_dereference(nfsi->delegation);
1070 if (delegation == NULL || !(delegation->type & FMODE_WRITE))
1071 goto out;
1072 if (nfsi->nrequests < delegation->pagemod_limit)
1073 ret = false;
1074out:
1075 rcu_read_unlock();
1076 return ret;
1077}