Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/delegation.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Trond Myklebust |
| 5 | * |
| 6 | * NFS file delegation management |
| 7 | * |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/completion.h> |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 10 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/spinlock.h> |
Jeff Layton | 1eb5d98 | 2018-01-09 08:21:17 -0500 | [diff] [blame] | 15 | #include <linux/iversion.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include <linux/nfs4.h> |
| 18 | #include <linux/nfs_fs.h> |
| 19 | #include <linux/nfs_xdr.h> |
| 20 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 21 | #include "nfs4_fs.h" |
Trond Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 22 | #include "nfs4session.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "delegation.h" |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 24 | #include "internal.h" |
Trond Myklebust | ca8acf8 | 2013-08-13 10:36:56 -0400 | [diff] [blame] | 25 | #include "nfs4trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 27 | static void nfs_free_delegation(struct nfs_delegation *delegation) |
| 28 | { |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 29 | put_cred(delegation->cred); |
| 30 | delegation->cred = NULL; |
Lai Jiangshan | 26f04dd | 2011-05-01 06:21:54 -0700 | [diff] [blame] | 31 | kfree_rcu(delegation, rcu); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 32 | } |
| 33 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 34 | /** |
| 35 | * nfs_mark_delegation_referenced - set delegation's REFERENCED flag |
| 36 | * @delegation: delegation to process |
| 37 | * |
| 38 | */ |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 39 | void nfs_mark_delegation_referenced(struct nfs_delegation *delegation) |
| 40 | { |
| 41 | set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags); |
| 42 | } |
| 43 | |
Trond Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 44 | static bool |
| 45 | nfs4_is_valid_delegation(const struct nfs_delegation *delegation, |
| 46 | fmode_t flags) |
| 47 | { |
| 48 | if (delegation != NULL && (delegation->type & flags) == flags && |
| 49 | !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) && |
| 50 | !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) |
| 51 | return true; |
| 52 | return false; |
| 53 | } |
| 54 | |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 55 | static int |
| 56 | nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark) |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 57 | { |
| 58 | struct nfs_delegation *delegation; |
| 59 | int ret = 0; |
| 60 | |
| 61 | flags &= FMODE_READ|FMODE_WRITE; |
| 62 | rcu_read_lock(); |
| 63 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
Trond Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 64 | if (nfs4_is_valid_delegation(delegation, flags)) { |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 65 | if (mark) |
| 66 | nfs_mark_delegation_referenced(delegation); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 67 | ret = 1; |
| 68 | } |
| 69 | rcu_read_unlock(); |
| 70 | return ret; |
| 71 | } |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 72 | /** |
| 73 | * nfs_have_delegation - check if inode has a delegation, mark it |
| 74 | * NFS_DELEGATION_REFERENCED if there is one. |
| 75 | * @inode: inode to check |
| 76 | * @flags: delegation types to check for |
| 77 | * |
| 78 | * Returns one if inode has the indicated delegation, otherwise zero. |
| 79 | */ |
| 80 | int nfs4_have_delegation(struct inode *inode, fmode_t flags) |
| 81 | { |
| 82 | return nfs4_do_check_delegation(inode, flags, true); |
| 83 | } |
| 84 | |
| 85 | /* |
| 86 | * nfs4_check_delegation - check if inode has a delegation, do not mark |
| 87 | * NFS_DELEGATION_REFERENCED if it has one. |
| 88 | */ |
| 89 | int nfs4_check_delegation(struct inode *inode, fmode_t flags) |
| 90 | { |
| 91 | return nfs4_do_check_delegation(inode, flags, false); |
| 92 | } |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 93 | |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 94 | 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] | 95 | { |
| 96 | struct inode *inode = state->inode; |
| 97 | struct file_lock *fl; |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 98 | struct file_lock_context *flctx = inode->i_flctx; |
| 99 | struct list_head *list; |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 100 | int status = 0; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 101 | |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 102 | if (flctx == NULL) |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 103 | goto out; |
Jeff Layton | 314d7cc | 2013-04-10 15:36:48 -0400 | [diff] [blame] | 104 | |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 105 | list = &flctx->flc_posix; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 106 | spin_lock(&flctx->flc_lock); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 107 | restart: |
| 108 | list_for_each_entry(fl, list, fl_list) { |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 109 | if (nfs_file_open_context(fl->fl_file)->state != state) |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 110 | continue; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 111 | spin_unlock(&flctx->flc_lock); |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 112 | status = nfs4_lock_delegation_recall(fl, state, stateid); |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 113 | if (status < 0) |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 114 | goto out; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 115 | spin_lock(&flctx->flc_lock); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 116 | } |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 117 | if (list == &flctx->flc_posix) { |
| 118 | list = &flctx->flc_flock; |
| 119 | goto restart; |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 120 | } |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 121 | spin_unlock(&flctx->flc_lock); |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 122 | out: |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 123 | return status; |
| 124 | } |
| 125 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 126 | static int nfs_delegation_claim_opens(struct inode *inode, |
| 127 | const nfs4_stateid *stateid, fmode_t type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
| 129 | struct nfs_inode *nfsi = NFS_I(inode); |
| 130 | struct nfs_open_context *ctx; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 131 | struct nfs4_state_owner *sp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | struct nfs4_state *state; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 133 | unsigned int seq; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 134 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | again: |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 137 | rcu_read_lock(); |
| 138 | list_for_each_entry_rcu(ctx, &nfsi->open_files, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | state = ctx->state; |
| 140 | if (state == NULL) |
| 141 | continue; |
| 142 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) |
| 143 | continue; |
Trond Myklebust | f8ebf7a | 2014-10-17 23:02:52 +0300 | [diff] [blame] | 144 | if (!nfs4_valid_open_stateid(state)) |
| 145 | continue; |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 146 | if (!nfs4_stateid_match(&state->stateid, stateid)) |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 147 | continue; |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 148 | if (!get_nfs_open_context(ctx)) |
| 149 | continue; |
| 150 | rcu_read_unlock(); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 151 | sp = state->owner; |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 152 | /* Block nfs4_proc_unlck */ |
| 153 | mutex_lock(&sp->so_delegreturn_mutex); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 154 | seq = raw_seqcount_begin(&sp->so_reclaim_seqcount); |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 155 | err = nfs4_open_delegation_recall(ctx, state, stateid, type); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 156 | if (!err) |
Olga Kornievskaia | 44f411c | 2018-10-04 14:45:00 -0400 | [diff] [blame] | 157 | err = nfs_delegation_claim_locks(state, stateid); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 158 | if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq)) |
| 159 | err = -EAGAIN; |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 160 | mutex_unlock(&sp->so_delegreturn_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | put_nfs_open_context(ctx); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 162 | if (err != 0) |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 163 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | goto again; |
| 165 | } |
Trond Myklebust | 0de4397 | 2018-09-02 15:57:01 -0400 | [diff] [blame] | 166 | rcu_read_unlock(); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 167 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 170 | /** |
| 171 | * nfs_inode_reclaim_delegation - process a delegation reclaim request |
| 172 | * @inode: inode to process |
| 173 | * @cred: credential to use for request |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 174 | * @type: delegation type |
| 175 | * @stateid: delegation stateid |
| 176 | * @pagemod_limit: write delegation "space_limit" |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 177 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | */ |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 179 | void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 180 | fmode_t type, |
| 181 | const nfs4_stateid *stateid, |
| 182 | unsigned long pagemod_limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 184 | struct nfs_delegation *delegation; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 185 | const struct cred *oldcred = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 187 | rcu_read_lock(); |
| 188 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 189 | if (delegation != NULL) { |
| 190 | spin_lock(&delegation->lock); |
| 191 | if (delegation->inode != NULL) { |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 192 | nfs4_stateid_copy(&delegation->stateid, stateid); |
| 193 | delegation->type = type; |
| 194 | delegation->pagemod_limit = pagemod_limit; |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 195 | oldcred = delegation->cred; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 196 | delegation->cred = get_cred(cred); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 197 | clear_bit(NFS_DELEGATION_NEED_RECLAIM, |
| 198 | &delegation->flags); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 199 | spin_unlock(&delegation->lock); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 200 | rcu_read_unlock(); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 201 | put_cred(oldcred); |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 202 | trace_nfs4_reclaim_delegation(inode, type); |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 203 | return; |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 204 | } |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 205 | /* We appear to have raced with a delegation return. */ |
| 206 | spin_unlock(&delegation->lock); |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 207 | } |
Trond Myklebust | b1a318d | 2016-09-22 13:39:12 -0400 | [diff] [blame] | 208 | rcu_read_unlock(); |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 209 | nfs_inode_set_delegation(inode, cred, type, stateid, pagemod_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 212 | static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync) |
| 213 | { |
| 214 | int res = 0; |
| 215 | |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 216 | if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) |
| 217 | res = nfs4_proc_delegreturn(inode, |
| 218 | delegation->cred, |
| 219 | &delegation->stateid, |
| 220 | issync); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 221 | nfs_free_delegation(delegation); |
| 222 | return res; |
| 223 | } |
| 224 | |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 225 | static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation) |
| 226 | { |
| 227 | struct inode *inode = NULL; |
| 228 | |
| 229 | spin_lock(&delegation->lock); |
| 230 | if (delegation->inode != NULL) |
| 231 | inode = igrab(delegation->inode); |
| 232 | spin_unlock(&delegation->lock); |
| 233 | return inode; |
| 234 | } |
| 235 | |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 236 | static struct nfs_delegation * |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 237 | nfs_start_delegation_return_locked(struct nfs_inode *nfsi) |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 238 | { |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 239 | struct nfs_delegation *ret = NULL; |
| 240 | struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 241 | |
| 242 | if (delegation == NULL) |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 243 | goto out; |
| 244 | spin_lock(&delegation->lock); |
| 245 | if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) |
| 246 | ret = delegation; |
| 247 | spin_unlock(&delegation->lock); |
| 248 | out: |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | static struct nfs_delegation * |
| 253 | nfs_start_delegation_return(struct nfs_inode *nfsi) |
| 254 | { |
| 255 | struct nfs_delegation *delegation; |
| 256 | |
| 257 | rcu_read_lock(); |
| 258 | delegation = nfs_start_delegation_return_locked(nfsi); |
| 259 | rcu_read_unlock(); |
| 260 | return delegation; |
| 261 | } |
| 262 | |
| 263 | static void |
| 264 | nfs_abort_delegation_return(struct nfs_delegation *delegation, |
| 265 | struct nfs_client *clp) |
| 266 | { |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 267 | |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 268 | spin_lock(&delegation->lock); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 269 | clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags); |
| 270 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); |
| 271 | spin_unlock(&delegation->lock); |
| 272 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); |
| 273 | } |
| 274 | |
| 275 | static struct nfs_delegation * |
| 276 | nfs_detach_delegation_locked(struct nfs_inode *nfsi, |
| 277 | struct nfs_delegation *delegation, |
| 278 | struct nfs_client *clp) |
| 279 | { |
| 280 | struct nfs_delegation *deleg_cur = |
| 281 | rcu_dereference_protected(nfsi->delegation, |
| 282 | lockdep_is_held(&clp->cl_lock)); |
| 283 | |
| 284 | if (deleg_cur == NULL || delegation != deleg_cur) |
| 285 | return NULL; |
| 286 | |
| 287 | spin_lock(&delegation->lock); |
| 288 | set_bit(NFS_DELEGATION_RETURNING, &delegation->flags); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 289 | list_del_rcu(&delegation->super_list); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 290 | delegation->inode = NULL; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 291 | rcu_assign_pointer(nfsi->delegation, NULL); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 292 | spin_unlock(&delegation->lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 293 | return delegation; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 294 | } |
| 295 | |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 296 | static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi, |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 297 | struct nfs_delegation *delegation, |
| 298 | struct nfs_server *server) |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 299 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 300 | struct nfs_client *clp = server->nfs_client; |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 301 | |
| 302 | spin_lock(&clp->cl_lock); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 303 | delegation = nfs_detach_delegation_locked(nfsi, delegation, clp); |
Chuck Lever | dda4b22 | 2010-12-24 01:32:54 +0000 | [diff] [blame] | 304 | spin_unlock(&clp->cl_lock); |
| 305 | return delegation; |
| 306 | } |
| 307 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 308 | static struct nfs_delegation * |
| 309 | nfs_inode_detach_delegation(struct inode *inode) |
| 310 | { |
| 311 | struct nfs_inode *nfsi = NFS_I(inode); |
| 312 | struct nfs_server *server = NFS_SERVER(inode); |
| 313 | struct nfs_delegation *delegation; |
| 314 | |
| 315 | delegation = nfs_start_delegation_return(nfsi); |
| 316 | if (delegation == NULL) |
| 317 | return NULL; |
| 318 | return nfs_detach_delegation(nfsi, delegation, server); |
| 319 | } |
| 320 | |
Trond Myklebust | cf6726e | 2014-12-19 11:22:28 -0500 | [diff] [blame] | 321 | static void |
| 322 | nfs_update_inplace_delegation(struct nfs_delegation *delegation, |
| 323 | const struct nfs_delegation *update) |
| 324 | { |
| 325 | if (nfs4_stateid_is_newer(&update->stateid, &delegation->stateid)) { |
| 326 | delegation->stateid.seqid = update->stateid.seqid; |
| 327 | smp_wmb(); |
| 328 | delegation->type = update->type; |
| 329 | } |
| 330 | } |
| 331 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 332 | /** |
| 333 | * nfs_inode_set_delegation - set up a delegation on an inode |
| 334 | * @inode: inode to which delegation applies |
| 335 | * @cred: cred to use for subsequent delegation processing |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 336 | * @type: delegation type |
| 337 | * @stateid: delegation stateid |
| 338 | * @pagemod_limit: write delegation "space_limit" |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 339 | * |
| 340 | * Returns zero on success, or a negative errno value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | */ |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 342 | int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 343 | fmode_t type, |
| 344 | const nfs4_stateid *stateid, |
| 345 | unsigned long pagemod_limit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 347 | struct nfs_server *server = NFS_SERVER(inode); |
| 348 | struct nfs_client *clp = server->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | struct nfs_inode *nfsi = NFS_I(inode); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 350 | struct nfs_delegation *delegation, *old_delegation; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 351 | struct nfs_delegation *freeme = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | int status = 0; |
| 353 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 354 | delegation = kmalloc(sizeof(*delegation), GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | if (delegation == NULL) |
| 356 | return -ENOMEM; |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 357 | nfs4_stateid_copy(&delegation->stateid, stateid); |
| 358 | delegation->type = type; |
| 359 | delegation->pagemod_limit = pagemod_limit; |
Jeff Layton | 1eb5d98 | 2018-01-09 08:21:17 -0500 | [diff] [blame] | 360 | delegation->change_attr = inode_peek_iversion_raw(inode); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 361 | delegation->cred = get_cred(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | delegation->inode = inode; |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 363 | delegation->flags = 1<<NFS_DELEGATION_REFERENCED; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 364 | spin_lock_init(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 367 | old_delegation = rcu_dereference_protected(nfsi->delegation, |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 368 | lockdep_is_held(&clp->cl_lock)); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 369 | if (old_delegation != NULL) { |
Trond Myklebust | cf6726e | 2014-12-19 11:22:28 -0500 | [diff] [blame] | 370 | /* Is this an update of the existing delegation? */ |
| 371 | if (nfs4_stateid_match_other(&old_delegation->stateid, |
| 372 | &delegation->stateid)) { |
| 373 | nfs_update_inplace_delegation(old_delegation, |
| 374 | delegation); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 375 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 377 | /* |
| 378 | * Deal with broken servers that hand out two |
| 379 | * delegations for the same file. |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 380 | * Allow for upgrades to a WRITE delegation, but |
| 381 | * nothing else. |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 382 | */ |
| 383 | dfprintk(FILE, "%s: server %s handed out " |
| 384 | "a duplicate delegation!\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 385 | __func__, clp->cl_hostname); |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 386 | if (delegation->type == old_delegation->type || |
| 387 | !(delegation->type & FMODE_WRITE)) { |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 388 | freeme = delegation; |
| 389 | delegation = NULL; |
| 390 | goto out; |
| 391 | } |
Trond Myklebust | ade0464 | 2015-02-27 14:25:50 -0500 | [diff] [blame] | 392 | if (test_and_set_bit(NFS_DELEGATION_RETURNING, |
| 393 | &old_delegation->flags)) |
| 394 | goto out; |
| 395 | freeme = nfs_detach_delegation_locked(nfsi, |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 396 | old_delegation, clp); |
| 397 | if (freeme == NULL) |
| 398 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
Trond Myklebust | 38942ba | 2015-03-04 15:59:05 -0500 | [diff] [blame] | 400 | list_add_tail_rcu(&delegation->super_list, &server->delegations); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 401 | rcu_assign_pointer(nfsi->delegation, delegation); |
| 402 | delegation = NULL; |
Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 403 | |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 404 | trace_nfs4_set_delegation(inode, type); |
Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 405 | |
Trond Myklebust | 97c2c17 | 2018-04-07 18:43:17 -0400 | [diff] [blame] | 406 | spin_lock(&inode->i_lock); |
| 407 | if (NFS_I(inode)->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME)) |
| 408 | NFS_I(inode)->cache_validity |= NFS_INO_REVAL_FORCED; |
| 409 | spin_unlock(&inode->i_lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 410 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | spin_unlock(&clp->cl_lock); |
Trond Myklebust | 603c83d | 2007-10-18 19:59:20 -0400 | [diff] [blame] | 412 | if (delegation != NULL) |
| 413 | nfs_free_delegation(delegation); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 414 | if (freeme != NULL) |
| 415 | nfs_do_return_delegation(inode, freeme, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | return status; |
| 417 | } |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | /* |
| 420 | * Basic procedure for returning a delegation to the server |
| 421 | */ |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 422 | 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] | 423 | { |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 424 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | struct nfs_inode *nfsi = NFS_I(inode); |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 426 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 428 | if (delegation == NULL) |
| 429 | return 0; |
| 430 | do { |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 431 | if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) |
| 432 | break; |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 433 | err = nfs_delegation_claim_opens(inode, &delegation->stateid, |
| 434 | delegation->type); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 435 | if (!issync || err != -EAGAIN) |
| 436 | break; |
| 437 | /* |
| 438 | * Guard against state recovery |
| 439 | */ |
| 440 | err = nfs4_wait_clnt_recover(clp); |
| 441 | } while (err == 0); |
| 442 | |
| 443 | if (err) { |
| 444 | nfs_abort_delegation_return(delegation, clp); |
| 445 | goto out; |
| 446 | } |
| 447 | if (!nfs_detach_delegation(nfsi, delegation, NFS_SERVER(inode))) |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 448 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 450 | err = nfs_do_return_delegation(inode, delegation, issync); |
| 451 | out: |
| 452 | return err; |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 453 | } |
| 454 | |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 455 | static bool nfs_delegation_need_return(struct nfs_delegation *delegation) |
| 456 | { |
| 457 | bool ret = false; |
| 458 | |
Trond Myklebust | ec3ca4e5 | 2015-02-26 14:05:05 -0500 | [diff] [blame] | 459 | if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) |
| 460 | goto out; |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 461 | if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags)) |
| 462 | ret = true; |
| 463 | if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) { |
| 464 | struct inode *inode; |
| 465 | |
| 466 | spin_lock(&delegation->lock); |
| 467 | inode = delegation->inode; |
| 468 | if (inode && list_empty(&NFS_I(inode)->open_files)) |
| 469 | ret = true; |
| 470 | spin_unlock(&delegation->lock); |
| 471 | } |
Trond Myklebust | ec3ca4e5 | 2015-02-26 14:05:05 -0500 | [diff] [blame] | 472 | out: |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 473 | return ret; |
| 474 | } |
| 475 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 476 | /** |
| 477 | * nfs_client_return_marked_delegations - return previously marked delegations |
| 478 | * @clp: nfs_client to process |
| 479 | * |
Trond Myklebust | dc327ed | 2012-05-06 19:46:30 -0400 | [diff] [blame] | 480 | * Note that this function is designed to be called by the state |
| 481 | * manager thread. For this reason, it cannot flush the dirty data, |
| 482 | * since that could deadlock in case of a state recovery error. |
| 483 | * |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 484 | * Returns zero on success, or a negative errno value. |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 485 | */ |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 486 | int nfs_client_return_marked_delegations(struct nfs_client *clp) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 487 | { |
| 488 | struct nfs_delegation *delegation; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 489 | struct nfs_delegation *prev; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 490 | struct nfs_server *server; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 491 | struct inode *inode; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 492 | struct inode *place_holder = NULL; |
| 493 | struct nfs_delegation *place_holder_deleg = NULL; |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 494 | int err = 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 495 | |
| 496 | restart: |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 497 | /* |
| 498 | * To avoid quadratic looping we hold a reference |
| 499 | * to an inode place_holder. Each time we restart, we |
| 500 | * list nfs_servers from the server of that inode, and |
| 501 | * delegation in the server from the delegations of that |
| 502 | * inode. |
| 503 | * prev is an RCU-protected pointer to a delegation which |
| 504 | * wasn't marked for return and might be a good choice for |
| 505 | * the next place_holder. |
| 506 | */ |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 507 | rcu_read_lock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 508 | prev = NULL; |
| 509 | if (place_holder) |
| 510 | server = NFS_SERVER(place_holder); |
| 511 | else |
| 512 | server = list_entry_rcu(clp->cl_superblocks.next, |
| 513 | struct nfs_server, client_link); |
| 514 | list_for_each_entry_from_rcu(server, &clp->cl_superblocks, client_link) { |
| 515 | delegation = NULL; |
| 516 | if (place_holder && server == NFS_SERVER(place_holder)) |
| 517 | delegation = rcu_dereference(NFS_I(place_holder)->delegation); |
| 518 | if (!delegation || delegation != place_holder_deleg) |
| 519 | delegation = list_entry_rcu(server->delegations.next, |
| 520 | struct nfs_delegation, super_list); |
| 521 | list_for_each_entry_from_rcu(delegation, &server->delegations, super_list) { |
| 522 | struct inode *to_put = NULL; |
| 523 | |
| 524 | if (!nfs_delegation_need_return(delegation)) { |
| 525 | prev = delegation; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 526 | continue; |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 527 | } |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 528 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 529 | break; /* continue in outer loop */ |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 530 | |
| 531 | if (prev) { |
| 532 | struct inode *tmp; |
| 533 | |
| 534 | tmp = nfs_delegation_grab_inode(prev); |
| 535 | if (tmp) { |
| 536 | to_put = place_holder; |
| 537 | place_holder = tmp; |
| 538 | place_holder_deleg = prev; |
| 539 | } |
| 540 | } |
| 541 | |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 542 | inode = nfs_delegation_grab_inode(delegation); |
| 543 | if (inode == NULL) { |
| 544 | rcu_read_unlock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 545 | if (to_put) |
| 546 | iput(to_put); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 547 | nfs_sb_deactive(server->super); |
| 548 | goto restart; |
| 549 | } |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 550 | delegation = nfs_start_delegation_return_locked(NFS_I(inode)); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 551 | rcu_read_unlock(); |
| 552 | |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 553 | if (to_put) |
| 554 | iput(to_put); |
| 555 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 556 | err = nfs_end_delegation_return(inode, delegation, 0); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 557 | iput(inode); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 558 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 559 | cond_resched(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 560 | if (!err) |
| 561 | goto restart; |
| 562 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 563 | if (place_holder) |
| 564 | iput(place_holder); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 565 | return err; |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 566 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 567 | } |
| 568 | rcu_read_unlock(); |
NeilBrown | e04bbf6 | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 569 | if (place_holder) |
| 570 | iput(place_holder); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 571 | return 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 572 | } |
| 573 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 574 | /** |
| 575 | * nfs_inode_return_delegation_noreclaim - return delegation, don't reclaim opens |
| 576 | * @inode: inode to process |
| 577 | * |
| 578 | * Does not protect against delegation reclaims, therefore really only safe |
| 579 | * to be called from nfs4_clear_inode(). |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 580 | */ |
| 581 | void nfs_inode_return_delegation_noreclaim(struct inode *inode) |
| 582 | { |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 583 | struct nfs_delegation *delegation; |
| 584 | |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 585 | delegation = nfs_inode_detach_delegation(inode); |
| 586 | if (delegation != NULL) |
Trond Myklebust | 5fcdfac | 2015-03-25 13:19:42 -0400 | [diff] [blame] | 587 | nfs_do_return_delegation(inode, delegation, 1); |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 588 | } |
| 589 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 590 | /** |
| 591 | * nfs_inode_return_delegation - synchronously return a delegation |
| 592 | * @inode: inode to process |
| 593 | * |
Trond Myklebust | c57d1bc | 2012-05-06 19:34:17 -0400 | [diff] [blame] | 594 | * This routine will always flush any dirty data to disk on the |
| 595 | * assumption that if we need to return the delegation, then |
| 596 | * we should stop caching. |
| 597 | * |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 598 | * Returns zero on success, or a negative errno value. |
| 599 | */ |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 600 | int nfs4_inode_return_delegation(struct inode *inode) |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 601 | { |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 602 | struct nfs_inode *nfsi = NFS_I(inode); |
| 603 | struct nfs_delegation *delegation; |
| 604 | int err = 0; |
| 605 | |
Trond Myklebust | c57d1bc | 2012-05-06 19:34:17 -0400 | [diff] [blame] | 606 | nfs_wb_all(inode); |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 607 | delegation = nfs_start_delegation_return(nfsi); |
| 608 | if (delegation != NULL) |
| 609 | err = nfs_end_delegation_return(inode, delegation, 1); |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 610 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Trond Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 613 | /** |
| 614 | * nfs4_inode_make_writeable |
| 615 | * @inode: pointer to inode |
| 616 | * |
| 617 | * Make the inode writeable by returning the delegation if necessary |
| 618 | * |
| 619 | * Returns zero on success, or a negative errno value. |
| 620 | */ |
| 621 | int nfs4_inode_make_writeable(struct inode *inode) |
| 622 | { |
| 623 | if (!nfs4_has_session(NFS_SERVER(inode)->nfs_client) || |
| 624 | !nfs4_check_delegation(inode, FMODE_WRITE)) |
| 625 | return nfs4_inode_return_delegation(inode); |
| 626 | return 0; |
| 627 | } |
| 628 | |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 629 | static void nfs_mark_return_if_closed_delegation(struct nfs_server *server, |
| 630 | struct nfs_delegation *delegation) |
| 631 | { |
| 632 | set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags); |
| 633 | set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state); |
| 634 | } |
| 635 | |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 636 | static void nfs_mark_return_delegation(struct nfs_server *server, |
| 637 | struct nfs_delegation *delegation) |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 638 | { |
| 639 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 640 | set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state); |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 641 | } |
| 642 | |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 643 | static bool nfs_server_mark_return_all_delegations(struct nfs_server *server) |
| 644 | { |
| 645 | struct nfs_delegation *delegation; |
| 646 | bool ret = false; |
| 647 | |
| 648 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
| 649 | nfs_mark_return_delegation(server, delegation); |
| 650 | ret = true; |
| 651 | } |
| 652 | return ret; |
| 653 | } |
| 654 | |
Trond Myklebust | b02ba0b | 2013-04-03 19:23:58 -0400 | [diff] [blame] | 655 | static void nfs_client_mark_return_all_delegations(struct nfs_client *clp) |
| 656 | { |
| 657 | struct nfs_server *server; |
| 658 | |
| 659 | rcu_read_lock(); |
| 660 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 661 | nfs_server_mark_return_all_delegations(server); |
| 662 | rcu_read_unlock(); |
| 663 | } |
| 664 | |
| 665 | static void nfs_delegation_run_state_manager(struct nfs_client *clp) |
| 666 | { |
| 667 | if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) |
| 668 | nfs4_schedule_state_manager(clp); |
| 669 | } |
| 670 | |
| 671 | /** |
| 672 | * nfs_expire_all_delegations |
| 673 | * @clp: client to process |
| 674 | * |
| 675 | */ |
| 676 | void nfs_expire_all_delegations(struct nfs_client *clp) |
| 677 | { |
| 678 | nfs_client_mark_return_all_delegations(clp); |
| 679 | nfs_delegation_run_state_manager(clp); |
| 680 | } |
| 681 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 682 | /** |
| 683 | * nfs_super_return_all_delegations - return delegations for one superblock |
Trond Myklebust | 302fad7 | 2019-02-18 13:32:38 -0500 | [diff] [blame^] | 684 | * @server: pointer to nfs_server to process |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 685 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | */ |
Bryan Schumaker | eeebf91 | 2012-06-20 15:53:41 -0400 | [diff] [blame] | 687 | void nfs_server_return_all_delegations(struct nfs_server *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 689 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 690 | bool need_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | if (clp == NULL) |
| 693 | return; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 694 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 695 | rcu_read_lock(); |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 696 | need_wait = nfs_server_mark_return_all_delegations(server); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 697 | rcu_read_unlock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 698 | |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 699 | if (need_wait) { |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 700 | nfs4_schedule_state_manager(clp); |
Trond Myklebust | 5c31e23 | 2013-04-03 19:04:58 -0400 | [diff] [blame] | 701 | nfs4_wait_clnt_recover(clp); |
| 702 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 703 | } |
| 704 | |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 705 | static void nfs_mark_return_unused_delegation_types(struct nfs_server *server, |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 706 | fmode_t flags) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 707 | { |
| 708 | struct nfs_delegation *delegation; |
| 709 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 710 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 711 | if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE)) |
| 712 | continue; |
| 713 | if (delegation->type & flags) |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 714 | nfs_mark_return_if_closed_delegation(server, delegation); |
Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 715 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 716 | } |
| 717 | |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 718 | 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] | 719 | fmode_t flags) |
| 720 | { |
| 721 | struct nfs_server *server; |
| 722 | |
| 723 | rcu_read_lock(); |
| 724 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 725 | nfs_mark_return_unused_delegation_types(server, flags); |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 726 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 729 | static void nfs_mark_delegation_revoked(struct nfs_server *server, |
| 730 | struct nfs_delegation *delegation) |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 731 | { |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 732 | set_bit(NFS_DELEGATION_REVOKED, &delegation->flags); |
Trond Myklebust | 059b43e | 2016-09-22 13:39:06 -0400 | [diff] [blame] | 733 | delegation->stateid.type = NFS4_INVALID_STATEID_TYPE; |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 734 | nfs_mark_return_delegation(server, delegation); |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 735 | } |
| 736 | |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 737 | static bool nfs_revoke_delegation(struct inode *inode, |
| 738 | const nfs4_stateid *stateid) |
| 739 | { |
| 740 | struct nfs_delegation *delegation; |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 741 | nfs4_stateid tmp; |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 742 | bool ret = false; |
| 743 | |
| 744 | rcu_read_lock(); |
| 745 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 746 | if (delegation == NULL) |
| 747 | goto out; |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 748 | if (stateid == NULL) { |
| 749 | nfs4_stateid_copy(&tmp, &delegation->stateid); |
| 750 | stateid = &tmp; |
| 751 | } else if (!nfs4_stateid_match(stateid, &delegation->stateid)) |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 752 | goto out; |
| 753 | nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation); |
| 754 | ret = true; |
| 755 | out: |
| 756 | rcu_read_unlock(); |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 757 | if (ret) |
| 758 | nfs_inode_find_state_and_recover(inode, stateid); |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 759 | return ret; |
| 760 | } |
| 761 | |
| 762 | void nfs_remove_bad_delegation(struct inode *inode, |
| 763 | const nfs4_stateid *stateid) |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 764 | { |
| 765 | struct nfs_delegation *delegation; |
| 766 | |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 767 | if (!nfs_revoke_delegation(inode, stateid)) |
| 768 | return; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 769 | delegation = nfs_inode_detach_delegation(inode); |
Trond Myklebust | 7f04883 | 2016-09-22 13:39:14 -0400 | [diff] [blame] | 770 | if (delegation) |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 771 | nfs_free_delegation(delegation); |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 772 | } |
Andy Adamson | 9cb8196 | 2012-03-07 10:49:41 -0500 | [diff] [blame] | 773 | EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation); |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 774 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 775 | /** |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 776 | * nfs_expire_unused_delegation_types |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 777 | * @clp: client to process |
| 778 | * @flags: delegation types to expire |
| 779 | * |
| 780 | */ |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 781 | 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] | 782 | { |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 783 | nfs_client_mark_return_unused_delegation_types(clp, flags); |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 784 | nfs_delegation_run_state_manager(clp); |
| 785 | } |
| 786 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 787 | static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server) |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 788 | { |
| 789 | struct nfs_delegation *delegation; |
| 790 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 791 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 792 | if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags)) |
| 793 | continue; |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 794 | nfs_mark_return_if_closed_delegation(server, delegation); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 795 | } |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 796 | } |
| 797 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 798 | /** |
| 799 | * nfs_expire_unreferenced_delegations - Eliminate unused delegations |
| 800 | * @clp: nfs_client to process |
| 801 | * |
| 802 | */ |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 803 | void nfs_expire_unreferenced_delegations(struct nfs_client *clp) |
| 804 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 805 | struct nfs_server *server; |
| 806 | |
| 807 | rcu_read_lock(); |
| 808 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 809 | nfs_mark_return_unreferenced_delegations(server); |
| 810 | rcu_read_unlock(); |
| 811 | |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 812 | nfs_delegation_run_state_manager(clp); |
| 813 | } |
| 814 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 815 | /** |
| 816 | * nfs_async_inode_return_delegation - asynchronously return a delegation |
| 817 | * @inode: inode to process |
Trond Myklebust | 8e663f0 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 818 | * @stateid: state ID information |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 819 | * |
| 820 | * Returns zero on success, or a negative errno value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | */ |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 822 | int nfs_async_inode_return_delegation(struct inode *inode, |
| 823 | const nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 825 | struct nfs_server *server = NFS_SERVER(inode); |
| 826 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 827 | struct nfs_delegation *delegation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 829 | rcu_read_lock(); |
| 830 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 831 | if (delegation == NULL) |
| 832 | goto out_enoent; |
Trond Myklebust | 4816fda | 2015-09-20 14:58:42 -0400 | [diff] [blame] | 833 | if (stateid != NULL && |
| 834 | !clp->cl_mvops->match_stateid(&delegation->stateid, stateid)) |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 835 | goto out_enoent; |
Trond Myklebust | ed1e6211 | 2011-07-25 15:37:29 -0400 | [diff] [blame] | 836 | nfs_mark_return_delegation(server, delegation); |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 837 | rcu_read_unlock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 838 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 839 | nfs_delegation_run_state_manager(clp); |
| 840 | return 0; |
Trond Myklebust | 755a48a | 2014-03-02 22:03:12 -0500 | [diff] [blame] | 841 | out_enoent: |
| 842 | rcu_read_unlock(); |
| 843 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | } |
| 845 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 846 | static struct inode * |
| 847 | nfs_delegation_find_inode_server(struct nfs_server *server, |
| 848 | const struct nfs_fh *fhandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | { |
| 850 | struct nfs_delegation *delegation; |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 851 | struct inode *freeme, *res = NULL; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 852 | |
| 853 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 854 | spin_lock(&delegation->lock); |
| 855 | if (delegation->inode != NULL && |
| 856 | nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 857 | freeme = igrab(delegation->inode); |
| 858 | if (freeme && nfs_sb_active(freeme->i_sb)) |
| 859 | res = freeme; |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 860 | spin_unlock(&delegation->lock); |
| 861 | if (res != NULL) |
| 862 | return res; |
Trond Myklebust | e39d8a1 | 2018-11-13 16:37:54 -0500 | [diff] [blame] | 863 | if (freeme) { |
| 864 | rcu_read_unlock(); |
| 865 | iput(freeme); |
| 866 | rcu_read_lock(); |
| 867 | } |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 868 | return ERR_PTR(-EAGAIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 870 | spin_unlock(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 872 | return ERR_PTR(-ENOENT); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | /** |
| 876 | * nfs_delegation_find_inode - retrieve the inode associated with a delegation |
| 877 | * @clp: client state handle |
| 878 | * @fhandle: filehandle from a delegation recall |
| 879 | * |
| 880 | * Returns pointer to inode matching "fhandle," or NULL if a matching inode |
| 881 | * cannot be found. |
| 882 | */ |
| 883 | struct inode *nfs_delegation_find_inode(struct nfs_client *clp, |
| 884 | const struct nfs_fh *fhandle) |
| 885 | { |
| 886 | struct nfs_server *server; |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 887 | struct inode *res; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 888 | |
| 889 | rcu_read_lock(); |
| 890 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) { |
| 891 | res = nfs_delegation_find_inode_server(server, fhandle); |
Anna Schumaker | d5681f5 | 2018-06-14 09:39:17 -0400 | [diff] [blame] | 892 | if (res != ERR_PTR(-ENOENT)) { |
| 893 | rcu_read_unlock(); |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 894 | return res; |
Anna Schumaker | d5681f5 | 2018-06-14 09:39:17 -0400 | [diff] [blame] | 895 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 896 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 897 | rcu_read_unlock(); |
Trond Myklebust | 6c34265 | 2018-06-07 14:22:00 -0400 | [diff] [blame] | 898 | return ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } |
| 900 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 901 | static void nfs_delegation_mark_reclaim_server(struct nfs_server *server) |
| 902 | { |
| 903 | struct nfs_delegation *delegation; |
| 904 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 905 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) { |
| 906 | /* |
| 907 | * If the delegation may have been admin revoked, then we |
| 908 | * cannot reclaim it. |
| 909 | */ |
| 910 | if (test_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags)) |
| 911 | continue; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 912 | set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 913 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /** |
| 917 | * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed |
| 918 | * @clp: nfs_client to process |
| 919 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 921 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | { |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 923 | struct nfs_server *server; |
| 924 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 925 | rcu_read_lock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 926 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 927 | nfs_delegation_mark_reclaim_server(server); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 928 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | } |
| 930 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 931 | /** |
| 932 | * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done |
| 933 | * @clp: nfs_client to process |
| 934 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 936 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | { |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 938 | struct nfs_delegation *delegation; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 939 | struct nfs_server *server; |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 940 | struct inode *inode; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 941 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 942 | restart: |
| 943 | rcu_read_lock(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 944 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) { |
| 945 | list_for_each_entry_rcu(delegation, &server->delegations, |
| 946 | super_list) { |
Trond Myklebust | ec3ca4e5 | 2015-02-26 14:05:05 -0500 | [diff] [blame] | 947 | if (test_bit(NFS_DELEGATION_RETURNING, |
| 948 | &delegation->flags)) |
| 949 | continue; |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 950 | if (test_bit(NFS_DELEGATION_NEED_RECLAIM, |
| 951 | &delegation->flags) == 0) |
| 952 | continue; |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 953 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 954 | break; /* continue in outer loop */ |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 955 | inode = nfs_delegation_grab_inode(delegation); |
| 956 | if (inode == NULL) { |
| 957 | rcu_read_unlock(); |
| 958 | nfs_sb_deactive(server->super); |
| 959 | goto restart; |
| 960 | } |
Trond Myklebust | b04b22f | 2015-02-26 13:59:38 -0500 | [diff] [blame] | 961 | delegation = nfs_start_delegation_return_locked(NFS_I(inode)); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 962 | rcu_read_unlock(); |
Trond Myklebust | b04b22f | 2015-02-26 13:59:38 -0500 | [diff] [blame] | 963 | if (delegation != NULL) { |
| 964 | delegation = nfs_detach_delegation(NFS_I(inode), |
| 965 | delegation, server); |
| 966 | if (delegation != NULL) |
| 967 | nfs_free_delegation(delegation); |
| 968 | } |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 969 | iput(inode); |
Trond Myklebust | 9f0f8e1 | 2015-02-26 09:57:34 -0500 | [diff] [blame] | 970 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 971 | cond_resched(); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 972 | goto restart; |
| 973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 975 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 977 | |
Trond Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 978 | static inline bool nfs4_server_rebooted(const struct nfs_client *clp) |
| 979 | { |
| 980 | return (clp->cl_state & (BIT(NFS4CLNT_CHECK_LEASE) | |
| 981 | BIT(NFS4CLNT_LEASE_EXPIRED) | |
| 982 | BIT(NFS4CLNT_SESSION_RESET))) != 0; |
| 983 | } |
| 984 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 985 | static void nfs_mark_test_expired_delegation(struct nfs_server *server, |
| 986 | struct nfs_delegation *delegation) |
| 987 | { |
Trond Myklebust | 059b43e | 2016-09-22 13:39:06 -0400 | [diff] [blame] | 988 | if (delegation->stateid.type == NFS4_INVALID_STATEID_TYPE) |
| 989 | return; |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 990 | clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); |
| 991 | set_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags); |
| 992 | set_bit(NFS4CLNT_DELEGATION_EXPIRED, &server->nfs_client->cl_state); |
| 993 | } |
| 994 | |
Trond Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 995 | static void nfs_inode_mark_test_expired_delegation(struct nfs_server *server, |
| 996 | struct inode *inode) |
| 997 | { |
| 998 | struct nfs_delegation *delegation; |
| 999 | |
| 1000 | rcu_read_lock(); |
| 1001 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 1002 | if (delegation) |
| 1003 | nfs_mark_test_expired_delegation(server, delegation); |
| 1004 | rcu_read_unlock(); |
| 1005 | |
| 1006 | } |
| 1007 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1008 | static void nfs_delegation_mark_test_expired_server(struct nfs_server *server) |
| 1009 | { |
| 1010 | struct nfs_delegation *delegation; |
| 1011 | |
| 1012 | list_for_each_entry_rcu(delegation, &server->delegations, super_list) |
| 1013 | nfs_mark_test_expired_delegation(server, delegation); |
| 1014 | } |
| 1015 | |
| 1016 | /** |
| 1017 | * nfs_mark_test_expired_all_delegations - mark all delegations for testing |
| 1018 | * @clp: nfs_client to process |
| 1019 | * |
| 1020 | * Iterates through all the delegations associated with this server and |
| 1021 | * marks them as needing to be checked for validity. |
| 1022 | */ |
| 1023 | void nfs_mark_test_expired_all_delegations(struct nfs_client *clp) |
| 1024 | { |
| 1025 | struct nfs_server *server; |
| 1026 | |
| 1027 | rcu_read_lock(); |
| 1028 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 1029 | nfs_delegation_mark_test_expired_server(server); |
| 1030 | rcu_read_unlock(); |
| 1031 | } |
| 1032 | |
| 1033 | /** |
| 1034 | * nfs_reap_expired_delegations - reap expired delegations |
| 1035 | * @clp: nfs_client to process |
| 1036 | * |
| 1037 | * Iterates through all the delegations associated with this server and |
| 1038 | * checks if they have may have been revoked. This function is usually |
| 1039 | * expected to be called in cases where the server may have lost its |
| 1040 | * lease. |
| 1041 | */ |
| 1042 | void nfs_reap_expired_delegations(struct nfs_client *clp) |
| 1043 | { |
| 1044 | const struct nfs4_minor_version_ops *ops = clp->cl_mvops; |
| 1045 | struct nfs_delegation *delegation; |
| 1046 | struct nfs_server *server; |
| 1047 | struct inode *inode; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1048 | const struct cred *cred; |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1049 | nfs4_stateid stateid; |
| 1050 | |
| 1051 | restart: |
| 1052 | rcu_read_lock(); |
| 1053 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) { |
| 1054 | list_for_each_entry_rcu(delegation, &server->delegations, |
| 1055 | super_list) { |
| 1056 | if (test_bit(NFS_DELEGATION_RETURNING, |
| 1057 | &delegation->flags)) |
| 1058 | continue; |
| 1059 | if (test_bit(NFS_DELEGATION_TEST_EXPIRED, |
| 1060 | &delegation->flags) == 0) |
| 1061 | continue; |
| 1062 | if (!nfs_sb_active(server->super)) |
NeilBrown | f3893491 | 2018-05-31 15:23:22 +1000 | [diff] [blame] | 1063 | break; /* continue in outer loop */ |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1064 | inode = nfs_delegation_grab_inode(delegation); |
| 1065 | if (inode == NULL) { |
| 1066 | rcu_read_unlock(); |
| 1067 | nfs_sb_deactive(server->super); |
| 1068 | goto restart; |
| 1069 | } |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1070 | cred = get_cred_rcu(delegation->cred); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1071 | nfs4_stateid_copy(&stateid, &delegation->stateid); |
| 1072 | clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags); |
| 1073 | rcu_read_unlock(); |
| 1074 | if (cred != NULL && |
| 1075 | ops->test_and_free_expired(server, &stateid, cred) < 0) { |
| 1076 | nfs_revoke_delegation(inode, &stateid); |
| 1077 | nfs_inode_find_state_and_recover(inode, &stateid); |
| 1078 | } |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1079 | put_cred(cred); |
Trond Myklebust | bb3d1a3 | 2016-09-22 13:39:00 -0400 | [diff] [blame] | 1080 | if (nfs4_server_rebooted(clp)) { |
| 1081 | nfs_inode_mark_test_expired_delegation(server,inode); |
| 1082 | iput(inode); |
| 1083 | nfs_sb_deactive(server->super); |
| 1084 | return; |
| 1085 | } |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1086 | iput(inode); |
| 1087 | nfs_sb_deactive(server->super); |
NeilBrown | 3ca951b | 2018-04-30 14:31:30 +1000 | [diff] [blame] | 1088 | cond_resched(); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 1089 | goto restart; |
| 1090 | } |
| 1091 | } |
| 1092 | rcu_read_unlock(); |
| 1093 | } |
| 1094 | |
Trond Myklebust | 6c2d8f8 | 2016-09-22 13:39:07 -0400 | [diff] [blame] | 1095 | void nfs_inode_find_delegation_state_and_recover(struct inode *inode, |
| 1096 | const nfs4_stateid *stateid) |
| 1097 | { |
| 1098 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 1099 | struct nfs_delegation *delegation; |
| 1100 | bool found = false; |
| 1101 | |
| 1102 | rcu_read_lock(); |
| 1103 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 1104 | if (delegation && |
| 1105 | nfs4_stateid_match_other(&delegation->stateid, stateid)) { |
| 1106 | nfs_mark_test_expired_delegation(NFS_SERVER(inode), delegation); |
| 1107 | found = true; |
| 1108 | } |
| 1109 | rcu_read_unlock(); |
| 1110 | if (found) |
| 1111 | nfs4_schedule_state_manager(clp); |
| 1112 | } |
| 1113 | |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1114 | /** |
| 1115 | * nfs_delegations_present - check for existence of delegations |
| 1116 | * @clp: client state handle |
| 1117 | * |
| 1118 | * Returns one if there are any nfs_delegation structures attached |
| 1119 | * to this nfs_client. |
| 1120 | */ |
| 1121 | int nfs_delegations_present(struct nfs_client *clp) |
| 1122 | { |
| 1123 | struct nfs_server *server; |
| 1124 | int ret = 0; |
| 1125 | |
| 1126 | rcu_read_lock(); |
| 1127 | list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) |
| 1128 | if (!list_empty(&server->delegations)) { |
| 1129 | ret = 1; |
| 1130 | break; |
| 1131 | } |
| 1132 | rcu_read_unlock(); |
| 1133 | return ret; |
| 1134 | } |
| 1135 | |
| 1136 | /** |
Trond Myklebust | 12f275c | 2017-11-06 15:28:05 -0500 | [diff] [blame] | 1137 | * nfs4_refresh_delegation_stateid - Update delegation stateid seqid |
| 1138 | * @dst: stateid to refresh |
| 1139 | * @inode: inode to check |
| 1140 | * |
| 1141 | * Returns "true" and updates "dst->seqid" * if inode had a delegation |
| 1142 | * that matches our delegation stateid. Otherwise "false" is returned. |
| 1143 | */ |
| 1144 | bool nfs4_refresh_delegation_stateid(nfs4_stateid *dst, struct inode *inode) |
| 1145 | { |
| 1146 | struct nfs_delegation *delegation; |
| 1147 | bool ret = false; |
| 1148 | if (!inode) |
| 1149 | goto out; |
| 1150 | |
| 1151 | rcu_read_lock(); |
| 1152 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 1153 | if (delegation != NULL && |
| 1154 | nfs4_stateid_match_other(dst, &delegation->stateid)) { |
| 1155 | dst->seqid = delegation->stateid.seqid; |
| 1156 | return ret; |
| 1157 | } |
| 1158 | rcu_read_unlock(); |
| 1159 | out: |
| 1160 | return ret; |
| 1161 | } |
| 1162 | |
| 1163 | /** |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1164 | * nfs4_copy_delegation_stateid - Copy inode's state ID information |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1165 | * @inode: inode to check |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1166 | * @flags: delegation type requirement |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1167 | * @dst: stateid data structure to fill in |
| 1168 | * @cred: optional argument to retrieve credential |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1169 | * |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1170 | * Returns "true" and fills in "dst->data" * if inode had a delegation, |
| 1171 | * otherwise "false" is returned. |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 1172 | */ |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1173 | bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags, |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1174 | nfs4_stateid *dst, const struct cred **cred) |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1175 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1176 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1177 | struct nfs_delegation *delegation; |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1178 | bool ret; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1179 | |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1180 | flags &= FMODE_READ|FMODE_WRITE; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1181 | rcu_read_lock(); |
| 1182 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | aa05c87 | 2016-09-22 13:38:54 -0400 | [diff] [blame] | 1183 | ret = nfs4_is_valid_delegation(delegation, flags); |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1184 | if (ret) { |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1185 | nfs4_stateid_copy(dst, &delegation->stateid); |
Trond Myklebust | 0032a7a | 2012-03-08 17:16:12 -0500 | [diff] [blame] | 1186 | nfs_mark_delegation_referenced(delegation); |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 1187 | if (cred) |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1188 | *cred = get_cred(delegation->cred); |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1189 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 1190 | rcu_read_unlock(); |
| 1191 | return ret; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1192 | } |
Trond Myklebust | 5445b1f | 2015-09-05 19:06:58 -0400 | [diff] [blame] | 1193 | |
| 1194 | /** |
| 1195 | * nfs4_delegation_flush_on_close - Check if we must flush file on close |
| 1196 | * @inode: inode to check |
| 1197 | * |
| 1198 | * This function checks the number of outstanding writes to the file |
| 1199 | * against the delegation 'space_limit' field to see if |
| 1200 | * the spec requires us to flush the file on close. |
| 1201 | */ |
| 1202 | bool nfs4_delegation_flush_on_close(const struct inode *inode) |
| 1203 | { |
| 1204 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1205 | struct nfs_delegation *delegation; |
| 1206 | bool ret = true; |
| 1207 | |
| 1208 | rcu_read_lock(); |
| 1209 | delegation = rcu_dereference(nfsi->delegation); |
| 1210 | if (delegation == NULL || !(delegation->type & FMODE_WRITE)) |
| 1211 | goto out; |
Trond Myklebust | a6b6d5b | 2017-08-01 15:39:46 -0400 | [diff] [blame] | 1212 | if (atomic_long_read(&nfsi->nrequests) < delegation->pagemod_limit) |
Trond Myklebust | 5445b1f | 2015-09-05 19:06:58 -0400 | [diff] [blame] | 1213 | ret = false; |
| 1214 | out: |
| 1215 | rcu_read_unlock(); |
| 1216 | return ret; |
| 1217 | } |