xref: /openbmc/linux/fs/nfs/nfs4_fs.h (revision 466bfe7f)
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,
272c820d9aSChuck Lever 	NFS4CLNT_PURGE_STATE,
28a9e64442SWeston Andros Adamson 	NFS4CLNT_BIND_CONN_TO_SESSION,
294ce79717STrond Myklebust };
304ce79717STrond Myklebust 
31a2118c33STrond Myklebust enum nfs4_session_state {
321055d76dSTrond Myklebust 	NFS4_SESSION_INITING,
33a2118c33STrond Myklebust 	NFS4_SESSION_DRAINING,
34a2118c33STrond Myklebust };
35a2118c33STrond Myklebust 
362f60ea6bSTrond Myklebust #define NFS4_RENEW_TIMEOUT		0x01
372f60ea6bSTrond Myklebust #define NFS4_RENEW_DELEGATION_CB	0x02
382f60ea6bSTrond Myklebust 
3997dc1359STrond Myklebust struct nfs4_minor_version_ops {
4097dc1359STrond Myklebust 	u32	minor_version;
4197dc1359STrond Myklebust 
427c513058SBryan Schumaker 	int	(*call_sync)(struct rpc_clnt *clnt,
437c513058SBryan Schumaker 			struct nfs_server *server,
4497dc1359STrond Myklebust 			struct rpc_message *msg,
4597dc1359STrond Myklebust 			struct nfs4_sequence_args *args,
4697dc1359STrond Myklebust 			struct nfs4_sequence_res *res,
4797dc1359STrond Myklebust 			int cache_reply);
4836281caaSTrond Myklebust 	bool	(*match_stateid)(const nfs4_stateid *,
49e047a10cSTrond Myklebust 			const nfs4_stateid *);
50fca78d6dSBryan Schumaker 	int	(*find_root_sec)(struct nfs_server *, struct nfs_fh *,
51fca78d6dSBryan Schumaker 			struct nfs_fsinfo *);
52c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *reboot_recovery_ops;
53c48f4f35STrond Myklebust 	const struct nfs4_state_recovery_ops *nograce_recovery_ops;
54c48f4f35STrond Myklebust 	const struct nfs4_state_maintenance_ops *state_renewal_ops;
5597dc1359STrond Myklebust };
5697dc1359STrond Myklebust 
57cee54fc9STrond Myklebust #define NFS_SEQID_CONFIRMED 1
58cee54fc9STrond Myklebust struct nfs_seqid_counter {
5995b72eb0STrond Myklebust 	ktime_t create_time;
6048c22eb2STrond Myklebust 	int owner_id;
61cee54fc9STrond Myklebust 	int flags;
62cee54fc9STrond Myklebust 	u32 counter;
637ba127abSTrond Myklebust 	spinlock_t lock;		/* Protects the list */
647ba127abSTrond Myklebust 	struct list_head list;		/* Defines sequence of RPC calls */
657ba127abSTrond Myklebust 	struct rpc_wait_queue	wait;	/* RPC call delay queue */
66cee54fc9STrond Myklebust };
67cee54fc9STrond Myklebust 
68cee54fc9STrond Myklebust struct nfs_seqid {
69cee54fc9STrond Myklebust 	struct nfs_seqid_counter *sequence;
704e51336aSTrond Myklebust 	struct list_head list;
714601df20STrond Myklebust 	struct rpc_task *task;
72cee54fc9STrond Myklebust };
73cee54fc9STrond Myklebust 
74cee54fc9STrond Myklebust static inline void nfs_confirm_seqid(struct nfs_seqid_counter *seqid, int status)
75cee54fc9STrond Myklebust {
76cee54fc9STrond Myklebust 	if (seqid_mutating_err(-status))
77cee54fc9STrond Myklebust 		seqid->flags |= NFS_SEQID_CONFIRMED;
78cee54fc9STrond Myklebust }
79cee54fc9STrond Myklebust 
80cee54fc9STrond Myklebust /*
814ce79717STrond Myklebust  * NFS4 state_owners and lock_owners are simply labels for ordered
824ce79717STrond Myklebust  * sequences of RPC calls. Their sole purpose is to provide once-only
834ce79717STrond Myklebust  * semantics by allowing the server to identify replayed requests.
844ce79717STrond Myklebust  */
854ce79717STrond Myklebust struct nfs4_state_owner {
866f2e64d3STrond Myklebust 	struct nfs_server    *so_server;
870aaaf5c4SChuck Lever 	struct list_head     so_lru;
880aaaf5c4SChuck Lever 	unsigned long        so_expires;
8924d292b8SChuck Lever 	struct rb_node	     so_server_node;
904ce79717STrond Myklebust 
914ce79717STrond Myklebust 	struct rpc_cred	     *so_cred;	 /* Associated cred */
929f958ab8STrond Myklebust 
939f958ab8STrond Myklebust 	spinlock_t	     so_lock;
949f958ab8STrond Myklebust 	atomic_t	     so_count;
957eff03aeSTrond Myklebust 	unsigned long	     so_flags;
964ce79717STrond Myklebust 	struct list_head     so_states;
97cee54fc9STrond Myklebust 	struct nfs_seqid_counter so_seqid;
984ce79717STrond Myklebust };
994ce79717STrond Myklebust 
1007eff03aeSTrond Myklebust enum {
1017eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_REBOOT,
1027eff03aeSTrond Myklebust 	NFS_OWNER_RECLAIM_NOGRACE
1037eff03aeSTrond Myklebust };
1047eff03aeSTrond Myklebust 
105afe6c27cSAlexandros Batsakis #define NFS_LOCK_NEW		0
106afe6c27cSAlexandros Batsakis #define NFS_LOCK_RECLAIM	1
107afe6c27cSAlexandros Batsakis #define NFS_LOCK_EXPIRED	2
108afe6c27cSAlexandros Batsakis 
1094ce79717STrond Myklebust /*
1104ce79717STrond Myklebust  * struct nfs4_state maintains the client-side state for a given
1114ce79717STrond Myklebust  * (state_owner,inode) tuple (OPEN) or state_owner (LOCK).
1124ce79717STrond Myklebust  *
1134ce79717STrond Myklebust  * OPEN:
1144ce79717STrond Myklebust  * In order to know when to OPEN_DOWNGRADE or CLOSE the state on the server,
1154ce79717STrond Myklebust  * we need to know how many files are open for reading or writing on a
1164ce79717STrond Myklebust  * given inode. This information too is stored here.
1174ce79717STrond Myklebust  *
1184ce79717STrond Myklebust  * LOCK: one nfs4_state (LOCK) to hold the lock stateid nfs4_state(OPEN)
1194ce79717STrond Myklebust  */
1204ce79717STrond Myklebust 
12177041ed9STrond Myklebust struct nfs4_lock_owner {
12277041ed9STrond Myklebust 	unsigned int lo_type;
12377041ed9STrond Myklebust #define NFS4_ANY_LOCK_TYPE	(0U)
12477041ed9STrond Myklebust #define NFS4_FLOCK_LOCK_TYPE	(1U << 0)
12577041ed9STrond Myklebust #define NFS4_POSIX_LOCK_TYPE	(1U << 1)
12677041ed9STrond Myklebust 	union {
12777041ed9STrond Myklebust 		fl_owner_t posix_owner;
12877041ed9STrond Myklebust 		pid_t flock_owner;
12977041ed9STrond Myklebust 	} lo_u;
13077041ed9STrond Myklebust };
13177041ed9STrond Myklebust 
1324ce79717STrond Myklebust struct nfs4_lock_state {
1334ce79717STrond Myklebust 	struct list_head	ls_locks;	/* Other lock stateids */
1348d0a8a9dSTrond Myklebust 	struct nfs4_state *	ls_state;	/* Pointer to open state */
1354ce79717STrond Myklebust #define NFS_LOCK_INITIALIZED 1
1364ce79717STrond Myklebust 	int			ls_flags;
137cee54fc9STrond Myklebust 	struct nfs_seqid_counter	ls_seqid;
1384ce79717STrond Myklebust 	nfs4_stateid		ls_stateid;
1394ce79717STrond Myklebust 	atomic_t		ls_count;
14077041ed9STrond Myklebust 	struct nfs4_lock_owner	ls_owner;
1414ce79717STrond Myklebust };
1424ce79717STrond Myklebust 
1434ce79717STrond Myklebust /* bits for nfs4_state->flags */
1444ce79717STrond Myklebust enum {
1454ce79717STrond Myklebust 	LK_STATE_IN_USE,
146003707c7STrond Myklebust 	NFS_DELEGATED_STATE,		/* Current stateid is delegation */
147003707c7STrond Myklebust 	NFS_O_RDONLY_STATE,		/* OPEN stateid has read-only state */
148003707c7STrond Myklebust 	NFS_O_WRONLY_STATE,		/* OPEN stateid has write-only state */
149003707c7STrond Myklebust 	NFS_O_RDWR_STATE,		/* OPEN stateid has read/write state */
150b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_REBOOT,	/* OPEN stateid server rebooted */
151b79a4a1bSTrond Myklebust 	NFS_STATE_RECLAIM_NOGRACE,	/* OPEN stateid needs to recover state */
1528e469ebdSTrond Myklebust 	NFS_STATE_POSIX_LOCKS,		/* Posix locks are supported */
1534ce79717STrond Myklebust };
1544ce79717STrond Myklebust 
1554ce79717STrond Myklebust struct nfs4_state {
1564ce79717STrond Myklebust 	struct list_head open_states;	/* List of states for the same state_owner */
1574ce79717STrond Myklebust 	struct list_head inode_states;	/* List of states for the same inode */
1584ce79717STrond Myklebust 	struct list_head lock_states;	/* List of subservient lock stateids */
1594ce79717STrond Myklebust 
1604ce79717STrond Myklebust 	struct nfs4_state_owner *owner;	/* Pointer to the open owner */
1614ce79717STrond Myklebust 	struct inode *inode;		/* Pointer to the inode */
1624ce79717STrond Myklebust 
1634ce79717STrond Myklebust 	unsigned long flags;		/* Do we hold any locks? */
1648d0a8a9dSTrond Myklebust 	spinlock_t state_lock;		/* Protects the lock_states list */
1654ce79717STrond Myklebust 
1668bda4e4cSTrond Myklebust 	seqlock_t seqlock;		/* Protects the stateid/open_stateid */
167003707c7STrond Myklebust 	nfs4_stateid stateid;		/* Current stateid: may be delegation */
168003707c7STrond Myklebust 	nfs4_stateid open_stateid;	/* OPEN stateid */
1694ce79717STrond Myklebust 
1708bda4e4cSTrond Myklebust 	/* The following 3 fields are protected by owner->so_lock */
171003707c7STrond Myklebust 	unsigned int n_rdonly;		/* Number of read-only references */
172003707c7STrond Myklebust 	unsigned int n_wronly;		/* Number of write-only references */
173003707c7STrond Myklebust 	unsigned int n_rdwr;		/* Number of read/write references */
174dc0b027dSTrond Myklebust 	fmode_t state;			/* State on the server (R,W, or RW) */
1754ce79717STrond Myklebust 	atomic_t count;
1764ce79717STrond Myklebust };
1774ce79717STrond Myklebust 
1784ce79717STrond Myklebust 
1794ce79717STrond Myklebust struct nfs4_exception {
1804ce79717STrond Myklebust 	long timeout;
1814ce79717STrond Myklebust 	int retry;
1829e33bed5STrond Myklebust 	struct nfs4_state *state;
1833114ea7aSTrond Myklebust 	struct inode *inode;
1844ce79717STrond Myklebust };
1854ce79717STrond Myklebust 
1864ce79717STrond Myklebust struct nfs4_state_recovery_ops {
1877eff03aeSTrond Myklebust 	int owner_flag_bit;
188b79a4a1bSTrond Myklebust 	int state_flag_bit;
1894ce79717STrond Myklebust 	int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *);
1904ce79717STrond Myklebust 	int (*recover_lock)(struct nfs4_state *, struct file_lock *);
191591d71cbSAndy Adamson 	int (*establish_clid)(struct nfs_client *, struct rpc_cred *);
19290a16617SAndy Adamson 	struct rpc_cred * (*get_clid_cred)(struct nfs_client *);
193fce5c838SRicardo Labiaga 	int (*reclaim_complete)(struct nfs_client *);
1944ce79717STrond Myklebust };
1954ce79717STrond Myklebust 
19629fba38bSBenny Halevy struct nfs4_state_maintenance_ops {
1972f60ea6bSTrond Myklebust 	int (*sched_state_renewal)(struct nfs_client *, struct rpc_cred *, unsigned);
198a7b72103SAndy Adamson 	struct rpc_cred * (*get_state_renewal_cred_locked)(struct nfs_client *);
1998e69514fSBenny Halevy 	int (*renew_lease)(struct nfs_client *, struct rpc_cred *);
20029fba38bSBenny Halevy };
20129fba38bSBenny Halevy 
202f786aa90SAl Viro extern const struct dentry_operations nfs4_dentry_operations;
20373a79706SBryan Schumaker 
20473a79706SBryan Schumaker /* dir.c */
20573a79706SBryan Schumaker int nfs_atomic_open(struct inode *, struct dentry *, struct file *,
20673a79706SBryan Schumaker 		    unsigned, umode_t, int *);
2076b3b5496SJ. Bruce Fields 
208a8d8f02cSBryan Schumaker /* write.c */
209a8d8f02cSBryan Schumaker int nfs4_write_inode(struct inode *, struct writeback_control *);
210a8d8f02cSBryan Schumaker 
21172de53ecSBryan Schumaker /* nfs4namespace.c */
2122671bfc3SBryan Schumaker rpc_authflavor_t nfs_find_best_sec(struct nfs4_secinfo_flavors *);
21372de53ecSBryan Schumaker struct rpc_clnt *nfs4_create_sec_client(struct rpc_clnt *, struct inode *, struct qstr *);
214281cad46SBryan Schumaker struct vfsmount *nfs4_submount(struct nfs_server *, struct dentry *,
215281cad46SBryan Schumaker 			       struct nfs_fh *, struct nfs_fattr *);
21672de53ecSBryan Schumaker 
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 *);
2203028eb2bSBryan Schumaker extern int nfs4_proc_get_rootfh(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
2212cf047c9STrond Myklebust extern int nfs4_proc_bind_conn_to_session(struct nfs_client *, struct rpc_cred *cred);
2224d643d1dSAndy Adamson extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred);
22366245539STrond Myklebust extern int nfs4_destroy_clientid(struct nfs_client *clp);
224591d71cbSAndy Adamson extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *);
2254d643d1dSAndy Adamson extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *);
226643168c2SAl Viro extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc);
22755a97593STrond Myklebust extern int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle);
228f05d147fSBryan Schumaker extern int nfs4_proc_fs_locations(struct rpc_clnt *, struct inode *, const struct qstr *,
229f05d147fSBryan Schumaker 				  struct nfs4_fs_locations *, struct page *);
230f05d147fSBryan Schumaker extern struct rpc_clnt *nfs4_proc_lookup_mountpoint(struct inode *, struct qstr *,
231f05d147fSBryan Schumaker 			    struct nfs_fh *, struct nfs_fattr *);
23272de53ecSBryan Schumaker extern int nfs4_proc_secinfo(struct inode *, const struct qstr *, struct nfs4_secinfo_flavors *);
233cf470c3eSTrond Myklebust extern int nfs4_release_lockowner(struct nfs4_lock_state *);
23464c2ce8bSAneesh Kumar K.V extern const struct xattr_handler *nfs4_xattr_handlers[];
2354ce79717STrond Myklebust 
236557134a3SAndy Adamson #if defined(CONFIG_NFS_V4_1)
237035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
238035168abSTrond Myklebust {
239035168abSTrond Myklebust 	return server->nfs_client->cl_session;
240035168abSTrond Myklebust }
241035168abSTrond Myklebust 
242961a828dSTrond Myklebust extern bool nfs4_set_task_privileged(struct rpc_task *task, void *dummy);
243035168abSTrond Myklebust extern int nfs4_setup_sequence(const struct nfs_server *server,
244fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2459d12b216STrond Myklebust 		struct rpc_task *task);
246dc70d7b3SAndy Adamson extern int nfs41_setup_sequence(struct nfs4_session *session,
247dc70d7b3SAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2489d12b216STrond Myklebust 		struct rpc_task *task);
249557134a3SAndy Adamson extern void nfs4_destroy_session(struct nfs4_session *session);
250557134a3SAndy Adamson extern struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp);
251848f5bdaSTrond Myklebust extern int nfs4_proc_create_session(struct nfs_client *, struct rpc_cred *);
252848f5bdaSTrond Myklebust extern int nfs4_proc_destroy_session(struct nfs4_session *, struct rpc_cred *);
253fccba804STrond Myklebust extern int nfs4_init_session(struct nfs_server *server);
2549430fb6bSRicardo Labiaga extern int nfs4_proc_get_lease_time(struct nfs_client *clp,
2559430fb6bSRicardo Labiaga 		struct nfs_fsinfo *fsinfo);
256863a3c6cSAndy Adamson extern int nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data,
257ef311537SAndy Adamson 				  bool sync);
25894de8b27SAndy Adamson 
25994de8b27SAndy Adamson static inline bool
26094de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
26194de8b27SAndy Adamson {
26294de8b27SAndy Adamson 	return (clp->cl_exchange_flags & EXCHGID4_FLAG_MASK_PNFS) ==
26394de8b27SAndy Adamson 		EXCHGID4_FLAG_USE_PNFS_DS;
26494de8b27SAndy Adamson }
265d83217c1SAndy Adamson 
266d83217c1SAndy Adamson static inline bool
267d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
268d83217c1SAndy Adamson {
269d83217c1SAndy Adamson 	return clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_DS;
270d83217c1SAndy Adamson }
271fbcd4abcSAndy Adamson #else /* CONFIG_NFS_v4_1 */
272035168abSTrond Myklebust static inline struct nfs4_session *nfs4_get_session(const struct nfs_server *server)
273035168abSTrond Myklebust {
274035168abSTrond Myklebust 	return NULL;
275035168abSTrond Myklebust }
276035168abSTrond Myklebust 
277035168abSTrond Myklebust static inline int nfs4_setup_sequence(const struct nfs_server *server,
278fbcd4abcSAndy Adamson 		struct nfs4_sequence_args *args, struct nfs4_sequence_res *res,
2799d12b216STrond Myklebust 		struct rpc_task *task)
280fbcd4abcSAndy Adamson {
281fbcd4abcSAndy Adamson 	return 0;
282fbcd4abcSAndy Adamson }
283fccba804STrond Myklebust 
284fccba804STrond Myklebust static inline int nfs4_init_session(struct nfs_server *server)
285fccba804STrond Myklebust {
286fccba804STrond Myklebust 	return 0;
287fccba804STrond Myklebust }
28894de8b27SAndy Adamson 
28994de8b27SAndy Adamson static inline bool
29094de8b27SAndy Adamson is_ds_only_client(struct nfs_client *clp)
29194de8b27SAndy Adamson {
29294de8b27SAndy Adamson 	return false;
29394de8b27SAndy Adamson }
294d83217c1SAndy Adamson 
295d83217c1SAndy Adamson static inline bool
296d83217c1SAndy Adamson is_ds_client(struct nfs_client *clp)
297d83217c1SAndy Adamson {
298d83217c1SAndy Adamson 	return false;
299d83217c1SAndy Adamson }
300557134a3SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
3014ce79717STrond Myklebust 
30297dc1359STrond Myklebust extern const struct nfs4_minor_version_ops *nfs_v4_minor_ops[];
30329fba38bSBenny Halevy 
3041549210fSTrond Myklebust extern const u32 nfs4_fattr_bitmap[3];
3054ce79717STrond Myklebust extern const u32 nfs4_statfs_bitmap[2];
3064ce79717STrond Myklebust extern const u32 nfs4_pathconf_bitmap[2];
307dae100c2SFred Isaman extern const u32 nfs4_fsinfo_bitmap[3];
308830b8e33SManoj Naik extern const u32 nfs4_fs_locations_bitmap[2];
3094ce79717STrond Myklebust 
310cdb7ecedSBryan Schumaker void nfs4_free_client(struct nfs_client *);
311cdb7ecedSBryan Schumaker 
3126663ee7fSBryan Schumaker struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *);
3136663ee7fSBryan Schumaker 
3144ce79717STrond Myklebust /* nfs4renewd.c */
315adfa6f98SDavid Howells extern void nfs4_schedule_state_renewal(struct nfs_client *);
3164ce79717STrond Myklebust extern void nfs4_renewd_prepare_shutdown(struct nfs_server *);
317adfa6f98SDavid Howells extern void nfs4_kill_renewd(struct nfs_client *);
31865f27f38SDavid Howells extern void nfs4_renew_state(struct work_struct *);
3194ce79717STrond Myklebust 
3204ce79717STrond Myklebust /* nfs4state.c */
321a7b72103SAndy Adamson struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp);
3226dc9d57aSTrond Myklebust struct rpc_cred *nfs4_get_renew_cred_locked(struct nfs_client *clp);
323a7b72103SAndy Adamson #if defined(CONFIG_NFS_V4_1)
324a7b72103SAndy Adamson struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp);
325b4b82607SAndy Adamson struct rpc_cred *nfs4_get_exchange_id_cred(struct nfs_client *clp);
3269f594791STrond Myklebust extern void nfs4_schedule_session_recovery(struct nfs4_session *, int);
3270400a6b0STrond Myklebust #else
3289f594791STrond Myklebust static inline void nfs4_schedule_session_recovery(struct nfs4_session *session, int err)
3290400a6b0STrond Myklebust {
3300400a6b0STrond Myklebust }
331a7b72103SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
3324ce79717STrond Myklebust 
333d1e284d5STrond Myklebust extern struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *, gfp_t);
3344ce79717STrond Myklebust extern void nfs4_put_state_owner(struct nfs4_state_owner *);
3350aaaf5c4SChuck Lever extern void nfs4_purge_state_owners(struct nfs_server *);
3364ce79717STrond Myklebust extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *);
3374ce79717STrond Myklebust extern void nfs4_put_open_state(struct nfs4_state *);
338643168c2SAl Viro extern void nfs4_close_state(struct nfs4_state *, fmode_t);
339643168c2SAl Viro extern void nfs4_close_sync(struct nfs4_state *, fmode_t);
340dc0b027dSTrond Myklebust extern void nfs4_state_set_mode_locked(struct nfs4_state *, fmode_t);
341a1d0b5eeSTrond Myklebust extern void nfs_inode_find_state_and_recover(struct inode *inode,
342a1d0b5eeSTrond Myklebust 		const nfs4_stateid *stateid);
3430400a6b0STrond Myklebust extern void nfs4_schedule_lease_recovery(struct nfs_client *);
344b0d3ded1STrond Myklebust extern void nfs4_schedule_state_manager(struct nfs_client *);
345042b60beSTrond Myklebust extern void nfs4_schedule_path_down_recovery(struct nfs_client *clp);
3460400a6b0STrond Myklebust extern void nfs4_schedule_stateid_recovery(const struct nfs_server *, struct nfs4_state *);
3470629e370SAlexandros Batsakis extern void nfs41_handle_sequence_flag_errors(struct nfs_client *clp, u32 flags);
348b9efa1b2SAndy Adamson extern void nfs41_handle_recall_slot(struct nfs_client *clp);
34978fe0f41SWeston Andros Adamson extern void nfs41_handle_server_scope(struct nfs_client *,
35079d4e1f0SChuck Lever 				      struct nfs41_server_scope **);
351faf5f49cSTrond Myklebust extern void nfs4_put_lock_state(struct nfs4_lock_state *lsp);
3528d0a8a9dSTrond Myklebust extern int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl);
3534fc8796dSTrond Myklebust extern void nfs4_select_rw_stateid(nfs4_stateid *, struct nfs4_state *,
3544fc8796dSTrond Myklebust 		fmode_t, fl_owner_t, pid_t);
3554ce79717STrond Myklebust 
3568535b2beSTrond Myklebust extern struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter, gfp_t gfp_mask);
357cee54fc9STrond Myklebust extern int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task);
358cee54fc9STrond Myklebust extern void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid);
359cee54fc9STrond Myklebust extern void nfs_increment_lock_seqid(int status, struct nfs_seqid *seqid);
36072211dbeSTrond Myklebust extern void nfs_release_seqid(struct nfs_seqid *seqid);
361cee54fc9STrond Myklebust extern void nfs_free_seqid(struct nfs_seqid *seqid);
362cee54fc9STrond Myklebust 
3635ae67c4fSTrond Myklebust extern void nfs4_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp);
364cf470c3eSTrond Myklebust 
3654ce79717STrond Myklebust extern const nfs4_stateid zero_stateid;
3664ce79717STrond Myklebust 
367129d1977SBryan Schumaker /* nfs4super.c */
368129d1977SBryan Schumaker int init_nfs_v4(void);
369129d1977SBryan Schumaker void exit_nfs_v4(void);
370129d1977SBryan Schumaker 
371466bfe7fSBryan Schumaker /* nfs4sysctl.c */
372466bfe7fSBryan Schumaker #ifdef CONFIG_SYSCTL
373466bfe7fSBryan Schumaker int nfs4_register_sysctl(void);
374466bfe7fSBryan Schumaker void nfs4_unregister_sysctl(void);
375466bfe7fSBryan Schumaker #else
376466bfe7fSBryan Schumaker static inline int nfs4_register_sysctl(void)
377466bfe7fSBryan Schumaker {
378466bfe7fSBryan Schumaker 	return 0;
379466bfe7fSBryan Schumaker }
380466bfe7fSBryan Schumaker 
381466bfe7fSBryan Schumaker static inline int nfs4_unregister_sysctl(void)
382466bfe7fSBryan Schumaker {
383466bfe7fSBryan Schumaker }
384466bfe7fSBryan Schumaker #endif
385466bfe7fSBryan Schumaker 
3864ce79717STrond Myklebust /* nfs4xdr.c */
3874ce79717STrond Myklebust extern struct rpc_procinfo nfs4_procedures[];
3884ce79717STrond Myklebust 
3894ce79717STrond Myklebust struct nfs4_mount_data;
3904ce79717STrond Myklebust 
3914ce79717STrond Myklebust /* callback_xdr.c */
3924ce79717STrond Myklebust extern struct svc_version nfs4_callback_version1;
39307bccc2dSAlexandros Batsakis extern struct svc_version nfs4_callback_version4;
3944ce79717STrond Myklebust 
395f597c537STrond Myklebust static inline void nfs4_stateid_copy(nfs4_stateid *dst, const nfs4_stateid *src)
396f597c537STrond Myklebust {
3972d2f24adSTrond Myklebust 	memcpy(dst, src, sizeof(*dst));
398f597c537STrond Myklebust }
399f597c537STrond Myklebust 
400f597c537STrond Myklebust static inline bool nfs4_stateid_match(const nfs4_stateid *dst, const nfs4_stateid *src)
401f597c537STrond Myklebust {
4022d2f24adSTrond Myklebust 	return memcmp(dst, src, sizeof(*dst)) == 0;
403f597c537STrond Myklebust }
404f597c537STrond Myklebust 
4054ce79717STrond Myklebust #else
4064ce79717STrond Myklebust 
407643168c2SAl Viro #define nfs4_close_state(a, b) do { } while (0)
408643168c2SAl Viro #define nfs4_close_sync(a, b) do { } while (0)
4094ce79717STrond Myklebust 
4104ce79717STrond Myklebust #endif /* CONFIG_NFS_V4 */
4114ce79717STrond Myklebust #endif /* __LINUX_FS_NFS_NFS4_FS.H */
412