diff options
Diffstat (limited to 'fs/nfs/delegation.c')
| -rw-r--r-- | fs/nfs/delegation.c | 186 |
1 files changed, 110 insertions, 76 deletions
diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c index 7f37d1bea83f..20ac403469a0 100644 --- a/fs/nfs/delegation.c +++ b/fs/nfs/delegation.c | |||
| @@ -27,6 +27,13 @@ static void nfs_free_delegation(struct nfs_delegation *delegation) | |||
| 27 | kfree(delegation); | 27 | kfree(delegation); |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | static void nfs_free_delegation_callback(struct rcu_head *head) | ||
| 31 | { | ||
| 32 | struct nfs_delegation *delegation = container_of(head, struct nfs_delegation, rcu); | ||
| 33 | |||
| 34 | nfs_free_delegation(delegation); | ||
| 35 | } | ||
| 36 | |||
| 30 | static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state) | 37 | static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state) |
| 31 | { | 38 | { |
| 32 | struct inode *inode = state->inode; | 39 | struct inode *inode = state->inode; |
| @@ -57,7 +64,7 @@ out_err: | |||
| 57 | return status; | 64 | return status; |
| 58 | } | 65 | } |
| 59 | 66 | ||
| 60 | static void nfs_delegation_claim_opens(struct inode *inode) | 67 | static void nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid) |
| 61 | { | 68 | { |
| 62 | struct nfs_inode *nfsi = NFS_I(inode); | 69 | struct nfs_inode *nfsi = NFS_I(inode); |
| 63 | struct nfs_open_context *ctx; | 70 | struct nfs_open_context *ctx; |
| @@ -72,9 +79,11 @@ again: | |||
| 72 | continue; | 79 | continue; |
| 73 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) | 80 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) |
| 74 | continue; | 81 | continue; |
| 82 | if (memcmp(state->stateid.data, stateid->data, sizeof(state->stateid.data)) != 0) | ||
| 83 | continue; | ||
| 75 | get_nfs_open_context(ctx); | 84 | get_nfs_open_context(ctx); |
| 76 | spin_unlock(&inode->i_lock); | 85 | spin_unlock(&inode->i_lock); |
| 77 | err = nfs4_open_delegation_recall(ctx->dentry, state); | 86 | err = nfs4_open_delegation_recall(ctx, state, stateid); |
| 78 | if (err >= 0) | 87 | if (err >= 0) |
| 79 | err = nfs_delegation_claim_locks(ctx, state); | 88 | err = nfs_delegation_claim_locks(ctx, state); |
| 80 | put_nfs_open_context(ctx); | 89 | put_nfs_open_context(ctx); |
| @@ -115,10 +124,6 @@ int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct | |||
| 115 | struct nfs_delegation *delegation; | 124 | struct nfs_delegation *delegation; |
| 116 | int status = 0; | 125 | int status = 0; |
| 117 | 126 | ||
| 118 | /* Ensure we first revalidate the attributes and page cache! */ | ||
| 119 | if ((nfsi->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_ATTR))) | ||
| 120 | __nfs_revalidate_inode(NFS_SERVER(inode), inode); | ||
| 121 | |||
| 122 | delegation = kmalloc(sizeof(*delegation), GFP_KERNEL); | 127 | delegation = kmalloc(sizeof(*delegation), GFP_KERNEL); |
| 123 | if (delegation == NULL) | 128 | if (delegation == NULL) |
| 124 | return -ENOMEM; | 129 | return -ENOMEM; |
| @@ -131,10 +136,10 @@ int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct | |||
| 131 | delegation->inode = inode; | 136 | delegation->inode = inode; |
| 132 | 137 | ||
| 133 | spin_lock(&clp->cl_lock); | 138 | spin_lock(&clp->cl_lock); |
| 134 | if (nfsi->delegation == NULL) { | 139 | if (rcu_dereference(nfsi->delegation) == NULL) { |
| 135 | list_add(&delegation->super_list, &clp->cl_delegations); | 140 | list_add_rcu(&delegation->super_list, &clp->cl_delegations); |
| 136 | nfsi->delegation = delegation; | ||
| 137 | nfsi->delegation_state = delegation->type; | 141 | nfsi->delegation_state = delegation->type; |
| 142 | rcu_assign_pointer(nfsi->delegation, delegation); | ||
| 138 | delegation = NULL; | 143 | delegation = NULL; |
| 139 | } else { | 144 | } else { |
| 140 | if (memcmp(&delegation->stateid, &nfsi->delegation->stateid, | 145 | if (memcmp(&delegation->stateid, &nfsi->delegation->stateid, |
| @@ -145,6 +150,12 @@ int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct | |||
| 145 | status = -EIO; | 150 | status = -EIO; |
| 146 | } | 151 | } |
| 147 | } | 152 | } |
| 153 | |||
| 154 | /* Ensure we revalidate the attributes and page cache! */ | ||
| 155 | spin_lock(&inode->i_lock); | ||
| 156 | nfsi->cache_validity |= NFS_INO_REVAL_FORCED; | ||
| 157 | spin_unlock(&inode->i_lock); | ||
| 158 | |||
| 148 | spin_unlock(&clp->cl_lock); | 159 | spin_unlock(&clp->cl_lock); |
| 149 | kfree(delegation); | 160 | kfree(delegation); |
| 150 | return status; | 161 | return status; |
| @@ -155,7 +166,7 @@ static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation * | |||
| 155 | int res = 0; | 166 | int res = 0; |
| 156 | 167 | ||
| 157 | res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid); | 168 | res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid); |
| 158 | nfs_free_delegation(delegation); | 169 | call_rcu(&delegation->rcu, nfs_free_delegation_callback); |
| 159 | return res; | 170 | return res; |
| 160 | } | 171 | } |
| 161 | 172 | ||
| @@ -170,33 +181,55 @@ static void nfs_msync_inode(struct inode *inode) | |||
| 170 | /* | 181 | /* |
| 171 | * Basic procedure for returning a delegation to the server | 182 | * Basic procedure for returning a delegation to the server |
| 172 | */ | 183 | */ |
| 173 | int __nfs_inode_return_delegation(struct inode *inode) | 184 | static int __nfs_inode_return_delegation(struct inode *inode, struct nfs_delegation *delegation) |
| 174 | { | 185 | { |
| 175 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | 186 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 176 | struct nfs_inode *nfsi = NFS_I(inode); | 187 | struct nfs_inode *nfsi = NFS_I(inode); |
| 177 | struct nfs_delegation *delegation; | ||
| 178 | int res = 0; | ||
| 179 | 188 | ||
| 180 | nfs_msync_inode(inode); | 189 | nfs_msync_inode(inode); |
| 181 | down_read(&clp->cl_sem); | 190 | down_read(&clp->cl_sem); |
| 182 | /* Guard against new delegated open calls */ | 191 | /* Guard against new delegated open calls */ |
| 183 | down_write(&nfsi->rwsem); | 192 | down_write(&nfsi->rwsem); |
| 184 | spin_lock(&clp->cl_lock); | 193 | nfs_delegation_claim_opens(inode, &delegation->stateid); |
| 185 | delegation = nfsi->delegation; | ||
| 186 | if (delegation != NULL) { | ||
| 187 | list_del_init(&delegation->super_list); | ||
| 188 | nfsi->delegation = NULL; | ||
| 189 | nfsi->delegation_state = 0; | ||
| 190 | } | ||
| 191 | spin_unlock(&clp->cl_lock); | ||
| 192 | nfs_delegation_claim_opens(inode); | ||
| 193 | up_write(&nfsi->rwsem); | 194 | up_write(&nfsi->rwsem); |
| 194 | up_read(&clp->cl_sem); | 195 | up_read(&clp->cl_sem); |
| 195 | nfs_msync_inode(inode); | 196 | nfs_msync_inode(inode); |
| 196 | 197 | ||
| 197 | if (delegation != NULL) | 198 | return nfs_do_return_delegation(inode, delegation); |
| 198 | res = nfs_do_return_delegation(inode, delegation); | 199 | } |
| 199 | return res; | 200 | |
| 201 | static struct nfs_delegation *nfs_detach_delegation_locked(struct nfs_inode *nfsi, const nfs4_stateid *stateid) | ||
| 202 | { | ||
| 203 | struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation); | ||
| 204 | |||
| 205 | if (delegation == NULL) | ||
| 206 | goto nomatch; | ||
| 207 | if (stateid != NULL && memcmp(delegation->stateid.data, stateid->data, | ||
| 208 | sizeof(delegation->stateid.data)) != 0) | ||
| 209 | goto nomatch; | ||
| 210 | list_del_rcu(&delegation->super_list); | ||
| 211 | nfsi->delegation_state = 0; | ||
| 212 | rcu_assign_pointer(nfsi->delegation, NULL); | ||
| 213 | return delegation; | ||
| 214 | nomatch: | ||
| 215 | return NULL; | ||
| 216 | } | ||
| 217 | |||
| 218 | int nfs_inode_return_delegation(struct inode *inode) | ||
| 219 | { | ||
| 220 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | ||
| 221 | struct nfs_inode *nfsi = NFS_I(inode); | ||
| 222 | struct nfs_delegation *delegation; | ||
| 223 | int err = 0; | ||
| 224 | |||
| 225 | if (rcu_dereference(nfsi->delegation) != NULL) { | ||
| 226 | spin_lock(&clp->cl_lock); | ||
| 227 | delegation = nfs_detach_delegation_locked(nfsi, NULL); | ||
| 228 | spin_unlock(&clp->cl_lock); | ||
| 229 | if (delegation != NULL) | ||
| 230 | err = __nfs_inode_return_delegation(inode, delegation); | ||
| 231 | } | ||
| 232 | return err; | ||
| 200 | } | 233 | } |
| 201 | 234 | ||
| 202 | /* | 235 | /* |
| @@ -211,19 +244,23 @@ void nfs_return_all_delegations(struct super_block *sb) | |||
| 211 | if (clp == NULL) | 244 | if (clp == NULL) |
| 212 | return; | 245 | return; |
| 213 | restart: | 246 | restart: |
| 214 | spin_lock(&clp->cl_lock); | 247 | rcu_read_lock(); |
| 215 | list_for_each_entry(delegation, &clp->cl_delegations, super_list) { | 248 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 216 | if (delegation->inode->i_sb != sb) | 249 | if (delegation->inode->i_sb != sb) |
| 217 | continue; | 250 | continue; |
| 218 | inode = igrab(delegation->inode); | 251 | inode = igrab(delegation->inode); |
| 219 | if (inode == NULL) | 252 | if (inode == NULL) |
| 220 | continue; | 253 | continue; |
| 254 | spin_lock(&clp->cl_lock); | ||
| 255 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL); | ||
| 221 | spin_unlock(&clp->cl_lock); | 256 | spin_unlock(&clp->cl_lock); |
| 222 | nfs_inode_return_delegation(inode); | 257 | rcu_read_unlock(); |
| 258 | if (delegation != NULL) | ||
| 259 | __nfs_inode_return_delegation(inode, delegation); | ||
| 223 | iput(inode); | 260 | iput(inode); |
| 224 | goto restart; | 261 | goto restart; |
| 225 | } | 262 | } |
| 226 | spin_unlock(&clp->cl_lock); | 263 | rcu_read_unlock(); |
| 227 | } | 264 | } |
| 228 | 265 | ||
| 229 | static int nfs_do_expire_all_delegations(void *ptr) | 266 | static int nfs_do_expire_all_delegations(void *ptr) |
| @@ -234,22 +271,26 @@ static int nfs_do_expire_all_delegations(void *ptr) | |||
| 234 | 271 | ||
| 235 | allow_signal(SIGKILL); | 272 | allow_signal(SIGKILL); |
| 236 | restart: | 273 | restart: |
| 237 | spin_lock(&clp->cl_lock); | ||
| 238 | if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) != 0) | 274 | if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) != 0) |
| 239 | goto out; | 275 | goto out; |
| 240 | if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) | 276 | if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) == 0) |
| 241 | goto out; | 277 | goto out; |
| 242 | list_for_each_entry(delegation, &clp->cl_delegations, super_list) { | 278 | rcu_read_lock(); |
| 279 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { | ||
| 243 | inode = igrab(delegation->inode); | 280 | inode = igrab(delegation->inode); |
| 244 | if (inode == NULL) | 281 | if (inode == NULL) |
| 245 | continue; | 282 | continue; |
| 283 | spin_lock(&clp->cl_lock); | ||
| 284 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL); | ||
| 246 | spin_unlock(&clp->cl_lock); | 285 | spin_unlock(&clp->cl_lock); |
| 247 | nfs_inode_return_delegation(inode); | 286 | rcu_read_unlock(); |
| 287 | if (delegation) | ||
| 288 | __nfs_inode_return_delegation(inode, delegation); | ||
| 248 | iput(inode); | 289 | iput(inode); |
| 249 | goto restart; | 290 | goto restart; |
| 250 | } | 291 | } |
| 292 | rcu_read_unlock(); | ||
| 251 | out: | 293 | out: |
| 252 | spin_unlock(&clp->cl_lock); | ||
| 253 | nfs_put_client(clp); | 294 | nfs_put_client(clp); |
| 254 | module_put_and_exit(0); | 295 | module_put_and_exit(0); |
| 255 | } | 296 | } |
| @@ -280,17 +321,21 @@ void nfs_handle_cb_pathdown(struct nfs_client *clp) | |||
| 280 | if (clp == NULL) | 321 | if (clp == NULL) |
| 281 | return; | 322 | return; |
| 282 | restart: | 323 | restart: |
| 283 | spin_lock(&clp->cl_lock); | 324 | rcu_read_lock(); |
| 284 | list_for_each_entry(delegation, &clp->cl_delegations, super_list) { | 325 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 285 | inode = igrab(delegation->inode); | 326 | inode = igrab(delegation->inode); |
| 286 | if (inode == NULL) | 327 | if (inode == NULL) |
| 287 | continue; | 328 | continue; |
| 329 | spin_lock(&clp->cl_lock); | ||
| 330 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL); | ||
| 288 | spin_unlock(&clp->cl_lock); | 331 | spin_unlock(&clp->cl_lock); |
| 289 | nfs_inode_return_delegation(inode); | 332 | rcu_read_unlock(); |
| 333 | if (delegation != NULL) | ||
| 334 | __nfs_inode_return_delegation(inode, delegation); | ||
| 290 | iput(inode); | 335 | iput(inode); |
| 291 | goto restart; | 336 | goto restart; |
| 292 | } | 337 | } |
| 293 | spin_unlock(&clp->cl_lock); | 338 | rcu_read_unlock(); |
| 294 | } | 339 | } |
| 295 | 340 | ||
| 296 | struct recall_threadargs { | 341 | struct recall_threadargs { |
| @@ -316,21 +361,14 @@ static int recall_thread(void *data) | |||
| 316 | down_read(&clp->cl_sem); | 361 | down_read(&clp->cl_sem); |
| 317 | down_write(&nfsi->rwsem); | 362 | down_write(&nfsi->rwsem); |
| 318 | spin_lock(&clp->cl_lock); | 363 | spin_lock(&clp->cl_lock); |
| 319 | delegation = nfsi->delegation; | 364 | delegation = nfs_detach_delegation_locked(nfsi, args->stateid); |
| 320 | if (delegation != NULL && memcmp(delegation->stateid.data, | 365 | if (delegation != NULL) |
| 321 | args->stateid->data, | ||
| 322 | sizeof(delegation->stateid.data)) == 0) { | ||
| 323 | list_del_init(&delegation->super_list); | ||
| 324 | nfsi->delegation = NULL; | ||
| 325 | nfsi->delegation_state = 0; | ||
| 326 | args->result = 0; | 366 | args->result = 0; |
| 327 | } else { | 367 | else |
| 328 | delegation = NULL; | ||
| 329 | args->result = -ENOENT; | 368 | args->result = -ENOENT; |
| 330 | } | ||
| 331 | spin_unlock(&clp->cl_lock); | 369 | spin_unlock(&clp->cl_lock); |
| 332 | complete(&args->started); | 370 | complete(&args->started); |
| 333 | nfs_delegation_claim_opens(inode); | 371 | nfs_delegation_claim_opens(inode, args->stateid); |
| 334 | up_write(&nfsi->rwsem); | 372 | up_write(&nfsi->rwsem); |
| 335 | up_read(&clp->cl_sem); | 373 | up_read(&clp->cl_sem); |
| 336 | nfs_msync_inode(inode); | 374 | nfs_msync_inode(inode); |
| @@ -371,14 +409,14 @@ struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs | |||
| 371 | { | 409 | { |
| 372 | struct nfs_delegation *delegation; | 410 | struct nfs_delegation *delegation; |
| 373 | struct inode *res = NULL; | 411 | struct inode *res = NULL; |
| 374 | spin_lock(&clp->cl_lock); | 412 | rcu_read_lock(); |
| 375 | list_for_each_entry(delegation, &clp->cl_delegations, super_list) { | 413 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 376 | if (nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { | 414 | if (nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { |
| 377 | res = igrab(delegation->inode); | 415 | res = igrab(delegation->inode); |
| 378 | break; | 416 | break; |
| 379 | } | 417 | } |
| 380 | } | 418 | } |
| 381 | spin_unlock(&clp->cl_lock); | 419 | rcu_read_unlock(); |
| 382 | return res; | 420 | return res; |
| 383 | } | 421 | } |
| 384 | 422 | ||
| @@ -388,10 +426,10 @@ struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs | |||
| 388 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) | 426 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) |
| 389 | { | 427 | { |
| 390 | struct nfs_delegation *delegation; | 428 | struct nfs_delegation *delegation; |
| 391 | spin_lock(&clp->cl_lock); | 429 | rcu_read_lock(); |
| 392 | list_for_each_entry(delegation, &clp->cl_delegations, super_list) | 430 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) |
| 393 | delegation->flags |= NFS_DELEGATION_NEED_RECLAIM; | 431 | delegation->flags |= NFS_DELEGATION_NEED_RECLAIM; |
| 394 | spin_unlock(&clp->cl_lock); | 432 | rcu_read_unlock(); |
| 395 | } | 433 | } |
| 396 | 434 | ||
| 397 | /* | 435 | /* |
| @@ -399,39 +437,35 @@ void nfs_delegation_mark_reclaim(struct nfs_client *clp) | |||
| 399 | */ | 437 | */ |
| 400 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) | 438 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) |
| 401 | { | 439 | { |
| 402 | struct nfs_delegation *delegation, *n; | 440 | struct nfs_delegation *delegation; |
| 403 | LIST_HEAD(head); | 441 | restart: |
| 404 | spin_lock(&clp->cl_lock); | 442 | rcu_read_lock(); |
| 405 | list_for_each_entry_safe(delegation, n, &clp->cl_delegations, super_list) { | 443 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 406 | if ((delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) | 444 | if ((delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) |
| 407 | continue; | 445 | continue; |
| 408 | list_move(&delegation->super_list, &head); | 446 | spin_lock(&clp->cl_lock); |
| 409 | NFS_I(delegation->inode)->delegation = NULL; | 447 | delegation = nfs_detach_delegation_locked(NFS_I(delegation->inode), NULL); |
| 410 | NFS_I(delegation->inode)->delegation_state = 0; | 448 | spin_unlock(&clp->cl_lock); |
| 411 | } | 449 | rcu_read_unlock(); |
| 412 | spin_unlock(&clp->cl_lock); | 450 | if (delegation != NULL) |
| 413 | while(!list_empty(&head)) { | 451 | call_rcu(&delegation->rcu, nfs_free_delegation_callback); |
| 414 | delegation = list_entry(head.next, struct nfs_delegation, super_list); | 452 | goto restart; |
| 415 | list_del(&delegation->super_list); | ||
| 416 | nfs_free_delegation(delegation); | ||
| 417 | } | 453 | } |
| 454 | rcu_read_unlock(); | ||
| 418 | } | 455 | } |
| 419 | 456 | ||
| 420 | int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode) | 457 | int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode) |
| 421 | { | 458 | { |
| 422 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | ||
| 423 | struct nfs_inode *nfsi = NFS_I(inode); | 459 | struct nfs_inode *nfsi = NFS_I(inode); |
| 424 | struct nfs_delegation *delegation; | 460 | struct nfs_delegation *delegation; |
| 425 | int res = 0; | 461 | int ret = 0; |
| 426 | 462 | ||
| 427 | if (nfsi->delegation_state == 0) | 463 | rcu_read_lock(); |
| 428 | return 0; | 464 | delegation = rcu_dereference(nfsi->delegation); |
| 429 | spin_lock(&clp->cl_lock); | ||
| 430 | delegation = nfsi->delegation; | ||
| 431 | if (delegation != NULL) { | 465 | if (delegation != NULL) { |
| 432 | memcpy(dst->data, delegation->stateid.data, sizeof(dst->data)); | 466 | memcpy(dst->data, delegation->stateid.data, sizeof(dst->data)); |
| 433 | res = 1; | 467 | ret = 1; |
| 434 | } | 468 | } |
| 435 | spin_unlock(&clp->cl_lock); | 469 | rcu_read_unlock(); |
| 436 | return res; | 470 | return ret; |
| 437 | } | 471 | } |
