| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Server-side types for NFSv4. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (c) 2002 The Regents of the University of Michigan. | 
					
						
							|  |  |  |  *  All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Kendrick Smith <kmsmith@umich.edu> | 
					
						
							|  |  |  |  *  Andy Adamson   <andros@umich.edu> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  *  modification, are permitted provided that the following conditions | 
					
						
							|  |  |  |  *  are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  1. Redistributions of source code must retain the above copyright | 
					
						
							|  |  |  |  *     notice, this list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  *  2. Redistributions in binary form must reproduce the above copyright | 
					
						
							|  |  |  |  *     notice, this list of conditions and the following disclaimer in the | 
					
						
							|  |  |  |  *     documentation and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  *  3. Neither the name of the University nor the names of its | 
					
						
							|  |  |  |  *     contributors may be used to endorse or promote products derived | 
					
						
							|  |  |  |  *     from this software without specific prior written permission. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
					
						
							|  |  |  |  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
					
						
							|  |  |  |  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
					
						
							|  |  |  |  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | 
					
						
							|  |  |  |  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
					
						
							|  |  |  |  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
					
						
							|  |  |  |  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
					
						
							|  |  |  |  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _LINUX_NFSD_XDR4_H
 | 
					
						
							|  |  |  | #define _LINUX_NFSD_XDR4_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 20:30:56 +02:00
										 |  |  | #include "state.h"
 | 
					
						
							|  |  |  | #include "nfsd.h"
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-02 13:19:10 -04:00
										 |  |  | #define NFSD4_MAX_SEC_LABEL_LEN	2048
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define NFSD4_MAX_TAGLEN	128
 | 
					
						
							|  |  |  | #define XDR_LEN(n)                     (((n) + 3) & ~3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-13 22:55:32 +01:00
										 |  |  | #define CURRENT_STATE_ID_FLAG (1<<0)
 | 
					
						
							|  |  |  | #define SAVED_STATE_ID_FLAG (1<<1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SET_STATE_ID(c, f) ((c)->sid_flags |= (f))
 | 
					
						
							|  |  |  | #define HAS_STATE_ID(c, f) ((c)->sid_flags & (f))
 | 
					
						
							|  |  |  | #define CLEAR_STATE_ID(c, f) ((c)->sid_flags &= ~(f))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | struct nfsd4_compound_state { | 
					
						
							| 
									
										
										
										
											2009-03-28 11:30:52 +03:00
										 |  |  | 	struct svc_fh		current_fh; | 
					
						
							|  |  |  | 	struct svc_fh		save_fh; | 
					
						
							|  |  |  | 	struct nfs4_stateowner	*replay_owner; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:08 +03:00
										 |  |  | 	/* For sessions DRC */ | 
					
						
							|  |  |  | 	struct nfsd4_session	*session; | 
					
						
							|  |  |  | 	struct nfsd4_slot	*slot; | 
					
						
							| 
									
										
										
										
											2009-08-28 08:45:04 -04:00
										 |  |  | 	__be32			*datap; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:22 +03:00
										 |  |  | 	size_t			iovlen; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:53 +03:00
										 |  |  | 	u32			minorversion; | 
					
						
							| 
									
										
										
										
											2012-04-25 17:58:50 -04:00
										 |  |  | 	__be32			status; | 
					
						
							| 
									
										
										
										
											2012-02-13 22:55:32 +01:00
										 |  |  | 	stateid_t	current_stateid; | 
					
						
							|  |  |  | 	stateid_t	save_stateid; | 
					
						
							|  |  |  | 	/* to indicate current and saved state id presents */ | 
					
						
							|  |  |  | 	u32		sid_flags; | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:45 +03:00
										 |  |  | static inline bool nfsd4_has_session(struct nfsd4_compound_state *cs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return cs->slot != NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct nfsd4_change_info { | 
					
						
							|  |  |  | 	u32		atomic; | 
					
						
							| 
									
										
										
										
											2009-04-16 17:33:25 -04:00
										 |  |  | 	bool		change_supported; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		before_ctime_sec; | 
					
						
							|  |  |  | 	u32		before_ctime_nsec; | 
					
						
							| 
									
										
										
										
											2009-04-16 17:33:25 -04:00
										 |  |  | 	u64		before_change; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		after_ctime_sec; | 
					
						
							|  |  |  | 	u32		after_ctime_nsec; | 
					
						
							| 
									
										
										
										
											2009-04-16 17:33:25 -04:00
										 |  |  | 	u64		after_change; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_access { | 
					
						
							|  |  |  | 	u32		ac_req_access;      /* request */ | 
					
						
							|  |  |  | 	u32		ac_supported;       /* response */ | 
					
						
							|  |  |  | 	u32		ac_resp_access;     /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_close { | 
					
						
							|  |  |  | 	u32		cl_seqid;           /* request */ | 
					
						
							|  |  |  | 	stateid_t	cl_stateid;         /* request+response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_commit { | 
					
						
							|  |  |  | 	u64		co_offset;          /* request */ | 
					
						
							|  |  |  | 	u32		co_count;           /* request */ | 
					
						
							|  |  |  | 	nfs4_verifier	co_verf;            /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_create { | 
					
						
							|  |  |  | 	u32		cr_namelen;         /* request */ | 
					
						
							|  |  |  | 	char *		cr_name;            /* request */ | 
					
						
							|  |  |  | 	u32		cr_type;            /* request */ | 
					
						
							|  |  |  | 	union {                             /* request */ | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			u32 namelen; | 
					
						
							|  |  |  | 			char *name; | 
					
						
							|  |  |  | 		} link;   /* NF4LNK */ | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			u32 specdata1; | 
					
						
							|  |  |  | 			u32 specdata2; | 
					
						
							|  |  |  | 		} dev;    /* NF4BLK, NF4CHR */ | 
					
						
							|  |  |  | 	} u; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		cr_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct iattr	cr_iattr;           /* request */ | 
					
						
							|  |  |  | 	struct nfsd4_change_info  cr_cinfo; /* response */ | 
					
						
							|  |  |  | 	struct nfs4_acl *cr_acl; | 
					
						
							| 
									
										
										
										
											2013-05-02 13:19:10 -04:00
										 |  |  | 	struct xdr_netobj cr_label; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | #define cr_linklen	u.link.namelen
 | 
					
						
							|  |  |  | #define cr_linkname	u.link.name
 | 
					
						
							|  |  |  | #define cr_specdata1	u.dev.specdata1
 | 
					
						
							|  |  |  | #define cr_specdata2	u.dev.specdata2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_delegreturn { | 
					
						
							|  |  |  | 	stateid_t	dr_stateid; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_getattr { | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		ga_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct svc_fh	*ga_fhp;            /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_link { | 
					
						
							|  |  |  | 	u32		li_namelen;         /* request */ | 
					
						
							|  |  |  | 	char *		li_name;            /* request */ | 
					
						
							|  |  |  | 	struct nfsd4_change_info  li_cinfo; /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_lock_denied { | 
					
						
							|  |  |  | 	clientid_t	ld_clientid; | 
					
						
							| 
									
										
										
										
											2011-08-30 22:15:47 -04:00
										 |  |  | 	struct xdr_netobj	ld_owner; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u64             ld_start; | 
					
						
							|  |  |  | 	u64             ld_length; | 
					
						
							|  |  |  | 	u32             ld_type; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_lock { | 
					
						
							|  |  |  | 	/* request */ | 
					
						
							|  |  |  | 	u32             lk_type; | 
					
						
							|  |  |  | 	u32             lk_reclaim;         /* boolean */ | 
					
						
							|  |  |  | 	u64             lk_offset; | 
					
						
							|  |  |  | 	u64             lk_length; | 
					
						
							|  |  |  | 	u32             lk_is_new; | 
					
						
							|  |  |  | 	union { | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			u32             open_seqid; | 
					
						
							|  |  |  | 			stateid_t       open_stateid; | 
					
						
							|  |  |  | 			u32             lock_seqid; | 
					
						
							|  |  |  | 			clientid_t      clientid; | 
					
						
							|  |  |  | 			struct xdr_netobj owner; | 
					
						
							|  |  |  | 		} new; | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			stateid_t       lock_stateid; | 
					
						
							|  |  |  | 			u32             lock_seqid; | 
					
						
							|  |  |  | 		} old; | 
					
						
							|  |  |  | 	} v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* response */ | 
					
						
							|  |  |  | 	union { | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			stateid_t               stateid; | 
					
						
							|  |  |  | 		} ok; | 
					
						
							|  |  |  | 		struct nfsd4_lock_denied        denied; | 
					
						
							|  |  |  | 	} u; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #define lk_new_open_seqid       v.new.open_seqid
 | 
					
						
							|  |  |  | #define lk_new_open_stateid     v.new.open_stateid
 | 
					
						
							|  |  |  | #define lk_new_lock_seqid       v.new.lock_seqid
 | 
					
						
							|  |  |  | #define lk_new_clientid         v.new.clientid
 | 
					
						
							|  |  |  | #define lk_new_owner            v.new.owner
 | 
					
						
							|  |  |  | #define lk_old_lock_stateid     v.old.lock_stateid
 | 
					
						
							|  |  |  | #define lk_old_lock_seqid       v.old.lock_seqid
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define lk_resp_stateid u.ok.stateid
 | 
					
						
							|  |  |  | #define lk_denied       u.denied
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_lockt { | 
					
						
							|  |  |  | 	u32				lt_type; | 
					
						
							|  |  |  | 	clientid_t			lt_clientid; | 
					
						
							|  |  |  | 	struct xdr_netobj		lt_owner; | 
					
						
							|  |  |  | 	u64				lt_offset; | 
					
						
							|  |  |  | 	u64				lt_length; | 
					
						
							|  |  |  | 	struct nfsd4_lock_denied  	lt_denied; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | struct nfsd4_locku { | 
					
						
							|  |  |  | 	u32             lu_type; | 
					
						
							|  |  |  | 	u32             lu_seqid; | 
					
						
							|  |  |  | 	stateid_t       lu_stateid; | 
					
						
							|  |  |  | 	u64             lu_offset; | 
					
						
							|  |  |  | 	u64             lu_length; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_lookup { | 
					
						
							|  |  |  | 	u32		lo_len;             /* request */ | 
					
						
							|  |  |  | 	char *		lo_name;            /* request */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_putfh { | 
					
						
							|  |  |  | 	u32		pf_fhlen;           /* request */ | 
					
						
							|  |  |  | 	char		*pf_fhval;          /* request */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_open { | 
					
						
							|  |  |  | 	u32		op_claim_type;      /* request */ | 
					
						
							|  |  |  | 	struct xdr_netobj op_fname;	    /* request - everything but CLAIM_PREV */ | 
					
						
							|  |  |  | 	u32		op_delegate_type;   /* request - CLAIM_PREV only */ | 
					
						
							|  |  |  | 	stateid_t       op_delegate_stateid; /* request - response */ | 
					
						
							| 
									
										
										
										
											2012-02-16 20:57:17 +02:00
										 |  |  | 	u32		op_why_no_deleg;    /* response - DELEG_NONE_EXT only */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		op_create;     	    /* request */ | 
					
						
							|  |  |  | 	u32		op_createmode;      /* request */ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		op_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2013-12-05 10:41:40 +08:00
										 |  |  | 	struct iattr	op_iattr;           /* UNCHECKED4, GUARDED4, EXCLUSIVE4_1 */ | 
					
						
							| 
									
										
										
										
											2012-03-02 17:13:50 -05:00
										 |  |  | 	nfs4_verifier	op_verf __attribute__((aligned(32))); | 
					
						
							|  |  |  | 					    /* EXCLUSIVE4 */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	clientid_t	op_clientid;        /* request */ | 
					
						
							|  |  |  | 	struct xdr_netobj op_owner;           /* request */ | 
					
						
							|  |  |  | 	u32		op_seqid;           /* request */ | 
					
						
							|  |  |  | 	u32		op_share_access;    /* request */ | 
					
						
							|  |  |  | 	u32		op_share_deny;      /* request */ | 
					
						
							| 
									
										
										
										
											2012-02-16 20:57:09 +02:00
										 |  |  | 	u32		op_deleg_want;      /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	stateid_t	op_stateid;         /* response */ | 
					
						
							| 
									
										
										
										
											2013-02-28 12:51:49 -08:00
										 |  |  | 	__be32		op_xdr_error;       /* see nfsd4_open_omfg() */ | 
					
						
							| 
									
										
										
										
											2005-06-23 22:03:23 -07:00
										 |  |  | 	u32		op_recall;          /* recall */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct nfsd4_change_info  op_cinfo; /* response */ | 
					
						
							|  |  |  | 	u32		op_rflags;          /* response */ | 
					
						
							| 
									
										
										
										
											2011-10-13 11:37:11 -04:00
										 |  |  | 	bool		op_truncate;        /* used during processing */ | 
					
						
							|  |  |  | 	bool		op_created;         /* used during processing */ | 
					
						
							| 
									
										
										
										
											2011-07-30 23:33:59 -04:00
										 |  |  | 	struct nfs4_openowner *op_openowner; /* used during processing */ | 
					
						
							| 
									
										
										
										
											2011-10-13 16:00:16 -04:00
										 |  |  | 	struct nfs4_file *op_file;          /* used during processing */ | 
					
						
							| 
									
										
										
										
											2011-10-17 15:57:47 -04:00
										 |  |  | 	struct nfs4_ol_stateid *op_stp;	    /* used during processing */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct nfs4_acl *op_acl; | 
					
						
							| 
									
										
										
										
											2013-05-02 13:19:10 -04:00
										 |  |  | 	struct xdr_netobj op_label; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_open_confirm { | 
					
						
							|  |  |  | 	stateid_t	oc_req_stateid		/* request */; | 
					
						
							|  |  |  | 	u32		oc_seqid    		/* request */; | 
					
						
							|  |  |  | 	stateid_t	oc_resp_stateid		/* response */; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_open_downgrade { | 
					
						
							|  |  |  | 	stateid_t       od_stateid; | 
					
						
							|  |  |  | 	u32             od_seqid; | 
					
						
							| 
									
										
										
										
											2012-02-16 20:57:09 +02:00
										 |  |  | 	u32             od_share_access;	/* request */ | 
					
						
							|  |  |  | 	u32		od_deleg_want;		/* request */ | 
					
						
							|  |  |  | 	u32             od_share_deny;		/* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_read { | 
					
						
							|  |  |  | 	stateid_t	rd_stateid;         /* request */ | 
					
						
							|  |  |  | 	u64		rd_offset;          /* request */ | 
					
						
							|  |  |  | 	u32		rd_length;          /* request */ | 
					
						
							|  |  |  | 	int		rd_vlen; | 
					
						
							|  |  |  | 	struct file     *rd_filp; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	struct svc_rqst *rd_rqstp;          /* response */ | 
					
						
							|  |  |  | 	struct svc_fh * rd_fhp;             /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_readdir { | 
					
						
							|  |  |  | 	u64		rd_cookie;          /* request */ | 
					
						
							|  |  |  | 	nfs4_verifier	rd_verf;            /* request */ | 
					
						
							|  |  |  | 	u32		rd_dircount;        /* request */ | 
					
						
							|  |  |  | 	u32		rd_maxcount;        /* request */ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		rd_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct svc_rqst *rd_rqstp;          /* response */ | 
					
						
							|  |  |  | 	struct svc_fh * rd_fhp;             /* response */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct readdir_cd	common; | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | 	__be32 *		buffer; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int			buflen; | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | 	__be32 *		offset; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_release_lockowner { | 
					
						
							|  |  |  | 	clientid_t        rl_clientid; | 
					
						
							|  |  |  | 	struct xdr_netobj rl_owner; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | struct nfsd4_readlink { | 
					
						
							|  |  |  | 	struct svc_rqst *rl_rqstp;          /* request */ | 
					
						
							|  |  |  | 	struct svc_fh *	rl_fhp;             /* request */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_remove { | 
					
						
							|  |  |  | 	u32		rm_namelen;         /* request */ | 
					
						
							|  |  |  | 	char *		rm_name;            /* request */ | 
					
						
							|  |  |  | 	struct nfsd4_change_info  rm_cinfo; /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_rename { | 
					
						
							|  |  |  | 	u32		rn_snamelen;        /* request */ | 
					
						
							|  |  |  | 	char *		rn_sname;           /* request */ | 
					
						
							|  |  |  | 	u32		rn_tnamelen;        /* request */ | 
					
						
							|  |  |  | 	char *		rn_tname;           /* request */ | 
					
						
							|  |  |  | 	struct nfsd4_change_info  rn_sinfo; /* response */ | 
					
						
							|  |  |  | 	struct nfsd4_change_info  rn_tinfo; /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-17 04:04:51 -07:00
										 |  |  | struct nfsd4_secinfo { | 
					
						
							|  |  |  | 	u32 si_namelen;					/* request */ | 
					
						
							|  |  |  | 	char *si_name;					/* request */ | 
					
						
							|  |  |  | 	struct svc_export *si_exp;			/* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 09:51:13 -05:00
										 |  |  | struct nfsd4_secinfo_no_name { | 
					
						
							|  |  |  | 	u32 sin_style;					/* request */ | 
					
						
							|  |  |  | 	struct svc_export *sin_exp;			/* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct nfsd4_setattr { | 
					
						
							|  |  |  | 	stateid_t	sa_stateid;         /* request */ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		sa_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct iattr	sa_iattr;           /* request */ | 
					
						
							|  |  |  | 	struct nfs4_acl *sa_acl; | 
					
						
							| 
									
										
										
										
											2013-05-02 13:19:10 -04:00
										 |  |  | 	struct xdr_netobj sa_label; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_setclientid { | 
					
						
							|  |  |  | 	nfs4_verifier	se_verf;            /* request */ | 
					
						
							| 
									
										
										
										
											2011-10-10 15:07:40 -04:00
										 |  |  | 	struct xdr_netobj se_name; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		se_callback_prog;   /* request */ | 
					
						
							|  |  |  | 	u32		se_callback_netid_len;  /* request */ | 
					
						
							|  |  |  | 	char *		se_callback_netid_val;  /* request */ | 
					
						
							|  |  |  | 	u32		se_callback_addr_len;   /* request */ | 
					
						
							|  |  |  | 	char *		se_callback_addr_val;   /* request */ | 
					
						
							|  |  |  | 	u32		se_callback_ident;  /* request */ | 
					
						
							|  |  |  | 	clientid_t	se_clientid;        /* response */ | 
					
						
							|  |  |  | 	nfs4_verifier	se_confirm;         /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_setclientid_confirm { | 
					
						
							|  |  |  | 	clientid_t	sc_clientid; | 
					
						
							|  |  |  | 	nfs4_verifier	sc_confirm; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-13 10:50:48 -04:00
										 |  |  | struct nfsd4_saved_compoundargs { | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 	__be32 *end; | 
					
						
							|  |  |  | 	int pagelen; | 
					
						
							|  |  |  | 	struct page **pagelist; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-27 10:22:49 -05:00
										 |  |  | struct nfsd4_test_stateid_id { | 
					
						
							|  |  |  | 	__be32			ts_id_status; | 
					
						
							|  |  |  | 	stateid_t		ts_id_stateid; | 
					
						
							|  |  |  | 	struct list_head	ts_id_list; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-13 10:50:48 -04:00
										 |  |  | struct nfsd4_test_stateid { | 
					
						
							| 
									
										
										
										
											2012-04-25 17:58:50 -04:00
										 |  |  | 	u32		ts_num_ids; | 
					
						
							| 
									
										
										
										
											2012-01-27 10:22:49 -05:00
										 |  |  | 	struct list_head ts_stateid_list; | 
					
						
							| 
									
										
										
										
											2011-07-13 10:50:48 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-13 11:04:21 -04:00
										 |  |  | struct nfsd4_free_stateid { | 
					
						
							|  |  |  | 	stateid_t	fr_stateid;         /* request */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* also used for NVERIFY */ | 
					
						
							|  |  |  | struct nfsd4_verify { | 
					
						
							| 
									
										
										
										
											2009-04-03 08:29:11 +03:00
										 |  |  | 	u32		ve_bmval[3];        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		ve_attrlen;         /* request */ | 
					
						
							|  |  |  | 	char *		ve_attrval;         /* request */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_write { | 
					
						
							|  |  |  | 	stateid_t	wr_stateid;         /* request */ | 
					
						
							|  |  |  | 	u64		wr_offset;          /* request */ | 
					
						
							|  |  |  | 	u32		wr_stable_how;      /* request */ | 
					
						
							|  |  |  | 	u32		wr_buflen;          /* request */ | 
					
						
							| 
									
										
										
										
											2012-11-16 14:16:46 -05:00
										 |  |  | 	struct kvec	wr_head; | 
					
						
							|  |  |  | 	struct page **	wr_pagelist;        /* request */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u32		wr_bytes_written;   /* response */ | 
					
						
							|  |  |  | 	u32		wr_how_written;     /* response */ | 
					
						
							|  |  |  | 	nfs4_verifier	wr_verifier;        /* response */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | struct nfsd4_exchange_id { | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:01 +03:00
										 |  |  | 	nfs4_verifier	verifier; | 
					
						
							|  |  |  | 	struct xdr_netobj clname; | 
					
						
							|  |  |  | 	u32		flags; | 
					
						
							|  |  |  | 	clientid_t	clientid; | 
					
						
							|  |  |  | 	u32		seqid; | 
					
						
							|  |  |  | 	int		spa_how; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_sequence { | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:08 +03:00
										 |  |  | 	struct nfs4_sessionid	sessionid;		/* request/response */ | 
					
						
							|  |  |  | 	u32			seqid;			/* request/response */ | 
					
						
							|  |  |  | 	u32			slotid;			/* request/response */ | 
					
						
							|  |  |  | 	u32			maxslots;		/* request/response */ | 
					
						
							|  |  |  | 	u32			cachethis;		/* request */ | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 	u32			target_maxslots;	/* response */ | 
					
						
							|  |  |  | #endif /* not yet */
 | 
					
						
							| 
									
										
										
										
											2010-11-18 08:30:33 -05:00
										 |  |  | 	u32			status_flags;		/* response */ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_destroy_session { | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:38 +03:00
										 |  |  | 	struct nfs4_sessionid	sessionid; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-20 17:51:39 +08:00
										 |  |  | struct nfsd4_destroy_clientid { | 
					
						
							|  |  |  | 	clientid_t clientid; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-19 15:11:28 -04:00
										 |  |  | struct nfsd4_reclaim_complete { | 
					
						
							|  |  |  | 	u32 rca_one_fs; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct nfsd4_op { | 
					
						
							|  |  |  | 	int					opnum; | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | 	__be32					status; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	union { | 
					
						
							|  |  |  | 		struct nfsd4_access		access; | 
					
						
							|  |  |  | 		struct nfsd4_close		close; | 
					
						
							|  |  |  | 		struct nfsd4_commit		commit; | 
					
						
							|  |  |  | 		struct nfsd4_create		create; | 
					
						
							|  |  |  | 		struct nfsd4_delegreturn	delegreturn; | 
					
						
							|  |  |  | 		struct nfsd4_getattr		getattr; | 
					
						
							|  |  |  | 		struct svc_fh *			getfh; | 
					
						
							|  |  |  | 		struct nfsd4_link		link; | 
					
						
							|  |  |  | 		struct nfsd4_lock		lock; | 
					
						
							|  |  |  | 		struct nfsd4_lockt		lockt; | 
					
						
							|  |  |  | 		struct nfsd4_locku		locku; | 
					
						
							|  |  |  | 		struct nfsd4_lookup		lookup; | 
					
						
							|  |  |  | 		struct nfsd4_verify		nverify; | 
					
						
							|  |  |  | 		struct nfsd4_open		open; | 
					
						
							|  |  |  | 		struct nfsd4_open_confirm	open_confirm; | 
					
						
							|  |  |  | 		struct nfsd4_open_downgrade	open_downgrade; | 
					
						
							|  |  |  | 		struct nfsd4_putfh		putfh; | 
					
						
							|  |  |  | 		struct nfsd4_read		read; | 
					
						
							|  |  |  | 		struct nfsd4_readdir		readdir; | 
					
						
							|  |  |  | 		struct nfsd4_readlink		readlink; | 
					
						
							|  |  |  | 		struct nfsd4_remove		remove; | 
					
						
							|  |  |  | 		struct nfsd4_rename		rename; | 
					
						
							|  |  |  | 		clientid_t			renew; | 
					
						
							| 
									
										
										
										
											2007-07-17 04:04:51 -07:00
										 |  |  | 		struct nfsd4_secinfo		secinfo; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_setattr		setattr; | 
					
						
							|  |  |  | 		struct nfsd4_setclientid	setclientid; | 
					
						
							|  |  |  | 		struct nfsd4_setclientid_confirm setclientid_confirm; | 
					
						
							|  |  |  | 		struct nfsd4_verify		verify; | 
					
						
							|  |  |  | 		struct nfsd4_write		write; | 
					
						
							|  |  |  | 		struct nfsd4_release_lockowner	release_lockowner; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* NFSv4.1 */ | 
					
						
							|  |  |  | 		struct nfsd4_exchange_id	exchange_id; | 
					
						
							| 
									
										
										
										
											2012-11-01 18:09:48 -04:00
										 |  |  | 		struct nfsd4_backchannel_ctl	backchannel_ctl; | 
					
						
							| 
									
										
										
										
											2010-10-04 23:12:59 -04:00
										 |  |  | 		struct nfsd4_bind_conn_to_session bind_conn_to_session; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:55 +03:00
										 |  |  | 		struct nfsd4_create_session	create_session; | 
					
						
							|  |  |  | 		struct nfsd4_destroy_session	destroy_session; | 
					
						
							|  |  |  | 		struct nfsd4_sequence		sequence; | 
					
						
							| 
									
										
										
										
											2010-04-19 15:11:28 -04:00
										 |  |  | 		struct nfsd4_reclaim_complete	reclaim_complete; | 
					
						
							| 
									
										
										
										
											2011-07-13 10:50:48 -04:00
										 |  |  | 		struct nfsd4_test_stateid	test_stateid; | 
					
						
							| 
									
										
										
										
											2011-07-13 11:04:21 -04:00
										 |  |  | 		struct nfsd4_free_stateid	free_stateid; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} u; | 
					
						
							|  |  |  | 	struct nfs4_replay *			replay; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-24 12:11:02 -05:00
										 |  |  | bool nfsd4_cache_this_op(struct nfsd4_op *); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct nfsd4_compoundargs { | 
					
						
							|  |  |  | 	/* scratch variables for XDR decode */ | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | 	__be32 *			p; | 
					
						
							|  |  |  | 	__be32 *			end; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct page **			pagelist; | 
					
						
							|  |  |  | 	int				pagelen; | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | 	__be32				tmp[8]; | 
					
						
							|  |  |  | 	__be32 *			tmpp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct tmpbuf { | 
					
						
							|  |  |  | 		struct tmpbuf *next; | 
					
						
							|  |  |  | 		void (*release)(const void *); | 
					
						
							|  |  |  | 		void *buf; | 
					
						
							|  |  |  | 	}				*to_free; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct svc_rqst			*rqstp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32				taglen; | 
					
						
							|  |  |  | 	char *				tag; | 
					
						
							|  |  |  | 	u32				minorversion; | 
					
						
							|  |  |  | 	u32				opcnt; | 
					
						
							|  |  |  | 	struct nfsd4_op			*ops; | 
					
						
							|  |  |  | 	struct nfsd4_op			iops[8]; | 
					
						
							| 
									
										
										
										
											2011-01-24 12:11:02 -05:00
										 |  |  | 	int				cachetype; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfsd4_compoundres { | 
					
						
							|  |  |  | 	/* scratch variables for XDR encode */ | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | 	__be32 *			p; | 
					
						
							|  |  |  | 	__be32 *			end; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct xdr_buf *		xbuf; | 
					
						
							|  |  |  | 	struct svc_rqst *		rqstp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32				taglen; | 
					
						
							|  |  |  | 	char *				tag; | 
					
						
							|  |  |  | 	u32				opcnt; | 
					
						
							| 
									
										
										
										
											2009-03-28 11:30:52 +03:00
										 |  |  | 	__be32 *			tagp; /* tag, opcount encode location */ | 
					
						
							|  |  |  | 	struct nfsd4_compound_state	cstate; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:35 +03:00
										 |  |  | static inline bool nfsd4_is_solo_sequence(struct nfsd4_compoundres *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct nfsd4_compoundargs *args = resp->rqstp->rq_argp; | 
					
						
							| 
									
										
										
										
											2009-08-27 12:07:40 -04:00
										 |  |  | 	return resp->opcnt == 1 && args->ops[0].opnum == OP_SEQUENCE; | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline bool nfsd4_not_cached(struct nfsd4_compoundres *resp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-13 16:39:00 -05:00
										 |  |  | 	return !(resp->cstate.slot->sl_flags & NFSD4_SLOT_CACHETHIS) | 
					
						
							|  |  |  | 		|| nfsd4_is_solo_sequence(resp); | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:35 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-04 18:03:46 -05:00
										 |  |  | static inline bool nfsd4_last_compound_op(struct svc_rqst *rqstp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct nfsd4_compoundres *resp = rqstp->rq_resp; | 
					
						
							|  |  |  | 	struct nfsd4_compoundargs *argp = rqstp->rq_argp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return argp->opcnt == resp->opcnt; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define NFS4_SVC_XDRSIZE		sizeof(struct nfsd4_compoundargs)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							|  |  |  | set_change_info(struct nfsd4_change_info *cinfo, struct svc_fh *fhp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-02 11:14:30 +11:00
										 |  |  | 	BUG_ON(!fhp->fh_pre_saved); | 
					
						
							|  |  |  | 	cinfo->atomic = fhp->fh_post_saved; | 
					
						
							| 
									
										
										
										
											2009-04-16 17:33:25 -04:00
										 |  |  | 	cinfo->change_supported = IS_I_VERSION(fhp->fh_dentry->d_inode); | 
					
						
							| 
									
										
										
										
											2010-12-02 11:14:30 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cinfo->before_change = fhp->fh_pre_change; | 
					
						
							|  |  |  | 	cinfo->after_change = fhp->fh_post_change; | 
					
						
							|  |  |  | 	cinfo->before_ctime_sec = fhp->fh_pre_ctime.tv_sec; | 
					
						
							|  |  |  | 	cinfo->before_ctime_nsec = fhp->fh_pre_ctime.tv_nsec; | 
					
						
							|  |  |  | 	cinfo->after_ctime_sec = fhp->fh_post_attr.ctime.tv_sec; | 
					
						
							|  |  |  | 	cinfo->after_ctime_nsec = fhp->fh_post_attr.ctime.tv_nsec; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | int nfs4svc_encode_voidres(struct svc_rqst *, __be32 *, void *); | 
					
						
							|  |  |  | int nfs4svc_decode_compoundargs(struct svc_rqst *, __be32 *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_compoundargs *); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:58 -07:00
										 |  |  | int nfs4svc_encode_compoundres(struct svc_rqst *, __be32 *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_compoundres *); | 
					
						
							| 
									
										
										
										
											2012-04-25 17:58:50 -04:00
										 |  |  | __be32 nfsd4_check_resp_size(struct nfsd4_compoundres *, u32); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | void nfsd4_encode_operation(struct nfsd4_compoundres *, struct nfsd4_op *); | 
					
						
							|  |  |  | void nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | __be32 nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp, | 
					
						
							| 
									
										
										
										
											2012-12-14 17:57:50 -05:00
										 |  |  | 		       struct dentry *dentry, __be32 **buffer, int countp, | 
					
						
							| 
									
										
										
										
											2007-11-27 11:34:05 -08:00
										 |  |  | 		       u32 *bmval, struct svc_rqst *, int ignore_crossmnt); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_setclientid(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:38 -08:00
										 |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_setclientid *setclid); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_setclientid_confirm(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:38 -08:00
										 |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_setclientid_confirm *setclientid_confirm); | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:15 +03:00
										 |  |  | extern void nfsd4_store_cache_entry(struct nfsd4_compoundres *resp); | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:35 +03:00
										 |  |  | extern __be32 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp, | 
					
						
							|  |  |  | 		struct nfsd4_sequence *seq); | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:58 +03:00
										 |  |  | extern __be32 nfsd4_exchange_id(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2010-04-19 15:12:51 -04:00
										 |  |  | 		struct nfsd4_compound_state *, struct nfsd4_exchange_id *); | 
					
						
							| 
									
										
										
										
											2012-11-01 18:09:48 -04:00
										 |  |  | extern __be32 nfsd4_backchannel_ctl(struct svc_rqst *, struct nfsd4_compound_state *, struct nfsd4_backchannel_ctl *); | 
					
						
							| 
									
										
										
										
											2010-10-04 23:12:59 -04:00
										 |  |  | extern __be32 nfsd4_bind_conn_to_session(struct svc_rqst *, struct nfsd4_compound_state *, struct nfsd4_bind_conn_to_session *); | 
					
						
							| 
									
										
										
										
											2010-04-19 15:12:51 -04:00
										 |  |  | extern __be32 nfsd4_create_session(struct svc_rqst *, | 
					
						
							| 
									
										
										
										
											2009-04-03 08:27:58 +03:00
										 |  |  | 		struct nfsd4_compound_state *, | 
					
						
							|  |  |  | 		struct nfsd4_create_session *); | 
					
						
							|  |  |  | extern __be32 nfsd4_sequence(struct svc_rqst *, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, | 
					
						
							|  |  |  | 		struct nfsd4_sequence *); | 
					
						
							|  |  |  | extern __be32 nfsd4_destroy_session(struct svc_rqst *, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, | 
					
						
							|  |  |  | 		struct nfsd4_destroy_session *); | 
					
						
							| 
									
										
										
										
											2011-10-20 17:51:39 +08:00
										 |  |  | extern __be32 nfsd4_destroy_clientid(struct svc_rqst *, struct nfsd4_compound_state *, struct nfsd4_destroy_clientid *); | 
					
						
							| 
									
										
										
										
											2010-04-19 15:11:28 -04:00
										 |  |  | __be32 nfsd4_reclaim_complete(struct svc_rqst *, struct nfsd4_compound_state *, struct nfsd4_reclaim_complete *); | 
					
						
							| 
									
										
										
										
											2009-04-03 08:28:45 +03:00
										 |  |  | extern __be32 nfsd4_process_open1(struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2012-11-14 18:22:07 +03:00
										 |  |  | 		struct nfsd4_open *open, struct nfsd_net *nn); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_process_open2(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct svc_fh *current_fh, struct nfsd4_open *open); | 
					
						
							| 
									
										
										
										
											2011-10-13 15:12:59 -04:00
										 |  |  | extern void nfsd4_cleanup_open_state(struct nfsd4_open *open, __be32 status); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_open_confirm(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:28 -08:00
										 |  |  | 		struct nfsd4_compound_state *, struct nfsd4_open_confirm *oc); | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | extern __be32 nfsd4_close(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:28 -08:00
										 |  |  | 		struct nfsd4_close *close); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_open_downgrade(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:28 -08:00
										 |  |  | 		struct nfsd4_compound_state *, | 
					
						
							|  |  |  | 		struct nfsd4_open_downgrade *od); | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | extern __be32 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:28 -08:00
										 |  |  | 		struct nfsd4_lock *lock); | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | extern __be32 nfsd4_lockt(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_lockt *lockt); | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | extern __be32 nfsd4_locku(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:28 -08:00
										 |  |  | 		struct nfsd4_locku *locku); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | nfsd4_release_lockowner(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:38 -08:00
										 |  |  | 		struct nfsd4_compound_state *, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		struct nfsd4_release_lockowner *rlockowner); | 
					
						
							| 
									
										
										
										
											2011-07-16 17:15:10 -04:00
										 |  |  | extern int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp); | 
					
						
							| 
									
										
										
										
											2006-10-19 23:28:59 -07:00
										 |  |  | extern __be32 nfsd4_delegreturn(struct svc_rqst *rqstp, | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:27 -08:00
										 |  |  | 		struct nfsd4_compound_state *, struct nfsd4_delegreturn *dr); | 
					
						
							| 
									
										
										
										
											2006-12-13 00:35:38 -08:00
										 |  |  | extern __be32 nfsd4_renew(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 			  struct nfsd4_compound_state *, clientid_t *clid); | 
					
						
							| 
									
										
										
										
											2011-07-13 10:50:48 -04:00
										 |  |  | extern __be32 nfsd4_test_stateid(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, struct nfsd4_test_stateid *test_stateid); | 
					
						
							| 
									
										
										
										
											2011-07-13 11:04:21 -04:00
										 |  |  | extern __be32 nfsd4_free_stateid(struct svc_rqst *rqstp, | 
					
						
							|  |  |  | 		struct nfsd4_compound_state *, struct nfsd4_free_stateid *free_stateid); | 
					
						
							| 
									
										
										
										
											2013-04-01 16:37:12 -04:00
										 |  |  | extern void nfsd4_bump_seqid(struct nfsd4_compound_state *, __be32 nfserr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Local variables: | 
					
						
							|  |  |  |  *  c-basic-offset: 8 | 
					
						
							|  |  |  |  * End: | 
					
						
							|  |  |  |  */ |