Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/nfs/delegation.h |
| 4 | * |
| 5 | * Copyright (c) Trond Myklebust |
| 6 | * |
| 7 | * Definitions pertaining to NFS delegated files |
| 8 | */ |
| 9 | #ifndef FS_NFS_DELEGATION_H |
| 10 | #define FS_NFS_DELEGATION_H |
| 11 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 12 | #if IS_ENABLED(CONFIG_NFS_V4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | /* |
| 14 | * NFSv4 delegation |
| 15 | */ |
| 16 | struct nfs_delegation { |
| 17 | struct list_head super_list; |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 18 | const struct cred *cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | struct inode *inode; |
| 20 | nfs4_stateid stateid; |
Trond Myklebust | bd7bf9d | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 21 | fmode_t type; |
Trond Myklebust | 7d160a6 | 2015-09-05 19:06:57 -0400 | [diff] [blame] | 22 | unsigned long pagemod_limit; |
Trond Myklebust | beb2a5e | 2006-01-03 09:55:37 +0100 | [diff] [blame] | 23 | __u64 change_attr; |
Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 24 | unsigned long flags; |
Trond Myklebust | 8c75593 | 2020-02-13 14:51:06 -0500 | [diff] [blame] | 25 | refcount_t refcount; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 26 | spinlock_t lock; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 27 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 30 | enum { |
| 31 | NFS_DELEGATION_NEED_RECLAIM = 0, |
| 32 | NFS_DELEGATION_RETURN, |
Trond Myklebust | b757144 | 2013-04-03 14:33:49 -0400 | [diff] [blame] | 33 | NFS_DELEGATION_RETURN_IF_CLOSED, |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 34 | NFS_DELEGATION_REFERENCED, |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 35 | NFS_DELEGATION_RETURNING, |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 36 | NFS_DELEGATION_REVOKED, |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 37 | NFS_DELEGATION_TEST_EXPIRED, |
Trond Myklebust | 6f9449b | 2019-02-21 14:51:25 -0500 | [diff] [blame] | 38 | NFS_DELEGATION_INODE_FREEING, |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 39 | }; |
| 40 | |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 41 | int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 42 | fmode_t type, const nfs4_stateid *stateid, unsigned long pagemod_limit); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 43 | void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred, |
Trond Myklebust | 35156bf | 2018-03-20 17:03:13 -0400 | [diff] [blame] | 44 | fmode_t type, const nfs4_stateid *stateid, unsigned long pagemod_limit); |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 45 | int nfs4_inode_return_delegation(struct inode *inode); |
Trond Myklebust | b7b7dac | 2020-01-27 09:58:17 -0500 | [diff] [blame] | 46 | void nfs4_inode_return_delegation_on_close(struct inode *inode); |
Trond Myklebust | e047a10 | 2010-06-16 09:52:27 -0400 | [diff] [blame] | 47 | int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *stateid); |
Trond Myklebust | b47e0e4 | 2019-10-21 14:04:00 -0400 | [diff] [blame] | 48 | void nfs_inode_evict_delegation(struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 50 | struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs_fh *fhandle); |
Bryan Schumaker | eeebf91 | 2012-06-20 15:53:41 -0400 | [diff] [blame] | 51 | void nfs_server_return_all_delegations(struct nfs_server *); |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 52 | void nfs_expire_all_delegations(struct nfs_client *clp); |
Trond Myklebust | 826e001 | 2013-04-03 19:27:52 -0400 | [diff] [blame] | 53 | void nfs_expire_unused_delegation_types(struct nfs_client *clp, fmode_t flags); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 54 | void nfs_expire_unreferenced_delegations(struct nfs_client *clp); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 55 | int nfs_client_return_marked_delegations(struct nfs_client *clp); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 56 | int nfs_delegations_present(struct nfs_client *clp); |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 57 | void nfs_remove_bad_delegation(struct inode *inode, const nfs4_stateid *stateid); |
Trond Myklebust | d51f91d | 2019-10-21 14:22:14 -0400 | [diff] [blame] | 58 | void nfs_delegation_mark_returned(struct inode *inode, const nfs4_stateid *stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 60 | void nfs_delegation_mark_reclaim(struct nfs_client *clp); |
| 61 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 63 | void nfs_mark_test_expired_all_delegations(struct nfs_client *clp); |
Scott Mayhew | 8ca017c | 2019-05-06 11:59:05 -0400 | [diff] [blame] | 64 | void nfs_test_expired_all_delegations(struct nfs_client *clp); |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 65 | void nfs_reap_expired_delegations(struct nfs_client *clp); |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* NFSv4 delegation-related procedures */ |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 68 | int nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid, int issync); |
Trond Myklebust | 5eb8d18 | 2019-07-19 14:08:37 -0400 | [diff] [blame] | 69 | int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid); |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 70 | int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid); |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 71 | bool nfs4_copy_delegation_stateid(struct inode *inode, fmode_t flags, nfs4_stateid *dst, const struct cred **cred); |
Trond Myklebust | 12f275c | 2017-11-06 15:28:05 -0500 | [diff] [blame] | 72 | bool nfs4_refresh_delegation_stateid(nfs4_stateid *dst, struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Trond Myklebust | be3df3d | 2019-10-31 18:40:32 -0400 | [diff] [blame] | 74 | struct nfs_delegation *nfs4_get_valid_delegation(const struct inode *inode); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 75 | void nfs_mark_delegation_referenced(struct nfs_delegation *delegation); |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 76 | int nfs4_have_delegation(struct inode *inode, fmode_t flags); |
Peng Tao | 15bb3af | 2014-07-03 13:05:00 +0800 | [diff] [blame] | 77 | int nfs4_check_delegation(struct inode *inode, fmode_t flags); |
Trond Myklebust | 5445b1f | 2015-09-05 19:06:58 -0400 | [diff] [blame] | 78 | bool nfs4_delegation_flush_on_close(const struct inode *inode); |
Trond Myklebust | 6c2d8f8 | 2016-09-22 13:39:07 -0400 | [diff] [blame] | 79 | void nfs_inode_find_delegation_state_and_recover(struct inode *inode, |
| 80 | const nfs4_stateid *stateid); |
Trond Myklebust | c01d364 | 2018-03-20 16:43:20 -0400 | [diff] [blame] | 81 | int nfs4_inode_make_writeable(struct inode *inode); |
Trond Myklebust | cae7a07 | 2005-10-18 14:20:19 -0700 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #endif |
| 84 | |
Trond Myklebust | b4d2314 | 2010-03-10 15:21:44 -0500 | [diff] [blame] | 85 | static inline int nfs_have_delegated_attributes(struct inode *inode) |
| 86 | { |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 87 | return NFS_PROTO(inode)->have_delegation(inode, FMODE_READ) && |
Trond Myklebust | b4d2314 | 2010-03-10 15:21:44 -0500 | [diff] [blame] | 88 | !(NFS_I(inode)->cache_validity & NFS_INO_REVAL_FORCED); |
| 89 | } |
| 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #endif |