2 * linux/fs/nfs/delegation.c
4 * Copyright (C) 2004 Trond Myklebust
6 * NFS file delegation management
9 #include <linux/completion.h>
10 #include <linux/kthread.h>
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <linux/iversion.h>
17 #include <linux/nfs4.h>
18 #include <linux/nfs_fs.h>
19 #include <linux/nfs_xdr.h>
22 #include "nfs4session.h"
23 #include "delegation.h"
25 #include "nfs4trace.h"
27 static void nfs_free_delegation(struct nfs_delegation *delegation)
29 if (delegation->cred) {
30 put_rpccred(delegation->cred);
31 delegation->cred = NULL;
33 kfree_rcu(delegation, rcu);
37 * nfs_mark_delegation_referenced - set delegation's REFERENCED flag
38 * @delegation: delegation to process
41 void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
43 set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
47 nfs4_is_valid_delegation(const struct nfs_delegation *delegation,
50 if (delegation != NULL && (delegation->type & flags) == flags &&
51 !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) &&
52 !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
57 struct nfs_delegation *nfs4_get_valid_delegation(const struct inode *inode)
59 struct nfs_delegation *delegation;
61 delegation = rcu_dereference(NFS_I(inode)->delegation);
62 if (nfs4_is_valid_delegation(delegation, 0))
68 nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark)
70 struct nfs_delegation *delegation;
73 flags &= FMODE_READ|FMODE_WRITE;
75 delegation = rcu_dereference(NFS_I(inode)->delegation);
76 if (nfs4_is_valid_delegation(delegation, flags)) {
78 nfs_mark_delegation_referenced(delegation);
85 * nfs_have_delegation - check if inode has a delegation, mark it
86 * NFS_DELEGATION_REFERENCED if there is one.
87 * @inode: inode to check
88 * @flags: delegation types to check for
90 * Returns one if inode has the indicated delegation, otherwise zero.
92 int nfs4_have_delegation(struct inode *inode, fmode_t flags)
94 return nfs4_do_check_delegation(inode, flags, true);
98 * nfs4_check_delegation - check if inode has a delegation, do not mark
99 * NFS_DELEGATION_REFERENCED if it has one.
101 int nfs4_check_delegation(struct inode *inode, fmode_t flags)
103 return nfs4_do_check_delegation(inode, flags, false);
106 static int nfs_delegation_claim_locks(struct nfs4_state *state, const nfs4_stateid *stateid)
108 struct inode *inode = state->inode;
109 struct file_lock *fl;
110 struct file_lock_context *flctx = inode->i_flctx;
111 struct list_head *list;
117 list = &flctx->flc_posix;
118 spin_lock(&flctx->flc_lock);
120 list_for_each_entry(fl, list, fl_list) {
121 if (nfs_file_open_context(fl->fl_file)->state != state)
123 spin_unlock(&flctx->flc_lock);
124 status = nfs4_lock_delegation_recall(fl, state, stateid);
127 spin_lock(&flctx->flc_lock);
129 if (list == &flctx->flc_posix) {
130 list = &flctx->flc_flock;
133 spin_unlock(&flctx->flc_lock);
138 static int nfs_delegation_claim_opens(struct inode *inode,
139 const nfs4_stateid *stateid, fmode_t type)
141 struct nfs_inode *nfsi = NFS_I(inode);
142 struct nfs_open_context *ctx;
143 struct nfs4_state_owner *sp;
144 struct nfs4_state *state;
149 spin_lock(&inode->i_lock);
150 list_for_each_entry(ctx, &nfsi->open_files, list) {
154 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
156 if (!nfs4_valid_open_stateid(state))
158 if (!nfs4_stateid_match(&state->stateid, stateid))
160 get_nfs_open_context(ctx);
161 spin_unlock(&inode->i_lock);
163 /* Block nfs4_proc_unlck */
164 mutex_lock(&sp->so_delegreturn_mutex);
165 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
166 err = nfs4_open_delegation_recall(ctx, state, stateid);
168 err = nfs_delegation_claim_locks(state, stateid);
169 if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
171 mutex_unlock(&sp->so_delegreturn_mutex);
172 put_nfs_open_context(ctx);
177 spin_unlock(&inode->i_lock);
182 * nfs_inode_reclaim_delegation - process a delegation reclaim request
183 * @inode: inode to process
184 * @cred: credential to use for request
185 * @type: delegation type
186 * @stateid: delegation stateid
187 * @pagemod_limit: write delegation "space_limit"
190 void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred,
192 const nfs4_stateid *stateid,
193 unsigned long pagemod_limit)
195 struct nfs_delegation *delegation;
196 struct rpc_cred *oldcred = NULL;
199 delegation = rcu_dereference(NFS_I(inode)->delegation);
200 if (delegation != NULL) {
201 spin_lock(&delegation->lock);
202 if (delegation->inode != NULL) {
203 nfs4_stateid_copy(&delegation->stateid, stateid);
204 delegation->type = type;
205 delegation->pagemod_limit = pagemod_limit;
206 oldcred = delegation->cred;
207 delegation->cred = get_rpccred(cred);
208 clear_bit(NFS_DELEGATION_NEED_RECLAIM,
210 spin_unlock(&delegation->lock);
212 put_rpccred(oldcred);
213 trace_nfs4_reclaim_delegation(inode, type);
216 /* We appear to have raced with a delegation return. */
217 spin_unlock(&delegation->lock);
220 nfs_inode_set_delegation(inode, cred, type, stateid, pagemod_limit);
223 static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
227 if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
228 res = nfs4_proc_delegreturn(inode,
230 &delegation->stateid,
232 nfs_free_delegation(delegation);
236 static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
238 struct inode *inode = NULL;
240 spin_lock(&delegation->lock);
241 if (delegation->inode != NULL)
242 inode = igrab(delegation->inode);
244 set_bit(NFS_DELEGATION_INODE_FREEING, &delegation->flags);
245 spin_unlock(&delegation->lock);
249 static struct nfs_delegation *
250 nfs_start_delegation_return_locked(struct nfs_inode *nfsi)
252 struct nfs_delegation *ret = NULL;
253 struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation);
255 if (delegation == NULL)
257 spin_lock(&delegation->lock);
258 if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
260 spin_unlock(&delegation->lock);
265 static struct nfs_delegation *
266 nfs_start_delegation_return(struct nfs_inode *nfsi)
268 struct nfs_delegation *delegation;
271 delegation = nfs_start_delegation_return_locked(nfsi);
277 nfs_abort_delegation_return(struct nfs_delegation *delegation,
278 struct nfs_client *clp)
281 spin_lock(&delegation->lock);
282 clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
283 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
284 spin_unlock(&delegation->lock);
285 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
288 static struct nfs_delegation *
289 nfs_detach_delegation_locked(struct nfs_inode *nfsi,
290 struct nfs_delegation *delegation,
291 struct nfs_client *clp)
293 struct nfs_delegation *deleg_cur =
294 rcu_dereference_protected(nfsi->delegation,
295 lockdep_is_held(&clp->cl_lock));
297 if (deleg_cur == NULL || delegation != deleg_cur)
300 spin_lock(&delegation->lock);
301 set_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
302 list_del_rcu(&delegation->super_list);
303 delegation->inode = NULL;
304 rcu_assign_pointer(nfsi->delegation, NULL);
305 spin_unlock(&delegation->lock);
309 static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi,
310 struct nfs_delegation *delegation,
311 struct nfs_server *server)
313 struct nfs_client *clp = server->nfs_client;
315 spin_lock(&clp->cl_lock);
316 delegation = nfs_detach_delegation_locked(nfsi, delegation, clp);
317 spin_unlock(&clp->cl_lock);
321 static struct nfs_delegation *
322 nfs_inode_detach_delegation(struct inode *inode)
324 struct nfs_inode *nfsi = NFS_I(inode);
325 struct nfs_server *server = NFS_SERVER(inode);
326 struct nfs_delegation *delegation;
328 delegation = nfs_start_delegation_return(nfsi);
329 if (delegation == NULL)
331 return nfs_detach_delegation(nfsi, delegation, server);
335 nfs_update_inplace_delegation(struct nfs_delegation *delegation,
336 const struct nfs_delegation *update)
338 if (nfs4_stateid_is_newer(&update->stateid, &delegation->stateid)) {
339 delegation->stateid.seqid = update->stateid.seqid;
341 delegation->type = update->type;
346 * nfs_inode_set_delegation - set up a delegation on an inode
347 * @inode: inode to which delegation applies
348 * @cred: cred to use for subsequent delegation processing
349 * @type: delegation type
350 * @stateid: delegation stateid
351 * @pagemod_limit: write delegation "space_limit"
353 * Returns zero on success, or a negative errno value.
355 int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred,
357 const nfs4_stateid *stateid,
358 unsigned long pagemod_limit)
360 struct nfs_server *server = NFS_SERVER(inode);
361 struct nfs_client *clp = server->nfs_client;
362 struct nfs_inode *nfsi = NFS_I(inode);
363 struct nfs_delegation *delegation, *old_delegation;
364 struct nfs_delegation *freeme = NULL;
367 delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
368 if (delegation == NULL)
370 nfs4_stateid_copy(&delegation->stateid, stateid);
371 delegation->type = type;
372 delegation->pagemod_limit = pagemod_limit;
373 delegation->change_attr = inode_peek_iversion_raw(inode);
374 delegation->cred = get_rpccred(cred);
375 delegation->inode = inode;
376 delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
377 spin_lock_init(&delegation->lock);
379 spin_lock(&clp->cl_lock);
380 old_delegation = rcu_dereference_protected(nfsi->delegation,
381 lockdep_is_held(&clp->cl_lock));
382 if (old_delegation != NULL) {
383 /* Is this an update of the existing delegation? */
384 if (nfs4_stateid_match_other(&old_delegation->stateid,
385 &delegation->stateid)) {
386 nfs_update_inplace_delegation(old_delegation,
391 * Deal with broken servers that hand out two
392 * delegations for the same file.
393 * Allow for upgrades to a WRITE delegation, but
396 dfprintk(FILE, "%s: server %s handed out "
397 "a duplicate delegation!\n",
398 __func__, clp->cl_hostname);
399 if (delegation->type == old_delegation->type ||
400 !(delegation->type & FMODE_WRITE)) {
405 if (test_and_set_bit(NFS_DELEGATION_RETURNING,
406 &old_delegation->flags))
408 freeme = nfs_detach_delegation_locked(nfsi,
409 old_delegation, clp);
413 list_add_tail_rcu(&delegation->super_list, &server->delegations);
414 rcu_assign_pointer(nfsi->delegation, delegation);
417 trace_nfs4_set_delegation(inode, type);
419 spin_lock(&inode->i_lock);
420 if (NFS_I(inode)->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME))
421 NFS_I(inode)->cache_validity |= NFS_INO_REVAL_FORCED;
422 spin_unlock(&inode->i_lock);
424 spin_unlock(&clp->cl_lock);
425 if (delegation != NULL)
426 nfs_free_delegation(delegation);
428 nfs_do_return_delegation(inode, freeme, 0);
433 * Basic procedure for returning a delegation to the server
435 static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync)
437 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
438 struct nfs_inode *nfsi = NFS_I(inode);
441 if (delegation == NULL)
444 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
446 err = nfs_delegation_claim_opens(inode, &delegation->stateid,
448 if (!issync || err != -EAGAIN)
451 * Guard against state recovery
453 err = nfs4_wait_clnt_recover(clp);
457 nfs_abort_delegation_return(delegation, clp);
460 if (!nfs_detach_delegation(nfsi, delegation, NFS_SERVER(inode)))
463 err = nfs_do_return_delegation(inode, delegation, issync);
468 static bool nfs_delegation_need_return(struct nfs_delegation *delegation)
472 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
474 if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
476 if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) {
479 spin_lock(&delegation->lock);
480 inode = delegation->inode;
481 if (inode && list_empty(&NFS_I(inode)->open_files))
483 spin_unlock(&delegation->lock);
490 * nfs_client_return_marked_delegations - return previously marked delegations
491 * @clp: nfs_client to process
493 * Note that this function is designed to be called by the state
494 * manager thread. For this reason, it cannot flush the dirty data,
495 * since that could deadlock in case of a state recovery error.
497 * Returns zero on success, or a negative errno value.
499 int nfs_client_return_marked_delegations(struct nfs_client *clp)
501 struct nfs_delegation *delegation;
502 struct nfs_delegation *prev;
503 struct nfs_server *server;
505 struct inode *place_holder = NULL;
506 struct nfs_delegation *place_holder_deleg = NULL;
511 * To avoid quadratic looping we hold a reference
512 * to an inode place_holder. Each time we restart, we
513 * list nfs_servers from the server of that inode, and
514 * delegation in the server from the delegations of that
516 * prev is an RCU-protected pointer to a delegation which
517 * wasn't marked for return and might be a good choice for
518 * the next place_holder.
523 server = NFS_SERVER(place_holder);
525 server = list_entry_rcu(clp->cl_superblocks.next,
526 struct nfs_server, client_link);
527 list_for_each_entry_from_rcu(server, &clp->cl_superblocks, client_link) {
529 if (place_holder && server == NFS_SERVER(place_holder))
530 delegation = rcu_dereference(NFS_I(place_holder)->delegation);
531 if (!delegation || delegation != place_holder_deleg)
532 delegation = list_entry_rcu(server->delegations.next,
533 struct nfs_delegation, super_list);
534 list_for_each_entry_from_rcu(delegation, &server->delegations, super_list) {
535 struct inode *to_put = NULL;
537 if (!nfs_delegation_need_return(delegation)) {
541 if (!nfs_sb_active(server->super))
542 break; /* continue in outer loop */
547 tmp = nfs_delegation_grab_inode(prev);
549 to_put = place_holder;
551 place_holder_deleg = prev;
555 inode = nfs_delegation_grab_inode(delegation);
560 nfs_sb_deactive(server->super);
563 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
569 err = nfs_end_delegation_return(inode, delegation, 0);
571 nfs_sb_deactive(server->super);
575 set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
588 * nfs_inode_return_delegation_noreclaim - return delegation, don't reclaim opens
589 * @inode: inode to process
591 * Does not protect against delegation reclaims, therefore really only safe
592 * to be called from nfs4_clear_inode().
594 void nfs_inode_return_delegation_noreclaim(struct inode *inode)
596 struct nfs_delegation *delegation;
598 delegation = nfs_inode_detach_delegation(inode);
599 if (delegation != NULL)
600 nfs_do_return_delegation(inode, delegation, 1);
604 * nfs_inode_return_delegation - synchronously return a delegation
605 * @inode: inode to process
607 * This routine will always flush any dirty data to disk on the
608 * assumption that if we need to return the delegation, then
609 * we should stop caching.
611 * Returns zero on success, or a negative errno value.
613 int nfs4_inode_return_delegation(struct inode *inode)
615 struct nfs_inode *nfsi = NFS_I(inode);
616 struct nfs_delegation *delegation;
620 delegation = nfs_start_delegation_return(nfsi);
621 if (delegation != NULL)
622 err = nfs_end_delegation_return(inode, delegation, 1);
627 * nfs4_inode_make_writeable
628 * @inode: pointer to inode
630 * Make the inode writeable by returning the delegation if necessary
632 * Returns zero on success, or a negative errno value.
634 int nfs4_inode_make_writeable(struct inode *inode)
636 if (!nfs4_has_session(NFS_SERVER(inode)->nfs_client) ||
637 !nfs4_check_delegation(inode, FMODE_WRITE))
638 return nfs4_inode_return_delegation(inode);
642 static void nfs_mark_return_if_closed_delegation(struct nfs_server *server,
643 struct nfs_delegation *delegation)
645 set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags);
646 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
649 static void nfs_mark_return_delegation(struct nfs_server *server,
650 struct nfs_delegation *delegation)
652 set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
653 set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
656 static bool nfs_server_mark_return_all_delegations(struct nfs_server *server)
658 struct nfs_delegation *delegation;
661 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
662 nfs_mark_return_delegation(server, delegation);
668 static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
670 struct nfs_server *server;
673 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
674 nfs_server_mark_return_all_delegations(server);
678 static void nfs_delegation_run_state_manager(struct nfs_client *clp)
680 if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
681 nfs4_schedule_state_manager(clp);
685 * nfs_expire_all_delegations
686 * @clp: client to process
689 void nfs_expire_all_delegations(struct nfs_client *clp)
691 nfs_client_mark_return_all_delegations(clp);
692 nfs_delegation_run_state_manager(clp);
696 * nfs_super_return_all_delegations - return delegations for one superblock
700 void nfs_server_return_all_delegations(struct nfs_server *server)
702 struct nfs_client *clp = server->nfs_client;
709 need_wait = nfs_server_mark_return_all_delegations(server);
713 nfs4_schedule_state_manager(clp);
714 nfs4_wait_clnt_recover(clp);
718 static void nfs_mark_return_unused_delegation_types(struct nfs_server *server,
721 struct nfs_delegation *delegation;
723 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
724 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
726 if (delegation->type & flags)
727 nfs_mark_return_if_closed_delegation(server, delegation);
731 static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp,
734 struct nfs_server *server;
737 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
738 nfs_mark_return_unused_delegation_types(server, flags);
742 static void nfs_mark_delegation_revoked(struct nfs_server *server,
743 struct nfs_delegation *delegation)
745 set_bit(NFS_DELEGATION_REVOKED, &delegation->flags);
746 delegation->stateid.type = NFS4_INVALID_STATEID_TYPE;
747 nfs_mark_return_delegation(server, delegation);
750 static bool nfs_revoke_delegation(struct inode *inode,
751 const nfs4_stateid *stateid)
753 struct nfs_delegation *delegation;
758 delegation = rcu_dereference(NFS_I(inode)->delegation);
759 if (delegation == NULL)
761 if (stateid == NULL) {
762 nfs4_stateid_copy(&tmp, &delegation->stateid);
764 } else if (!nfs4_stateid_match(stateid, &delegation->stateid))
766 nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation);
771 nfs_inode_find_state_and_recover(inode, stateid);
775 void nfs_remove_bad_delegation(struct inode *inode,
776 const nfs4_stateid *stateid)
778 struct nfs_delegation *delegation;
780 if (!nfs_revoke_delegation(inode, stateid))
782 delegation = nfs_inode_detach_delegation(inode);
784 nfs_free_delegation(delegation);
786 EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation);
789 * nfs_expire_unused_delegation_types
790 * @clp: client to process
791 * @flags: delegation types to expire
794 void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags)
796 nfs_client_mark_return_unused_delegation_types(clp, flags);
797 nfs_delegation_run_state_manager(clp);
800 static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server)
802 struct nfs_delegation *delegation;
804 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
805 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
807 nfs_mark_return_if_closed_delegation(server, delegation);
812 * nfs_expire_unreferenced_delegations - Eliminate unused delegations
813 * @clp: nfs_client to process
816 void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
818 struct nfs_server *server;
821 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
822 nfs_mark_return_unreferenced_delegations(server);
825 nfs_delegation_run_state_manager(clp);
829 * nfs_async_inode_return_delegation - asynchronously return a delegation
830 * @inode: inode to process
831 * @stateid: state ID information
833 * Returns zero on success, or a negative errno value.
835 int nfs_async_inode_return_delegation(struct inode *inode,
836 const nfs4_stateid *stateid)
838 struct nfs_server *server = NFS_SERVER(inode);
839 struct nfs_client *clp = server->nfs_client;
840 struct nfs_delegation *delegation;
843 delegation = rcu_dereference(NFS_I(inode)->delegation);
844 if (delegation == NULL)
846 if (stateid != NULL &&
847 !clp->cl_mvops->match_stateid(&delegation->stateid, stateid))
849 nfs_mark_return_delegation(server, delegation);
852 nfs_delegation_run_state_manager(clp);
859 static struct inode *
860 nfs_delegation_find_inode_server(struct nfs_server *server,
861 const struct nfs_fh *fhandle)
863 struct nfs_delegation *delegation;
864 struct inode *freeme, *res = NULL;
866 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
867 spin_lock(&delegation->lock);
868 if (delegation->inode != NULL &&
869 nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
870 freeme = igrab(delegation->inode);
871 if (freeme && nfs_sb_active(freeme->i_sb))
873 spin_unlock(&delegation->lock);
881 return ERR_PTR(-EAGAIN);
883 spin_unlock(&delegation->lock);
885 return ERR_PTR(-ENOENT);
889 * nfs_delegation_find_inode - retrieve the inode associated with a delegation
890 * @clp: client state handle
891 * @fhandle: filehandle from a delegation recall
893 * Returns pointer to inode matching "fhandle," or NULL if a matching inode
896 struct inode *nfs_delegation_find_inode(struct nfs_client *clp,
897 const struct nfs_fh *fhandle)
899 struct nfs_server *server;
903 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
904 res = nfs_delegation_find_inode_server(server, fhandle);
905 if (res != ERR_PTR(-ENOENT)) {
911 return ERR_PTR(-ENOENT);
914 static void nfs_delegation_mark_reclaim_server(struct nfs_server *server)
916 struct nfs_delegation *delegation;
918 list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
920 * If the delegation may have been admin revoked, then we
923 if (test_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags))
925 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
930 * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed
931 * @clp: nfs_client to process
934 void nfs_delegation_mark_reclaim(struct nfs_client *clp)
936 struct nfs_server *server;
939 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
940 nfs_delegation_mark_reclaim_server(server);
945 * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done
946 * @clp: nfs_client to process
949 void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
951 struct nfs_delegation *delegation;
952 struct nfs_server *server;
957 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
958 list_for_each_entry_rcu(delegation, &server->delegations,
960 if (test_bit(NFS_DELEGATION_INODE_FREEING,
961 &delegation->flags) ||
962 test_bit(NFS_DELEGATION_RETURNING,
963 &delegation->flags) ||
964 test_bit(NFS_DELEGATION_NEED_RECLAIM,
965 &delegation->flags) == 0)
967 if (!nfs_sb_active(server->super))
968 break; /* continue in outer loop */
969 inode = nfs_delegation_grab_inode(delegation);
972 nfs_sb_deactive(server->super);
975 delegation = nfs_start_delegation_return_locked(NFS_I(inode));
977 if (delegation != NULL) {
978 delegation = nfs_detach_delegation(NFS_I(inode),
980 if (delegation != NULL)
981 nfs_free_delegation(delegation);
984 nfs_sb_deactive(server->super);
992 static inline bool nfs4_server_rebooted(const struct nfs_client *clp)
994 return (clp->cl_state & (BIT(NFS4CLNT_CHECK_LEASE) |
995 BIT(NFS4CLNT_LEASE_EXPIRED) |
996 BIT(NFS4CLNT_SESSION_RESET))) != 0;
999 static void nfs_mark_test_expired_delegation(struct nfs_server *server,
1000 struct nfs_delegation *delegation)
1002 if (delegation->stateid.type == NFS4_INVALID_STATEID_TYPE)
1004 clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
1005 set_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
1006 set_bit(NFS4CLNT_DELEGATION_EXPIRED, &server->nfs_client->cl_state);
1009 static void nfs_inode_mark_test_expired_delegation(struct nfs_server *server,
1010 struct inode *inode)
1012 struct nfs_delegation *delegation;
1015 delegation = rcu_dereference(NFS_I(inode)->delegation);
1017 nfs_mark_test_expired_delegation(server, delegation);
1022 static void nfs_delegation_mark_test_expired_server(struct nfs_server *server)
1024 struct nfs_delegation *delegation;
1026 list_for_each_entry_rcu(delegation, &server->delegations, super_list)
1027 nfs_mark_test_expired_delegation(server, delegation);
1031 * nfs_mark_test_expired_all_delegations - mark all delegations for testing
1032 * @clp: nfs_client to process
1034 * Iterates through all the delegations associated with this server and
1035 * marks them as needing to be checked for validity.
1037 void nfs_mark_test_expired_all_delegations(struct nfs_client *clp)
1039 struct nfs_server *server;
1042 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1043 nfs_delegation_mark_test_expired_server(server);
1048 * nfs_reap_expired_delegations - reap expired delegations
1049 * @clp: nfs_client to process
1051 * Iterates through all the delegations associated with this server and
1052 * checks if they have may have been revoked. This function is usually
1053 * expected to be called in cases where the server may have lost its
1056 void nfs_reap_expired_delegations(struct nfs_client *clp)
1058 const struct nfs4_minor_version_ops *ops = clp->cl_mvops;
1059 struct nfs_delegation *delegation;
1060 struct nfs_server *server;
1061 struct inode *inode;
1062 struct rpc_cred *cred;
1063 nfs4_stateid stateid;
1067 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
1068 list_for_each_entry_rcu(delegation, &server->delegations,
1070 if (test_bit(NFS_DELEGATION_INODE_FREEING,
1071 &delegation->flags) ||
1072 test_bit(NFS_DELEGATION_RETURNING,
1073 &delegation->flags) ||
1074 test_bit(NFS_DELEGATION_TEST_EXPIRED,
1075 &delegation->flags) == 0)
1077 if (!nfs_sb_active(server->super))
1078 break; /* continue in outer loop */
1079 inode = nfs_delegation_grab_inode(delegation);
1080 if (inode == NULL) {
1082 nfs_sb_deactive(server->super);
1085 cred = get_rpccred_rcu(delegation->cred);
1086 nfs4_stateid_copy(&stateid, &delegation->stateid);
1087 clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
1090 ops->test_and_free_expired(server, &stateid, cred) < 0) {
1091 nfs_revoke_delegation(inode, &stateid);
1092 nfs_inode_find_state_and_recover(inode, &stateid);
1095 if (nfs4_server_rebooted(clp)) {
1096 nfs_inode_mark_test_expired_delegation(server,inode);
1098 nfs_sb_deactive(server->super);
1102 nfs_sb_deactive(server->super);
1110 void nfs_inode_find_delegation_state_and_recover(struct inode *inode,
1111 const nfs4_stateid *stateid)
1113 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
1114 struct nfs_delegation *delegation;
1118 delegation = rcu_dereference(NFS_I(inode)->delegation);
1120 nfs4_stateid_match_other(&delegation->stateid, stateid)) {
1121 nfs_mark_test_expired_delegation(NFS_SERVER(inode), delegation);
1126 nfs4_schedule_state_manager(clp);
1130 * nfs_delegations_present - check for existence of delegations
1131 * @clp: client state handle
1133 * Returns one if there are any nfs_delegation structures attached
1134 * to this nfs_client.
1136 int nfs_delegations_present(struct nfs_client *clp)
1138 struct nfs_server *server;
1142 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
1143 if (!list_empty(&server->delegations)) {
1152 * nfs4_refresh_delegation_stateid - Update delegation stateid seqid
1153 * @dst: stateid to refresh
1154 * @inode: inode to check
1156 * Returns "true" and updates "dst->seqid" * if inode had a delegation
1157 * that matches our delegation stateid. Otherwise "false" is returned.
1159 bool nfs4_refresh_delegation_stateid(nfs4_stateid *dst, struct inode *inode)
1161 struct nfs_delegation *delegation;
1167 delegation = rcu_dereference(NFS_I(inode)->delegation);
1168 if (delegation != NULL &&
1169 nfs4_stateid_match_other(dst, &delegation->stateid)) {
1170 dst->seqid = delegation->stateid.seqid;
1179 * nfs4_copy_delegation_stateid - Copy inode's state ID information
1180 * @inode: inode to check
1181 * @flags: delegation type requirement
1182 * @dst: stateid data structure to fill in
1183 * @cred: optional argument to retrieve credential
1185 * Returns "true" and fills in "dst->data" * if inode had a delegation,
1186 * otherwise "false" is returned.
1188 bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags,
1189 nfs4_stateid *dst, struct rpc_cred **cred)
1191 struct nfs_inode *nfsi = NFS_I(inode);
1192 struct nfs_delegation *delegation;
1195 flags &= FMODE_READ|FMODE_WRITE;
1197 delegation = rcu_dereference(nfsi->delegation);
1198 ret = nfs4_is_valid_delegation(delegation, flags);
1200 nfs4_stateid_copy(dst, &delegation->stateid);
1201 nfs_mark_delegation_referenced(delegation);
1203 *cred = get_rpccred(delegation->cred);
1210 * nfs4_delegation_flush_on_close - Check if we must flush file on close
1211 * @inode: inode to check
1213 * This function checks the number of outstanding writes to the file
1214 * against the delegation 'space_limit' field to see if
1215 * the spec requires us to flush the file on close.
1217 bool nfs4_delegation_flush_on_close(const struct inode *inode)
1219 struct nfs_inode *nfsi = NFS_I(inode);
1220 struct nfs_delegation *delegation;
1224 delegation = rcu_dereference(nfsi->delegation);
1225 if (delegation == NULL || !(delegation->type & FMODE_WRITE))
1227 if (atomic_long_read(&nfsi->nrequests) < delegation->pagemod_limit)