xref: /openbmc/linux/fs/nfs/nfs4_fs.h (revision 79d4e1f0)
14ce79717STrond Myklebust /*
24ce79717STrond Myklebust  * linux/fs/nfs/nfs4_fs.h
34ce79717STrond Myklebust  *
44ce79717STrond Myklebust  * Copyright (C) 2005 Trond Myklebust
54ce79717STrond Myklebust  *
64ce79717STrond Myklebust  * NFSv4-specific filesystem definitions and declarations
74ce79717STrond Myklebust  */
84ce79717STrond Myklebust 
94ce79717STrond Myklebust #ifndef __LINUX_FS_NFS_NFS4_FS_H
104ce79717STrond Myklebust #define __LINUX_FS_NFS_NFS4_FS_H
114ce79717STrond Myklebust 
124ce79717STrond Myklebust #ifdef CONFIG_NFS_V4
134ce79717STrond Myklebust 
144ce79717STrond Myklebust struct idmap;
154ce79717STrond Myklebust 
164ce79717STrond Myklebust enum nfs4_client_state {
17e005e804STrond Myklebust 	NFS4CLNT_MANAGER_RUNNING  = 0,
18e598d843STrond Myklebust 	NFS4CLNT_CHECK_LEASE,
1958d9714aSTrond Myklebust 	NFS4CLNT_LEASE_EXPIRED,
20b79a4a1bSTrond Myklebust 	NFS4CLNT_RECLAIM_REBOOT,
21b79a4a1bSTrond Myklebust 	NFS4CLNT_RECLAIM_NOGRACE,
22707fb4b3STrond Myklebust 	NFS4CLNT_DELEGRETURN,
236df08189SAndy Adamson 	NFS4CLNT_SESSION_RESET,
24b9efa1b2SAndy Adamson 	NFS4CLNT_RECALL_SLOT,
25fd954ae1STrond Myklebust 	NFS4CLNT_LEASE_CONFIRM,
2678fe0f41SWeston Andros Adamson 	NFS4CLNT_SERVER_SCOPE_MISMATCH,
274ce79717STrond Myklebust };
284ce79717STrond Myklebust 
29a2118c33STrond Myklebust enum nfs4_session_state {
301055d76dSTrond Myklebust 	NFS4_SESSION_INITING,
31a2118c33STrond Myklebust 	NFS4_SESSION_DRAINING,
32a2118c33STrond Myklebust };
33a2118c33STrond Myklebust 
342f60ea6bSTrond Myklebust #define NFS4_RENEW_TIMEOUT		0x01
352f60ea6bSTrond Myklebust #define NFS4_RENEW_DELEGATION_CB	0x02
362f60ea6bSTrond Myklebust 
3797dc1359STrond Myklebust struct nfs4_minor_version_ops {
3897dc1359STrond Myklebust 	u32	minor_version;
3997dc1359STrond Myklebust 
407c513058SBryan Schumaker 	int	(*call_sync)(struct rpc_clnt *clnt,
417c513058SBryan Schumaker 			struct nfs_server *server,
4297dc1359STrond Myklebust 			struct rpc_message *msg,
4397dc1359STrond Myklebust 			struct nfs4_sequence_args *args,
4497dc1359STrond Myklebust 			struct nfs4_sequence_res *res,
4597dc1359STrond Myklebust 			int cache_reply);
4636281caaSTrond Myklebust 	bool	(*match_stateid)(const nfs4_stateid *,
47e047a10cSTrond Myklebust 			const nfs4_stateid *);
48fca78d6dSBryan Schumaker 	int	(*find_root_sec)(struct nfs_server *, struct nfs_fh *,
49fca78d6dSBryan Schumaker 			struct nfs_fsinfo *);
50c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *reboot_recovery_ops;
51c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *nograce_recovery_ops;
52c48f4f35STrond Myklebust 	const struct nfs4_state_maintenance_ops *state_renewal_ops;
5397dc1359STrond Myklebust };
5497dc1359STrond Myklebust 
5548c22eb2STrond Myklebust struct nfs_unique_id {
5648c22eb2STrond Myklebust 	struct rb_node rb_node;
5748c22eb2STrond Myklebust 	__u64 id;
5848c22eb2STrond Myklebust };
5948c22eb2STrond Myklebust 
60cee54fc9STrond Myklebust #define NFS_SEQID_CONFIRMED 1
61cee54fc9STrond Myklebust struct nfs_seqid_counter {
6295b72eb0STrond Myklebust 	ktime_t create_time;
6348c22eb2STrond Myklebust 	int owner_id;
64cee54fc9STrond Myklebust 	int flags;
65cee54fc9STrond Myklebust 	u32 counter;
667ba127abSTrond Myklebust 	spinlock_t lock;		/* Protects the list */
677ba127abSTrond Myklebust 	struct list_head list;		/* Defines sequence of RPC calls */
687ba127abSTrond Myklebust 	struct rpc_wait_queue	wait;	/* RPC call delay queue */
69cee54fc9STrond Myklebust };
70cee54fc9STrond Myklebust 
71cee54fc9STrond Myklebust struct nfs_seqid {
72cee54fc9STrond Myklebust 	struct nfs_seqid_counter *sequence;
734e51336aSTrond Myklebust 	struct list_head list;
744601df20STrond Myklebust 	struct rpc_task *task;
75cee54fc9STrond Myklebust };
76cee54fc9STrond Myklebust 
77cee54fc9STrond Myklebust static inline void nfs_confirm_seqid(struct nfs_seqid_counter *seqid, int status)
78cee54fc9STrond Myklebust {
79cee54fc9STrond Myklebust 	if (seqid_mutating_err(-status))
80cee54fc9STrond Myklebust 		seqid->flags |= NFS_SEQID_CONFIRMED;
81cee54fc9STrond Myklebust }
82cee54fc9STrond Myklebust 
83cee54fc9STrond Myklebust /*
844ce79717STrond Myklebust  * NFS4 state_owners and lock_owners are simply labels for ordered
854ce79717STrond Myklebust  * sequences of RPC calls. Their sole purpose is to provide once-only
864ce79717STrond Myklebust  * semantics by allowing the server to identify replayed requests.
874ce79717STrond Myklebust  */
884ce79717STrond Myklebust struct nfs4_state_owner {
896f2e64d3STrond Myklebust 	struct nfs_server    *so_server;
900aaaf5c4SChuck Lever 	struct list_head     so_lru;
910aaaf5c4SChuck Lever 	unsigned long        so_expires;
9224d292b8SChuck Lever 	struct rb_node	     so_server_node;
934ce79717STrond Myklebust 
944ce79717STrond Myklebust 	struct rpc_cred	     *so_cred;	 /* Associated cred */
959f958ab8STrond Myklebust 
969f958ab8STrond Myklebust 	spinlock_t	     so_lock;
979f958ab8STrond Myklebust 	atomic_t	     so_count;
987eff03aeSTrond Myklebust 	unsigned long	     so_flags;
994ce79717STrond Myklebust 	struct list_head     so_states;
100cee54fc9STrond Myklebust 	struct nfs_seqid_counter so_seqid;
1014ce79717STrond Myklebust };
1024ce79717STrond Myklebust 
1037eff03aeSTrond Myklebust enum {
1047eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_REBOOT,
1057eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_NOGRACE
1067eff03aeSTrond Myklebust };
1077eff03aeSTrond Myklebust 
108afe6c27cSAlexandros Batsakis #define NFS_LOCK_NEW		0
109afe6c27cSAlexandros Batsakis #define NFS_LOCK_RECLAIM	1
110afe6c27cSAlexandros Batsakis #define NFS_LOCK_EXPIRED	2
111afe6c27cSAlexandros Batsakis 
1124ce79717STrond Myklebust /*
1134ce79717STrond Myklebust  * struct nfs4_state maintains the client-side state for a given
1144ce79717STrond Myklebust  * (state_owner,inode) tuple (OPEN) or state_owner (LOCK).
1154ce79717STrond Myklebust  *
1164ce79717STrond Myklebust  * OPEN:
1174ce79717STrond Myklebust  * In order to know when to OPEN_DOWNGRADE or CLOSE the state on the server,
1184ce79717STrond Myklebust  * we need to know how many files are open for reading or writing on a
1194ce79717STrond Myklebust  * given inode. This information too is stored here.
1204ce79717STrond Myklebust  *
1214ce79717STrond Myklebust  * LOCK: one nfs4_state (LOCK) to hold the lock stateid nfs4_state(OPEN)
1224ce79717STrond Myklebust  */
1234ce79717STrond Myklebust 
12477041ed9STrond Myklebust struct nfs4_lock_owner {
12577041ed9STrond Myklebust 	unsigned int lo_type;
12677041ed9STrond Myklebust #define NFS4_ANY_LOCK_TYPE	(0U)
12777041ed9STrond Myklebust #define NFS4_FLOCK_LOCK_TYPE	(1U << 0)
12877041ed9STrond Myklebust #define NFS4_POSIX_LOCK_TYPE	(1U << 1)
12977041ed9STrond Myklebust 	union {
13077041ed9STrond Myklebust 		fl_owner_t posix_owner;
13177041ed9STrond Myklebust 		pid_t flock_owner;
13277041ed9STrond Myklebust 	} lo_u;
13377041ed9STrond Myklebust };
13477041ed9STrond Myklebust 
1354ce79717STrond Myklebust struct nfs4_lock_state {
1364ce79717STrond Myklebust 	struct list_head	ls_locks;	/* Other lock stateids */
1378d0a8a9dSTrond Myklebust 	struct nfs4_state *	ls_state;	/* Pointer to open state */
1384ce79717STrond Myklebust #define NFS_LOCK_INITIALIZED 1
1394ce79717STrond Myklebust 	int			ls_flags;
140cee54fc9STrond Myklebust 	struct nfs_seqid_counter	ls_seqid;
1414ce79717STrond Myklebust 	nfs4_stateid		ls_stateid;
1424ce79717STrond Myklebust 	atomic_t		ls_count;
14377041ed9STrond Myklebust 	struct nfs4_lock_owner	ls_owner;
1444ce79717STrond Myklebust };
1454ce79717STrond Myklebust 
1464ce79717STrond Myklebust /* bits for nfs4_state->flags */
1474ce79717STrond Myklebust enum {
1484ce79717STrond Myklebust 	LK_STATE_IN_USE,
149003707c7STrond Myklebust 	NFS_DELEGATED_STATE,		/* Current stateid is delegation */
150003707c7STrond Myklebust 	NFS_O_RDONLY_STATE,		/* OPEN stateid has read-only state */
151003707c7STrond Myklebust 	NFS_O_WRONLY_STATE,		/* OPEN stateid has write-only state */
152003707c7STrond Myklebust 	NFS_O_RDWR_STATE,		/* OPEN stateid has read/write state */
153b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_REBOOT,	/* OPEN stateid server rebooted */
154b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_NOGRACE,	/* OPEN stateid needs to recover state */
1558e469ebdSTrond Myklebust 	NFS_STATE_POSIX_LOCKS,		/* Posix locks are supported */
1564ce79717STrond Myklebust };
1574ce79717STrond Myklebust 
1584ce79717STrond Myklebust struct nfs4_state {
1594ce79717STrond Myklebust 	struct list_head open_states;	/* List of states for the same state_owner */
1604ce79717STrond Myklebust 	struct list_head inode_states;	/* List of states for the same inode */
1614ce79717STrond Myklebust 	struct list_head lock_states;	/* List of subservient lock stateids */
1624ce79717STrond Myklebust 
1634ce79717STrond Myklebust 	struct nfs4_state_owner *owner;	/* Pointer to the open owner */
1644ce79717STrond Myklebust 	struct inode *inode;		/* Pointer to the inode */
1654ce79717STrond Myklebust 
1664ce79717STrond Myklebust 	unsigned long flags;		/* Do we hold any locks? */
1678d0a8a9dSTrond Myklebust 	spinlock_t state_lock;		/* Protects the lock_states list */
1684ce79717STrond Myklebust 
1698bda4e4cSTrond Myklebust 	seqlock_t seqlock;		/* Protects the stateid/open_stateid */
170003707c7STrond Myklebust 	nfs4_stateid stateid;		/* Current stateid: may be delegation */
171003707c7STrond Myklebust 	nfs4_stateid open_stateid;	/* OPEN stateid */
1724ce79717STrond Myklebust 
1738bda4e4cSTrond Myklebust 	/* The following 3 fields are protected by owner->so_lock */
174003707c7STrond Myklebust 	unsigned int n_rdonly;		/* Number of read-only references */
175003707c7STrond Myklebust 	unsigned int n_wronly;		/* Number of write-only references */
176003707c7STrond Myklebust 	unsigned int n_rdwr;		/* Number of read/write references */
177dc0b027dSTrond Myklebust 	fmode_t state;			/* State on the server (R,W, or RW) */
1784ce79717STrond Myklebust 	atomic_t count;
1794ce79717STrond Myklebust };
1804ce79717STrond Myklebust 
1814ce79717STrond Myklebust 
1824ce79717STrond Myklebust struct nfs4_exception {
1834ce79717STrond Myklebust 	long timeout;
1844ce79717STrond Myklebust 	int retry;
1859e33bed5STrond Myklebust 	struct nfs4_state *state;
1863114ea7aSTrond Myklebust 	struct inode *inode;
1874ce79717STrond Myklebust };
1884ce79717STrond Myklebust 
1894ce79717STrond Myklebust struct nfs4_state_recovery_ops {
1907eff03aeSTrond Myklebust 	int owner_flag_bit;
191b79a4a1bSTrond Myklebust 	int state_flag_bit;
1924ce79717STrond Myklebust 	int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *);
1934ce79717STrond Myklebust 	int (*recover_lock)(struct nfs4_state *, struct file_lock *);
194591d71cbSAndy Adamson 	int (*establish_clid)(struct nfs_client *, struct rpc_cred *);
19590a16617SAndy Adamson 	struct rpc_cred * (*get_clid_cred)(struct nfs_client *);
196fce5c838SRicardo Labiaga 	int (*reclaim_complete)(struct nfs_client *);
1974ce79717STrond Myklebust };
1984ce79717STrond Myklebust 
19929fba38bSBenny Halevy struct nfs4_state_maintenance_ops {
2002f60ea6bSTrond Myklebust 	int (*sched_state_renewal)(struct nfs_client *, struct rpc_cred *, unsigned);
201a7b72103SAndy Adamson 	struct rpc_cred * (*get_state_renewal_cred_locked)(struct nfs_client *);
2028e69514fSBenny Halevy 	int (*renew_lease)(struct nfs_client *, struct rpc_cred *);
20329fba38bSBenny Halevy };
20429fba38bSBenny Halevy 
205f786aa90SAl Viro extern const struct dentry_operations nfs4_dentry_operations;
20692e1d5beSArjan van de Ven extern const struct inode_operations nfs4_dir_inode_operations;
2076b3b5496SJ. Bruce Fields 
20872de53ecSBryan Schumaker /* nfs4namespace.c */
2092671bfc3SBryan Schumaker rpc_authflavor_t nfs_find_best_sec(struct nfs4_secinfo_flavors *);
21072de53ecSBryan Schumaker struct rpc_clnt *nfs4_create_sec_client(struct rpc_clnt *, struct inode *, struct qstr *);
211281cad46SBryan Schumaker struct vfsmount *nfs4_submount(struct nfs_server *, struct dentry *,
212281cad46SBryan Schumaker 			       struct nfs_fh *, struct nfs_fattr *);
21372de53ecSBryan Schumaker 
2144ce79717STrond Myklebust /* nfs4proc.c */
215bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *);
216bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *);
2173028eb2bSBryan Schumaker extern int nfs4_proc_get_rootfh(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
2184d643d1dSAndy Adamson extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred);
219591d71cbSAndy Adamson extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *);
2204d643d1dSAndy Adamson extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *);
221643168c2SAl Viro extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc);
22255a97593STrond Myklebust extern int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle);
223f05d147fSBryan Schumaker extern int nfs4_proc_fs_locations(struct rpc_clnt *, struct inode *, const struct qstr *,
224f05d147fSBryan Schumaker 				  struct nfs4_fs_locations *, struct page *);
225f05d147fSBryan Schumaker extern struct rpc_clnt *nfs4_proc_lookup_mountpoint(struct inode *, struct qstr *,
226f05d147fSBryan Schumaker 			    struct nfs_fh *, struct nfs_fattr *);
22772de53ecSBryan Schumaker extern int nfs4_proc_secinfo(struct inode *, const struct qstr *, struct nfs4_secinfo_flavors *);
228cf470c3eSTrond Myklebust extern int nfs4_release_lockowner(struct nfs4_lock_state *);
22964c2ce8bSAneesh Kumar K.V extern const struct xattr_handler *nfs4_xattr_handlers[];
2304ce79717STrond Myklebust 
231557134a3SAndy Adamson #if defined(CONFIG_NFS_V4_1)
232035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
233035168abSTrond Myklebust {
234035168abSTrond Myklebust 	return server->nfs_client->cl_session;
235035168abSTrond Myklebust }
236035168abSTrond Myklebust 
237961a828dSTrond Myklebust extern bool nfs4_set_task_privileged(struct rpc_task *task, void *dummy);
238035168abSTrond Myklebust extern int nfs4_setup_sequence(const struct nfs_server *server,
239fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2409d12b216STrond Myklebust 		struct rpc_task *task);
241dc70d7b3SAndy Adamson extern int nfs41_setup_sequence(struct nfs4_session *session,
242dc70d7b3SAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2439d12b216STrond Myklebust 		struct rpc_task *task);
244557134a3SAndy Adamson extern void nfs4_destroy_session(struct nfs4_session *session);
245557134a3SAndy Adamson extern struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp);
246f26468fbSTrond Myklebust extern int nfs4_proc_create_session(struct nfs_client *);
247c3fad1b1SAndy Adamson extern int nfs4_proc_destroy_session(struct nfs4_session *);
248fccba804STrond Myklebust extern int nfs4_init_session(struct nfs_server *server);
2499430fb6bSRicardo Labiaga extern int nfs4_proc_get_lease_time(struct nfs_client *clp,
2509430fb6bSRicardo Labiaga 		struct nfs_fsinfo *fsinfo);
251863a3c6cSAndy Adamson extern int nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data,
252ef311537SAndy Adamson 				  bool sync);
25394de8b27SAndy Adamson 
25494de8b27SAndy Adamson static inline bool
25594de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
25694de8b27SAndy Adamson {
25794de8b27SAndy Adamson 	return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) ==
25894de8b27SAndy Adamson 		EXCHGID4_FLAG_USE_PNFS_DS;
25994de8b27SAndy Adamson }
260d83217c1SAndy Adamson 
261d83217c1SAndy Adamson static inline bool
262d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
263d83217c1SAndy Adamson {
264d83217c1SAndy Adamson 	return clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_DS;
265d83217c1SAndy Adamson }
266fbcd4abcSAndy Adamson #else /* CONFIG_NFS_v4_1 */
267035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
268035168abSTrond Myklebust {
269035168abSTrond Myklebust 	return NULL;
270035168abSTrond Myklebust }
271035168abSTrond Myklebust 
272035168abSTrond Myklebust static inline int nfs4_setup_sequence(const struct nfs_server *server,
273fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2749d12b216STrond Myklebust 		struct rpc_task *task)
275fbcd4abcSAndy Adamson {
276fbcd4abcSAndy Adamson 	return 0;
277fbcd4abcSAndy Adamson }
278fccba804STrond Myklebust 
279fccba804STrond Myklebust static inline int nfs4_init_session(struct nfs_server *server)
280fccba804STrond Myklebust {
281fccba804STrond Myklebust 	return 0;
282fccba804STrond Myklebust }
28394de8b27SAndy Adamson 
28494de8b27SAndy Adamson static inline bool
28594de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
28694de8b27SAndy Adamson {
28794de8b27SAndy Adamson 	return false;
28894de8b27SAndy Adamson }
289d83217c1SAndy Adamson 
290d83217c1SAndy Adamson static inline bool
291d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
292d83217c1SAndy Adamson {
293d83217c1SAndy Adamson 	return false;
294d83217c1SAndy Adamson }
295557134a3SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
2964ce79717STrond Myklebust 
29797dc1359STrond Myklebust extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[];
29829fba38bSBenny Halevy 
2994ce79717STrond Myklebust extern const u32 nfs4_fattr_bitmap[2];
3004ce79717STrond Myklebust extern const u32 nfs4_statfs_bitmap[2];
3014ce79717STrond Myklebust extern const u32 nfs4_pathconf_bitmap[2];
302dae100c2SFred Isaman extern const u32 nfs4_fsinfo_bitmap[3];
303830b8e33SManoj Naik extern const u32 nfs4_fs_locations_bitmap[2];
3044ce79717STrond Myklebust 
3054ce79717STrond Myklebust /* nfs4renewd.c */
306adfa6f98SDavid Howells extern void nfs4_schedule_state_renewal(struct nfs_client *);
3074ce79717STrond Myklebust extern void nfs4_renewd_prepare_shutdown(struct nfs_server *);
308adfa6f98SDavid Howells extern void nfs4_kill_renewd(struct nfs_client *);
30965f27f38SDavid Howells extern void nfs4_renew_state(struct work_struct *);
3104ce79717STrond Myklebust 
3114ce79717STrond Myklebust /* nfs4state.c */
312a7b72103SAndy Adamson struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp);
3136dc9d57aSTrond Myklebust struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp);
314a7b72103SAndy Adamson #if defined(CONFIG_NFS_V4_1)
315a7b72103SAndy Adamson struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp);
316b4b82607SAndy Adamson struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp);
3170400a6b0STrond Myklebust extern void nfs4_schedule_session_recovery(struct nfs4_session *);
3180400a6b0STrond Myklebust #else
3190400a6b0STrond Myklebust static inline void nfs4_schedule_session_recovery(struct nfs4_session *session)
3200400a6b0STrond Myklebust {
3210400a6b0STrond Myklebust }
322a7b72103SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
3234ce79717STrond Myklebust 
324d1e284d5STrond Myklebust extern struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *, gfp_t);
3254ce79717STrond Myklebust extern void nfs4_put_state_owner(struct nfs4_state_owner *);
3260aaaf5c4SChuck Lever extern void nfs4_purge_state_owners(struct nfs_server *);
3274ce79717STrond Myklebust extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *);
3284ce79717STrond Myklebust extern void nfs4_put_open_state(struct nfs4_state *);
329643168c2SAl Viro extern void nfs4_close_state(struct nfs4_state *, fmode_t);
330643168c2SAl Viro extern void nfs4_close_sync(struct nfs4_state *, fmode_t);
331dc0b027dSTrond Myklebust extern void nfs4_state_set_mode_locked(struct nfs4_state *, fmode_t);
332a1d0b5eeSTrond Myklebust extern void nfs_inode_find_state_and_recover(struct inode *inode,
333a1d0b5eeSTrond Myklebust 		const nfs4_stateid *stateid);
3340400a6b0STrond Myklebust extern void nfs4_schedule_lease_recovery(struct nfs_client *);
335b0d3ded1STrond Myklebust extern void nfs4_schedule_state_manager(struct nfs_client *);
336042b60beSTrond Myklebust extern void nfs4_schedule_path_down_recovery(struct nfs_client *clp);
3370400a6b0STrond Myklebust extern void nfs4_schedule_stateid_recovery(const struct nfs_server *, struct nfs4_state *);
3380629e370SAlexandros Batsakis extern void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags);
339b9efa1b2SAndy Adamson extern void nfs41_handle_recall_slot(struct nfs_client *clp);
34078fe0f41SWeston Andros Adamson extern void nfs41_handle_server_scope(struct nfs_client *,
34179d4e1f0SChuck Lever 				      struct nfs41_server_scope **);
342faf5f49cSTrond Myklebust extern void nfs4_put_lock_state(struct nfs4_lock_state *lsp);
3438d0a8a9dSTrond Myklebust extern int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl);
3444fc8796dSTrond Myklebust extern void nfs4_select_rw_stateid(nfs4_stateid *, struct nfs4_state *,
3454fc8796dSTrond Myklebust 		fmode_t, fl_owner_t, pid_t);
3464ce79717STrond Myklebust 
3478535b2beSTrond Myklebust extern struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask);
348cee54fc9STrond Myklebust extern int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task);
349cee54fc9STrond Myklebust extern void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid);
350cee54fc9STrond Myklebust extern void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid);
35172211dbeSTrond Myklebust extern void nfs_release_seqid(struct nfs_seqid *seqid);
352cee54fc9STrond Myklebust extern void nfs_free_seqid(struct nfs_seqid *seqid);
353cee54fc9STrond Myklebust 
3545ae67c4fSTrond Myklebust extern void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp);
355cf470c3eSTrond Myklebust 
3564ce79717STrond Myklebust extern const nfs4_stateid zero_stateid;
3574ce79717STrond Myklebust 
3584ce79717STrond Myklebust /* nfs4xdr.c */
3594ce79717STrond Myklebust extern struct rpc_procinfo nfs4_procedures[];
3604ce79717STrond Myklebust 
3614ce79717STrond Myklebust struct nfs4_mount_data;
3624ce79717STrond Myklebust 
3634ce79717STrond Myklebust /* callback_xdr.c */
3644ce79717STrond Myklebust extern struct svc_version nfs4_callback_version1;
36507bccc2dSAlexandros Batsakis extern struct svc_version nfs4_callback_version4;
3664ce79717STrond Myklebust 
367f597c537STrond Myklebust static inline void nfs4_stateid_copy(nfs4_stateid *dst, const nfs4_stateid *src)
368f597c537STrond Myklebust {
3692d2f24adSTrond Myklebust 	memcpy(dst, src, sizeof(*dst));
370f597c537STrond Myklebust }
371f597c537STrond Myklebust 
372f597c537STrond Myklebust static inline bool nfs4_stateid_match(const nfs4_stateid *dst, const nfs4_stateid *src)
373f597c537STrond Myklebust {
3742d2f24adSTrond Myklebust 	return memcmp(dst, src, sizeof(*dst)) == 0;
375f597c537STrond Myklebust }
376f597c537STrond Myklebust 
3774ce79717STrond Myklebust #else
3784ce79717STrond Myklebust 
379643168c2SAl Viro #define nfs4_close_state(a, b) do { } while (0)
380643168c2SAl Viro #define nfs4_close_sync(a, b) do { } while (0)
3814ce79717STrond Myklebust 
3824ce79717STrond Myklebust #endif /* CONFIG_NFS_V4 */
3834ce79717STrond Myklebust #endif /* __LINUX_FS_NFS_NFS4_FS.H */
384