| 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 | 58d9714a | 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> | 
|  | 13 | #include <linux/spinlock.h> | 
|  | 14 |  | 
|  | 15 | #include <linux/nfs4.h> | 
|  | 16 | #include <linux/nfs_fs.h> | 
|  | 17 | #include <linux/nfs_xdr.h> | 
|  | 18 |  | 
| Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 19 | #include "nfs4_fs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "delegation.h" | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 21 | #include "internal.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  | 
| Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 23 | static void nfs_do_free_delegation(struct nfs_delegation *delegation) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | kfree(delegation); | 
|  | 26 | } | 
|  | 27 |  | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 28 | static void nfs_free_delegation_callback(struct rcu_head *head) | 
|  | 29 | { | 
|  | 30 | struct nfs_delegation *delegation = container_of(head, struct nfs_delegation, rcu); | 
|  | 31 |  | 
| Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 32 | nfs_do_free_delegation(delegation); | 
|  | 33 | } | 
|  | 34 |  | 
|  | 35 | static void nfs_free_delegation(struct nfs_delegation *delegation) | 
|  | 36 | { | 
|  | 37 | struct rpc_cred *cred; | 
|  | 38 |  | 
|  | 39 | cred = rcu_dereference(delegation->cred); | 
|  | 40 | rcu_assign_pointer(delegation->cred, NULL); | 
|  | 41 | call_rcu(&delegation->rcu, nfs_free_delegation_callback); | 
|  | 42 | if (cred) | 
|  | 43 | put_rpccred(cred); | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 44 | } | 
|  | 45 |  | 
| Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 46 | void nfs_mark_delegation_referenced(struct nfs_delegation *delegation) | 
|  | 47 | { | 
|  | 48 | set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags); | 
|  | 49 | } | 
|  | 50 |  | 
| Trond Myklebust | bd7bf9d | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 51 | int nfs_have_delegation(struct inode *inode, fmode_t flags) | 
| Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 52 | { | 
|  | 53 | struct nfs_delegation *delegation; | 
|  | 54 | int ret = 0; | 
|  | 55 |  | 
|  | 56 | flags &= FMODE_READ|FMODE_WRITE; | 
|  | 57 | rcu_read_lock(); | 
|  | 58 | delegation = rcu_dereference(NFS_I(inode)->delegation); | 
|  | 59 | if (delegation != NULL && (delegation->type & flags) == flags) { | 
|  | 60 | nfs_mark_delegation_referenced(delegation); | 
|  | 61 | ret = 1; | 
|  | 62 | } | 
|  | 63 | rcu_read_unlock(); | 
|  | 64 | return ret; | 
|  | 65 | } | 
|  | 66 |  | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 67 | static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state) | 
|  | 68 | { | 
|  | 69 | struct inode *inode = state->inode; | 
|  | 70 | struct file_lock *fl; | 
|  | 71 | int status; | 
|  | 72 |  | 
| Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 73 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 74 | if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK))) | 
|  | 75 | continue; | 
| Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 76 | if (nfs_file_open_context(fl->fl_file) != ctx) | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 77 | continue; | 
|  | 78 | status = nfs4_lock_delegation_recall(state, fl); | 
|  | 79 | if (status >= 0) | 
|  | 80 | continue; | 
|  | 81 | switch (status) { | 
|  | 82 | default: | 
|  | 83 | printk(KERN_ERR "%s: unhandled error %d.\n", | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 84 | __func__, status); | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 85 | case -NFS4ERR_EXPIRED: | 
|  | 86 | /* kill_proc(fl->fl_pid, SIGLOST, 1); */ | 
|  | 87 | case -NFS4ERR_STALE_CLIENTID: | 
| David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 88 | nfs4_schedule_state_recovery(NFS_SERVER(inode)->nfs_client); | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 89 | goto out_err; | 
|  | 90 | } | 
|  | 91 | } | 
|  | 92 | return 0; | 
|  | 93 | out_err: | 
|  | 94 | return status; | 
|  | 95 | } | 
|  | 96 |  | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 97 | static void nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { | 
|  | 99 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 100 | struct nfs_open_context *ctx; | 
|  | 101 | struct nfs4_state *state; | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 102 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 |  | 
|  | 104 | again: | 
|  | 105 | spin_lock(&inode->i_lock); | 
|  | 106 | list_for_each_entry(ctx, &nfsi->open_files, list) { | 
|  | 107 | state = ctx->state; | 
|  | 108 | if (state == NULL) | 
|  | 109 | continue; | 
|  | 110 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) | 
|  | 111 | continue; | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 112 | if (memcmp(state->stateid.data, stateid->data, sizeof(state->stateid.data)) != 0) | 
|  | 113 | continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | get_nfs_open_context(ctx); | 
|  | 115 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 116 | err = nfs4_open_delegation_recall(ctx, state, stateid); | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 117 | if (err >= 0) | 
|  | 118 | err = nfs_delegation_claim_locks(ctx, state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | put_nfs_open_context(ctx); | 
| Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 120 | if (err != 0) | 
|  | 121 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | goto again; | 
|  | 123 | } | 
|  | 124 | spin_unlock(&inode->i_lock); | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | /* | 
|  | 128 | * Set up a delegation on an inode | 
|  | 129 | */ | 
|  | 130 | void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res) | 
|  | 131 | { | 
|  | 132 | struct nfs_delegation *delegation = NFS_I(inode)->delegation; | 
| Trond Myklebust | 05c88ba | 2007-10-11 15:11:51 -0400 | [diff] [blame] | 133 | struct rpc_cred *oldcred; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
|  | 135 | if (delegation == NULL) | 
|  | 136 | return; | 
|  | 137 | memcpy(delegation->stateid.data, res->delegation.data, | 
|  | 138 | sizeof(delegation->stateid.data)); | 
|  | 139 | delegation->type = res->delegation_type; | 
|  | 140 | delegation->maxsize = res->maxsize; | 
| Trond Myklebust | 05c88ba | 2007-10-11 15:11:51 -0400 | [diff] [blame] | 141 | oldcred = delegation->cred; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | delegation->cred = get_rpccred(cred); | 
| Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 143 | clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | NFS_I(inode)->delegation_state = delegation->type; | 
|  | 145 | smp_wmb(); | 
| Trond Myklebust | 05c88ba | 2007-10-11 15:11:51 -0400 | [diff] [blame] | 146 | put_rpccred(oldcred); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } | 
|  | 148 |  | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 149 | static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync) | 
|  | 150 | { | 
|  | 151 | int res = 0; | 
|  | 152 |  | 
|  | 153 | res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid, issync); | 
|  | 154 | nfs_free_delegation(delegation); | 
|  | 155 | return res; | 
|  | 156 | } | 
|  | 157 |  | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 158 | static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation) | 
|  | 159 | { | 
|  | 160 | struct inode *inode = NULL; | 
|  | 161 |  | 
|  | 162 | spin_lock(&delegation->lock); | 
|  | 163 | if (delegation->inode != NULL) | 
|  | 164 | inode = igrab(delegation->inode); | 
|  | 165 | spin_unlock(&delegation->lock); | 
|  | 166 | return inode; | 
|  | 167 | } | 
|  | 168 |  | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 169 | static struct nfs_delegation *nfs_detach_delegation_locked(struct nfs_inode *nfsi, const nfs4_stateid *stateid) | 
|  | 170 | { | 
|  | 171 | struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation); | 
|  | 172 |  | 
|  | 173 | if (delegation == NULL) | 
|  | 174 | goto nomatch; | 
| Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 175 | spin_lock(&delegation->lock); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 176 | if (stateid != NULL && memcmp(delegation->stateid.data, stateid->data, | 
|  | 177 | sizeof(delegation->stateid.data)) != 0) | 
| Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 178 | goto nomatch_unlock; | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 179 | list_del_rcu(&delegation->super_list); | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 180 | delegation->inode = NULL; | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 181 | nfsi->delegation_state = 0; | 
|  | 182 | rcu_assign_pointer(nfsi->delegation, NULL); | 
| Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 183 | spin_unlock(&delegation->lock); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 184 | return delegation; | 
| Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 185 | nomatch_unlock: | 
|  | 186 | spin_unlock(&delegation->lock); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 187 | nomatch: | 
|  | 188 | return NULL; | 
|  | 189 | } | 
|  | 190 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /* | 
|  | 192 | * Set up a delegation on an inode | 
|  | 193 | */ | 
|  | 194 | int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res) | 
|  | 195 | { | 
| David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 196 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 198 | struct nfs_delegation *delegation; | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 199 | struct nfs_delegation *freeme = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | int status = 0; | 
|  | 201 |  | 
| Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 202 | delegation = kmalloc(sizeof(*delegation), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | if (delegation == NULL) | 
|  | 204 | return -ENOMEM; | 
|  | 205 | memcpy(delegation->stateid.data, res->delegation.data, | 
|  | 206 | sizeof(delegation->stateid.data)); | 
|  | 207 | delegation->type = res->delegation_type; | 
|  | 208 | delegation->maxsize = res->maxsize; | 
| Trond Myklebust | beb2a5e | 2006-01-03 09:55:37 +0100 | [diff] [blame] | 209 | delegation->change_attr = nfsi->change_attr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | delegation->cred = get_rpccred(cred); | 
|  | 211 | delegation->inode = inode; | 
| Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 212 | delegation->flags = 1<<NFS_DELEGATION_REFERENCED; | 
| Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 213 | spin_lock_init(&delegation->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 |  | 
|  | 215 | spin_lock(&clp->cl_lock); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 216 | if (rcu_dereference(nfsi->delegation) != NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (memcmp(&delegation->stateid, &nfsi->delegation->stateid, | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 218 | sizeof(delegation->stateid)) == 0 && | 
|  | 219 | delegation->type == nfsi->delegation->type) { | 
|  | 220 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 222 | /* | 
|  | 223 | * Deal with broken servers that hand out two | 
|  | 224 | * delegations for the same file. | 
|  | 225 | */ | 
|  | 226 | dfprintk(FILE, "%s: server %s handed out " | 
|  | 227 | "a duplicate delegation!\n", | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 228 | __func__, clp->cl_hostname); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 229 | if (delegation->type <= nfsi->delegation->type) { | 
|  | 230 | freeme = delegation; | 
|  | 231 | delegation = NULL; | 
|  | 232 | goto out; | 
|  | 233 | } | 
|  | 234 | freeme = nfs_detach_delegation_locked(nfsi, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 236 | list_add_rcu(&delegation->super_list, &clp->cl_delegations); | 
|  | 237 | nfsi->delegation_state = delegation->type; | 
|  | 238 | rcu_assign_pointer(nfsi->delegation, delegation); | 
|  | 239 | delegation = NULL; | 
| Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 240 |  | 
|  | 241 | /* Ensure we revalidate the attributes and page cache! */ | 
|  | 242 | spin_lock(&inode->i_lock); | 
|  | 243 | nfsi->cache_validity |= NFS_INO_REVAL_FORCED; | 
|  | 244 | spin_unlock(&inode->i_lock); | 
|  | 245 |  | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 246 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | spin_unlock(&clp->cl_lock); | 
| Trond Myklebust | 603c83d | 2007-10-18 19:59:20 -0400 | [diff] [blame] | 248 | if (delegation != NULL) | 
|  | 249 | nfs_free_delegation(delegation); | 
| Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 250 | if (freeme != NULL) | 
|  | 251 | nfs_do_return_delegation(inode, freeme, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return status; | 
|  | 253 | } | 
|  | 254 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | /* Sync all data to disk upon delegation return */ | 
|  | 256 | static void nfs_msync_inode(struct inode *inode) | 
|  | 257 | { | 
|  | 258 | filemap_fdatawrite(inode->i_mapping); | 
|  | 259 | nfs_wb_all(inode); | 
|  | 260 | filemap_fdatawait(inode->i_mapping); | 
|  | 261 | } | 
|  | 262 |  | 
|  | 263 | /* | 
|  | 264 | * Basic procedure for returning a delegation to the server | 
|  | 265 | */ | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 266 | static int __nfs_inode_return_delegation(struct inode *inode, struct nfs_delegation *delegation) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | struct nfs_inode *nfsi = NFS_I(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 |  | 
|  | 270 | nfs_msync_inode(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /* Guard against new delegated open calls */ | 
|  | 272 | down_write(&nfsi->rwsem); | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 273 | nfs_delegation_claim_opens(inode, &delegation->stateid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | up_write(&nfsi->rwsem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | nfs_msync_inode(inode); | 
|  | 276 |  | 
| Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 277 | return nfs_do_return_delegation(inode, delegation, 1); | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 278 | } | 
|  | 279 |  | 
| Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 280 | /* | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 281 | * Return all delegations that have been marked for return | 
|  | 282 | */ | 
| Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 283 | void nfs_client_return_marked_delegations(struct nfs_client *clp) | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 284 | { | 
|  | 285 | struct nfs_delegation *delegation; | 
|  | 286 | struct inode *inode; | 
|  | 287 |  | 
|  | 288 | restart: | 
|  | 289 | rcu_read_lock(); | 
|  | 290 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
|  | 291 | if (!test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags)) | 
|  | 292 | continue; | 
|  | 293 | inode = nfs_delegation_grab_inode(delegation); | 
|  | 294 | if (inode == NULL) | 
|  | 295 | continue; | 
|  | 296 | spin_lock(&clp->cl_lock); | 
|  | 297 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL); | 
|  | 298 | spin_unlock(&clp->cl_lock); | 
|  | 299 | rcu_read_unlock(); | 
|  | 300 | if (delegation != NULL) | 
|  | 301 | __nfs_inode_return_delegation(inode, delegation); | 
|  | 302 | iput(inode); | 
|  | 303 | goto restart; | 
|  | 304 | } | 
|  | 305 | rcu_read_unlock(); | 
|  | 306 | } | 
|  | 307 |  | 
|  | 308 | /* | 
| Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 309 | * This function returns the delegation without reclaiming opens | 
|  | 310 | * or protecting against delegation reclaims. | 
|  | 311 | * It is therefore really only safe to be called from | 
|  | 312 | * nfs4_clear_inode() | 
|  | 313 | */ | 
|  | 314 | void nfs_inode_return_delegation_noreclaim(struct inode *inode) | 
|  | 315 | { | 
|  | 316 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | 
|  | 317 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 318 | struct nfs_delegation *delegation; | 
|  | 319 |  | 
|  | 320 | if (rcu_dereference(nfsi->delegation) != NULL) { | 
|  | 321 | spin_lock(&clp->cl_lock); | 
|  | 322 | delegation = nfs_detach_delegation_locked(nfsi, NULL); | 
|  | 323 | spin_unlock(&clp->cl_lock); | 
|  | 324 | if (delegation != NULL) | 
|  | 325 | nfs_do_return_delegation(inode, delegation, 0); | 
|  | 326 | } | 
|  | 327 | } | 
|  | 328 |  | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 329 | int nfs_inode_return_delegation(struct inode *inode) | 
|  | 330 | { | 
|  | 331 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | 
|  | 332 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 333 | struct nfs_delegation *delegation; | 
|  | 334 | int err = 0; | 
|  | 335 |  | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 336 | if (rcu_dereference(nfsi->delegation) != NULL) { | 
| Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 337 | spin_lock(&clp->cl_lock); | 
|  | 338 | delegation = nfs_detach_delegation_locked(nfsi, NULL); | 
|  | 339 | spin_unlock(&clp->cl_lock); | 
|  | 340 | if (delegation != NULL) | 
|  | 341 | err = __nfs_inode_return_delegation(inode, delegation); | 
|  | 342 | } | 
|  | 343 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } | 
|  | 345 |  | 
| Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 346 | static void nfs_mark_return_delegation(struct nfs_client *clp, struct nfs_delegation *delegation) | 
|  | 347 | { | 
|  | 348 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); | 
|  | 349 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); | 
|  | 350 | } | 
|  | 351 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /* | 
|  | 353 | * Return all delegations associated to a super block | 
|  | 354 | */ | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 355 | void nfs_super_return_all_delegations(struct super_block *sb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { | 
| David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 357 | struct nfs_client *clp = NFS_SB(sb)->nfs_client; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | struct nfs_delegation *delegation; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 |  | 
|  | 360 | if (clp == NULL) | 
|  | 361 | return; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 362 | rcu_read_lock(); | 
|  | 363 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 364 | spin_lock(&delegation->lock); | 
|  | 365 | if (delegation->inode != NULL && delegation->inode->i_sb == sb) | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 366 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 367 | spin_unlock(&delegation->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 369 | rcu_read_unlock(); | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 370 | nfs_client_return_marked_delegations(clp); | 
|  | 371 | } | 
|  | 372 |  | 
| Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 373 | static void nfs_client_mark_return_all_delegations(struct nfs_client *clp) | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 374 | { | 
|  | 375 | struct nfs_delegation *delegation; | 
|  | 376 |  | 
|  | 377 | rcu_read_lock(); | 
| Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 378 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 379 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); | 
| Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 380 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); | 
|  | 381 | } | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 382 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } | 
|  | 384 |  | 
| Trond Myklebust | b0d3ded | 2008-12-23 15:21:50 -0500 | [diff] [blame] | 385 | static void nfs_delegation_run_state_manager(struct nfs_client *clp) | 
| Trond Myklebust | 58d9714a | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 386 | { | 
| Trond Myklebust | b0d3ded | 2008-12-23 15:21:50 -0500 | [diff] [blame] | 387 | if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) | 
|  | 388 | nfs4_schedule_state_manager(clp); | 
| Trond Myklebust | 58d9714a | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 389 | } | 
|  | 390 |  | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 391 | void nfs_expire_all_delegations(struct nfs_client *clp) | 
| Trond Myklebust | 58d9714a | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 392 | { | 
| Trond Myklebust | b0d3ded | 2008-12-23 15:21:50 -0500 | [diff] [blame] | 393 | nfs_client_mark_return_all_delegations(clp); | 
|  | 394 | nfs_delegation_run_state_manager(clp); | 
| Trond Myklebust | 58d9714a | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 395 | } | 
|  | 396 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* | 
|  | 398 | * Return all delegations following an NFS4ERR_CB_PATH_DOWN error. | 
|  | 399 | */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 400 | void nfs_handle_cb_pathdown(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | if (clp == NULL) | 
|  | 403 | return; | 
| Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 404 | nfs_client_mark_return_all_delegations(clp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } | 
|  | 406 |  | 
| Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 407 | static void nfs_client_mark_return_unreferenced_delegations(struct nfs_client *clp) | 
|  | 408 | { | 
|  | 409 | struct nfs_delegation *delegation; | 
|  | 410 |  | 
|  | 411 | rcu_read_lock(); | 
|  | 412 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
|  | 413 | if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags)) | 
|  | 414 | continue; | 
|  | 415 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); | 
|  | 416 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); | 
|  | 417 | } | 
|  | 418 | rcu_read_unlock(); | 
|  | 419 | } | 
|  | 420 |  | 
|  | 421 | void nfs_expire_unreferenced_delegations(struct nfs_client *clp) | 
|  | 422 | { | 
|  | 423 | nfs_client_mark_return_unreferenced_delegations(clp); | 
|  | 424 | nfs_delegation_run_state_manager(clp); | 
|  | 425 | } | 
|  | 426 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | /* | 
|  | 428 | * Asynchronous delegation recall! | 
|  | 429 | */ | 
|  | 430 | int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *stateid) | 
|  | 431 | { | 
| Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 432 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | 
|  | 433 | struct nfs_delegation *delegation; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 |  | 
| Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 435 | rcu_read_lock(); | 
|  | 436 | delegation = rcu_dereference(NFS_I(inode)->delegation); | 
|  | 437 | if (delegation == NULL || memcmp(delegation->stateid.data, stateid->data, | 
|  | 438 | sizeof(delegation->stateid.data)) != 0) { | 
|  | 439 | rcu_read_unlock(); | 
|  | 440 | return -ENOENT; | 
|  | 441 | } | 
|  | 442 | nfs_mark_return_delegation(clp, delegation); | 
|  | 443 | rcu_read_unlock(); | 
|  | 444 | nfs_delegation_run_state_manager(clp); | 
|  | 445 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | } | 
|  | 447 |  | 
|  | 448 | /* | 
|  | 449 | * Retrieve the inode associated with a delegation | 
|  | 450 | */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 451 | struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs_fh *fhandle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { | 
|  | 453 | struct nfs_delegation *delegation; | 
|  | 454 | struct inode *res = NULL; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 455 | rcu_read_lock(); | 
|  | 456 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 457 | spin_lock(&delegation->lock); | 
|  | 458 | if (delegation->inode != NULL && | 
|  | 459 | nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | res = igrab(delegation->inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 462 | spin_unlock(&delegation->lock); | 
|  | 463 | if (res != NULL) | 
|  | 464 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 466 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | return res; | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | /* | 
|  | 471 | * Mark all delegations as needing to be reclaimed | 
|  | 472 | */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 473 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { | 
|  | 475 | struct nfs_delegation *delegation; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 476 | rcu_read_lock(); | 
|  | 477 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) | 
| Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 478 | set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 479 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } | 
|  | 481 |  | 
|  | 482 | /* | 
|  | 483 | * Reap all unclaimed delegations after reboot recovery is done | 
|  | 484 | */ | 
| David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 485 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 487 | struct nfs_delegation *delegation; | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 488 | struct inode *inode; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 489 | restart: | 
|  | 490 | rcu_read_lock(); | 
|  | 491 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | 
| Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 492 | if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | continue; | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 494 | inode = nfs_delegation_grab_inode(delegation); | 
|  | 495 | if (inode == NULL) | 
|  | 496 | continue; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 497 | spin_lock(&clp->cl_lock); | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 498 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL); | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 499 | spin_unlock(&clp->cl_lock); | 
|  | 500 | rcu_read_unlock(); | 
|  | 501 | if (delegation != NULL) | 
| Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 502 | nfs_free_delegation(delegation); | 
| Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 503 | iput(inode); | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 504 | goto restart; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 506 | rcu_read_unlock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 508 |  | 
|  | 509 | int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode) | 
|  | 510 | { | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 511 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 512 | struct nfs_delegation *delegation; | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 513 | int ret = 0; | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 514 |  | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 515 | rcu_read_lock(); | 
|  | 516 | delegation = rcu_dereference(nfsi->delegation); | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 517 | if (delegation != NULL) { | 
|  | 518 | memcpy(dst->data, delegation->stateid.data, sizeof(dst->data)); | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 519 | ret = 1; | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 520 | } | 
| Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 521 | rcu_read_unlock(); | 
|  | 522 | return ret; | 
| Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 523 | } |