dfb300901f7e7b24528e29da944259bfac00197a
[cascardo/linux.git] / fs / nfs / delegation.c
1 /*
2  * linux/fs/nfs/delegation.c
3  *
4  * Copyright (C) 2004 Trond Myklebust
5  *
6  * NFS file delegation management
7  *
8  */
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
16 #include <linux/nfs4.h>
17 #include <linux/nfs_fs.h>
18 #include <linux/nfs_xdr.h>
19
20 #include "nfs4_fs.h"
21 #include "delegation.h"
22 #include "internal.h"
23 #include "nfs4trace.h"
24
25 static void nfs_free_delegation(struct nfs_delegation *delegation)
26 {
27         if (delegation->cred) {
28                 put_rpccred(delegation->cred);
29                 delegation->cred = NULL;
30         }
31         kfree_rcu(delegation, rcu);
32 }
33
34 /**
35  * nfs_mark_delegation_referenced - set delegation's REFERENCED flag
36  * @delegation: delegation to process
37  *
38  */
39 void nfs_mark_delegation_referenced(struct nfs_delegation *delegation)
40 {
41         set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags);
42 }
43
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
55 static int
56 nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark)
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);
64         if (nfs4_is_valid_delegation(delegation, flags)) {
65                 if (mark)
66                         nfs_mark_delegation_referenced(delegation);
67                 ret = 1;
68         }
69         rcu_read_unlock();
70         return ret;
71 }
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 }
93
94 static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
95 {
96         struct inode *inode = state->inode;
97         struct file_lock *fl;
98         struct file_lock_context *flctx = inode->i_flctx;
99         struct list_head *list;
100         int status = 0;
101
102         if (flctx == NULL)
103                 goto out;
104
105         list = &flctx->flc_posix;
106         spin_lock(&flctx->flc_lock);
107 restart:
108         list_for_each_entry(fl, list, fl_list) {
109                 if (nfs_file_open_context(fl->fl_file) != ctx)
110                         continue;
111                 spin_unlock(&flctx->flc_lock);
112                 status = nfs4_lock_delegation_recall(fl, state, stateid);
113                 if (status < 0)
114                         goto out;
115                 spin_lock(&flctx->flc_lock);
116         }
117         if (list == &flctx->flc_posix) {
118                 list = &flctx->flc_flock;
119                 goto restart;
120         }
121         spin_unlock(&flctx->flc_lock);
122 out:
123         return status;
124 }
125
126 static int nfs_delegation_claim_opens(struct inode *inode,
127                 const nfs4_stateid *stateid, fmode_t type)
128 {
129         struct nfs_inode *nfsi = NFS_I(inode);
130         struct nfs_open_context *ctx;
131         struct nfs4_state_owner *sp;
132         struct nfs4_state *state;
133         unsigned int seq;
134         int err;
135
136 again:
137         spin_lock(&inode->i_lock);
138         list_for_each_entry(ctx, &nfsi->open_files, list) {
139                 state = ctx->state;
140                 if (state == NULL)
141                         continue;
142                 if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
143                         continue;
144                 if (!nfs4_valid_open_stateid(state))
145                         continue;
146                 if (!nfs4_stateid_match(&state->stateid, stateid))
147                         continue;
148                 get_nfs_open_context(ctx);
149                 spin_unlock(&inode->i_lock);
150                 sp = state->owner;
151                 /* Block nfs4_proc_unlck */
152                 mutex_lock(&sp->so_delegreturn_mutex);
153                 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
154                 err = nfs4_open_delegation_recall(ctx, state, stateid, type);
155                 if (!err)
156                         err = nfs_delegation_claim_locks(ctx, state, stateid);
157                 if (!err && read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
158                         err = -EAGAIN;
159                 mutex_unlock(&sp->so_delegreturn_mutex);
160                 put_nfs_open_context(ctx);
161                 if (err != 0)
162                         return err;
163                 goto again;
164         }
165         spin_unlock(&inode->i_lock);
166         return 0;
167 }
168
169 /**
170  * nfs_inode_reclaim_delegation - process a delegation reclaim request
171  * @inode: inode to process
172  * @cred: credential to use for request
173  * @res: new delegation state from server
174  *
175  */
176 void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred,
177                                   struct nfs_openres *res)
178 {
179         struct nfs_delegation *delegation;
180         struct rpc_cred *oldcred = NULL;
181
182         rcu_read_lock();
183         delegation = rcu_dereference(NFS_I(inode)->delegation);
184         if (delegation != NULL) {
185                 spin_lock(&delegation->lock);
186                 if (delegation->inode != NULL) {
187                         nfs4_stateid_copy(&delegation->stateid, &res->delegation);
188                         delegation->type = res->delegation_type;
189                         delegation->pagemod_limit = res->pagemod_limit;
190                         oldcred = delegation->cred;
191                         delegation->cred = get_rpccred(cred);
192                         clear_bit(NFS_DELEGATION_NEED_RECLAIM,
193                                   &delegation->flags);
194                         spin_unlock(&delegation->lock);
195                         rcu_read_unlock();
196                         put_rpccred(oldcred);
197                         trace_nfs4_reclaim_delegation(inode, res->delegation_type);
198                 } else {
199                         /* We appear to have raced with a delegation return. */
200                         spin_unlock(&delegation->lock);
201                         rcu_read_unlock();
202                         nfs_inode_set_delegation(inode, cred, res);
203                 }
204         } else {
205                 rcu_read_unlock();
206         }
207 }
208
209 static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync)
210 {
211         int res = 0;
212
213         if (!test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
214                 res = nfs4_proc_delegreturn(inode,
215                                 delegation->cred,
216                                 &delegation->stateid,
217                                 issync);
218         nfs_free_delegation(delegation);
219         return res;
220 }
221
222 static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation)
223 {
224         struct inode *inode = NULL;
225
226         spin_lock(&delegation->lock);
227         if (delegation->inode != NULL)
228                 inode = igrab(delegation->inode);
229         spin_unlock(&delegation->lock);
230         return inode;
231 }
232
233 static struct nfs_delegation *
234 nfs_start_delegation_return_locked(struct nfs_inode *nfsi)
235 {
236         struct nfs_delegation *ret = NULL;
237         struct nfs_delegation *delegation = rcu_dereference(nfsi->delegation);
238
239         if (delegation == NULL)
240                 goto out;
241         spin_lock(&delegation->lock);
242         if (!test_and_set_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
243                 ret = delegation;
244         spin_unlock(&delegation->lock);
245 out:
246         return ret;
247 }
248
249 static struct nfs_delegation *
250 nfs_start_delegation_return(struct nfs_inode *nfsi)
251 {
252         struct nfs_delegation *delegation;
253
254         rcu_read_lock();
255         delegation = nfs_start_delegation_return_locked(nfsi);
256         rcu_read_unlock();
257         return delegation;
258 }
259
260 static void
261 nfs_abort_delegation_return(struct nfs_delegation *delegation,
262                 struct nfs_client *clp)
263 {
264
265         spin_lock(&delegation->lock);
266         clear_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
267         set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
268         spin_unlock(&delegation->lock);
269         set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
270 }
271
272 static struct nfs_delegation *
273 nfs_detach_delegation_locked(struct nfs_inode *nfsi,
274                 struct nfs_delegation *delegation,
275                 struct nfs_client *clp)
276 {
277         struct nfs_delegation *deleg_cur =
278                 rcu_dereference_protected(nfsi->delegation,
279                                 lockdep_is_held(&clp->cl_lock));
280
281         if (deleg_cur == NULL || delegation != deleg_cur)
282                 return NULL;
283
284         spin_lock(&delegation->lock);
285         set_bit(NFS_DELEGATION_RETURNING, &delegation->flags);
286         list_del_rcu(&delegation->super_list);
287         delegation->inode = NULL;
288         rcu_assign_pointer(nfsi->delegation, NULL);
289         spin_unlock(&delegation->lock);
290         return delegation;
291 }
292
293 static struct nfs_delegation *nfs_detach_delegation(struct nfs_inode *nfsi,
294                 struct nfs_delegation *delegation,
295                 struct nfs_server *server)
296 {
297         struct nfs_client *clp = server->nfs_client;
298
299         spin_lock(&clp->cl_lock);
300         delegation = nfs_detach_delegation_locked(nfsi, delegation, clp);
301         spin_unlock(&clp->cl_lock);
302         return delegation;
303 }
304
305 static struct nfs_delegation *
306 nfs_inode_detach_delegation(struct inode *inode)
307 {
308         struct nfs_inode *nfsi = NFS_I(inode);
309         struct nfs_server *server = NFS_SERVER(inode);
310         struct nfs_delegation *delegation;
311
312         delegation = nfs_start_delegation_return(nfsi);
313         if (delegation == NULL)
314                 return NULL;
315         return nfs_detach_delegation(nfsi, delegation, server);
316 }
317
318 static void
319 nfs_update_inplace_delegation(struct nfs_delegation *delegation,
320                 const struct nfs_delegation *update)
321 {
322         if (nfs4_stateid_is_newer(&update->stateid, &delegation->stateid)) {
323                 delegation->stateid.seqid = update->stateid.seqid;
324                 smp_wmb();
325                 delegation->type = update->type;
326         }
327 }
328
329 /**
330  * nfs_inode_set_delegation - set up a delegation on an inode
331  * @inode: inode to which delegation applies
332  * @cred: cred to use for subsequent delegation processing
333  * @res: new delegation state from server
334  *
335  * Returns zero on success, or a negative errno value.
336  */
337 int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res)
338 {
339         struct nfs_server *server = NFS_SERVER(inode);
340         struct nfs_client *clp = server->nfs_client;
341         struct nfs_inode *nfsi = NFS_I(inode);
342         struct nfs_delegation *delegation, *old_delegation;
343         struct nfs_delegation *freeme = NULL;
344         int status = 0;
345
346         delegation = kmalloc(sizeof(*delegation), GFP_NOFS);
347         if (delegation == NULL)
348                 return -ENOMEM;
349         nfs4_stateid_copy(&delegation->stateid, &res->delegation);
350         delegation->type = res->delegation_type;
351         delegation->pagemod_limit = res->pagemod_limit;
352         delegation->change_attr = inode->i_version;
353         delegation->cred = get_rpccred(cred);
354         delegation->inode = inode;
355         delegation->flags = 1<<NFS_DELEGATION_REFERENCED;
356         spin_lock_init(&delegation->lock);
357
358         spin_lock(&clp->cl_lock);
359         old_delegation = rcu_dereference_protected(nfsi->delegation,
360                                         lockdep_is_held(&clp->cl_lock));
361         if (old_delegation != NULL) {
362                 /* Is this an update of the existing delegation? */
363                 if (nfs4_stateid_match_other(&old_delegation->stateid,
364                                         &delegation->stateid)) {
365                         nfs_update_inplace_delegation(old_delegation,
366                                         delegation);
367                         goto out;
368                 }
369                 /*
370                  * Deal with broken servers that hand out two
371                  * delegations for the same file.
372                  * Allow for upgrades to a WRITE delegation, but
373                  * nothing else.
374                  */
375                 dfprintk(FILE, "%s: server %s handed out "
376                                 "a duplicate delegation!\n",
377                                 __func__, clp->cl_hostname);
378                 if (delegation->type == old_delegation->type ||
379                     !(delegation->type & FMODE_WRITE)) {
380                         freeme = delegation;
381                         delegation = NULL;
382                         goto out;
383                 }
384                 if (test_and_set_bit(NFS_DELEGATION_RETURNING,
385                                         &old_delegation->flags))
386                         goto out;
387                 freeme = nfs_detach_delegation_locked(nfsi,
388                                 old_delegation, clp);
389                 if (freeme == NULL)
390                         goto out;
391         }
392         list_add_tail_rcu(&delegation->super_list, &server->delegations);
393         rcu_assign_pointer(nfsi->delegation, delegation);
394         delegation = NULL;
395
396         /* Ensure we revalidate the attributes and page cache! */
397         spin_lock(&inode->i_lock);
398         nfsi->cache_validity |= NFS_INO_REVAL_FORCED;
399         spin_unlock(&inode->i_lock);
400         trace_nfs4_set_delegation(inode, res->delegation_type);
401
402 out:
403         spin_unlock(&clp->cl_lock);
404         if (delegation != NULL)
405                 nfs_free_delegation(delegation);
406         if (freeme != NULL)
407                 nfs_do_return_delegation(inode, freeme, 0);
408         return status;
409 }
410
411 /*
412  * Basic procedure for returning a delegation to the server
413  */
414 static int nfs_end_delegation_return(struct inode *inode, struct nfs_delegation *delegation, int issync)
415 {
416         struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
417         struct nfs_inode *nfsi = NFS_I(inode);
418         int err = 0;
419
420         if (delegation == NULL)
421                 return 0;
422         do {
423                 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags))
424                         break;
425                 err = nfs_delegation_claim_opens(inode, &delegation->stateid,
426                                 delegation->type);
427                 if (!issync || err != -EAGAIN)
428                         break;
429                 /*
430                  * Guard against state recovery
431                  */
432                 err = nfs4_wait_clnt_recover(clp);
433         } while (err == 0);
434
435         if (err) {
436                 nfs_abort_delegation_return(delegation, clp);
437                 goto out;
438         }
439         if (!nfs_detach_delegation(nfsi, delegation, NFS_SERVER(inode)))
440                 goto out;
441
442         err = nfs_do_return_delegation(inode, delegation, issync);
443 out:
444         return err;
445 }
446
447 static bool nfs_delegation_need_return(struct nfs_delegation *delegation)
448 {
449         bool ret = false;
450
451         if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
452                 goto out;
453         if (test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags))
454                 ret = true;
455         if (test_and_clear_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags) && !ret) {
456                 struct inode *inode;
457
458                 spin_lock(&delegation->lock);
459                 inode = delegation->inode;
460                 if (inode && list_empty(&NFS_I(inode)->open_files))
461                         ret = true;
462                 spin_unlock(&delegation->lock);
463         }
464 out:
465         return ret;
466 }
467
468 /**
469  * nfs_client_return_marked_delegations - return previously marked delegations
470  * @clp: nfs_client to process
471  *
472  * Note that this function is designed to be called by the state
473  * manager thread. For this reason, it cannot flush the dirty data,
474  * since that could deadlock in case of a state recovery error.
475  *
476  * Returns zero on success, or a negative errno value.
477  */
478 int nfs_client_return_marked_delegations(struct nfs_client *clp)
479 {
480         struct nfs_delegation *delegation;
481         struct nfs_server *server;
482         struct inode *inode;
483         int err = 0;
484
485 restart:
486         rcu_read_lock();
487         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
488                 list_for_each_entry_rcu(delegation, &server->delegations,
489                                                                 super_list) {
490                         if (!nfs_delegation_need_return(delegation))
491                                 continue;
492                         if (!nfs_sb_active(server->super))
493                                 continue;
494                         inode = nfs_delegation_grab_inode(delegation);
495                         if (inode == NULL) {
496                                 rcu_read_unlock();
497                                 nfs_sb_deactive(server->super);
498                                 goto restart;
499                         }
500                         delegation = nfs_start_delegation_return_locked(NFS_I(inode));
501                         rcu_read_unlock();
502
503                         err = nfs_end_delegation_return(inode, delegation, 0);
504                         iput(inode);
505                         nfs_sb_deactive(server->super);
506                         if (!err)
507                                 goto restart;
508                         set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state);
509                         return err;
510                 }
511         }
512         rcu_read_unlock();
513         return 0;
514 }
515
516 /**
517  * nfs_inode_return_delegation_noreclaim - return delegation, don't reclaim opens
518  * @inode: inode to process
519  *
520  * Does not protect against delegation reclaims, therefore really only safe
521  * to be called from nfs4_clear_inode().
522  */
523 void nfs_inode_return_delegation_noreclaim(struct inode *inode)
524 {
525         struct nfs_delegation *delegation;
526
527         delegation = nfs_inode_detach_delegation(inode);
528         if (delegation != NULL)
529                 nfs_do_return_delegation(inode, delegation, 1);
530 }
531
532 /**
533  * nfs_inode_return_delegation - synchronously return a delegation
534  * @inode: inode to process
535  *
536  * This routine will always flush any dirty data to disk on the
537  * assumption that if we need to return the delegation, then
538  * we should stop caching.
539  *
540  * Returns zero on success, or a negative errno value.
541  */
542 int nfs4_inode_return_delegation(struct inode *inode)
543 {
544         struct nfs_inode *nfsi = NFS_I(inode);
545         struct nfs_delegation *delegation;
546         int err = 0;
547
548         nfs_wb_all(inode);
549         delegation = nfs_start_delegation_return(nfsi);
550         if (delegation != NULL)
551                 err = nfs_end_delegation_return(inode, delegation, 1);
552         return err;
553 }
554
555 static void nfs_mark_return_if_closed_delegation(struct nfs_server *server,
556                 struct nfs_delegation *delegation)
557 {
558         set_bit(NFS_DELEGATION_RETURN_IF_CLOSED, &delegation->flags);
559         set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
560 }
561
562 static void nfs_mark_return_delegation(struct nfs_server *server,
563                 struct nfs_delegation *delegation)
564 {
565         set_bit(NFS_DELEGATION_RETURN, &delegation->flags);
566         set_bit(NFS4CLNT_DELEGRETURN, &server->nfs_client->cl_state);
567 }
568
569 static bool nfs_server_mark_return_all_delegations(struct nfs_server *server)
570 {
571         struct nfs_delegation *delegation;
572         bool ret = false;
573
574         list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
575                 nfs_mark_return_delegation(server, delegation);
576                 ret = true;
577         }
578         return ret;
579 }
580
581 static void nfs_client_mark_return_all_delegations(struct nfs_client *clp)
582 {
583         struct nfs_server *server;
584
585         rcu_read_lock();
586         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
587                 nfs_server_mark_return_all_delegations(server);
588         rcu_read_unlock();
589 }
590
591 static void nfs_delegation_run_state_manager(struct nfs_client *clp)
592 {
593         if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state))
594                 nfs4_schedule_state_manager(clp);
595 }
596
597 /**
598  * nfs_expire_all_delegations
599  * @clp: client to process
600  *
601  */
602 void nfs_expire_all_delegations(struct nfs_client *clp)
603 {
604         nfs_client_mark_return_all_delegations(clp);
605         nfs_delegation_run_state_manager(clp);
606 }
607
608 /**
609  * nfs_super_return_all_delegations - return delegations for one superblock
610  * @sb: sb to process
611  *
612  */
613 void nfs_server_return_all_delegations(struct nfs_server *server)
614 {
615         struct nfs_client *clp = server->nfs_client;
616         bool need_wait;
617
618         if (clp == NULL)
619                 return;
620
621         rcu_read_lock();
622         need_wait = nfs_server_mark_return_all_delegations(server);
623         rcu_read_unlock();
624
625         if (need_wait) {
626                 nfs4_schedule_state_manager(clp);
627                 nfs4_wait_clnt_recover(clp);
628         }
629 }
630
631 static void nfs_mark_return_unused_delegation_types(struct nfs_server *server,
632                                                  fmode_t flags)
633 {
634         struct nfs_delegation *delegation;
635
636         list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
637                 if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE))
638                         continue;
639                 if (delegation->type & flags)
640                         nfs_mark_return_if_closed_delegation(server, delegation);
641         }
642 }
643
644 static void nfs_client_mark_return_unused_delegation_types(struct nfs_client *clp,
645                                                         fmode_t flags)
646 {
647         struct nfs_server *server;
648
649         rcu_read_lock();
650         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
651                 nfs_mark_return_unused_delegation_types(server, flags);
652         rcu_read_unlock();
653 }
654
655 static void nfs_mark_delegation_revoked(struct nfs_server *server,
656                 struct nfs_delegation *delegation)
657 {
658         set_bit(NFS_DELEGATION_REVOKED, &delegation->flags);
659         nfs_mark_return_delegation(server, delegation);
660 }
661
662 static bool nfs_revoke_delegation(struct inode *inode,
663                 const nfs4_stateid *stateid)
664 {
665         struct nfs_delegation *delegation;
666         bool ret = false;
667
668         rcu_read_lock();
669         delegation = rcu_dereference(NFS_I(inode)->delegation);
670         if (delegation == NULL)
671                 goto out;
672         if (stateid && !nfs4_stateid_match(stateid, &delegation->stateid))
673                 goto out;
674         nfs_mark_delegation_revoked(NFS_SERVER(inode), delegation);
675         ret = true;
676 out:
677         rcu_read_unlock();
678         return ret;
679 }
680
681 void nfs_remove_bad_delegation(struct inode *inode,
682                 const nfs4_stateid *stateid)
683 {
684         struct nfs_delegation *delegation;
685
686         if (!nfs_revoke_delegation(inode, stateid))
687                 return;
688         delegation = nfs_inode_detach_delegation(inode);
689         if (delegation) {
690                 nfs_inode_find_state_and_recover(inode, &delegation->stateid);
691                 nfs_free_delegation(delegation);
692         }
693 }
694 EXPORT_SYMBOL_GPL(nfs_remove_bad_delegation);
695
696 /**
697  * nfs_expire_unused_delegation_types
698  * @clp: client to process
699  * @flags: delegation types to expire
700  *
701  */
702 void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags)
703 {
704         nfs_client_mark_return_unused_delegation_types(clp, flags);
705         nfs_delegation_run_state_manager(clp);
706 }
707
708 static void nfs_mark_return_unreferenced_delegations(struct nfs_server *server)
709 {
710         struct nfs_delegation *delegation;
711
712         list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
713                 if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags))
714                         continue;
715                 nfs_mark_return_if_closed_delegation(server, delegation);
716         }
717 }
718
719 /**
720  * nfs_expire_unreferenced_delegations - Eliminate unused delegations
721  * @clp: nfs_client to process
722  *
723  */
724 void nfs_expire_unreferenced_delegations(struct nfs_client *clp)
725 {
726         struct nfs_server *server;
727
728         rcu_read_lock();
729         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
730                 nfs_mark_return_unreferenced_delegations(server);
731         rcu_read_unlock();
732
733         nfs_delegation_run_state_manager(clp);
734 }
735
736 /**
737  * nfs_async_inode_return_delegation - asynchronously return a delegation
738  * @inode: inode to process
739  * @stateid: state ID information
740  *
741  * Returns zero on success, or a negative errno value.
742  */
743 int nfs_async_inode_return_delegation(struct inode *inode,
744                                       const nfs4_stateid *stateid)
745 {
746         struct nfs_server *server = NFS_SERVER(inode);
747         struct nfs_client *clp = server->nfs_client;
748         struct nfs_delegation *delegation;
749
750         rcu_read_lock();
751         delegation = rcu_dereference(NFS_I(inode)->delegation);
752         if (delegation == NULL)
753                 goto out_enoent;
754         if (stateid != NULL &&
755             !clp->cl_mvops->match_stateid(&delegation->stateid, stateid))
756                 goto out_enoent;
757         nfs_mark_return_delegation(server, delegation);
758         rcu_read_unlock();
759
760         nfs_delegation_run_state_manager(clp);
761         return 0;
762 out_enoent:
763         rcu_read_unlock();
764         return -ENOENT;
765 }
766
767 static struct inode *
768 nfs_delegation_find_inode_server(struct nfs_server *server,
769                                  const struct nfs_fh *fhandle)
770 {
771         struct nfs_delegation *delegation;
772         struct inode *res = NULL;
773
774         list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
775                 spin_lock(&delegation->lock);
776                 if (delegation->inode != NULL &&
777                     nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) {
778                         res = igrab(delegation->inode);
779                 }
780                 spin_unlock(&delegation->lock);
781                 if (res != NULL)
782                         break;
783         }
784         return res;
785 }
786
787 /**
788  * nfs_delegation_find_inode - retrieve the inode associated with a delegation
789  * @clp: client state handle
790  * @fhandle: filehandle from a delegation recall
791  *
792  * Returns pointer to inode matching "fhandle," or NULL if a matching inode
793  * cannot be found.
794  */
795 struct inode *nfs_delegation_find_inode(struct nfs_client *clp,
796                                         const struct nfs_fh *fhandle)
797 {
798         struct nfs_server *server;
799         struct inode *res = NULL;
800
801         rcu_read_lock();
802         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
803                 res = nfs_delegation_find_inode_server(server, fhandle);
804                 if (res != NULL)
805                         break;
806         }
807         rcu_read_unlock();
808         return res;
809 }
810
811 static void nfs_delegation_mark_reclaim_server(struct nfs_server *server)
812 {
813         struct nfs_delegation *delegation;
814
815         list_for_each_entry_rcu(delegation, &server->delegations, super_list) {
816                 /*
817                  * If the delegation may have been admin revoked, then we
818                  * cannot reclaim it.
819                  */
820                 if (test_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags))
821                         continue;
822                 set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
823         }
824 }
825
826 /**
827  * nfs_delegation_mark_reclaim - mark all delegations as needing to be reclaimed
828  * @clp: nfs_client to process
829  *
830  */
831 void nfs_delegation_mark_reclaim(struct nfs_client *clp)
832 {
833         struct nfs_server *server;
834
835         rcu_read_lock();
836         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
837                 nfs_delegation_mark_reclaim_server(server);
838         rcu_read_unlock();
839 }
840
841 /**
842  * nfs_delegation_reap_unclaimed - reap unclaimed delegations after reboot recovery is done
843  * @clp: nfs_client to process
844  *
845  */
846 void nfs_delegation_reap_unclaimed(struct nfs_client *clp)
847 {
848         struct nfs_delegation *delegation;
849         struct nfs_server *server;
850         struct inode *inode;
851
852 restart:
853         rcu_read_lock();
854         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
855                 list_for_each_entry_rcu(delegation, &server->delegations,
856                                                                 super_list) {
857                         if (test_bit(NFS_DELEGATION_RETURNING,
858                                                 &delegation->flags))
859                                 continue;
860                         if (test_bit(NFS_DELEGATION_NEED_RECLAIM,
861                                                 &delegation->flags) == 0)
862                                 continue;
863                         if (!nfs_sb_active(server->super))
864                                 continue;
865                         inode = nfs_delegation_grab_inode(delegation);
866                         if (inode == NULL) {
867                                 rcu_read_unlock();
868                                 nfs_sb_deactive(server->super);
869                                 goto restart;
870                         }
871                         delegation = nfs_start_delegation_return_locked(NFS_I(inode));
872                         rcu_read_unlock();
873                         if (delegation != NULL) {
874                                 delegation = nfs_detach_delegation(NFS_I(inode),
875                                         delegation, server);
876                                 if (delegation != NULL)
877                                         nfs_free_delegation(delegation);
878                         }
879                         iput(inode);
880                         nfs_sb_deactive(server->super);
881                         goto restart;
882                 }
883         }
884         rcu_read_unlock();
885 }
886
887 static void nfs_mark_test_expired_delegation(struct nfs_server *server,
888             struct nfs_delegation *delegation)
889 {
890         clear_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags);
891         set_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
892         set_bit(NFS4CLNT_DELEGATION_EXPIRED, &server->nfs_client->cl_state);
893 }
894
895 static void nfs_delegation_mark_test_expired_server(struct nfs_server *server)
896 {
897         struct nfs_delegation *delegation;
898
899         list_for_each_entry_rcu(delegation, &server->delegations, super_list)
900                 nfs_mark_test_expired_delegation(server, delegation);
901 }
902
903 /**
904  * nfs_mark_test_expired_all_delegations - mark all delegations for testing
905  * @clp: nfs_client to process
906  *
907  * Iterates through all the delegations associated with this server and
908  * marks them as needing to be checked for validity.
909  */
910 void nfs_mark_test_expired_all_delegations(struct nfs_client *clp)
911 {
912         struct nfs_server *server;
913
914         rcu_read_lock();
915         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
916                 nfs_delegation_mark_test_expired_server(server);
917         rcu_read_unlock();
918 }
919
920 /**
921  * nfs_reap_expired_delegations - reap expired delegations
922  * @clp: nfs_client to process
923  *
924  * Iterates through all the delegations associated with this server and
925  * checks if they have may have been revoked. This function is usually
926  * expected to be called in cases where the server may have lost its
927  * lease.
928  */
929 void nfs_reap_expired_delegations(struct nfs_client *clp)
930 {
931         const struct nfs4_minor_version_ops *ops = clp->cl_mvops;
932         struct nfs_delegation *delegation;
933         struct nfs_server *server;
934         struct inode *inode;
935         struct rpc_cred *cred;
936         nfs4_stateid stateid;
937
938 restart:
939         rcu_read_lock();
940         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
941                 list_for_each_entry_rcu(delegation, &server->delegations,
942                                                                 super_list) {
943                         if (test_bit(NFS_DELEGATION_RETURNING,
944                                                 &delegation->flags))
945                                 continue;
946                         if (test_bit(NFS_DELEGATION_TEST_EXPIRED,
947                                                 &delegation->flags) == 0)
948                                 continue;
949                         if (!nfs_sb_active(server->super))
950                                 continue;
951                         inode = nfs_delegation_grab_inode(delegation);
952                         if (inode == NULL) {
953                                 rcu_read_unlock();
954                                 nfs_sb_deactive(server->super);
955                                 goto restart;
956                         }
957                         cred = get_rpccred_rcu(delegation->cred);
958                         nfs4_stateid_copy(&stateid, &delegation->stateid);
959                         clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags);
960                         rcu_read_unlock();
961                         if (cred != NULL &&
962                             ops->test_and_free_expired(server, &stateid, cred) < 0) {
963                                 nfs_revoke_delegation(inode, &stateid);
964                                 nfs_inode_find_state_and_recover(inode, &stateid);
965                         }
966                         put_rpccred(cred);
967                         iput(inode);
968                         nfs_sb_deactive(server->super);
969                         goto restart;
970                 }
971         }
972         rcu_read_unlock();
973 }
974
975 /**
976  * nfs_delegations_present - check for existence of delegations
977  * @clp: client state handle
978  *
979  * Returns one if there are any nfs_delegation structures attached
980  * to this nfs_client.
981  */
982 int nfs_delegations_present(struct nfs_client *clp)
983 {
984         struct nfs_server *server;
985         int ret = 0;
986
987         rcu_read_lock();
988         list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
989                 if (!list_empty(&server->delegations)) {
990                         ret = 1;
991                         break;
992                 }
993         rcu_read_unlock();
994         return ret;
995 }
996
997 /**
998  * nfs4_copy_delegation_stateid - Copy inode's state ID information
999  * @inode: inode to check
1000  * @flags: delegation type requirement
1001  * @dst: stateid data structure to fill in
1002  * @cred: optional argument to retrieve credential
1003  *
1004  * Returns "true" and fills in "dst->data" * if inode had a delegation,
1005  * otherwise "false" is returned.
1006  */
1007 bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags,
1008                 nfs4_stateid *dst, struct rpc_cred **cred)
1009 {
1010         struct nfs_inode *nfsi = NFS_I(inode);
1011         struct nfs_delegation *delegation;
1012         bool ret;
1013
1014         flags &= FMODE_READ|FMODE_WRITE;
1015         rcu_read_lock();
1016         delegation = rcu_dereference(nfsi->delegation);
1017         ret = nfs4_is_valid_delegation(delegation, flags);
1018         if (ret) {
1019                 nfs4_stateid_copy(dst, &delegation->stateid);
1020                 nfs_mark_delegation_referenced(delegation);
1021                 if (cred)
1022                         *cred = get_rpccred(delegation->cred);
1023         }
1024         rcu_read_unlock();
1025         return ret;
1026 }
1027
1028 /**
1029  * nfs4_delegation_flush_on_close - Check if we must flush file on close
1030  * @inode: inode to check
1031  *
1032  * This function checks the number of outstanding writes to the file
1033  * against the delegation 'space_limit' field to see if
1034  * the spec requires us to flush the file on close.
1035  */
1036 bool nfs4_delegation_flush_on_close(const struct inode *inode)
1037 {
1038         struct nfs_inode *nfsi = NFS_I(inode);
1039         struct nfs_delegation *delegation;
1040         bool ret = true;
1041
1042         rcu_read_lock();
1043         delegation = rcu_dereference(nfsi->delegation);
1044         if (delegation == NULL || !(delegation->type & FMODE_WRITE))
1045                 goto out;
1046         if (nfsi->nrequests < delegation->pagemod_limit)
1047                 ret = false;
1048 out:
1049         rcu_read_unlock();
1050         return ret;
1051 }