xref: /openbmc/linux/fs/nfs/nfs4_fs.h (revision d1e284d5)
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,
2343f1b3daSFred Isaman 	NFS4CLNT_LAYOUTRECALL,
246df08189SAndy Adamson 	NFS4CLNT_SESSION_RESET,
25b9efa1b2SAndy Adamson 	NFS4CLNT_RECALL_SLOT,
26fd954ae1STrond Myklebust 	NFS4CLNT_LEASE_CONFIRM,
2778fe0f41SWeston Andros Adamson 	NFS4CLNT_SERVER_SCOPE_MISMATCH,
284ce79717STrond Myklebust };
294ce79717STrond Myklebust 
30a2118c33STrond Myklebust enum nfs4_session_state {
311055d76dSTrond Myklebust 	NFS4_SESSION_INITING,
32a2118c33STrond Myklebust 	NFS4_SESSION_DRAINING,
33a2118c33STrond Myklebust };
34a2118c33STrond Myklebust 
352f60ea6bSTrond Myklebust #define NFS4_RENEW_TIMEOUT		0x01
362f60ea6bSTrond Myklebust #define NFS4_RENEW_DELEGATION_CB	0x02
372f60ea6bSTrond Myklebust 
3897dc1359STrond Myklebust struct nfs4_minor_version_ops {
3997dc1359STrond Myklebust 	u32	minor_version;
4097dc1359STrond Myklebust 
417c513058SBryan Schumaker 	int	(*call_sync)(struct rpc_clnt *clnt,
427c513058SBryan Schumaker 			struct nfs_server *server,
4397dc1359STrond Myklebust 			struct rpc_message *msg,
4497dc1359STrond Myklebust 			struct nfs4_sequence_args *args,
4597dc1359STrond Myklebust 			struct nfs4_sequence_res *res,
4697dc1359STrond Myklebust 			int cache_reply);
47e047a10cSTrond Myklebust 	int	(*validate_stateid)(struct nfs_delegation *,
48e047a10cSTrond Myklebust 			const nfs4_stateid *);
49fca78d6dSBryan Schumaker 	int	(*find_root_sec)(struct nfs_server *, struct nfs_fh *,
50fca78d6dSBryan Schumaker 			struct nfs_fsinfo *);
51c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *reboot_recovery_ops;
52c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *nograce_recovery_ops;
53c48f4f35STrond Myklebust 	const struct nfs4_state_maintenance_ops *state_renewal_ops;
5497dc1359STrond Myklebust };
5597dc1359STrond Myklebust 
564ce79717STrond Myklebust /*
57cee54fc9STrond Myklebust  * struct rpc_sequence ensures that RPC calls are sent in the exact
58cee54fc9STrond Myklebust  * order that they appear on the list.
59cee54fc9STrond Myklebust  */
60cee54fc9STrond Myklebust struct rpc_sequence {
61cee54fc9STrond Myklebust 	struct rpc_wait_queue	wait;	/* RPC call delay queue */
62cee54fc9STrond Myklebust 	spinlock_t lock;		/* Protects the list */
63cee54fc9STrond Myklebust 	struct list_head list;		/* Defines sequence of RPC calls */
64cee54fc9STrond Myklebust };
65cee54fc9STrond Myklebust 
66cee54fc9STrond Myklebust #define NFS_SEQID_CONFIRMED 1
67cee54fc9STrond Myklebust struct nfs_seqid_counter {
68cee54fc9STrond Myklebust 	struct rpc_sequence *sequence;
69cee54fc9STrond Myklebust 	int flags;
70cee54fc9STrond Myklebust 	u32 counter;
71cee54fc9STrond Myklebust };
72cee54fc9STrond Myklebust 
73cee54fc9STrond Myklebust struct nfs_seqid {
74cee54fc9STrond Myklebust 	struct nfs_seqid_counter *sequence;
754e51336aSTrond Myklebust 	struct list_head list;
76cee54fc9STrond Myklebust };
77cee54fc9STrond Myklebust 
78cee54fc9STrond Myklebust static inline void nfs_confirm_seqid(struct nfs_seqid_counter *seqid, int status)
79cee54fc9STrond Myklebust {
80cee54fc9STrond Myklebust 	if (seqid_mutating_err(-status))
81cee54fc9STrond Myklebust 		seqid->flags |= NFS_SEQID_CONFIRMED;
82cee54fc9STrond Myklebust }
83cee54fc9STrond Myklebust 
849f958ab8STrond Myklebust struct nfs_unique_id {
859f958ab8STrond Myklebust 	struct rb_node rb_node;
869f958ab8STrond Myklebust 	__u64 id;
879f958ab8STrond Myklebust };
889f958ab8STrond Myklebust 
89cee54fc9STrond Myklebust /*
904ce79717STrond Myklebust  * NFS4 state_owners and lock_owners are simply labels for ordered
914ce79717STrond Myklebust  * sequences of RPC calls. Their sole purpose is to provide once-only
924ce79717STrond Myklebust  * semantics by allowing the server to identify replayed requests.
934ce79717STrond Myklebust  */
944ce79717STrond Myklebust struct nfs4_state_owner {
959f958ab8STrond Myklebust 	struct nfs_unique_id so_owner_id;
966f2e64d3STrond Myklebust 	struct nfs_server    *so_server;
970aaaf5c4SChuck Lever 	struct list_head     so_lru;
980aaaf5c4SChuck Lever 	unsigned long        so_expires;
9924d292b8SChuck Lever 	struct rb_node	     so_server_node;
1004ce79717STrond Myklebust 
1014ce79717STrond Myklebust 	struct rpc_cred	     *so_cred;	 /* Associated cred */
1029f958ab8STrond Myklebust 
1039f958ab8STrond Myklebust 	spinlock_t	     so_lock;
1049f958ab8STrond Myklebust 	atomic_t	     so_count;
1057eff03aeSTrond Myklebust 	unsigned long	     so_flags;
1064ce79717STrond Myklebust 	struct list_head     so_states;
107cee54fc9STrond Myklebust 	struct nfs_seqid_counter so_seqid;
108cee54fc9STrond Myklebust 	struct rpc_sequence  so_sequence;
1094ce79717STrond Myklebust };
1104ce79717STrond Myklebust 
1117eff03aeSTrond Myklebust enum {
1127eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_REBOOT,
1137eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_NOGRACE
1147eff03aeSTrond Myklebust };
1157eff03aeSTrond Myklebust 
116afe6c27cSAlexandros Batsakis #define NFS_LOCK_NEW		0
117afe6c27cSAlexandros Batsakis #define NFS_LOCK_RECLAIM	1
118afe6c27cSAlexandros Batsakis #define NFS_LOCK_EXPIRED	2
119afe6c27cSAlexandros Batsakis 
1204ce79717STrond Myklebust /*
1214ce79717STrond Myklebust  * struct nfs4_state maintains the client-side state for a given
1224ce79717STrond Myklebust  * (state_owner,inode) tuple (OPEN) or state_owner (LOCK).
1234ce79717STrond Myklebust  *
1244ce79717STrond Myklebust  * OPEN:
1254ce79717STrond Myklebust  * In order to know when to OPEN_DOWNGRADE or CLOSE the state on the server,
1264ce79717STrond Myklebust  * we need to know how many files are open for reading or writing on a
1274ce79717STrond Myklebust  * given inode. This information too is stored here.
1284ce79717STrond Myklebust  *
1294ce79717STrond Myklebust  * LOCK: one nfs4_state (LOCK) to hold the lock stateid nfs4_state(OPEN)
1304ce79717STrond Myklebust  */
1314ce79717STrond Myklebust 
13277041ed9STrond Myklebust struct nfs4_lock_owner {
13377041ed9STrond Myklebust 	unsigned int lo_type;
13477041ed9STrond Myklebust #define NFS4_ANY_LOCK_TYPE	(0U)
13577041ed9STrond Myklebust #define NFS4_FLOCK_LOCK_TYPE	(1U << 0)
13677041ed9STrond Myklebust #define NFS4_POSIX_LOCK_TYPE	(1U << 1)
13777041ed9STrond Myklebust 	union {
13877041ed9STrond Myklebust 		fl_owner_t posix_owner;
13977041ed9STrond Myklebust 		pid_t flock_owner;
14077041ed9STrond Myklebust 	} lo_u;
14177041ed9STrond Myklebust };
14277041ed9STrond Myklebust 
1434ce79717STrond Myklebust struct nfs4_lock_state {
1444ce79717STrond Myklebust 	struct list_head	ls_locks;	/* Other lock stateids */
1458d0a8a9dSTrond Myklebust 	struct nfs4_state *	ls_state;	/* Pointer to open state */
1464ce79717STrond Myklebust #define NFS_LOCK_INITIALIZED 1
1474ce79717STrond Myklebust 	int			ls_flags;
148cee54fc9STrond Myklebust 	struct nfs_seqid_counter	ls_seqid;
149d0dc3701STrond Myklebust 	struct rpc_sequence	ls_sequence;
1509f958ab8STrond Myklebust 	struct nfs_unique_id	ls_id;
1514ce79717STrond Myklebust 	nfs4_stateid		ls_stateid;
1524ce79717STrond Myklebust 	atomic_t		ls_count;
15377041ed9STrond Myklebust 	struct nfs4_lock_owner	ls_owner;
1544ce79717STrond Myklebust };
1554ce79717STrond Myklebust 
1564ce79717STrond Myklebust /* bits for nfs4_state->flags */
1574ce79717STrond Myklebust enum {
1584ce79717STrond Myklebust 	LK_STATE_IN_USE,
159003707c7STrond Myklebust 	NFS_DELEGATED_STATE,		/* Current stateid is delegation */
160003707c7STrond Myklebust 	NFS_O_RDONLY_STATE,		/* OPEN stateid has read-only state */
161003707c7STrond Myklebust 	NFS_O_WRONLY_STATE,		/* OPEN stateid has write-only state */
162003707c7STrond Myklebust 	NFS_O_RDWR_STATE,		/* OPEN stateid has read/write state */
163b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_REBOOT,	/* OPEN stateid server rebooted */
164b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_NOGRACE,	/* OPEN stateid needs to recover state */
1658e469ebdSTrond Myklebust 	NFS_STATE_POSIX_LOCKS,		/* Posix locks are supported */
1664ce79717STrond Myklebust };
1674ce79717STrond Myklebust 
1684ce79717STrond Myklebust struct nfs4_state {
1694ce79717STrond Myklebust 	struct list_head open_states;	/* List of states for the same state_owner */
1704ce79717STrond Myklebust 	struct list_head inode_states;	/* List of states for the same inode */
1714ce79717STrond Myklebust 	struct list_head lock_states;	/* List of subservient lock stateids */
1724ce79717STrond Myklebust 
1734ce79717STrond Myklebust 	struct nfs4_state_owner *owner;	/* Pointer to the open owner */
1744ce79717STrond Myklebust 	struct inode *inode;		/* Pointer to the inode */
1754ce79717STrond Myklebust 
1764ce79717STrond Myklebust 	unsigned long flags;		/* Do we hold any locks? */
1778d0a8a9dSTrond Myklebust 	spinlock_t state_lock;		/* Protects the lock_states list */
1784ce79717STrond Myklebust 
1798bda4e4cSTrond Myklebust 	seqlock_t seqlock;		/* Protects the stateid/open_stateid */
180003707c7STrond Myklebust 	nfs4_stateid stateid;		/* Current stateid: may be delegation */
181003707c7STrond Myklebust 	nfs4_stateid open_stateid;	/* OPEN stateid */
1824ce79717STrond Myklebust 
1838bda4e4cSTrond Myklebust 	/* The following 3 fields are protected by owner->so_lock */
184003707c7STrond Myklebust 	unsigned int n_rdonly;		/* Number of read-only references */
185003707c7STrond Myklebust 	unsigned int n_wronly;		/* Number of write-only references */
186003707c7STrond Myklebust 	unsigned int n_rdwr;		/* Number of read/write references */
187dc0b027dSTrond Myklebust 	fmode_t state;			/* State on the server (R,W, or RW) */
1884ce79717STrond Myklebust 	atomic_t count;
1894ce79717STrond Myklebust };
1904ce79717STrond Myklebust 
1914ce79717STrond Myklebust 
1924ce79717STrond Myklebust struct nfs4_exception {
1934ce79717STrond Myklebust 	long timeout;
1944ce79717STrond Myklebust 	int retry;
1959e33bed5STrond Myklebust 	struct nfs4_state *state;
1964ce79717STrond Myklebust };
1974ce79717STrond Myklebust 
1984ce79717STrond Myklebust struct nfs4_state_recovery_ops {
1997eff03aeSTrond Myklebust 	int owner_flag_bit;
200b79a4a1bSTrond Myklebust 	int state_flag_bit;
2014ce79717STrond Myklebust 	int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *);
2024ce79717STrond Myklebust 	int (*recover_lock)(struct nfs4_state *, struct file_lock *);
203591d71cbSAndy Adamson 	int (*establish_clid)(struct nfs_client *, struct rpc_cred *);
20490a16617SAndy Adamson 	struct rpc_cred * (*get_clid_cred)(struct nfs_client *);
205fce5c838SRicardo Labiaga 	int (*reclaim_complete)(struct nfs_client *);
2064ce79717STrond Myklebust };
2074ce79717STrond Myklebust 
20829fba38bSBenny Halevy struct nfs4_state_maintenance_ops {
2092f60ea6bSTrond Myklebust 	int (*sched_state_renewal)(struct nfs_client *, struct rpc_cred *, unsigned);
210a7b72103SAndy Adamson 	struct rpc_cred * (*get_state_renewal_cred_locked)(struct nfs_client *);
2118e69514fSBenny Halevy 	int (*renew_lease)(struct nfs_client *, struct rpc_cred *);
21229fba38bSBenny Halevy };
21329fba38bSBenny Halevy 
214f786aa90SAl Viro extern const struct dentry_operations nfs4_dentry_operations;
21592e1d5beSArjan van de Ven extern const struct inode_operations nfs4_dir_inode_operations;
2166b3b5496SJ. Bruce Fields 
2174ce79717STrond Myklebust /* nfs4proc.c */
218bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *);
219bb8b27e5STrond Myklebust extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *);
2204d643d1dSAndy Adamson extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred);
221591d71cbSAndy Adamson extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *);
2224d643d1dSAndy Adamson extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *);
223643168c2SAl Viro extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc);
22455a97593STrond Myklebust extern int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle);
22556659e99STrond Myklebust extern int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
2267aaa0b3bSManoj Naik 		struct nfs4_fs_locations *fs_locations, struct page *page);
227d3c7b7ccSTrond Myklebust extern void nfs4_release_lockowner(const struct nfs4_lock_state *);
22864c2ce8bSAneesh Kumar K.V extern const struct xattr_handler *nfs4_xattr_handlers[];
2294ce79717STrond Myklebust 
230557134a3SAndy Adamson #if defined(CONFIG_NFS_V4_1)
231035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
232035168abSTrond Myklebust {
233035168abSTrond Myklebust 	return server->nfs_client->cl_session;
234035168abSTrond Myklebust }
235035168abSTrond Myklebust 
236035168abSTrond Myklebust extern int nfs4_setup_sequence(const struct nfs_server *server,
237fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
238fbcd4abcSAndy Adamson 		int cache_reply, struct rpc_task *task);
239dc70d7b3SAndy Adamson extern int nfs41_setup_sequence(struct nfs4_session *session,
240dc70d7b3SAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
241dc70d7b3SAndy Adamson 		int cache_reply, struct rpc_task *task);
242557134a3SAndy Adamson extern void nfs4_destroy_session(struct nfs4_session *session);
243557134a3SAndy Adamson extern struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp);
244f26468fbSTrond Myklebust extern int nfs4_proc_create_session(struct nfs_client *);
245c3fad1b1SAndy Adamson extern int nfs4_proc_destroy_session(struct nfs4_session *);
246fccba804STrond Myklebust extern int nfs4_init_session(struct nfs_server *server);
2479430fb6bSRicardo Labiaga extern int nfs4_proc_get_lease_time(struct nfs_client *clp,
2489430fb6bSRicardo Labiaga 		struct nfs_fsinfo *fsinfo);
249863a3c6cSAndy Adamson extern int nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data,
250ef311537SAndy Adamson 				  bool sync);
25194de8b27SAndy Adamson 
25294de8b27SAndy Adamson static inline bool
25394de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
25494de8b27SAndy Adamson {
25594de8b27SAndy Adamson 	return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) ==
25694de8b27SAndy Adamson 		EXCHGID4_FLAG_USE_PNFS_DS;
25794de8b27SAndy Adamson }
258d83217c1SAndy Adamson 
259d83217c1SAndy Adamson static inline bool
260d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
261d83217c1SAndy Adamson {
262d83217c1SAndy Adamson 	return clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_DS;
263d83217c1SAndy Adamson }
264fbcd4abcSAndy Adamson #else /* CONFIG_NFS_v4_1 */
265035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
266035168abSTrond Myklebust {
267035168abSTrond Myklebust 	return NULL;
268035168abSTrond Myklebust }
269035168abSTrond Myklebust 
270035168abSTrond Myklebust static inline int nfs4_setup_sequence(const struct nfs_server *server,
271fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
272fbcd4abcSAndy Adamson 		int cache_reply, struct rpc_task *task)
273fbcd4abcSAndy Adamson {
274fbcd4abcSAndy Adamson 	return 0;
275fbcd4abcSAndy Adamson }
276fccba804STrond Myklebust 
277fccba804STrond Myklebust static inline int nfs4_init_session(struct nfs_server *server)
278fccba804STrond Myklebust {
279fccba804STrond Myklebust 	return 0;
280fccba804STrond Myklebust }
28194de8b27SAndy Adamson 
28294de8b27SAndy Adamson static inline bool
28394de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
28494de8b27SAndy Adamson {
28594de8b27SAndy Adamson 	return false;
28694de8b27SAndy Adamson }
287d83217c1SAndy Adamson 
288d83217c1SAndy Adamson static inline bool
289d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
290d83217c1SAndy Adamson {
291d83217c1SAndy Adamson 	return false;
292d83217c1SAndy Adamson }
293557134a3SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
2944ce79717STrond Myklebust 
29597dc1359STrond Myklebust extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[];
29629fba38bSBenny Halevy 
2974ce79717STrond Myklebust extern const u32 nfs4_fattr_bitmap[2];
2984ce79717STrond Myklebust extern const u32 nfs4_statfs_bitmap[2];
2994ce79717STrond Myklebust extern const u32 nfs4_pathconf_bitmap[2];
300dae100c2SFred Isaman extern const u32 nfs4_fsinfo_bitmap[3];
301830b8e33SManoj Naik extern const u32 nfs4_fs_locations_bitmap[2];
3024ce79717STrond Myklebust 
3034ce79717STrond Myklebust /* nfs4renewd.c */
304adfa6f98SDavid Howells extern void nfs4_schedule_state_renewal(struct nfs_client *);
3054ce79717STrond Myklebust extern void nfs4_renewd_prepare_shutdown(struct nfs_server *);
306adfa6f98SDavid Howells extern void nfs4_kill_renewd(struct nfs_client *);
30765f27f38SDavid Howells extern void nfs4_renew_state(struct work_struct *);
3084ce79717STrond Myklebust 
3094ce79717STrond Myklebust /* nfs4state.c */
310a7b72103SAndy Adamson struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp);
3116dc9d57aSTrond Myklebust struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp);
312a7b72103SAndy Adamson #if defined(CONFIG_NFS_V4_1)
313a7b72103SAndy Adamson struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp);
314b4b82607SAndy Adamson struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp);
3150400a6b0STrond Myklebust extern void nfs4_schedule_session_recovery(struct nfs4_session *);
3160400a6b0STrond Myklebust #else
3170400a6b0STrond Myklebust static inline void nfs4_schedule_session_recovery(struct nfs4_session *session)
3180400a6b0STrond Myklebust {
3190400a6b0STrond Myklebust }
320a7b72103SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
3214ce79717STrond Myklebust 
322d1e284d5STrond Myklebust extern struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *, gfp_t);
3234ce79717STrond Myklebust extern void nfs4_put_state_owner(struct nfs4_state_owner *);
3240aaaf5c4SChuck Lever extern void nfs4_purge_state_owners(struct nfs_server *);
3254ce79717STrond Myklebust extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *);
3264ce79717STrond Myklebust extern void nfs4_put_open_state(struct nfs4_state *);
327643168c2SAl Viro extern void nfs4_close_state(struct nfs4_state *, fmode_t);
328643168c2SAl Viro extern void nfs4_close_sync(struct nfs4_state *, fmode_t);
329dc0b027dSTrond Myklebust extern void nfs4_state_set_mode_locked(struct nfs4_state *, fmode_t);
3300400a6b0STrond Myklebust extern void nfs4_schedule_lease_recovery(struct nfs_client *);
331b0d3ded1STrond Myklebust extern void nfs4_schedule_state_manager(struct nfs_client *);
332042b60beSTrond Myklebust extern void nfs4_schedule_path_down_recovery(struct nfs_client *clp);
3330400a6b0STrond Myklebust extern void nfs4_schedule_stateid_recovery(const struct nfs_server *, struct nfs4_state *);
3340629e370SAlexandros Batsakis extern void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags);
335b9efa1b2SAndy Adamson extern void nfs41_handle_recall_slot(struct nfs_client *clp);
33678fe0f41SWeston Andros Adamson extern void nfs41_handle_server_scope(struct nfs_client *,
33778fe0f41SWeston Andros Adamson 				      struct server_scope **);
338faf5f49cSTrond Myklebust extern void nfs4_put_lock_state(struct nfs4_lock_state *lsp);
3398d0a8a9dSTrond Myklebust extern int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl);
34077041ed9STrond Myklebust extern void nfs4_copy_stateid(nfs4_stateid *, struct nfs4_state *, fl_owner_t, pid_t);
3414ce79717STrond Myklebust 
3428535b2beSTrond Myklebust extern struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask);
343cee54fc9STrond Myklebust extern int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task);
344cee54fc9STrond Myklebust extern void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid);
345cee54fc9STrond Myklebust extern void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid);
34672211dbeSTrond Myklebust extern void nfs_release_seqid(struct nfs_seqid *seqid);
347cee54fc9STrond Myklebust extern void nfs_free_seqid(struct nfs_seqid *seqid);
348cee54fc9STrond Myklebust 
3494ce79717STrond Myklebust extern const nfs4_stateid zero_stateid;
3504ce79717STrond Myklebust 
3514ce79717STrond Myklebust /* nfs4xdr.c */
3524ce79717STrond Myklebust extern struct rpc_procinfo nfs4_procedures[];
3534ce79717STrond Myklebust 
3544ce79717STrond Myklebust struct nfs4_mount_data;
3554ce79717STrond Myklebust 
3564ce79717STrond Myklebust /* callback_xdr.c */
3574ce79717STrond Myklebust extern struct svc_version nfs4_callback_version1;
35807bccc2dSAlexandros Batsakis extern struct svc_version nfs4_callback_version4;
3594ce79717STrond Myklebust 
3604ce79717STrond Myklebust #else
3614ce79717STrond Myklebust 
362643168c2SAl Viro #define nfs4_close_state(a, b) do { } while (0)
363643168c2SAl Viro #define nfs4_close_sync(a, b) do { } while (0)
3644ce79717STrond Myklebust 
3654ce79717STrond Myklebust #endif /* CONFIG_NFS_V4 */
3664ce79717STrond Myklebust #endif /* __LINUX_FS_NFS_NFS4_FS.H */
367