blob: 48f3c6c9672f4a60053c222e541f2261af54a0f8 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/nfs/delegation.c
4 *
5 * Copyright (C) 2004 Trond Myklebust
6 *
7 * NFS file delegation management
8 *
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/completion.h>
Trond Myklebust58d97142006-01-03 09:55:24 +010011#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/spinlock.h>
Jeff Layton1eb5d982018-01-09 08:21:17 -050016#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/nfs4.h>
19#include <linux/nfs_fs.h>
20#include <linux/nfs_xdr.h>
21
Trond Myklebust4ce79712005-06-22 17:16:21 +000022#include "nfs4_fs.h"
Trond Myklebustc01d3642018-03-20 16:43:20 -040023#include "nfs4session.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040025#include "internal.h"
Trond Myklebustca8acf82013-08-13 10:36:56 -040026#include "nfs4trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Trond Myklebust905f8d12007-08-06 12:18:34 -040028static void nfs_free_delegation(struct nfs_delegation *delegation)
29{
NeilBrowna52458b2018-12-03 11:30:31 +110030 put_cred(delegation->cred);
31 delegation->cred = NULL;
Lai Jiangshan26f04dd2011-05-01 06:21:54 -070032 kfree_rcu(delegation, rcu);
Trond Myklebust8383e462007-07-06 15:12:04 -040033}
34
Chuck Leverd3978bb2010-12-24 01:33:04 +000035/**
36 * nfs_mark_delegation_referenced - set delegation's REFERENCED flag
37 * @delegation: delegation to process
38 *
39 */
Trond Myklebustb7391f42008-12-23 15:21:52 -050040void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
41{
42 set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
43}
44
Trond Myklebustaa05c872016-09-22 13:38:54 -040045static bool
46nfs4_is_valid_delegation(const struct nfs_delegation *delegation,
47 fmode_t flags)
48{
49 if (delegation != NULL && (delegation->type & flags) == flags &&
50 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) &&
51 !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
52 return true;
53 return false;
54}
55
Trond Myklebustbe3df3d2019-10-31 18:40:32 -040056struct nfs_delegation *nfs4_get_valid_delegation(const struct inode *inode)
57{
58 struct nfs_delegation *delegation;
59
60 delegation = rcu_dereference(NFS_I(inode)->delegation);
61 if (nfs4_is_valid_delegation(delegation, 0))
62 return delegation;
63 return NULL;
64}
65
Peng Tao15bb3af2014-07-03 13:05:00 +080066static int
67nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark)
Trond Myklebustb7391f42008-12-23 15:21:52 -050068{
69 struct nfs_delegation *delegation;
70 int ret = 0;
71
72 flags &= FMODE_READ|FMODE_WRITE;
73 rcu_read_lock();
74 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustaa05c872016-09-22 13:38:54 -040075 if (nfs4_is_valid_delegation(delegation, flags)) {
Peng Tao15bb3af2014-07-03 13:05:00 +080076 if (mark)
77 nfs_mark_delegation_referenced(delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -050078 ret = 1;
79 }
80 rcu_read_unlock();
81 return ret;
82}
Peng Tao15bb3af2014-07-03 13:05:00 +080083/**
84 * nfs_have_delegation - check if inode has a delegation, mark it
85 * NFS_DELEGATION_REFERENCED if there is one.
86 * @inode: inode to check
87 * @flags: delegation types to check for
88 *
89 * Returns one if inode has the indicated delegation, otherwise zero.
90 */
91int nfs4_have_delegation(struct inode *inode, fmode_t flags)
92{
93 return nfs4_do_check_delegation(inode, flags, true);
94}
95
96/*
97 * nfs4_check_delegation - check if inode has a delegation, do not mark
98 * NFS_DELEGATION_REFERENCED if it has one.
99 */
100int nfs4_check_delegation(struct inode *inode, fmode_t flags)
101{
102 return nfs4_do_check_delegation(inode, flags, false);
103}
Trond Myklebustb7391f42008-12-23 15:21:52 -0500104
Olga Kornievskaia44f411c2018-10-04 14:45:00 -0400105static int nfs_delegation_claim_locks(struct nfs4_state *state, const nfs4_stateid *stateid)
Trond Myklebust888e6942005-11-04 15:38:11 -0500106{
107 struct inode *inode = state->inode;
108 struct file_lock *fl;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500109 struct file_lock_context *flctx = inode->i_flctx;
110 struct list_head *list;
Trond Myklebustd5122202009-06-17 13:22:58 -0700111 int status = 0;
Trond Myklebust888e6942005-11-04 15:38:11 -0500112
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500113 if (flctx == NULL)
Trond Myklebust65b62a22013-02-07 10:54:07 -0500114 goto out;
Jeff Layton314d7cc2013-04-10 15:36:48 -0400115
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500116 list = &flctx->flc_posix;
Jeff Layton6109c852015-01-16 15:05:57 -0500117 spin_lock(&flctx->flc_lock);
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500118restart:
119 list_for_each_entry(fl, list, fl_list) {
Olga Kornievskaia44f411c2018-10-04 14:45:00 -0400120 if (nfs_file_open_context(fl->fl_file)->state != state)
Trond Myklebust888e6942005-11-04 15:38:11 -0500121 continue;
Jeff Layton6109c852015-01-16 15:05:57 -0500122 spin_unlock(&flctx->flc_lock);
Trond Myklebustdb4f2e62013-04-01 15:56:46 -0400123 status = nfs4_lock_delegation_recall(fl, state, stateid);
Trond Myklebustd5122202009-06-17 13:22:58 -0700124 if (status < 0)
Trond Myklebust3f09df72009-06-17 13:23:00 -0700125 goto out;
Jeff Layton6109c852015-01-16 15:05:57 -0500126 spin_lock(&flctx->flc_lock);
Trond Myklebust888e6942005-11-04 15:38:11 -0500127 }
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500128 if (list == &flctx->flc_posix) {
129 list = &flctx->flc_flock;
130 goto restart;
Jeff Layton5263e312015-01-16 15:05:55 -0500131 }
Jeff Layton6109c852015-01-16 15:05:57 -0500132 spin_unlock(&flctx->flc_lock);
Trond Myklebust3f09df72009-06-17 13:23:00 -0700133out:
Trond Myklebust888e6942005-11-04 15:38:11 -0500134 return status;
135}
136
Trond Myklebust24311f82015-09-20 10:50:17 -0400137static int nfs_delegation_claim_opens(struct inode *inode,
138 const nfs4_stateid *stateid, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct nfs_inode *nfsi = NFS_I(inode);
141 struct nfs_open_context *ctx;
Trond Myklebustd25be542013-02-05 11:43:28 -0500142 struct nfs4_state_owner *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct nfs4_state *state;
Trond Myklebustd25be542013-02-05 11:43:28 -0500144 unsigned int seq;
Trond Myklebust888e6942005-11-04 15:38:11 -0500145 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147again:
Trond Myklebust0de43972018-09-02 15:57:01 -0400148 rcu_read_lock();
149 list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 state = ctx->state;
151 if (state == NULL)
152 continue;
153 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
154 continue;
Trond Myklebustf8ebf7a2014-10-17 23:02:52 +0300155 if (!nfs4_valid_open_stateid(state))
156 continue;
Trond Myklebustf597c532012-03-04 18:13:56 -0500157 if (!nfs4_stateid_match(&state->stateid, stateid))
Trond Myklebust90163022007-07-05 14:55:18 -0400158 continue;
Trond Myklebust0de43972018-09-02 15:57:01 -0400159 if (!get_nfs_open_context(ctx))
160 continue;
161 rcu_read_unlock();
Trond Myklebustd25be542013-02-05 11:43:28 -0500162 sp = state->owner;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500163 /* Block nfs4_proc_unlck */
164 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebustd25be542013-02-05 11:43:28 -0500165 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
Trond Myklebust5eb8d182019-07-19 14:08:37 -0400166 err = nfs4_open_delegation_recall(ctx, state, stateid);
Trond Myklebustd25be542013-02-05 11:43:28 -0500167 if (!err)
Olga Kornievskaia44f411c2018-10-04 14:45:00 -0400168 err = nfs_delegation_claim_locks(state, stateid);
Trond Myklebustd25be542013-02-05 11:43:28 -0500169 if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
170 err = -EAGAIN;
Trond Myklebust65b62a22013-02-07 10:54:07 -0500171 mutex_unlock(&sp->so_delegreturn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 put_nfs_open_context(ctx);
Trond Myklebust888e6942005-11-04 15:38:11 -0500173 if (err != 0)
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500174 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto again;
176 }
Trond Myklebust0de43972018-09-02 15:57:01 -0400177 rcu_read_unlock();
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Chuck Leverd3978bb2010-12-24 01:33:04 +0000181/**
182 * nfs_inode_reclaim_delegation - process a delegation reclaim request
183 * @inode: inode to process
184 * @cred: credential to use for request
Trond Myklebust35156bf2018-03-20 17:03:13 -0400185 * @type: delegation type
186 * @stateid: delegation stateid
187 * @pagemod_limit: write delegation "space_limit"
Chuck Leverd3978bb2010-12-24 01:33:04 +0000188 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
NeilBrowna52458b2018-12-03 11:30:31 +1100190void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred,
Trond Myklebust35156bf2018-03-20 17:03:13 -0400191 fmode_t type,
192 const nfs4_stateid *stateid,
193 unsigned long pagemod_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Trond Myklebust8f649c32010-05-01 12:36:18 -0400195 struct nfs_delegation *delegation;
NeilBrowna52458b2018-12-03 11:30:31 +1100196 const struct cred *oldcred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Trond Myklebust8f649c32010-05-01 12:36:18 -0400198 rcu_read_lock();
199 delegation = rcu_dereference(NFS_I(inode)->delegation);
200 if (delegation != NULL) {
201 spin_lock(&delegation->lock);
Trond Myklebust1deed572019-10-22 08:52:47 -0400202 if (nfs4_is_valid_delegation(delegation, 0)) {
Trond Myklebust35156bf2018-03-20 17:03:13 -0400203 nfs4_stateid_copy(&delegation->stateid, stateid);
204 delegation->type = type;
205 delegation->pagemod_limit = pagemod_limit;
Trond Myklebust8f649c32010-05-01 12:36:18 -0400206 oldcred = delegation->cred;
NeilBrowna52458b2018-12-03 11:30:31 +1100207 delegation->cred = get_cred(cred);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400208 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
209 &delegation->flags);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400210 spin_unlock(&delegation->lock);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400211 rcu_read_unlock();
NeilBrowna52458b2018-12-03 11:30:31 +1100212 put_cred(oldcred);
Trond Myklebust35156bf2018-03-20 17:03:13 -0400213 trace_nfs4_reclaim_delegation(inode, type);
Trond Myklebustb1a318d2016-09-22 13:39:12 -0400214 return;
Trond Myklebust8f649c32010-05-01 12:36:18 -0400215 }
Trond Myklebustb1a318d2016-09-22 13:39:12 -0400216 /* We appear to have raced with a delegation return. */
217 spin_unlock(&delegation->lock);
Trond Myklebust8f649c32010-05-01 12:36:18 -0400218 }
Trond Myklebustb1a318d2016-09-22 13:39:12 -0400219 rcu_read_unlock();
Trond Myklebust35156bf2018-03-20 17:03:13 -0400220 nfs_inode_set_delegation(inode, cred, type, stateid, pagemod_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Trond Myklebust57bfa892008-01-25 16:38:18 -0500223static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
224{
225 int res = 0;
226
Trond Myklebust869f9df2014-11-10 18:43:56 -0500227 if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
228 res = nfs4_proc_delegreturn(inode,
229 delegation->cred,
230 &delegation->stateid,
231 issync);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500232 return res;
233}
234
Trond Myklebust86e89482008-12-23 15:21:39 -0500235static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
236{
237 struct inode *inode = NULL;
238
239 spin_lock(&delegation->lock);
240 if (delegation->inode != NULL)
241 inode = igrab(delegation->inode);
Trond Myklebust6f9449b2019-02-21 14:51:25 -0500242 if (!inode)
243 set_bit(NFS_DELEGATION_INODE_FREEING, &delegation->flags);
Trond Myklebust86e89482008-12-23 15:21:39 -0500244 spin_unlock(&delegation->lock);
245 return inode;
246}
247
Chuck Leverdda4b222010-12-24 01:32:54 +0000248static struct nfs_delegation *
Trond Myklebustd25be542013-02-05 11:43:28 -0500249nfs_start_delegation_return_locked(struct nfs_inode *nfsi)
Trond Myklebust57bfa892008-01-25 16:38:18 -0500250{
Trond Myklebustd25be542013-02-05 11:43:28 -0500251 struct nfs_delegation *ret = NULL;
252 struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500253
254 if (delegation == NULL)
Trond Myklebustd25be542013-02-05 11:43:28 -0500255 goto out;
256 spin_lock(&delegation->lock);
257 if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
258 ret = delegation;
259 spin_unlock(&delegation->lock);
260out:
261 return ret;
262}
263
264static struct nfs_delegation *
265nfs_start_delegation_return(struct nfs_inode *nfsi)
266{
267 struct nfs_delegation *delegation;
268
269 rcu_read_lock();
270 delegation = nfs_start_delegation_return_locked(nfsi);
271 rcu_read_unlock();
272 return delegation;
273}
274
275static void
276nfs_abort_delegation_return(struct nfs_delegation *delegation,
277 struct nfs_client *clp)
278{
Chuck Leverdda4b222010-12-24 01:32:54 +0000279
Trond Myklebust34310432008-12-23 15:21:38 -0500280 spin_lock(&delegation->lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500281 clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
282 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
283 spin_unlock(&delegation->lock);
284 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
285}
286
287static struct nfs_delegation *
288nfs_detach_delegation_locked(struct nfs_inode *nfsi,
289 struct nfs_delegation *delegation,
290 struct nfs_client *clp)
291{
292 struct nfs_delegation *deleg_cur =
293 rcu_dereference_protected(nfsi->delegation,
294 lockdep_is_held(&clp->cl_lock));
295
296 if (deleg_cur == NULL || delegation != deleg_cur)
297 return NULL;
298
299 spin_lock(&delegation->lock);
Trond Myklebustf9e0cc92019-10-21 14:12:13 -0400300 if (!delegation->inode) {
301 spin_unlock(&delegation->lock);
302 return NULL;
303 }
Trond Myklebust57bfa892008-01-25 16:38:18 -0500304 list_del_rcu(&delegation->super_list);
Trond Myklebust86e89482008-12-23 15:21:39 -0500305 delegation->inode = NULL;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500306 rcu_assign_pointer(nfsi->delegation, NULL);
Trond Myklebust34310432008-12-23 15:21:38 -0500307 spin_unlock(&delegation->lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500308 return delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500309}
310
Chuck Leverdda4b222010-12-24 01:32:54 +0000311static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi,
Trond Myklebustd25be542013-02-05 11:43:28 -0500312 struct nfs_delegation *delegation,
313 struct nfs_server *server)
Chuck Leverdda4b222010-12-24 01:32:54 +0000314{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000315 struct nfs_client *clp = server->nfs_client;
Chuck Leverdda4b222010-12-24 01:32:54 +0000316
317 spin_lock(&clp->cl_lock);
Trond Myklebustd25be542013-02-05 11:43:28 -0500318 delegation = nfs_detach_delegation_locked(nfsi, delegation, clp);
Chuck Leverdda4b222010-12-24 01:32:54 +0000319 spin_unlock(&clp->cl_lock);
320 return delegation;
321}
322
Trond Myklebustd25be542013-02-05 11:43:28 -0500323static struct nfs_delegation *
324nfs_inode_detach_delegation(struct inode *inode)
325{
326 struct nfs_inode *nfsi = NFS_I(inode);
327 struct nfs_server *server = NFS_SERVER(inode);
328 struct nfs_delegation *delegation;
329
Trond Myklebustee05f452019-10-21 13:56:59 -0400330 rcu_read_lock();
331 delegation = rcu_dereference(nfsi->delegation);
332 if (delegation != NULL)
333 delegation = nfs_detach_delegation(nfsi, delegation, server);
334 rcu_read_unlock();
335 return delegation;
Trond Myklebustd25be542013-02-05 11:43:28 -0500336}
337
Trond Myklebustcf6726e2014-12-19 11:22:28 -0500338static void
339nfs_update_inplace_delegation(struct nfs_delegation *delegation,
340 const struct nfs_delegation *update)
341{
342 if (nfs4_stateid_is_newer(&update->stateid, &delegation->stateid)) {
343 delegation->stateid.seqid = update->stateid.seqid;
344 smp_wmb();
345 delegation->type = update->type;
Trond Myklebustae084a32019-10-21 14:17:34 -0400346 clear_bit(NFS_DELEGATION_REVOKED, &delegation->flags);
Trond Myklebustcf6726e2014-12-19 11:22:28 -0500347 }
348}
349
Chuck Leverd3978bb2010-12-24 01:33:04 +0000350/**
351 * nfs_inode_set_delegation - set up a delegation on an inode
352 * @inode: inode to which delegation applies
353 * @cred: cred to use for subsequent delegation processing
Trond Myklebust35156bf2018-03-20 17:03:13 -0400354 * @type: delegation type
355 * @stateid: delegation stateid
356 * @pagemod_limit: write delegation "space_limit"
Chuck Leverd3978bb2010-12-24 01:33:04 +0000357 *
358 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
NeilBrowna52458b2018-12-03 11:30:31 +1100360int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred,
Trond Myklebust35156bf2018-03-20 17:03:13 -0400361 fmode_t type,
362 const nfs4_stateid *stateid,
363 unsigned long pagemod_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000365 struct nfs_server *server = NFS_SERVER(inode);
366 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct nfs_inode *nfsi = NFS_I(inode);
David Howells17d2c0a2010-05-01 12:37:18 -0400368 struct nfs_delegation *delegation, *old_delegation;
Trond Myklebust57bfa892008-01-25 16:38:18 -0500369 struct nfs_delegation *freeme = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int status = 0;
371
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400372 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (delegation == NULL)
374 return -ENOMEM;
Trond Myklebust35156bf2018-03-20 17:03:13 -0400375 nfs4_stateid_copy(&delegation->stateid, stateid);
376 delegation->type = type;
377 delegation->pagemod_limit = pagemod_limit;
Jeff Layton1eb5d982018-01-09 08:21:17 -0500378 delegation->change_attr = inode_peek_iversion_raw(inode);
NeilBrowna52458b2018-12-03 11:30:31 +1100379 delegation->cred = get_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 delegation->inode = inode;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500381 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
Trond Myklebust34310432008-12-23 15:21:38 -0500382 spin_lock_init(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 spin_lock(&clp->cl_lock);
David Howells17d2c0a2010-05-01 12:37:18 -0400385 old_delegation = rcu_dereference_protected(nfsi->delegation,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000386 lockdep_is_held(&clp->cl_lock));
Trond Myklebustee05f452019-10-21 13:56:59 -0400387 if (old_delegation == NULL)
388 goto add_new;
389 /* Is this an update of the existing delegation? */
390 if (nfs4_stateid_match_other(&old_delegation->stateid,
391 &delegation->stateid)) {
392 spin_lock(&old_delegation->lock);
393 nfs_update_inplace_delegation(old_delegation,
394 delegation);
395 spin_unlock(&old_delegation->lock);
396 goto out;
397 }
398 if (!test_bit(NFS_DELEGATION_REVOKED, &old_delegation->flags)) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500399 /*
400 * Deal with broken servers that hand out two
401 * delegations for the same file.
Trond Myklebust17280172012-03-11 13:11:00 -0400402 * Allow for upgrades to a WRITE delegation, but
403 * nothing else.
Trond Myklebust57bfa892008-01-25 16:38:18 -0500404 */
405 dfprintk(FILE, "%s: server %s handed out "
406 "a duplicate delegation!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700407 __func__, clp->cl_hostname);
Trond Myklebust17280172012-03-11 13:11:00 -0400408 if (delegation->type == old_delegation->type ||
409 !(delegation->type & FMODE_WRITE)) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500410 freeme = delegation;
411 delegation = NULL;
412 goto out;
413 }
Trond Myklebustade04642015-02-27 14:25:50 -0500414 if (test_and_set_bit(NFS_DELEGATION_RETURNING,
415 &old_delegation->flags))
416 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Trond Myklebustee05f452019-10-21 13:56:59 -0400418 freeme = nfs_detach_delegation_locked(nfsi, old_delegation, clp);
419 if (freeme == NULL)
420 goto out;
421add_new:
Trond Myklebust38942ba2015-03-04 15:59:05 -0500422 list_add_tail_rcu(&delegation->super_list, &server->delegations);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500423 rcu_assign_pointer(nfsi->delegation, delegation);
424 delegation = NULL;
Trond Myklebust412c77c2007-07-03 16:10:55 -0400425
Trond Myklebust35156bf2018-03-20 17:03:13 -0400426 trace_nfs4_set_delegation(inode, type);
Trond Myklebust412c77c2007-07-03 16:10:55 -0400427
Trond Myklebust97c2c172018-04-07 18:43:17 -0400428 spin_lock(&inode->i_lock);
429 if (NFS_I(inode)->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME))
430 NFS_I(inode)->cache_validity |= NFS_INO_REVAL_FORCED;
431 spin_unlock(&inode->i_lock);
Trond Myklebust57bfa892008-01-25 16:38:18 -0500432out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 spin_unlock(&clp->cl_lock);
Trond Myklebust603c83d2007-10-18 19:59:20 -0400434 if (delegation != NULL)
435 nfs_free_delegation(delegation);
Trond Myklebustee05f452019-10-21 13:56:59 -0400436 if (freeme != NULL) {
Trond Myklebust57bfa892008-01-25 16:38:18 -0500437 nfs_do_return_delegation(inode, freeme, 0);
Trond Myklebustee05f452019-10-21 13:56:59 -0400438 nfs_free_delegation(freeme);
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return status;
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*
444 * Basic procedure for returning a delegation to the server
445 */
Trond Myklebustd25be542013-02-05 11:43:28 -0500446static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Trond Myklebustd25be542013-02-05 11:43:28 -0500448 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Trond Myklebust869f9df2014-11-10 18:43:56 -0500449 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Trond Myklebustd25be542013-02-05 11:43:28 -0500451 if (delegation == NULL)
452 return 0;
453 do {
Trond Myklebust869f9df2014-11-10 18:43:56 -0500454 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
455 break;
Trond Myklebust24311f82015-09-20 10:50:17 -0400456 err = nfs_delegation_claim_opens(inode, &delegation->stateid,
457 delegation->type);
Trond Myklebustd25be542013-02-05 11:43:28 -0500458 if (!issync || err != -EAGAIN)
459 break;
460 /*
461 * Guard against state recovery
462 */
463 err = nfs4_wait_clnt_recover(clp);
464 } while (err == 0);
465
466 if (err) {
467 nfs_abort_delegation_return(delegation, clp);
468 goto out;
469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500471 err = nfs_do_return_delegation(inode, delegation, issync);
472out:
473 return err;
Trond Myklebust90163022007-07-05 14:55:18 -0400474}
475
Trond Myklebustb7571442013-04-03 14:33:49 -0400476static bool nfs_delegation_need_return(struct nfs_delegation *delegation)
477{
478 bool ret = false;
479
480 if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
481 ret = true;
482 if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) {
483 struct inode *inode;
484
485 spin_lock(&delegation->lock);
486 inode = delegation->inode;
487 if (inode && list_empty(&NFS_I(inode)->open_files))
488 ret = true;
489 spin_unlock(&delegation->lock);
490 }
Trond Myklebustaf20b7b2019-10-22 13:40:47 -0400491 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags) ||
492 test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
493 ret = false;
494
Trond Myklebustb7571442013-04-03 14:33:49 -0400495 return ret;
496}
497
Chuck Leverd3978bb2010-12-24 01:33:04 +0000498/**
499 * nfs_client_return_marked_delegations - return previously marked delegations
500 * @clp: nfs_client to process
501 *
Trond Myklebustdc327ed2012-05-06 19:46:30 -0400502 * Note that this function is designed to be called by the state
503 * manager thread. For this reason, it cannot flush the dirty data,
504 * since that could deadlock in case of a state recovery error.
505 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000506 * Returns zero on success, or a negative errno value.
Trond Myklebust515d8612008-12-23 15:21:46 -0500507 */
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500508int nfs_client_return_marked_delegations(struct nfs_client *clp)
Trond Myklebust515d8612008-12-23 15:21:46 -0500509{
510 struct nfs_delegation *delegation;
NeilBrowne04bbf62018-04-30 14:31:30 +1000511 struct nfs_delegation *prev;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000512 struct nfs_server *server;
Trond Myklebust515d8612008-12-23 15:21:46 -0500513 struct inode *inode;
NeilBrowne04bbf62018-04-30 14:31:30 +1000514 struct inode *place_holder = NULL;
515 struct nfs_delegation *place_holder_deleg = NULL;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500516 int err = 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500517
518restart:
NeilBrowne04bbf62018-04-30 14:31:30 +1000519 /*
520 * To avoid quadratic looping we hold a reference
521 * to an inode place_holder. Each time we restart, we
522 * list nfs_servers from the server of that inode, and
523 * delegation in the server from the delegations of that
524 * inode.
525 * prev is an RCU-protected pointer to a delegation which
526 * wasn't marked for return and might be a good choice for
527 * the next place_holder.
528 */
Trond Myklebust515d8612008-12-23 15:21:46 -0500529 rcu_read_lock();
NeilBrowne04bbf62018-04-30 14:31:30 +1000530 prev = NULL;
531 if (place_holder)
532 server = NFS_SERVER(place_holder);
533 else
534 server = list_entry_rcu(clp->cl_superblocks.next,
535 struct nfs_server, client_link);
536 list_for_each_entry_from_rcu(server, &clp->cl_superblocks, client_link) {
537 delegation = NULL;
538 if (place_holder && server == NFS_SERVER(place_holder))
539 delegation = rcu_dereference(NFS_I(place_holder)->delegation);
540 if (!delegation || delegation != place_holder_deleg)
541 delegation = list_entry_rcu(server->delegations.next,
542 struct nfs_delegation, super_list);
543 list_for_each_entry_from_rcu(delegation, &server->delegations, super_list) {
544 struct inode *to_put = NULL;
545
546 if (!nfs_delegation_need_return(delegation)) {
547 prev = delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000548 continue;
NeilBrowne04bbf62018-04-30 14:31:30 +1000549 }
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500550 if (!nfs_sb_active(server->super))
NeilBrownf38934912018-05-31 15:23:22 +1000551 break; /* continue in outer loop */
NeilBrowne04bbf62018-04-30 14:31:30 +1000552
553 if (prev) {
554 struct inode *tmp;
555
556 tmp = nfs_delegation_grab_inode(prev);
557 if (tmp) {
558 to_put = place_holder;
559 place_holder = tmp;
560 place_holder_deleg = prev;
561 }
562 }
563
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500564 inode = nfs_delegation_grab_inode(delegation);
565 if (inode == NULL) {
566 rcu_read_unlock();
NeilBrowne04bbf62018-04-30 14:31:30 +1000567 if (to_put)
568 iput(to_put);
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500569 nfs_sb_deactive(server->super);
570 goto restart;
571 }
Trond Myklebustd25be542013-02-05 11:43:28 -0500572 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
Chuck Leverd3978bb2010-12-24 01:33:04 +0000573 rcu_read_unlock();
574
NeilBrowne04bbf62018-04-30 14:31:30 +1000575 if (to_put)
576 iput(to_put);
577
Trond Myklebustd25be542013-02-05 11:43:28 -0500578 err = nfs_end_delegation_return(inode, delegation, 0);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000579 iput(inode);
Trond Myklebust9f0f8e12015-02-26 09:57:34 -0500580 nfs_sb_deactive(server->super);
NeilBrown3ca951b2018-04-30 14:31:30 +1000581 cond_resched();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000582 if (!err)
583 goto restart;
584 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
NeilBrowne04bbf62018-04-30 14:31:30 +1000585 if (place_holder)
586 iput(place_holder);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000587 return err;
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500588 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500589 }
590 rcu_read_unlock();
NeilBrowne04bbf62018-04-30 14:31:30 +1000591 if (place_holder)
592 iput(place_holder);
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500593 return 0;
Trond Myklebust515d8612008-12-23 15:21:46 -0500594}
595
Chuck Leverd3978bb2010-12-24 01:33:04 +0000596/**
Trond Myklebustb47e0e42019-10-21 14:04:00 -0400597 * nfs_inode_evict_delegation - return delegation, don't reclaim opens
Chuck Leverd3978bb2010-12-24 01:33:04 +0000598 * @inode: inode to process
599 *
600 * Does not protect against delegation reclaims, therefore really only safe
Trond Myklebustb47e0e42019-10-21 14:04:00 -0400601 * to be called from nfs4_clear_inode(). Guaranteed to always free
602 * the delegation structure.
Trond Myklebuste6f81072008-01-24 18:14:34 -0500603 */
Trond Myklebustb47e0e42019-10-21 14:04:00 -0400604void nfs_inode_evict_delegation(struct inode *inode)
Trond Myklebuste6f81072008-01-24 18:14:34 -0500605{
Trond Myklebuste6f81072008-01-24 18:14:34 -0500606 struct nfs_delegation *delegation;
607
Trond Myklebustd25be542013-02-05 11:43:28 -0500608 delegation = nfs_inode_detach_delegation(inode);
Trond Myklebustb47e0e42019-10-21 14:04:00 -0400609 if (delegation != NULL) {
610 set_bit(NFS_DELEGATION_INODE_FREEING, &delegation->flags);
Trond Myklebust5fcdfac2015-03-25 13:19:42 -0400611 nfs_do_return_delegation(inode, delegation, 1);
Trond Myklebustee05f452019-10-21 13:56:59 -0400612 nfs_free_delegation(delegation);
Trond Myklebustb47e0e42019-10-21 14:04:00 -0400613 }
Trond Myklebuste6f81072008-01-24 18:14:34 -0500614}
615
Chuck Leverd3978bb2010-12-24 01:33:04 +0000616/**
617 * nfs_inode_return_delegation - synchronously return a delegation
618 * @inode: inode to process
619 *
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400620 * This routine will always flush any dirty data to disk on the
621 * assumption that if we need to return the delegation, then
622 * we should stop caching.
623 *
Chuck Leverd3978bb2010-12-24 01:33:04 +0000624 * Returns zero on success, or a negative errno value.
625 */
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400626int nfs4_inode_return_delegation(struct inode *inode)
Trond Myklebust90163022007-07-05 14:55:18 -0400627{
Trond Myklebust90163022007-07-05 14:55:18 -0400628 struct nfs_inode *nfsi = NFS_I(inode);
629 struct nfs_delegation *delegation;
630 int err = 0;
631
Trond Myklebustc57d1bc2012-05-06 19:34:17 -0400632 nfs_wb_all(inode);
Trond Myklebustd25be542013-02-05 11:43:28 -0500633 delegation = nfs_start_delegation_return(nfsi);
634 if (delegation != NULL)
635 err = nfs_end_delegation_return(inode, delegation, 1);
Trond Myklebust90163022007-07-05 14:55:18 -0400636 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Trond Myklebustc01d3642018-03-20 16:43:20 -0400639/**
640 * nfs4_inode_make_writeable
641 * @inode: pointer to inode
642 *
643 * Make the inode writeable by returning the delegation if necessary
644 *
645 * Returns zero on success, or a negative errno value.
646 */
647int nfs4_inode_make_writeable(struct inode *inode)
648{
Trond Myklebust3887ce12019-10-27 13:48:18 -0400649 struct nfs_delegation *delegation;
650
651 rcu_read_lock();
652 delegation = nfs4_get_valid_delegation(inode);
653 if (delegation == NULL ||
654 (nfs4_has_session(NFS_SERVER(inode)->nfs_client) &&
655 (delegation->type & FMODE_WRITE))) {
656 rcu_read_unlock();
657 return 0;
658 }
659 rcu_read_unlock();
660 return nfs4_inode_return_delegation(inode);
Trond Myklebustc01d3642018-03-20 16:43:20 -0400661}
662
Trond Myklebustb7571442013-04-03 14:33:49 -0400663static void nfs_mark_return_if_closed_delegation(struct nfs_server *server,
664 struct nfs_delegation *delegation)
665{
666 set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags);
667 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
668}
669
Trond Myklebusted1e62112011-07-25 15:37:29 -0400670static void nfs_mark_return_delegation(struct nfs_server *server,
671 struct nfs_delegation *delegation)
Trond Myklebust6411bd42008-12-23 15:21:51 -0500672{
673 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
Trond Myklebusted1e62112011-07-25 15:37:29 -0400674 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500675}
676
Trond Myklebust5c31e232013-04-03 19:04:58 -0400677static bool nfs_server_mark_return_all_delegations(struct nfs_server *server)
678{
679 struct nfs_delegation *delegation;
680 bool ret = false;
681
682 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
683 nfs_mark_return_delegation(server, delegation);
684 ret = true;
685 }
686 return ret;
687}
688
Trond Myklebustb02ba0b2013-04-03 19:23:58 -0400689static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
690{
691 struct nfs_server *server;
692
693 rcu_read_lock();
694 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
695 nfs_server_mark_return_all_delegations(server);
696 rcu_read_unlock();
697}
698
699static void nfs_delegation_run_state_manager(struct nfs_client *clp)
700{
701 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
702 nfs4_schedule_state_manager(clp);
703}
704
705/**
706 * nfs_expire_all_delegations
707 * @clp: client to process
708 *
709 */
710void nfs_expire_all_delegations(struct nfs_client *clp)
711{
712 nfs_client_mark_return_all_delegations(clp);
713 nfs_delegation_run_state_manager(clp);
714}
715
Chuck Leverd3978bb2010-12-24 01:33:04 +0000716/**
717 * nfs_super_return_all_delegations - return delegations for one superblock
Trond Myklebust302fad72019-02-18 13:32:38 -0500718 * @server: pointer to nfs_server to process
Chuck Leverd3978bb2010-12-24 01:33:04 +0000719 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
Bryan Schumakereeebf912012-06-20 15:53:41 -0400721void nfs_server_return_all_delegations(struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000723 struct nfs_client *clp = server->nfs_client;
Trond Myklebust5c31e232013-04-03 19:04:58 -0400724 bool need_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 if (clp == NULL)
727 return;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000728
Trond Myklebust8383e462007-07-06 15:12:04 -0400729 rcu_read_lock();
Trond Myklebust5c31e232013-04-03 19:04:58 -0400730 need_wait = nfs_server_mark_return_all_delegations(server);
Trond Myklebust8383e462007-07-06 15:12:04 -0400731 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000732
Trond Myklebust5c31e232013-04-03 19:04:58 -0400733 if (need_wait) {
Trond Myklebustd18cc1f2009-12-03 08:10:17 -0500734 nfs4_schedule_state_manager(clp);
Trond Myklebust5c31e232013-04-03 19:04:58 -0400735 nfs4_wait_clnt_recover(clp);
736 }
Trond Myklebust515d8612008-12-23 15:21:46 -0500737}
738
Trond Myklebust826e0012013-04-03 19:27:52 -0400739static void nfs_mark_return_unused_delegation_types(struct nfs_server *server,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000740 fmode_t flags)
Trond Myklebust515d8612008-12-23 15:21:46 -0500741{
742 struct nfs_delegation *delegation;
743
Chuck Leverd3978bb2010-12-24 01:33:04 +0000744 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500745 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
746 continue;
747 if (delegation->type & flags)
Trond Myklebust826e0012013-04-03 19:27:52 -0400748 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebust707fb4b2008-12-23 15:21:47 -0500749 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000750}
751
Trond Myklebust826e0012013-04-03 19:27:52 -0400752static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp,
Chuck Leverd3978bb2010-12-24 01:33:04 +0000753 fmode_t flags)
754{
755 struct nfs_server *server;
756
757 rcu_read_lock();
758 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
Trond Myklebust826e0012013-04-03 19:27:52 -0400759 nfs_mark_return_unused_delegation_types(server, flags);
Trond Myklebust515d8612008-12-23 15:21:46 -0500760 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Trond Myklebust41020b62016-09-22 13:38:58 -0400763static void nfs_mark_delegation_revoked(struct nfs_server *server,
764 struct nfs_delegation *delegation)
Trond Myklebust869f9df2014-11-10 18:43:56 -0500765{
Trond Myklebust41020b62016-09-22 13:38:58 -0400766 set_bit(NFS_DELEGATION_REVOKED, &delegation->flags);
Trond Myklebust059b43e2016-09-22 13:39:06 -0400767 delegation->stateid.type = NFS4_INVALID_STATEID_TYPE;
Trond Myklebust869f9df2014-11-10 18:43:56 -0500768}
769
Trond Myklebustee05f452019-10-21 13:56:59 -0400770static void nfs_revoke_delegation(struct inode *inode,
Trond Myklebust41020b62016-09-22 13:38:58 -0400771 const nfs4_stateid *stateid)
772{
773 struct nfs_delegation *delegation;
Trond Myklebust7f048832016-09-22 13:39:14 -0400774 nfs4_stateid tmp;
Trond Myklebust41020b62016-09-22 13:38:58 -0400775 bool ret = false;
776
777 rcu_read_lock();
778 delegation = rcu_dereference(NFS_I(inode)->delegation);
779 if (delegation == NULL)
780 goto out;
Trond Myklebust7f048832016-09-22 13:39:14 -0400781 if (stateid == NULL) {
782 nfs4_stateid_copy(&tmp, &delegation->stateid);
783 stateid = &tmp;
Trond Myklebustf2d47b52019-10-21 14:15:32 -0400784 } else {
785 if (!nfs4_stateid_match_other(stateid, &delegation->stateid))
786 goto out;
787 spin_lock(&delegation->lock);
788 if (stateid->seqid) {
789 if (nfs4_stateid_is_newer(&delegation->stateid, stateid)) {
790 spin_unlock(&delegation->lock);
791 goto out;
792 }
793 delegation->stateid.seqid = stateid->seqid;
794 }
795 spin_unlock(&delegation->lock);
796 }
Trond Myklebust41020b62016-09-22 13:38:58 -0400797 nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation);
798 ret = true;
799out:
800 rcu_read_unlock();
Trond Myklebust7f048832016-09-22 13:39:14 -0400801 if (ret)
802 nfs_inode_find_state_and_recover(inode, stateid);
Trond Myklebust41020b62016-09-22 13:38:58 -0400803}
804
805void nfs_remove_bad_delegation(struct inode *inode,
806 const nfs4_stateid *stateid)
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500807{
Trond Myklebustee05f452019-10-21 13:56:59 -0400808 nfs_revoke_delegation(inode, stateid);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500809}
Andy Adamson9cb81962012-03-07 10:49:41 -0500810EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500811
Trond Myklebustd51f91d2019-10-21 14:22:14 -0400812void nfs_delegation_mark_returned(struct inode *inode,
813 const nfs4_stateid *stateid)
814{
815 struct nfs_delegation *delegation;
816
817 if (!inode)
818 return;
819
820 rcu_read_lock();
821 delegation = rcu_dereference(NFS_I(inode)->delegation);
822 if (!delegation)
823 goto out_rcu_unlock;
824
825 spin_lock(&delegation->lock);
826 if (!nfs4_stateid_match_other(stateid, &delegation->stateid))
827 goto out_spin_unlock;
828 if (stateid->seqid) {
829 /* If delegation->stateid is newer, dont mark as returned */
830 if (nfs4_stateid_is_newer(&delegation->stateid, stateid))
831 goto out_clear_returning;
832 if (delegation->stateid.seqid != stateid->seqid)
833 delegation->stateid.seqid = stateid->seqid;
834 }
835
Trond Myklebustee05f452019-10-21 13:56:59 -0400836 nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation);
Trond Myklebustd51f91d2019-10-21 14:22:14 -0400837
838out_clear_returning:
839 clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
840out_spin_unlock:
841 spin_unlock(&delegation->lock);
842out_rcu_unlock:
843 rcu_read_unlock();
844
845 nfs_inode_find_state_and_recover(inode, stateid);
846}
847
Chuck Leverd3978bb2010-12-24 01:33:04 +0000848/**
Trond Myklebust826e0012013-04-03 19:27:52 -0400849 * nfs_expire_unused_delegation_types
Chuck Leverd3978bb2010-12-24 01:33:04 +0000850 * @clp: client to process
851 * @flags: delegation types to expire
852 *
853 */
Trond Myklebust826e0012013-04-03 19:27:52 -0400854void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags)
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500855{
Trond Myklebust826e0012013-04-03 19:27:52 -0400856 nfs_client_mark_return_unused_delegation_types(clp, flags);
Alexandros Batsakisc79571a2009-12-05 13:20:52 -0500857 nfs_delegation_run_state_manager(clp);
858}
859
Chuck Leverd3978bb2010-12-24 01:33:04 +0000860static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server)
Trond Myklebustb7391f42008-12-23 15:21:52 -0500861{
862 struct nfs_delegation *delegation;
863
Chuck Leverd3978bb2010-12-24 01:33:04 +0000864 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebustb7391f42008-12-23 15:21:52 -0500865 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
866 continue;
Trond Myklebustb7571442013-04-03 14:33:49 -0400867 nfs_mark_return_if_closed_delegation(server, delegation);
Trond Myklebustb7391f42008-12-23 15:21:52 -0500868 }
Trond Myklebustb7391f42008-12-23 15:21:52 -0500869}
870
Chuck Leverd3978bb2010-12-24 01:33:04 +0000871/**
872 * nfs_expire_unreferenced_delegations - Eliminate unused delegations
873 * @clp: nfs_client to process
874 *
875 */
Trond Myklebustb7391f42008-12-23 15:21:52 -0500876void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
877{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000878 struct nfs_server *server;
879
880 rcu_read_lock();
881 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
882 nfs_mark_return_unreferenced_delegations(server);
883 rcu_read_unlock();
884
Trond Myklebustb7391f42008-12-23 15:21:52 -0500885 nfs_delegation_run_state_manager(clp);
886}
887
Chuck Leverd3978bb2010-12-24 01:33:04 +0000888/**
889 * nfs_async_inode_return_delegation - asynchronously return a delegation
890 * @inode: inode to process
Trond Myklebust8e663f02012-03-04 18:13:56 -0500891 * @stateid: state ID information
Chuck Leverd3978bb2010-12-24 01:33:04 +0000892 *
893 * Returns zero on success, or a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
Chuck Leverd3978bb2010-12-24 01:33:04 +0000895int nfs_async_inode_return_delegation(struct inode *inode,
896 const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Trond Myklebusted1e62112011-07-25 15:37:29 -0400898 struct nfs_server *server = NFS_SERVER(inode);
899 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6411bd42008-12-23 15:21:51 -0500900 struct nfs_delegation *delegation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Trond Myklebust6411bd42008-12-23 15:21:51 -0500902 rcu_read_lock();
Trond Myklebust457a5042019-10-22 08:46:06 -0400903 delegation = nfs4_get_valid_delegation(inode);
Trond Myklebust755a48a2014-03-02 22:03:12 -0500904 if (delegation == NULL)
905 goto out_enoent;
Trond Myklebust4816fda2015-09-20 14:58:42 -0400906 if (stateid != NULL &&
907 !clp->cl_mvops->match_stateid(&delegation->stateid, stateid))
Trond Myklebust755a48a2014-03-02 22:03:12 -0500908 goto out_enoent;
Trond Myklebusted1e62112011-07-25 15:37:29 -0400909 nfs_mark_return_delegation(server, delegation);
Trond Myklebust6411bd42008-12-23 15:21:51 -0500910 rcu_read_unlock();
Chuck Leverd3978bb2010-12-24 01:33:04 +0000911
Trond Myklebust6411bd42008-12-23 15:21:51 -0500912 nfs_delegation_run_state_manager(clp);
913 return 0;
Trond Myklebust755a48a2014-03-02 22:03:12 -0500914out_enoent:
915 rcu_read_unlock();
916 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Chuck Leverd3978bb2010-12-24 01:33:04 +0000919static struct inode *
920nfs_delegation_find_inode_server(struct nfs_server *server,
921 const struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 struct nfs_delegation *delegation;
Trond Myklebuste39d8a12018-11-13 16:37:54 -0500924 struct inode *freeme, *res = NULL;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000925
926 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
Trond Myklebust86e89482008-12-23 15:21:39 -0500927 spin_lock(&delegation->lock);
928 if (delegation->inode != NULL &&
Trond Myklebust457a5042019-10-22 08:46:06 -0400929 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) &&
Trond Myklebust86e89482008-12-23 15:21:39 -0500930 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
Trond Myklebuste39d8a12018-11-13 16:37:54 -0500931 freeme = igrab(delegation->inode);
932 if (freeme && nfs_sb_active(freeme->i_sb))
933 res = freeme;
Trond Myklebust6c342652018-06-07 14:22:00 -0400934 spin_unlock(&delegation->lock);
935 if (res != NULL)
936 return res;
Trond Myklebuste39d8a12018-11-13 16:37:54 -0500937 if (freeme) {
938 rcu_read_unlock();
939 iput(freeme);
940 rcu_read_lock();
941 }
Trond Myklebust6c342652018-06-07 14:22:00 -0400942 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Trond Myklebust86e89482008-12-23 15:21:39 -0500944 spin_unlock(&delegation->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
Trond Myklebust6c342652018-06-07 14:22:00 -0400946 return ERR_PTR(-ENOENT);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000947}
948
949/**
950 * nfs_delegation_find_inode - retrieve the inode associated with a delegation
951 * @clp: client state handle
952 * @fhandle: filehandle from a delegation recall
953 *
954 * Returns pointer to inode matching "fhandle," or NULL if a matching inode
955 * cannot be found.
956 */
957struct inode *nfs_delegation_find_inode(struct nfs_client *clp,
958 const struct nfs_fh *fhandle)
959{
960 struct nfs_server *server;
Trond Myklebust6c342652018-06-07 14:22:00 -0400961 struct inode *res;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000962
963 rcu_read_lock();
964 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
965 res = nfs_delegation_find_inode_server(server, fhandle);
Anna Schumakerd5681f52018-06-14 09:39:17 -0400966 if (res != ERR_PTR(-ENOENT)) {
967 rcu_read_unlock();
Trond Myklebust6c342652018-06-07 14:22:00 -0400968 return res;
Anna Schumakerd5681f52018-06-14 09:39:17 -0400969 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000970 }
Trond Myklebust8383e462007-07-06 15:12:04 -0400971 rcu_read_unlock();
Trond Myklebust6c342652018-06-07 14:22:00 -0400972 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Chuck Leverd3978bb2010-12-24 01:33:04 +0000975static void nfs_delegation_mark_reclaim_server(struct nfs_server *server)
976{
977 struct nfs_delegation *delegation;
978
Trond Myklebust45870d62016-09-22 13:38:59 -0400979 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
980 /*
981 * If the delegation may have been admin revoked, then we
982 * cannot reclaim it.
983 */
984 if (test_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags))
985 continue;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000986 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
Trond Myklebust45870d62016-09-22 13:38:59 -0400987 }
Chuck Leverd3978bb2010-12-24 01:33:04 +0000988}
989
990/**
991 * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed
992 * @clp: nfs_client to process
993 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
David Howellsadfa6f92006-08-22 20:06:08 -0400995void nfs_delegation_mark_reclaim(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Chuck Leverd3978bb2010-12-24 01:33:04 +0000997 struct nfs_server *server;
998
Trond Myklebust8383e462007-07-06 15:12:04 -0400999 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +00001000 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1001 nfs_delegation_mark_reclaim_server(server);
Trond Myklebust8383e462007-07-06 15:12:04 -04001002 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Chuck Leverd3978bb2010-12-24 01:33:04 +00001005/**
1006 * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done
1007 * @clp: nfs_client to process
1008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 */
David Howellsadfa6f92006-08-22 20:06:08 -04001010void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Trond Myklebust8383e462007-07-06 15:12:04 -04001012 struct nfs_delegation *delegation;
Chuck Leverd3978bb2010-12-24 01:33:04 +00001013 struct nfs_server *server;
Trond Myklebust86e89482008-12-23 15:21:39 -05001014 struct inode *inode;
Chuck Leverd3978bb2010-12-24 01:33:04 +00001015
Trond Myklebust8383e462007-07-06 15:12:04 -04001016restart:
1017 rcu_read_lock();
Chuck Leverd3978bb2010-12-24 01:33:04 +00001018 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
1019 list_for_each_entry_rcu(delegation, &server->delegations,
1020 super_list) {
Trond Myklebust6f9449b2019-02-21 14:51:25 -05001021 if (test_bit(NFS_DELEGATION_INODE_FREEING,
1022 &delegation->flags) ||
1023 test_bit(NFS_DELEGATION_RETURNING,
1024 &delegation->flags) ||
1025 test_bit(NFS_DELEGATION_NEED_RECLAIM,
Chuck Leverd3978bb2010-12-24 01:33:04 +00001026 &delegation->flags) == 0)
1027 continue;
Trond Myklebust9f0f8e12015-02-26 09:57:34 -05001028 if (!nfs_sb_active(server->super))
NeilBrownf38934912018-05-31 15:23:22 +10001029 break; /* continue in outer loop */
Trond Myklebust9f0f8e12015-02-26 09:57:34 -05001030 inode = nfs_delegation_grab_inode(delegation);
1031 if (inode == NULL) {
1032 rcu_read_unlock();
1033 nfs_sb_deactive(server->super);
1034 goto restart;
1035 }
Trond Myklebustb04b22f2015-02-26 13:59:38 -05001036 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
Chuck Leverd3978bb2010-12-24 01:33:04 +00001037 rcu_read_unlock();
Trond Myklebustb04b22f2015-02-26 13:59:38 -05001038 if (delegation != NULL) {
1039 delegation = nfs_detach_delegation(NFS_I(inode),
1040 delegation, server);
1041 if (delegation != NULL)
1042 nfs_free_delegation(delegation);
1043 }
Chuck Leverd3978bb2010-12-24 01:33:04 +00001044 iput(inode);
Trond Myklebust9f0f8e12015-02-26 09:57:34 -05001045 nfs_sb_deactive(server->super);
NeilBrown3ca951b2018-04-30 14:31:30 +10001046 cond_resched();
Chuck Leverd3978bb2010-12-24 01:33:04 +00001047 goto restart;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
Trond Myklebust8383e462007-07-06 15:12:04 -04001050 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001052
Trond Myklebustbb3d1a32016-09-22 13:39:00 -04001053static inline bool nfs4_server_rebooted(const struct nfs_client *clp)
1054{
1055 return (clp->cl_state & (BIT(NFS4CLNT_CHECK_LEASE) |
1056 BIT(NFS4CLNT_LEASE_EXPIRED) |
1057 BIT(NFS4CLNT_SESSION_RESET))) != 0;
1058}
1059
Trond Myklebust45870d62016-09-22 13:38:59 -04001060static void nfs_mark_test_expired_delegation(struct nfs_server *server,
1061 struct nfs_delegation *delegation)
1062{
Trond Myklebust059b43e2016-09-22 13:39:06 -04001063 if (delegation->stateid.type == NFS4_INVALID_STATEID_TYPE)
1064 return;
Trond Myklebust45870d62016-09-22 13:38:59 -04001065 clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
1066 set_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
1067 set_bit(NFS4CLNT_DELEGATION_EXPIRED, &server->nfs_client->cl_state);
1068}
1069
Trond Myklebustbb3d1a32016-09-22 13:39:00 -04001070static void nfs_inode_mark_test_expired_delegation(struct nfs_server *server,
1071 struct inode *inode)
1072{
1073 struct nfs_delegation *delegation;
1074
1075 rcu_read_lock();
1076 delegation = rcu_dereference(NFS_I(inode)->delegation);
1077 if (delegation)
1078 nfs_mark_test_expired_delegation(server, delegation);
1079 rcu_read_unlock();
1080
1081}
1082
Trond Myklebust45870d62016-09-22 13:38:59 -04001083static void nfs_delegation_mark_test_expired_server(struct nfs_server *server)
1084{
1085 struct nfs_delegation *delegation;
1086
1087 list_for_each_entry_rcu(delegation, &server->delegations, super_list)
1088 nfs_mark_test_expired_delegation(server, delegation);
1089}
1090
1091/**
1092 * nfs_mark_test_expired_all_delegations - mark all delegations for testing
1093 * @clp: nfs_client to process
1094 *
1095 * Iterates through all the delegations associated with this server and
1096 * marks them as needing to be checked for validity.
1097 */
1098void nfs_mark_test_expired_all_delegations(struct nfs_client *clp)
1099{
1100 struct nfs_server *server;
1101
1102 rcu_read_lock();
1103 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1104 nfs_delegation_mark_test_expired_server(server);
1105 rcu_read_unlock();
1106}
1107
1108/**
Scott Mayhew8ca017c2019-05-06 11:59:05 -04001109 * nfs_test_expired_all_delegations - test all delegations for a client
1110 * @clp: nfs_client to process
1111 *
1112 * Helper for handling "recallable state revoked" status from server.
1113 */
1114void nfs_test_expired_all_delegations(struct nfs_client *clp)
1115{
1116 nfs_mark_test_expired_all_delegations(clp);
1117 nfs4_schedule_state_manager(clp);
1118}
1119
Trond Myklebustad114082019-07-26 14:40:53 +01001120static void
1121nfs_delegation_test_free_expired(struct inode *inode,
1122 nfs4_stateid *stateid,
1123 const struct cred *cred)
1124{
1125 struct nfs_server *server = NFS_SERVER(inode);
1126 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
1127 int status;
1128
1129 if (!cred)
1130 return;
1131 status = ops->test_and_free_expired(server, stateid, cred);
1132 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
1133 nfs_remove_bad_delegation(inode, stateid);
1134}
1135
Scott Mayhew8ca017c2019-05-06 11:59:05 -04001136/**
Trond Myklebust45870d62016-09-22 13:38:59 -04001137 * nfs_reap_expired_delegations - reap expired delegations
1138 * @clp: nfs_client to process
1139 *
1140 * Iterates through all the delegations associated with this server and
1141 * checks if they have may have been revoked. This function is usually
1142 * expected to be called in cases where the server may have lost its
1143 * lease.
1144 */
1145void nfs_reap_expired_delegations(struct nfs_client *clp)
1146{
Trond Myklebust45870d62016-09-22 13:38:59 -04001147 struct nfs_delegation *delegation;
1148 struct nfs_server *server;
1149 struct inode *inode;
NeilBrowna52458b2018-12-03 11:30:31 +11001150 const struct cred *cred;
Trond Myklebust45870d62016-09-22 13:38:59 -04001151 nfs4_stateid stateid;
1152
1153restart:
1154 rcu_read_lock();
1155 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
1156 list_for_each_entry_rcu(delegation, &server->delegations,
1157 super_list) {
Trond Myklebust6f9449b2019-02-21 14:51:25 -05001158 if (test_bit(NFS_DELEGATION_INODE_FREEING,
1159 &delegation->flags) ||
1160 test_bit(NFS_DELEGATION_RETURNING,
1161 &delegation->flags) ||
1162 test_bit(NFS_DELEGATION_TEST_EXPIRED,
Trond Myklebust45870d62016-09-22 13:38:59 -04001163 &delegation->flags) == 0)
1164 continue;
1165 if (!nfs_sb_active(server->super))
NeilBrownf38934912018-05-31 15:23:22 +10001166 break; /* continue in outer loop */
Trond Myklebust45870d62016-09-22 13:38:59 -04001167 inode = nfs_delegation_grab_inode(delegation);
1168 if (inode == NULL) {
1169 rcu_read_unlock();
1170 nfs_sb_deactive(server->super);
1171 goto restart;
1172 }
NeilBrowna52458b2018-12-03 11:30:31 +11001173 cred = get_cred_rcu(delegation->cred);
Trond Myklebust45870d62016-09-22 13:38:59 -04001174 nfs4_stateid_copy(&stateid, &delegation->stateid);
1175 clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
1176 rcu_read_unlock();
Trond Myklebustad114082019-07-26 14:40:53 +01001177 nfs_delegation_test_free_expired(inode, &stateid, cred);
NeilBrowna52458b2018-12-03 11:30:31 +11001178 put_cred(cred);
Trond Myklebustbb3d1a32016-09-22 13:39:00 -04001179 if (nfs4_server_rebooted(clp)) {
1180 nfs_inode_mark_test_expired_delegation(server,inode);
1181 iput(inode);
1182 nfs_sb_deactive(server->super);
1183 return;
1184 }
Trond Myklebust45870d62016-09-22 13:38:59 -04001185 iput(inode);
1186 nfs_sb_deactive(server->super);
NeilBrown3ca951b2018-04-30 14:31:30 +10001187 cond_resched();
Trond Myklebust45870d62016-09-22 13:38:59 -04001188 goto restart;
1189 }
1190 }
1191 rcu_read_unlock();
1192}
1193
Trond Myklebust6c2d8f82016-09-22 13:39:07 -04001194void nfs_inode_find_delegation_state_and_recover(struct inode *inode,
1195 const nfs4_stateid *stateid)
1196{
1197 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
1198 struct nfs_delegation *delegation;
1199 bool found = false;
1200
1201 rcu_read_lock();
1202 delegation = rcu_dereference(NFS_I(inode)->delegation);
1203 if (delegation &&
Trond Myklebust42c304c2019-10-26 10:16:15 -04001204 nfs4_stateid_match_or_older(&delegation->stateid, stateid) &&
1205 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) {
Trond Myklebust6c2d8f82016-09-22 13:39:07 -04001206 nfs_mark_test_expired_delegation(NFS_SERVER(inode), delegation);
1207 found = true;
1208 }
1209 rcu_read_unlock();
1210 if (found)
1211 nfs4_schedule_state_manager(clp);
1212}
1213
Chuck Leverd3978bb2010-12-24 01:33:04 +00001214/**
1215 * nfs_delegations_present - check for existence of delegations
1216 * @clp: client state handle
1217 *
1218 * Returns one if there are any nfs_delegation structures attached
1219 * to this nfs_client.
1220 */
1221int nfs_delegations_present(struct nfs_client *clp)
1222{
1223 struct nfs_server *server;
1224 int ret = 0;
1225
1226 rcu_read_lock();
1227 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1228 if (!list_empty(&server->delegations)) {
1229 ret = 1;
1230 break;
1231 }
1232 rcu_read_unlock();
1233 return ret;
1234}
1235
1236/**
Trond Myklebust12f275c2017-11-06 15:28:05 -05001237 * nfs4_refresh_delegation_stateid - Update delegation stateid seqid
1238 * @dst: stateid to refresh
1239 * @inode: inode to check
1240 *
1241 * Returns "true" and updates "dst->seqid" * if inode had a delegation
1242 * that matches our delegation stateid. Otherwise "false" is returned.
1243 */
1244bool nfs4_refresh_delegation_stateid(nfs4_stateid *dst, struct inode *inode)
1245{
1246 struct nfs_delegation *delegation;
1247 bool ret = false;
1248 if (!inode)
1249 goto out;
1250
1251 rcu_read_lock();
1252 delegation = rcu_dereference(NFS_I(inode)->delegation);
1253 if (delegation != NULL &&
Trond Myklebustb5756202019-10-22 13:34:06 -04001254 nfs4_stateid_match_other(dst, &delegation->stateid) &&
1255 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) {
Trond Myklebust12f275c2017-11-06 15:28:05 -05001256 dst->seqid = delegation->stateid.seqid;
Trond Myklebust79cc5542019-10-31 18:40:33 -04001257 ret = true;
Trond Myklebust12f275c2017-11-06 15:28:05 -05001258 }
1259 rcu_read_unlock();
1260out:
1261 return ret;
1262}
1263
1264/**
Chuck Leverd3978bb2010-12-24 01:33:04 +00001265 * nfs4_copy_delegation_stateid - Copy inode's state ID information
Chuck Leverd3978bb2010-12-24 01:33:04 +00001266 * @inode: inode to check
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001267 * @flags: delegation type requirement
Trond Myklebustabf4e132016-05-16 17:42:44 -04001268 * @dst: stateid data structure to fill in
1269 * @cred: optional argument to retrieve credential
Chuck Leverd3978bb2010-12-24 01:33:04 +00001270 *
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001271 * Returns "true" and fills in "dst->data" * if inode had a delegation,
1272 * otherwise "false" is returned.
Chuck Leverd3978bb2010-12-24 01:33:04 +00001273 */
Trond Myklebustabf4e132016-05-16 17:42:44 -04001274bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags,
NeilBrowna52458b2018-12-03 11:30:31 +11001275 nfs4_stateid *dst, const struct cred **cred)
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001276{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001277 struct nfs_inode *nfsi = NFS_I(inode);
1278 struct nfs_delegation *delegation;
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001279 bool ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001280
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001281 flags &= FMODE_READ|FMODE_WRITE;
Trond Myklebust8383e462007-07-06 15:12:04 -04001282 rcu_read_lock();
1283 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebustaa05c872016-09-22 13:38:54 -04001284 ret = nfs4_is_valid_delegation(delegation, flags);
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001285 if (ret) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001286 nfs4_stateid_copy(dst, &delegation->stateid);
Trond Myklebust0032a7a2012-03-08 17:16:12 -05001287 nfs_mark_delegation_referenced(delegation);
Trond Myklebustabf4e132016-05-16 17:42:44 -04001288 if (cred)
NeilBrowna52458b2018-12-03 11:30:31 +11001289 *cred = get_cred(delegation->cred);
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001290 }
Trond Myklebust8383e462007-07-06 15:12:04 -04001291 rcu_read_unlock();
1292 return ret;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001293}
Trond Myklebust5445b1f2015-09-05 19:06:58 -04001294
1295/**
1296 * nfs4_delegation_flush_on_close - Check if we must flush file on close
1297 * @inode: inode to check
1298 *
1299 * This function checks the number of outstanding writes to the file
1300 * against the delegation 'space_limit' field to see if
1301 * the spec requires us to flush the file on close.
1302 */
1303bool nfs4_delegation_flush_on_close(const struct inode *inode)
1304{
1305 struct nfs_inode *nfsi = NFS_I(inode);
1306 struct nfs_delegation *delegation;
1307 bool ret = true;
1308
1309 rcu_read_lock();
1310 delegation = rcu_dereference(nfsi->delegation);
1311 if (delegation == NULL || !(delegation->type & FMODE_WRITE))
1312 goto out;
Trond Myklebusta6b6d5b2017-08-01 15:39:46 -04001313 if (atomic_long_read(&nfsi->nrequests) < delegation->pagemod_limit)
Trond Myklebust5445b1f2015-09-05 19:06:58 -04001314 ret = false;
1315out:
1316 rcu_read_unlock();
1317 return ret;
1318}