Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/nfs/delegation.c |
| 4 | * |
| 5 | * Copyright (C) 2004 Trond Myklebust |
| 6 | * |
| 7 | * NFS file delegation management |
| 8 | * |
| 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/completion.h> |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 11 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
Jeff Layton | 1eb5d98 | 2018-01-09 08:21:17 -0500 | [diff] [blame] | 16 | #include <linux/iversion.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #include <linux/nfs4.h> |
| 19 | #include <linux/nfs_fs.h> |
| 20 | #include <linux/nfs_xdr.h> |
| 21 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 22 | #include "nfs4_fs.h" |
Trond Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 23 | #include "nfs4session.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "delegation.h" |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 25 | #include "internal.h" |
Trond Myklebust | ca8acf8 | 2013-08-13 10:36:56 -0400 | [diff] [blame] | 26 | #include "nfs4trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 28 | static void nfs_free_delegation(struct nfs_delegation *delegation) |
| 29 | { |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 30 | put_cred(delegation->cred); |
| 31 | delegation->cred = NULL; |
Lai Jiangshan | 26f04dd | 2011-05-01 06:21:54 -0700 | [diff] [blame] | 32 | kfree_rcu(delegation, rcu); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 33 | } |
| 34 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 35 | /** |
| 36 | * nfs_mark_delegation_referenced - set delegation's REFERENCED flag |
| 37 | * @delegation: delegation to process |
| 38 | * |
| 39 | */ |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 40 | void nfs_mark_delegation_referenced(struct nfs_delegation *delegation) |
| 41 | { |
| 42 | set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags); |
| 43 | } |
| 44 | |
Trond Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 45 | static bool |
| 46 | nfs4_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 Myklebust | be3df3d | 2019-10-31 18:40:32 -0400 | [diff] [blame] | 56 | struct 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 Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 66 | static int |
| 67 | nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark) |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 68 | { |
| 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 Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 75 | if (nfs4_is_valid_delegation(delegation, flags)) { |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 76 | if (mark) |
| 77 | nfs_mark_delegation_referenced(delegation); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 78 | ret = 1; |
| 79 | } |
| 80 | rcu_read_unlock(); |
| 81 | return ret; |
| 82 | } |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 83 | /** |
| 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 | */ |
| 91 | int 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 | */ |
| 100 | int nfs4_check_delegation(struct inode *inode, fmode_t flags) |
| 101 | { |
| 102 | return nfs4_do_check_delegation(inode, flags, false); |
| 103 | } |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 104 | |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 105 | static int nfs_delegation_claim_locks(struct nfs4_state *state, const nfs4_stateid *stateid) |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 106 | { |
| 107 | struct inode *inode = state->inode; |
| 108 | struct file_lock *fl; |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 109 | struct file_lock_context *flctx = inode->i_flctx; |
| 110 | struct list_head *list; |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 111 | int status = 0; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 112 | |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 113 | if (flctx == NULL) |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 114 | goto out; |
Jeff Layton | 314d7cc | 2013-04-10 15:36:48 -0400 | [diff] [blame] | 115 | |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 116 | list = &flctx->flc_posix; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 117 | spin_lock(&flctx->flc_lock); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 118 | restart: |
| 119 | list_for_each_entry(fl, list, fl_list) { |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 120 | if (nfs_file_open_context(fl->fl_file)->state != state) |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 121 | continue; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 122 | spin_unlock(&flctx->flc_lock); |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 123 | status = nfs4_lock_delegation_recall(fl, state, stateid); |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 124 | if (status < 0) |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 125 | goto out; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 126 | spin_lock(&flctx->flc_lock); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 127 | } |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 128 | if (list == &flctx->flc_posix) { |
| 129 | list = &flctx->flc_flock; |
| 130 | goto restart; |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 131 | } |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 132 | spin_unlock(&flctx->flc_lock); |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 133 | out: |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 134 | return status; |
| 135 | } |
| 136 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 137 | static int nfs_delegation_claim_opens(struct inode *inode, |
| 138 | const nfs4_stateid *stateid, fmode_t type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
| 140 | struct nfs_inode *nfsi = NFS_I(inode); |
| 141 | struct nfs_open_context *ctx; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 142 | struct nfs4_state_owner *sp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | struct nfs4_state *state; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 144 | unsigned int seq; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 145 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | again: |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 148 | rcu_read_lock(); |
| 149 | list_for_each_entry_rcu(ctx, &nfsi->open_files, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | state = ctx->state; |
| 151 | if (state == NULL) |
| 152 | continue; |
| 153 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) |
| 154 | continue; |
Trond Myklebust | f8ebf7a | 2014-10-17 23:02:52 +0300 | [diff] [blame] | 155 | if (!nfs4_valid_open_stateid(state)) |
| 156 | continue; |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 157 | if (!nfs4_stateid_match(&state->stateid, stateid)) |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 158 | continue; |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 159 | if (!get_nfs_open_context(ctx)) |
| 160 | continue; |
| 161 | rcu_read_unlock(); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 162 | sp = state->owner; |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 163 | /* Block nfs4_proc_unlck */ |
| 164 | mutex_lock(&sp->so_delegreturn_mutex); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 165 | seq = raw_seqcount_begin(&sp->so_reclaim_seqcount); |
Trond Myklebust | 5eb8d18 | 2019-07-19 14:08:37 -0400 | [diff] [blame] | 166 | err = nfs4_open_delegation_recall(ctx, state, stateid); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 167 | if (!err) |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 168 | err = nfs_delegation_claim_locks(state, stateid); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 169 | if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq)) |
| 170 | err = -EAGAIN; |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 171 | mutex_unlock(&sp->so_delegreturn_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | put_nfs_open_context(ctx); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 173 | if (err != 0) |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 174 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | goto again; |
| 176 | } |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 177 | rcu_read_unlock(); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 178 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 181 | /** |
| 182 | * nfs_inode_reclaim_delegation - process a delegation reclaim request |
| 183 | * @inode: inode to process |
| 184 | * @cred: credential to use for request |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 185 | * @type: delegation type |
| 186 | * @stateid: delegation stateid |
| 187 | * @pagemod_limit: write delegation "space_limit" |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 188 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | */ |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 190 | void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 191 | fmode_t type, |
| 192 | const nfs4_stateid *stateid, |
| 193 | unsigned long pagemod_limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 195 | struct nfs_delegation *delegation; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 196 | const struct cred *oldcred = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 198 | rcu_read_lock(); |
| 199 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 200 | if (delegation != NULL) { |
| 201 | spin_lock(&delegation->lock); |
Trond Myklebust | 1deed57 | 2019-10-22 08:52:47 -0400 | [diff] [blame] | 202 | if (nfs4_is_valid_delegation(delegation, 0)) { |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 203 | nfs4_stateid_copy(&delegation->stateid, stateid); |
| 204 | delegation->type = type; |
| 205 | delegation->pagemod_limit = pagemod_limit; |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 206 | oldcred = delegation->cred; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 207 | delegation->cred = get_cred(cred); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 208 | clear_bit(NFS_DELEGATION_NEED_RECLAIM, |
| 209 | &delegation->flags); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 210 | spin_unlock(&delegation->lock); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 211 | rcu_read_unlock(); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 212 | put_cred(oldcred); |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 213 | trace_nfs4_reclaim_delegation(inode, type); |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 214 | return; |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 215 | } |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 216 | /* We appear to have raced with a delegation return. */ |
| 217 | spin_unlock(&delegation->lock); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 218 | } |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 219 | rcu_read_unlock(); |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 220 | nfs_inode_set_delegation(inode, cred, type, stateid, pagemod_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 223 | static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync) |
| 224 | { |
| 225 | int res = 0; |
| 226 | |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 227 | if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) |
| 228 | res = nfs4_proc_delegreturn(inode, |
| 229 | delegation->cred, |
| 230 | &delegation->stateid, |
| 231 | issync); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 232 | return res; |
| 233 | } |
| 234 | |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 235 | static 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 Myklebust | 6f9449b | 2019-02-21 14:51:25 -0500 | [diff] [blame] | 242 | if (!inode) |
| 243 | set_bit(NFS_DELEGATION_INODE_FREEING, &delegation->flags); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 244 | spin_unlock(&delegation->lock); |
| 245 | return inode; |
| 246 | } |
| 247 | |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 248 | static struct nfs_delegation * |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 249 | nfs_start_delegation_return_locked(struct nfs_inode *nfsi) |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 250 | { |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 251 | struct nfs_delegation *ret = NULL; |
| 252 | struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 253 | |
| 254 | if (delegation == NULL) |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 255 | 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); |
| 260 | out: |
| 261 | return ret; |
| 262 | } |
| 263 | |
| 264 | static struct nfs_delegation * |
| 265 | nfs_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 | |
| 275 | static void |
| 276 | nfs_abort_delegation_return(struct nfs_delegation *delegation, |
| 277 | struct nfs_client *clp) |
| 278 | { |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 279 | |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 280 | spin_lock(&delegation->lock); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 281 | 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 | |
| 287 | static struct nfs_delegation * |
| 288 | nfs_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 Myklebust | f9e0cc9 | 2019-10-21 14:12:13 -0400 | [diff] [blame] | 300 | if (!delegation->inode) { |
| 301 | spin_unlock(&delegation->lock); |
| 302 | return NULL; |
| 303 | } |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 304 | list_del_rcu(&delegation->super_list); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 305 | delegation->inode = NULL; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 306 | rcu_assign_pointer(nfsi->delegation, NULL); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 307 | spin_unlock(&delegation->lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 308 | return delegation; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 309 | } |
| 310 | |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 311 | static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi, |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 312 | struct nfs_delegation *delegation, |
| 313 | struct nfs_server *server) |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 314 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 315 | struct nfs_client *clp = server->nfs_client; |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 316 | |
| 317 | spin_lock(&clp->cl_lock); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 318 | delegation = nfs_detach_delegation_locked(nfsi, delegation, clp); |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 319 | spin_unlock(&clp->cl_lock); |
| 320 | return delegation; |
| 321 | } |
| 322 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 323 | static struct nfs_delegation * |
| 324 | nfs_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 Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 330 | 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 Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 336 | } |
| 337 | |
Trond Myklebust | cf6726e | 2014-12-19 11:22:28 -0500 | [diff] [blame] | 338 | static void |
| 339 | nfs_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 Myklebust | ae084a3 | 2019-10-21 14:17:34 -0400 | [diff] [blame] | 346 | clear_bit(NFS_DELEGATION_REVOKED, &delegation->flags); |
Trond Myklebust | cf6726e | 2014-12-19 11:22:28 -0500 | [diff] [blame] | 347 | } |
| 348 | } |
| 349 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 350 | /** |
| 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 Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 354 | * @type: delegation type |
| 355 | * @stateid: delegation stateid |
| 356 | * @pagemod_limit: write delegation "space_limit" |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 357 | * |
| 358 | * Returns zero on success, or a negative errno value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | */ |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 360 | int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 361 | fmode_t type, |
| 362 | const nfs4_stateid *stateid, |
| 363 | unsigned long pagemod_limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 365 | struct nfs_server *server = NFS_SERVER(inode); |
| 366 | struct nfs_client *clp = server->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | struct nfs_inode *nfsi = NFS_I(inode); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 368 | struct nfs_delegation *delegation, *old_delegation; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 369 | struct nfs_delegation *freeme = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | int status = 0; |
| 371 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 372 | delegation = kmalloc(sizeof(*delegation), GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | if (delegation == NULL) |
| 374 | return -ENOMEM; |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 375 | nfs4_stateid_copy(&delegation->stateid, stateid); |
| 376 | delegation->type = type; |
| 377 | delegation->pagemod_limit = pagemod_limit; |
Jeff Layton | 1eb5d98 | 2018-01-09 08:21:17 -0500 | [diff] [blame] | 378 | delegation->change_attr = inode_peek_iversion_raw(inode); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 379 | delegation->cred = get_cred(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | delegation->inode = inode; |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 381 | delegation->flags = 1<<NFS_DELEGATION_REFERENCED; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 382 | spin_lock_init(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 385 | old_delegation = rcu_dereference_protected(nfsi->delegation, |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 386 | lockdep_is_held(&clp->cl_lock)); |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 387 | 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 Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 399 | /* |
| 400 | * Deal with broken servers that hand out two |
| 401 | * delegations for the same file. |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 402 | * Allow for upgrades to a WRITE delegation, but |
| 403 | * nothing else. |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 404 | */ |
| 405 | dfprintk(FILE, "%s: server %s handed out " |
| 406 | "a duplicate delegation!\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 407 | __func__, clp->cl_hostname); |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 408 | if (delegation->type == old_delegation->type || |
| 409 | !(delegation->type & FMODE_WRITE)) { |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 410 | freeme = delegation; |
| 411 | delegation = NULL; |
| 412 | goto out; |
| 413 | } |
Trond Myklebust | ade0464 | 2015-02-27 14:25:50 -0500 | [diff] [blame] | 414 | if (test_and_set_bit(NFS_DELEGATION_RETURNING, |
| 415 | &old_delegation->flags)) |
| 416 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 418 | freeme = nfs_detach_delegation_locked(nfsi, old_delegation, clp); |
| 419 | if (freeme == NULL) |
| 420 | goto out; |
| 421 | add_new: |
Trond Myklebust | 38942ba | 2015-03-04 15:59:05 -0500 | [diff] [blame] | 422 | list_add_tail_rcu(&delegation->super_list, &server->delegations); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 423 | rcu_assign_pointer(nfsi->delegation, delegation); |
| 424 | delegation = NULL; |
Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 425 | |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 426 | trace_nfs4_set_delegation(inode, type); |
Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 427 | |
Trond Myklebust | 97c2c17 | 2018-04-07 18:43:17 -0400 | [diff] [blame] | 428 | 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 Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 432 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | spin_unlock(&clp->cl_lock); |
Trond Myklebust | 603c83d | 2007-10-18 19:59:20 -0400 | [diff] [blame] | 434 | if (delegation != NULL) |
| 435 | nfs_free_delegation(delegation); |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 436 | if (freeme != NULL) { |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 437 | nfs_do_return_delegation(inode, freeme, 0); |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 438 | nfs_free_delegation(freeme); |
| 439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | return status; |
| 441 | } |
| 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | /* |
| 444 | * Basic procedure for returning a delegation to the server |
| 445 | */ |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 446 | static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 448 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 449 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 451 | if (delegation == NULL) |
| 452 | return 0; |
| 453 | do { |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 454 | if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) |
| 455 | break; |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 456 | err = nfs_delegation_claim_opens(inode, &delegation->stateid, |
| 457 | delegation->type); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 458 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 471 | err = nfs_do_return_delegation(inode, delegation, issync); |
| 472 | out: |
| 473 | return err; |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 474 | } |
| 475 | |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 476 | static 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 Myklebust | af20b7b | 2019-10-22 13:40:47 -0400 | [diff] [blame] | 491 | if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags) || |
| 492 | test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) |
| 493 | ret = false; |
| 494 | |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 495 | return ret; |
| 496 | } |
| 497 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 498 | /** |
| 499 | * nfs_client_return_marked_delegations - return previously marked delegations |
| 500 | * @clp: nfs_client to process |
| 501 | * |
Trond Myklebust | dc327ed | 2012-05-06 19:46:30 -0400 | [diff] [blame] | 502 | * 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 506 | * Returns zero on success, or a negative errno value. |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 507 | */ |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 508 | int nfs_client_return_marked_delegations(struct nfs_client *clp) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 509 | { |
| 510 | struct nfs_delegation *delegation; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 511 | struct nfs_delegation *prev; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 512 | struct nfs_server *server; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 513 | struct inode *inode; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 514 | struct inode *place_holder = NULL; |
| 515 | struct nfs_delegation *place_holder_deleg = NULL; |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 516 | int err = 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 517 | |
| 518 | restart: |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 519 | /* |
| 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 Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 529 | rcu_read_lock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 530 | 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 548 | continue; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 549 | } |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 550 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 551 | break; /* continue in outer loop */ |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 552 | |
| 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 Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 564 | inode = nfs_delegation_grab_inode(delegation); |
| 565 | if (inode == NULL) { |
| 566 | rcu_read_unlock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 567 | if (to_put) |
| 568 | iput(to_put); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 569 | nfs_sb_deactive(server->super); |
| 570 | goto restart; |
| 571 | } |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 572 | delegation = nfs_start_delegation_return_locked(NFS_I(inode)); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 573 | rcu_read_unlock(); |
| 574 | |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 575 | if (to_put) |
| 576 | iput(to_put); |
| 577 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 578 | err = nfs_end_delegation_return(inode, delegation, 0); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 579 | iput(inode); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 580 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 581 | cond_resched(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 582 | if (!err) |
| 583 | goto restart; |
| 584 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 585 | if (place_holder) |
| 586 | iput(place_holder); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 587 | return err; |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 588 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 589 | } |
| 590 | rcu_read_unlock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 591 | if (place_holder) |
| 592 | iput(place_holder); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 593 | return 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 594 | } |
| 595 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 596 | /** |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 597 | * nfs_inode_evict_delegation - return delegation, don't reclaim opens |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 598 | * @inode: inode to process |
| 599 | * |
| 600 | * Does not protect against delegation reclaims, therefore really only safe |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 601 | * to be called from nfs4_clear_inode(). Guaranteed to always free |
| 602 | * the delegation structure. |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 603 | */ |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 604 | void nfs_inode_evict_delegation(struct inode *inode) |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 605 | { |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 606 | struct nfs_delegation *delegation; |
| 607 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 608 | delegation = nfs_inode_detach_delegation(inode); |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 609 | if (delegation != NULL) { |
| 610 | set_bit(NFS_DELEGATION_INODE_FREEING, &delegation->flags); |
Trond Myklebust | 5fcdfac | 2015-03-25 13:19:42 -0400 | [diff] [blame] | 611 | nfs_do_return_delegation(inode, delegation, 1); |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 612 | nfs_free_delegation(delegation); |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 613 | } |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 614 | } |
| 615 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 616 | /** |
| 617 | * nfs_inode_return_delegation - synchronously return a delegation |
| 618 | * @inode: inode to process |
| 619 | * |
Trond Myklebust | c57d1bc | 2012-05-06 19:34:17 -0400 | [diff] [blame] | 620 | * 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 624 | * Returns zero on success, or a negative errno value. |
| 625 | */ |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 626 | int nfs4_inode_return_delegation(struct inode *inode) |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 627 | { |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 628 | struct nfs_inode *nfsi = NFS_I(inode); |
| 629 | struct nfs_delegation *delegation; |
| 630 | int err = 0; |
| 631 | |
Trond Myklebust | c57d1bc | 2012-05-06 19:34:17 -0400 | [diff] [blame] | 632 | nfs_wb_all(inode); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 633 | delegation = nfs_start_delegation_return(nfsi); |
| 634 | if (delegation != NULL) |
| 635 | err = nfs_end_delegation_return(inode, delegation, 1); |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 636 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Trond Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 639 | /** |
| 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 | */ |
| 647 | int nfs4_inode_make_writeable(struct inode *inode) |
| 648 | { |
Trond Myklebust | 3887ce1 | 2019-10-27 13:48:18 -0400 | [diff] [blame] | 649 | 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 Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 661 | } |
| 662 | |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 663 | static 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 Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 670 | static void nfs_mark_return_delegation(struct nfs_server *server, |
| 671 | struct nfs_delegation *delegation) |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 672 | { |
| 673 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 674 | set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state); |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 675 | } |
| 676 | |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 677 | static 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 Myklebust | b02ba0b | 2013-04-03 19:23:58 -0400 | [diff] [blame] | 689 | static 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 | |
| 699 | static 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 | */ |
| 710 | void 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 716 | /** |
| 717 | * nfs_super_return_all_delegations - return delegations for one superblock |
Trond Myklebust | 302fad7 | 2019-02-18 13:32:38 -0500 | [diff] [blame] | 718 | * @server: pointer to nfs_server to process |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 719 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | */ |
Bryan Schumaker | eeebf91 | 2012-06-20 15:53:41 -0400 | [diff] [blame] | 721 | void nfs_server_return_all_delegations(struct nfs_server *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 723 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 724 | bool need_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
| 726 | if (clp == NULL) |
| 727 | return; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 728 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 729 | rcu_read_lock(); |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 730 | need_wait = nfs_server_mark_return_all_delegations(server); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 731 | rcu_read_unlock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 732 | |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 733 | if (need_wait) { |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 734 | nfs4_schedule_state_manager(clp); |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 735 | nfs4_wait_clnt_recover(clp); |
| 736 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 737 | } |
| 738 | |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 739 | static void nfs_mark_return_unused_delegation_types(struct nfs_server *server, |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 740 | fmode_t flags) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 741 | { |
| 742 | struct nfs_delegation *delegation; |
| 743 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 744 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 745 | if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE)) |
| 746 | continue; |
| 747 | if (delegation->type & flags) |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 748 | nfs_mark_return_if_closed_delegation(server, delegation); |
Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 749 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 752 | static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp, |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 753 | 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 Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 759 | nfs_mark_return_unused_delegation_types(server, flags); |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 760 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
| 762 | |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 763 | static void nfs_mark_delegation_revoked(struct nfs_server *server, |
| 764 | struct nfs_delegation *delegation) |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 765 | { |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 766 | set_bit(NFS_DELEGATION_REVOKED, &delegation->flags); |
Trond Myklebust | 059b43e | 2016-09-22 13:39:06 -0400 | [diff] [blame] | 767 | delegation->stateid.type = NFS4_INVALID_STATEID_TYPE; |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 768 | } |
| 769 | |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 770 | static void nfs_revoke_delegation(struct inode *inode, |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 771 | const nfs4_stateid *stateid) |
| 772 | { |
| 773 | struct nfs_delegation *delegation; |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 774 | nfs4_stateid tmp; |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 775 | bool ret = false; |
| 776 | |
| 777 | rcu_read_lock(); |
| 778 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 779 | if (delegation == NULL) |
| 780 | goto out; |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 781 | if (stateid == NULL) { |
| 782 | nfs4_stateid_copy(&tmp, &delegation->stateid); |
| 783 | stateid = &tmp; |
Trond Myklebust | f2d47b5 | 2019-10-21 14:15:32 -0400 | [diff] [blame] | 784 | } 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 Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 797 | nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation); |
| 798 | ret = true; |
| 799 | out: |
| 800 | rcu_read_unlock(); |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 801 | if (ret) |
| 802 | nfs_inode_find_state_and_recover(inode, stateid); |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | void nfs_remove_bad_delegation(struct inode *inode, |
| 806 | const nfs4_stateid *stateid) |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 807 | { |
Trond Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 808 | nfs_revoke_delegation(inode, stateid); |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 809 | } |
Andy Adamson | 9cb8196 | 2012-03-07 10:49:41 -0500 | [diff] [blame] | 810 | EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation); |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 811 | |
Trond Myklebust | d51f91d | 2019-10-21 14:22:14 -0400 | [diff] [blame] | 812 | void 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 Myklebust | ee05f45 | 2019-10-21 13:56:59 -0400 | [diff] [blame^] | 836 | nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation); |
Trond Myklebust | d51f91d | 2019-10-21 14:22:14 -0400 | [diff] [blame] | 837 | |
| 838 | out_clear_returning: |
| 839 | clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags); |
| 840 | out_spin_unlock: |
| 841 | spin_unlock(&delegation->lock); |
| 842 | out_rcu_unlock: |
| 843 | rcu_read_unlock(); |
| 844 | |
| 845 | nfs_inode_find_state_and_recover(inode, stateid); |
| 846 | } |
| 847 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 848 | /** |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 849 | * nfs_expire_unused_delegation_types |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 850 | * @clp: client to process |
| 851 | * @flags: delegation types to expire |
| 852 | * |
| 853 | */ |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 854 | void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags) |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 855 | { |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 856 | nfs_client_mark_return_unused_delegation_types(clp, flags); |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 857 | nfs_delegation_run_state_manager(clp); |
| 858 | } |
| 859 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 860 | static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server) |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 861 | { |
| 862 | struct nfs_delegation *delegation; |
| 863 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 864 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 865 | if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags)) |
| 866 | continue; |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 867 | nfs_mark_return_if_closed_delegation(server, delegation); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 868 | } |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 869 | } |
| 870 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 871 | /** |
| 872 | * nfs_expire_unreferenced_delegations - Eliminate unused delegations |
| 873 | * @clp: nfs_client to process |
| 874 | * |
| 875 | */ |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 876 | void nfs_expire_unreferenced_delegations(struct nfs_client *clp) |
| 877 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 878 | 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 Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 885 | nfs_delegation_run_state_manager(clp); |
| 886 | } |
| 887 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 888 | /** |
| 889 | * nfs_async_inode_return_delegation - asynchronously return a delegation |
| 890 | * @inode: inode to process |
Trond Myklebust | 8e663f0 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 891 | * @stateid: state ID information |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 892 | * |
| 893 | * Returns zero on success, or a negative errno value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | */ |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 895 | int nfs_async_inode_return_delegation(struct inode *inode, |
| 896 | const nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | { |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 898 | struct nfs_server *server = NFS_SERVER(inode); |
| 899 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 900 | struct nfs_delegation *delegation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 902 | rcu_read_lock(); |
Trond Myklebust | 457a504 | 2019-10-22 08:46:06 -0400 | [diff] [blame] | 903 | delegation = nfs4_get_valid_delegation(inode); |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 904 | if (delegation == NULL) |
| 905 | goto out_enoent; |
Trond Myklebust | 4816fda | 2015-09-20 14:58:42 -0400 | [diff] [blame] | 906 | if (stateid != NULL && |
| 907 | !clp->cl_mvops->match_stateid(&delegation->stateid, stateid)) |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 908 | goto out_enoent; |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 909 | nfs_mark_return_delegation(server, delegation); |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 910 | rcu_read_unlock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 911 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 912 | nfs_delegation_run_state_manager(clp); |
| 913 | return 0; |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 914 | out_enoent: |
| 915 | rcu_read_unlock(); |
| 916 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
| 918 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 919 | static struct inode * |
| 920 | nfs_delegation_find_inode_server(struct nfs_server *server, |
| 921 | const struct nfs_fh *fhandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | { |
| 923 | struct nfs_delegation *delegation; |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 924 | struct inode *freeme, *res = NULL; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 925 | |
| 926 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 927 | spin_lock(&delegation->lock); |
| 928 | if (delegation->inode != NULL && |
Trond Myklebust | 457a504 | 2019-10-22 08:46:06 -0400 | [diff] [blame] | 929 | !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) && |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 930 | nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 931 | freeme = igrab(delegation->inode); |
| 932 | if (freeme && nfs_sb_active(freeme->i_sb)) |
| 933 | res = freeme; |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 934 | spin_unlock(&delegation->lock); |
| 935 | if (res != NULL) |
| 936 | return res; |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 937 | if (freeme) { |
| 938 | rcu_read_unlock(); |
| 939 | iput(freeme); |
| 940 | rcu_read_lock(); |
| 941 | } |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 942 | return ERR_PTR(-EAGAIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | } |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 944 | spin_unlock(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 946 | return ERR_PTR(-ENOENT); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 947 | } |
| 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 | */ |
| 957 | struct inode *nfs_delegation_find_inode(struct nfs_client *clp, |
| 958 | const struct nfs_fh *fhandle) |
| 959 | { |
| 960 | struct nfs_server *server; |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 961 | struct inode *res; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 962 | |
| 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 Schumaker | d5681f5 | 2018-06-14 09:39:17 -0400 | [diff] [blame] | 966 | if (res != ERR_PTR(-ENOENT)) { |
| 967 | rcu_read_unlock(); |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 968 | return res; |
Anna Schumaker | d5681f5 | 2018-06-14 09:39:17 -0400 | [diff] [blame] | 969 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 970 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 971 | rcu_read_unlock(); |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 972 | return ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 975 | static void nfs_delegation_mark_reclaim_server(struct nfs_server *server) |
| 976 | { |
| 977 | struct nfs_delegation *delegation; |
| 978 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 979 | 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 986 | set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 987 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | /** |
| 991 | * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed |
| 992 | * @clp: nfs_client to process |
| 993 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 995 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 997 | struct nfs_server *server; |
| 998 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 999 | rcu_read_lock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1000 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 1001 | nfs_delegation_mark_reclaim_server(server); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1002 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1005 | /** |
| 1006 | * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done |
| 1007 | * @clp: nfs_client to process |
| 1008 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 1010 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | { |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1012 | struct nfs_delegation *delegation; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1013 | struct nfs_server *server; |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 1014 | struct inode *inode; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1015 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1016 | restart: |
| 1017 | rcu_read_lock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1018 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) { |
| 1019 | list_for_each_entry_rcu(delegation, &server->delegations, |
| 1020 | super_list) { |
Trond Myklebust | 6f9449b | 2019-02-21 14:51:25 -0500 | [diff] [blame] | 1021 | 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1026 | &delegation->flags) == 0) |
| 1027 | continue; |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 1028 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 1029 | break; /* continue in outer loop */ |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 1030 | 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 Myklebust | b04b22f | 2015-02-26 13:59:38 -0500 | [diff] [blame] | 1036 | delegation = nfs_start_delegation_return_locked(NFS_I(inode)); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1037 | rcu_read_unlock(); |
Trond Myklebust | b04b22f | 2015-02-26 13:59:38 -0500 | [diff] [blame] | 1038 | 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1044 | iput(inode); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 1045 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 1046 | cond_resched(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1047 | goto restart; |
| 1048 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1050 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1052 | |
Trond Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 1053 | static 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 Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1060 | static void nfs_mark_test_expired_delegation(struct nfs_server *server, |
| 1061 | struct nfs_delegation *delegation) |
| 1062 | { |
Trond Myklebust | 059b43e | 2016-09-22 13:39:06 -0400 | [diff] [blame] | 1063 | if (delegation->stateid.type == NFS4_INVALID_STATEID_TYPE) |
| 1064 | return; |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1065 | 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 Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 1070 | static 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 Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1083 | static 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 | */ |
| 1098 | void 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 Mayhew | 8ca017c | 2019-05-06 11:59:05 -0400 | [diff] [blame] | 1109 | * 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 | */ |
| 1114 | void 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 Myklebust | ad11408 | 2019-07-26 14:40:53 +0100 | [diff] [blame] | 1120 | static void |
| 1121 | nfs_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 Mayhew | 8ca017c | 2019-05-06 11:59:05 -0400 | [diff] [blame] | 1136 | /** |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1137 | * 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 | */ |
| 1145 | void nfs_reap_expired_delegations(struct nfs_client *clp) |
| 1146 | { |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1147 | struct nfs_delegation *delegation; |
| 1148 | struct nfs_server *server; |
| 1149 | struct inode *inode; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1150 | const struct cred *cred; |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1151 | nfs4_stateid stateid; |
| 1152 | |
| 1153 | restart: |
| 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 Myklebust | 6f9449b | 2019-02-21 14:51:25 -0500 | [diff] [blame] | 1158 | 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 Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1163 | &delegation->flags) == 0) |
| 1164 | continue; |
| 1165 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 1166 | break; /* continue in outer loop */ |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1167 | inode = nfs_delegation_grab_inode(delegation); |
| 1168 | if (inode == NULL) { |
| 1169 | rcu_read_unlock(); |
| 1170 | nfs_sb_deactive(server->super); |
| 1171 | goto restart; |
| 1172 | } |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1173 | cred = get_cred_rcu(delegation->cred); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1174 | nfs4_stateid_copy(&stateid, &delegation->stateid); |
| 1175 | clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags); |
| 1176 | rcu_read_unlock(); |
Trond Myklebust | ad11408 | 2019-07-26 14:40:53 +0100 | [diff] [blame] | 1177 | nfs_delegation_test_free_expired(inode, &stateid, cred); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1178 | put_cred(cred); |
Trond Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 1179 | 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 Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1185 | iput(inode); |
| 1186 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 1187 | cond_resched(); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1188 | goto restart; |
| 1189 | } |
| 1190 | } |
| 1191 | rcu_read_unlock(); |
| 1192 | } |
| 1193 | |
Trond Myklebust | 6c2d8f8 | 2016-09-22 13:39:07 -0400 | [diff] [blame] | 1194 | void 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 Myklebust | 42c304c | 2019-10-26 10:16:15 -0400 | [diff] [blame] | 1204 | nfs4_stateid_match_or_older(&delegation->stateid, stateid) && |
| 1205 | !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) { |
Trond Myklebust | 6c2d8f8 | 2016-09-22 13:39:07 -0400 | [diff] [blame] | 1206 | 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 Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1214 | /** |
| 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 | */ |
| 1221 | int 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 Myklebust | 12f275c | 2017-11-06 15:28:05 -0500 | [diff] [blame] | 1237 | * 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 | */ |
| 1244 | bool 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 Myklebust | b575620 | 2019-10-22 13:34:06 -0400 | [diff] [blame] | 1254 | nfs4_stateid_match_other(dst, &delegation->stateid) && |
| 1255 | !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) { |
Trond Myklebust | 12f275c | 2017-11-06 15:28:05 -0500 | [diff] [blame] | 1256 | dst->seqid = delegation->stateid.seqid; |
Trond Myklebust | 79cc554 | 2019-10-31 18:40:33 -0400 | [diff] [blame] | 1257 | ret = true; |
Trond Myklebust | 12f275c | 2017-11-06 15:28:05 -0500 | [diff] [blame] | 1258 | } |
| 1259 | rcu_read_unlock(); |
| 1260 | out: |
| 1261 | return ret; |
| 1262 | } |
| 1263 | |
| 1264 | /** |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1265 | * nfs4_copy_delegation_stateid - Copy inode's state ID information |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1266 | * @inode: inode to check |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1267 | * @flags: delegation type requirement |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1268 | * @dst: stateid data structure to fill in |
| 1269 | * @cred: optional argument to retrieve credential |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1270 | * |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1271 | * Returns "true" and fills in "dst->data" * if inode had a delegation, |
| 1272 | * otherwise "false" is returned. |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1273 | */ |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1274 | bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags, |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1275 | nfs4_stateid *dst, const struct cred **cred) |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1276 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1277 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1278 | struct nfs_delegation *delegation; |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1279 | bool ret; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1280 | |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1281 | flags &= FMODE_READ|FMODE_WRITE; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1282 | rcu_read_lock(); |
| 1283 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 1284 | ret = nfs4_is_valid_delegation(delegation, flags); |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1285 | if (ret) { |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1286 | nfs4_stateid_copy(dst, &delegation->stateid); |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1287 | nfs_mark_delegation_referenced(delegation); |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1288 | if (cred) |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1289 | *cred = get_cred(delegation->cred); |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1290 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1291 | rcu_read_unlock(); |
| 1292 | return ret; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1293 | } |
Trond Myklebust | 5445b1f | 2015-09-05 19:06:58 -0400 | [diff] [blame] | 1294 | |
| 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 | */ |
| 1303 | bool 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 Myklebust | a6b6d5b | 2017-08-01 15:39:46 -0400 | [diff] [blame] | 1313 | if (atomic_long_read(&nfsi->nrequests) < delegation->pagemod_limit) |
Trond Myklebust | 5445b1f | 2015-09-05 19:06:58 -0400 | [diff] [blame] | 1314 | ret = false; |
| 1315 | out: |
| 1316 | rcu_read_unlock(); |
| 1317 | return ret; |
| 1318 | } |