xref: /openbmc/linux/fs/nfs/nfs4xdr.c (revision 93b717fd)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  fs/nfs/nfs4xdr.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Client-side XDR for NFSv4.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *  Copyright (c) 2002 The Regents of the University of Michigan.
71da177e4SLinus Torvalds  *  All rights reserved.
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  *  Kendrick Smith <kmsmith@umich.edu>
101da177e4SLinus Torvalds  *  Andy Adamson   <andros@umich.edu>
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  *  Redistribution and use in source and binary forms, with or without
131da177e4SLinus Torvalds  *  modification, are permitted provided that the following conditions
141da177e4SLinus Torvalds  *  are met:
151da177e4SLinus Torvalds  *
161da177e4SLinus Torvalds  *  1. Redistributions of source code must retain the above copyright
171da177e4SLinus Torvalds  *     notice, this list of conditions and the following disclaimer.
181da177e4SLinus Torvalds  *  2. Redistributions in binary form must reproduce the above copyright
191da177e4SLinus Torvalds  *     notice, this list of conditions and the following disclaimer in the
201da177e4SLinus Torvalds  *     documentation and/or other materials provided with the distribution.
211da177e4SLinus Torvalds  *  3. Neither the name of the University nor the names of its
221da177e4SLinus Torvalds  *     contributors may be used to endorse or promote products derived
231da177e4SLinus Torvalds  *     from this software without specific prior written permission.
241da177e4SLinus Torvalds  *
251da177e4SLinus Torvalds  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
261da177e4SLinus Torvalds  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
271da177e4SLinus Torvalds  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
281da177e4SLinus Torvalds  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
291da177e4SLinus Torvalds  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
301da177e4SLinus Torvalds  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
311da177e4SLinus Torvalds  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
321da177e4SLinus Torvalds  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
331da177e4SLinus Torvalds  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
341da177e4SLinus Torvalds  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
351da177e4SLinus Torvalds  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
361da177e4SLinus Torvalds  */
371da177e4SLinus Torvalds 
381da177e4SLinus Torvalds #include <linux/param.h>
391da177e4SLinus Torvalds #include <linux/time.h>
401da177e4SLinus Torvalds #include <linux/mm.h>
411da177e4SLinus Torvalds #include <linux/errno.h>
421da177e4SLinus Torvalds #include <linux/string.h>
431da177e4SLinus Torvalds #include <linux/in.h>
441da177e4SLinus Torvalds #include <linux/pagemap.h>
451da177e4SLinus Torvalds #include <linux/proc_fs.h>
461da177e4SLinus Torvalds #include <linux/kdev_t.h>
47db8ac8baSWeston Andros Adamson #include <linux/module.h>
48db8ac8baSWeston Andros Adamson #include <linux/utsname.h>
491da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h>
502449ea2eSAlexandros Batsakis #include <linux/sunrpc/msg_prot.h>
515a5ea0d4SBryan Schumaker #include <linux/sunrpc/gss_api.h>
521da177e4SLinus Torvalds #include <linux/nfs.h>
531da177e4SLinus Torvalds #include <linux/nfs4.h>
541da177e4SLinus Torvalds #include <linux/nfs_fs.h>
55f092075dSChuck Lever 
564ce79717STrond Myklebust #include "nfs4_fs.h"
574882ef72SAlexandros Batsakis #include "internal.h"
5840c64c26SAnna Schumaker #include "nfs4idmap.h"
5976e697baSTrond Myklebust #include "nfs4session.h"
60b1f69b75SAndy Adamson #include "pnfs.h"
61f092075dSChuck Lever #include "netns.h"
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_XDR
641da177e4SLinus Torvalds 
651da177e4SLinus Torvalds /* Mapping from NFS error code to "errno" error code. */
661da177e4SLinus Torvalds #define errno_NFSERR_IO		EIO
671da177e4SLinus Torvalds 
680a8ea437SDavid Howells static int nfs4_stat_to_errno(int);
691da177e4SLinus Torvalds 
701da177e4SLinus Torvalds /* NFSv4 COMPOUND tags are only wanted for debugging purposes */
711da177e4SLinus Torvalds #ifdef DEBUG
721da177e4SLinus Torvalds #define NFS4_MAXTAGLEN		20
731da177e4SLinus Torvalds #else
741da177e4SLinus Torvalds #define NFS4_MAXTAGLEN		0
751da177e4SLinus Torvalds #endif
761da177e4SLinus Torvalds 
771da177e4SLinus Torvalds /* lock,open owner id:
789f958ab8STrond Myklebust  * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT  >> 2)
791da177e4SLinus Torvalds  */
8095b72eb0STrond Myklebust #define open_owner_id_maxsz	(1 + 2 + 1 + 1 + 2)
81d035c36cSTrond Myklebust #define lock_owner_id_maxsz	(1 + 1 + 4)
829104a55dSTrond Myklebust #define decode_lockowner_maxsz	(1 + XDR_QUADLEN(IDMAP_NAMESZ))
831da177e4SLinus Torvalds #define compound_encode_hdr_maxsz	(3 + (NFS4_MAXTAGLEN >> 2))
841da177e4SLinus Torvalds #define compound_decode_hdr_maxsz	(3 + (NFS4_MAXTAGLEN >> 2))
851da177e4SLinus Torvalds #define op_encode_hdr_maxsz	(1)
861da177e4SLinus Torvalds #define op_decode_hdr_maxsz	(2)
879104a55dSTrond Myklebust #define encode_stateid_maxsz	(XDR_QUADLEN(NFS4_STATEID_SIZE))
889104a55dSTrond Myklebust #define decode_stateid_maxsz	(XDR_QUADLEN(NFS4_STATEID_SIZE))
899104a55dSTrond Myklebust #define encode_verifier_maxsz	(XDR_QUADLEN(NFS4_VERIFIER_SIZE))
909104a55dSTrond Myklebust #define decode_verifier_maxsz	(XDR_QUADLEN(NFS4_VERIFIER_SIZE))
911da177e4SLinus Torvalds #define encode_putfh_maxsz	(op_encode_hdr_maxsz + 1 + \
921da177e4SLinus Torvalds 				(NFS4_FHSIZE >> 2))
931da177e4SLinus Torvalds #define decode_putfh_maxsz	(op_decode_hdr_maxsz)
941da177e4SLinus Torvalds #define encode_putrootfh_maxsz	(op_encode_hdr_maxsz)
951da177e4SLinus Torvalds #define decode_putrootfh_maxsz	(op_decode_hdr_maxsz)
961da177e4SLinus Torvalds #define encode_getfh_maxsz      (op_encode_hdr_maxsz)
971da177e4SLinus Torvalds #define decode_getfh_maxsz      (op_decode_hdr_maxsz + 1 + \
981da177e4SLinus Torvalds 				((3+NFS4_FHSIZE) >> 2))
99e5012d1fSAndy Adamson #define nfs4_fattr_bitmap_maxsz 4
10096928206SJ. Bruce Fields #define encode_getattr_maxsz    (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
1011da177e4SLinus Torvalds #define nfs4_name_maxsz		(1 + ((3 + NFS4_MAXNAMLEN) >> 2))
1021da177e4SLinus Torvalds #define nfs4_path_maxsz		(1 + ((3 + NFS4_MAXPATHLEN) >> 2))
103bd625ba8STrond Myklebust #define nfs4_owner_maxsz	(1 + XDR_QUADLEN(IDMAP_NAMESZ))
104bd625ba8STrond Myklebust #define nfs4_group_maxsz	(1 + XDR_QUADLEN(IDMAP_NAMESZ))
105aa9c2669SDavid Quigley #ifdef CONFIG_NFS_V4_SECURITY_LABEL
106aa9c2669SDavid Quigley /* PI(4 bytes) + LFS(4 bytes) + 1(for null terminator?) + MAXLABELLEN */
107aa9c2669SDavid Quigley #define	nfs4_label_maxsz	(4 + 4 + 1 + XDR_QUADLEN(NFS4_MAXLABELLEN))
108aa9c2669SDavid Quigley #else
109aa9c2669SDavid Quigley #define	nfs4_label_maxsz	0
110aa9c2669SDavid Quigley #endif
11188034c3dSAndy Adamson /* We support only one layout type per file system */
11288034c3dSAndy Adamson #define decode_mdsthreshold_maxsz (1 + 1 + nfs4_fattr_bitmap_maxsz + 1 + 8)
11396928206SJ. Bruce Fields /* This is based on getfattr, which uses the most attributes: */
11496928206SJ. Bruce Fields #define nfs4_fattr_value_maxsz	(1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
11588034c3dSAndy Adamson 				3 + 3 + 3 + nfs4_owner_maxsz + \
116aa9c2669SDavid Quigley 				nfs4_group_maxsz + nfs4_label_maxsz + \
117aa9c2669SDavid Quigley 				 decode_mdsthreshold_maxsz))
11896928206SJ. Bruce Fields #define nfs4_fattr_maxsz	(nfs4_fattr_bitmap_maxsz + \
11996928206SJ. Bruce Fields 				nfs4_fattr_value_maxsz)
12096928206SJ. Bruce Fields #define decode_getattr_maxsz    (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
1219104a55dSTrond Myklebust #define encode_attrs_maxsz	(nfs4_fattr_bitmap_maxsz + \
1229104a55dSTrond Myklebust 				 1 + 2 + 1 + \
1239104a55dSTrond Myklebust 				nfs4_owner_maxsz + \
1249104a55dSTrond Myklebust 				nfs4_group_maxsz + \
125aa9c2669SDavid Quigley 				nfs4_label_maxsz + \
1269104a55dSTrond Myklebust 				4 + 4)
1271da177e4SLinus Torvalds #define encode_savefh_maxsz     (op_encode_hdr_maxsz)
1281da177e4SLinus Torvalds #define decode_savefh_maxsz     (op_decode_hdr_maxsz)
12956ae19f3STrond Myklebust #define encode_restorefh_maxsz  (op_encode_hdr_maxsz)
13056ae19f3STrond Myklebust #define decode_restorefh_maxsz  (op_decode_hdr_maxsz)
1312f42b5d0SFred Isaman #define encode_fsinfo_maxsz	(encode_getattr_maxsz)
132dae100c2SFred Isaman /* The 5 accounts for the PNFS attributes, and assumes that at most three
133dae100c2SFred Isaman  * layout types will be returned.
134dae100c2SFred Isaman  */
135dae100c2SFred Isaman #define decode_fsinfo_maxsz	(op_decode_hdr_maxsz + \
136dae100c2SFred Isaman 				 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
1371da177e4SLinus Torvalds #define encode_renew_maxsz	(op_encode_hdr_maxsz + 3)
1381da177e4SLinus Torvalds #define decode_renew_maxsz	(op_decode_hdr_maxsz)
1391da177e4SLinus Torvalds #define encode_setclientid_maxsz \
1401da177e4SLinus Torvalds 				(op_encode_hdr_maxsz + \
141cc38bac3SChuck Lever 				XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
142b8fb2f59SJeff Layton 				/* client name */ \
143b8fb2f59SJeff Layton 				1 + XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
144cc38bac3SChuck Lever 				1 /* sc_prog */ + \
1456dd3436bSChuck Lever 				1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
1466dd3436bSChuck Lever 				1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
147cc38bac3SChuck Lever 				1) /* sc_cb_ident */
1481da177e4SLinus Torvalds #define decode_setclientid_maxsz \
1491da177e4SLinus Torvalds 				(op_decode_hdr_maxsz + \
1506dd3436bSChuck Lever 				2 /* clientid */ + \
1516dd3436bSChuck Lever 				XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
1526dd3436bSChuck Lever 				1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
1536dd3436bSChuck Lever 				1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
1541da177e4SLinus Torvalds #define encode_setclientid_confirm_maxsz \
1551da177e4SLinus Torvalds 				(op_encode_hdr_maxsz + \
1561da177e4SLinus Torvalds 				3 + (NFS4_VERIFIER_SIZE >> 2))
1571da177e4SLinus Torvalds #define decode_setclientid_confirm_maxsz \
1581da177e4SLinus Torvalds 				(op_decode_hdr_maxsz)
159e6889620STrond Myklebust #define encode_lookup_maxsz	(op_encode_hdr_maxsz + nfs4_name_maxsz)
160e6889620STrond Myklebust #define decode_lookup_maxsz	(op_decode_hdr_maxsz)
1612cebf828STrond Myklebust #define encode_share_access_maxsz \
1622cebf828STrond Myklebust 				(2)
1634882ef72SAlexandros Batsakis #define encode_createmode_maxsz	(1 + encode_attrs_maxsz + encode_verifier_maxsz)
1642cebf828STrond Myklebust #define encode_opentype_maxsz	(1 + encode_createmode_maxsz)
1652cebf828STrond Myklebust #define encode_claim_null_maxsz	(1 + nfs4_name_maxsz)
1662cebf828STrond Myklebust #define encode_open_maxsz	(op_encode_hdr_maxsz + \
1672cebf828STrond Myklebust 				2 + encode_share_access_maxsz + 2 + \
1682cebf828STrond Myklebust 				open_owner_id_maxsz + \
1692cebf828STrond Myklebust 				encode_opentype_maxsz + \
1702cebf828STrond Myklebust 				encode_claim_null_maxsz)
1712cebf828STrond Myklebust #define decode_ace_maxsz	(3 + nfs4_owner_maxsz)
1729104a55dSTrond Myklebust #define decode_delegation_maxsz	(1 + decode_stateid_maxsz + 1 + \
1732cebf828STrond Myklebust 				decode_ace_maxsz)
1742cebf828STrond Myklebust #define decode_change_info_maxsz	(5)
1752cebf828STrond Myklebust #define decode_open_maxsz	(op_decode_hdr_maxsz + \
1769104a55dSTrond Myklebust 				decode_stateid_maxsz + \
1772cebf828STrond Myklebust 				decode_change_info_maxsz + 1 + \
1782cebf828STrond Myklebust 				nfs4_fattr_bitmap_maxsz + \
1792cebf828STrond Myklebust 				decode_delegation_maxsz)
1809104a55dSTrond Myklebust #define encode_open_confirm_maxsz \
1819104a55dSTrond Myklebust 				(op_encode_hdr_maxsz + \
1829104a55dSTrond Myklebust 				 encode_stateid_maxsz + 1)
1839104a55dSTrond Myklebust #define decode_open_confirm_maxsz \
1849104a55dSTrond Myklebust 				(op_decode_hdr_maxsz + \
1859104a55dSTrond Myklebust 				 decode_stateid_maxsz)
1869104a55dSTrond Myklebust #define encode_open_downgrade_maxsz \
1879104a55dSTrond Myklebust 				(op_encode_hdr_maxsz + \
1889104a55dSTrond Myklebust 				 encode_stateid_maxsz + 1 + \
1899104a55dSTrond Myklebust 				 encode_share_access_maxsz)
1909104a55dSTrond Myklebust #define decode_open_downgrade_maxsz \
1919104a55dSTrond Myklebust 				(op_decode_hdr_maxsz + \
1929104a55dSTrond Myklebust 				 decode_stateid_maxsz)
1939104a55dSTrond Myklebust #define encode_close_maxsz	(op_encode_hdr_maxsz + \
1949104a55dSTrond Myklebust 				 1 + encode_stateid_maxsz)
1959104a55dSTrond Myklebust #define decode_close_maxsz	(op_decode_hdr_maxsz + \
1969104a55dSTrond Myklebust 				 decode_stateid_maxsz)
1979104a55dSTrond Myklebust #define encode_setattr_maxsz	(op_encode_hdr_maxsz + \
1989104a55dSTrond Myklebust 				 encode_stateid_maxsz + \
1999104a55dSTrond Myklebust 				 encode_attrs_maxsz)
2009104a55dSTrond Myklebust #define decode_setattr_maxsz	(op_decode_hdr_maxsz + \
2019104a55dSTrond Myklebust 				 nfs4_fattr_bitmap_maxsz)
2029104a55dSTrond Myklebust #define encode_read_maxsz	(op_encode_hdr_maxsz + \
2039104a55dSTrond Myklebust 				 encode_stateid_maxsz + 3)
2049104a55dSTrond Myklebust #define decode_read_maxsz	(op_decode_hdr_maxsz + 2)
2059104a55dSTrond Myklebust #define encode_readdir_maxsz	(op_encode_hdr_maxsz + \
206aa9c2669SDavid Quigley 				 2 + encode_verifier_maxsz + 5 + \
207aa9c2669SDavid Quigley 				nfs4_label_maxsz)
2089104a55dSTrond Myklebust #define decode_readdir_maxsz	(op_decode_hdr_maxsz + \
209a7697f6fSChuck Lever 				 decode_verifier_maxsz)
2109104a55dSTrond Myklebust #define encode_readlink_maxsz	(op_encode_hdr_maxsz)
2119104a55dSTrond Myklebust #define decode_readlink_maxsz	(op_decode_hdr_maxsz + 1)
2129104a55dSTrond Myklebust #define encode_write_maxsz	(op_encode_hdr_maxsz + \
2139104a55dSTrond Myklebust 				 encode_stateid_maxsz + 4)
2149104a55dSTrond Myklebust #define decode_write_maxsz	(op_decode_hdr_maxsz + \
2159104a55dSTrond Myklebust 				 2 + decode_verifier_maxsz)
2169104a55dSTrond Myklebust #define encode_commit_maxsz	(op_encode_hdr_maxsz + 3)
2179104a55dSTrond Myklebust #define decode_commit_maxsz	(op_decode_hdr_maxsz + \
2189104a55dSTrond Myklebust 				 decode_verifier_maxsz)
2191da177e4SLinus Torvalds #define encode_remove_maxsz	(op_encode_hdr_maxsz + \
2201da177e4SLinus Torvalds 				nfs4_name_maxsz)
2216ce18391SBenny Halevy #define decode_remove_maxsz	(op_decode_hdr_maxsz + \
2226ce18391SBenny Halevy 				 decode_change_info_maxsz)
2231da177e4SLinus Torvalds #define encode_rename_maxsz	(op_encode_hdr_maxsz + \
2241da177e4SLinus Torvalds 				2 * nfs4_name_maxsz)
2256ce18391SBenny Halevy #define decode_rename_maxsz	(op_decode_hdr_maxsz + \
2266ce18391SBenny Halevy 				 decode_change_info_maxsz + \
2276ce18391SBenny Halevy 				 decode_change_info_maxsz)
2281da177e4SLinus Torvalds #define encode_link_maxsz	(op_encode_hdr_maxsz + \
2291da177e4SLinus Torvalds 				nfs4_name_maxsz)
2306ce18391SBenny Halevy #define decode_link_maxsz	(op_decode_hdr_maxsz + decode_change_info_maxsz)
231daccbdedSTrond Myklebust #define encode_lockowner_maxsz	(7)
2329104a55dSTrond Myklebust #define encode_lock_maxsz	(op_encode_hdr_maxsz + \
2339104a55dSTrond Myklebust 				 7 + \
234daccbdedSTrond Myklebust 				 1 + encode_stateid_maxsz + 1 + \
235daccbdedSTrond Myklebust 				 encode_lockowner_maxsz)
2369104a55dSTrond Myklebust #define decode_lock_denied_maxsz \
2379104a55dSTrond Myklebust 				(8 + decode_lockowner_maxsz)
2389104a55dSTrond Myklebust #define decode_lock_maxsz	(op_decode_hdr_maxsz + \
2399104a55dSTrond Myklebust 				 decode_lock_denied_maxsz)
240daccbdedSTrond Myklebust #define encode_lockt_maxsz	(op_encode_hdr_maxsz + 5 + \
241daccbdedSTrond Myklebust 				encode_lockowner_maxsz)
2429104a55dSTrond Myklebust #define decode_lockt_maxsz	(op_decode_hdr_maxsz + \
2439104a55dSTrond Myklebust 				 decode_lock_denied_maxsz)
2449104a55dSTrond Myklebust #define encode_locku_maxsz	(op_encode_hdr_maxsz + 3 + \
2459104a55dSTrond Myklebust 				 encode_stateid_maxsz + \
2469104a55dSTrond Myklebust 				 4)
2479104a55dSTrond Myklebust #define decode_locku_maxsz	(op_decode_hdr_maxsz + \
2489104a55dSTrond Myklebust 				 decode_stateid_maxsz)
249d3c7b7ccSTrond Myklebust #define encode_release_lockowner_maxsz \
250d3c7b7ccSTrond Myklebust 				(op_encode_hdr_maxsz + \
251d3c7b7ccSTrond Myklebust 				 encode_lockowner_maxsz)
252d3c7b7ccSTrond Myklebust #define decode_release_lockowner_maxsz \
253d3c7b7ccSTrond Myklebust 				(op_decode_hdr_maxsz)
2549104a55dSTrond Myklebust #define encode_access_maxsz	(op_encode_hdr_maxsz + 1)
2559104a55dSTrond Myklebust #define decode_access_maxsz	(op_decode_hdr_maxsz + 2)
2561da177e4SLinus Torvalds #define encode_symlink_maxsz	(op_encode_hdr_maxsz + \
2571da177e4SLinus Torvalds 				1 + nfs4_name_maxsz + \
25894a6d753SChuck Lever 				1 + \
25996928206SJ. Bruce Fields 				nfs4_fattr_maxsz)
2601da177e4SLinus Torvalds #define decode_symlink_maxsz	(op_decode_hdr_maxsz + 8)
2611da177e4SLinus Torvalds #define encode_create_maxsz	(op_encode_hdr_maxsz + \
2629104a55dSTrond Myklebust 				1 + 2 + nfs4_name_maxsz + \
2639104a55dSTrond Myklebust 				encode_attrs_maxsz)
2642cebf828STrond Myklebust #define decode_create_maxsz	(op_decode_hdr_maxsz + \
2652cebf828STrond Myklebust 				decode_change_info_maxsz + \
2662cebf828STrond Myklebust 				nfs4_fattr_bitmap_maxsz)
2679104a55dSTrond Myklebust #define encode_statfs_maxsz	(encode_getattr_maxsz)
2689104a55dSTrond Myklebust #define decode_statfs_maxsz	(decode_getattr_maxsz)
2691da177e4SLinus Torvalds #define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
2701da177e4SLinus Torvalds #define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
2719104a55dSTrond Myklebust #define encode_getacl_maxsz	(encode_getattr_maxsz)
2729104a55dSTrond Myklebust #define decode_getacl_maxsz	(op_decode_hdr_maxsz + \
2739104a55dSTrond Myklebust 				 nfs4_fattr_bitmap_maxsz + 1)
2749104a55dSTrond Myklebust #define encode_setacl_maxsz	(op_encode_hdr_maxsz + \
2759104a55dSTrond Myklebust 				 encode_stateid_maxsz + 3)
2769104a55dSTrond Myklebust #define decode_setacl_maxsz	(decode_setattr_maxsz)
277e6889620STrond Myklebust #define encode_fs_locations_maxsz \
278e6889620STrond Myklebust 				(encode_getattr_maxsz)
279e6889620STrond Myklebust #define decode_fs_locations_maxsz \
280e6889620STrond Myklebust 				(0)
2815a5ea0d4SBryan Schumaker #define encode_secinfo_maxsz	(op_encode_hdr_maxsz + nfs4_name_maxsz)
2821650add2SBryan Schumaker #define decode_secinfo_maxsz	(op_decode_hdr_maxsz + 1 + ((NFS_MAX_SECFLAVORS * (16 + GSS_OID_MAX_LEN)) / 4))
2839b7b9fccSAndy Adamson 
2849b7b9fccSAndy Adamson #if defined(CONFIG_NFS_V4_1)
285fc931582SAndy Adamson #define NFS4_MAX_MACHINE_NAME_LEN (64)
286d751f748SJim Rees #define IMPL_NAME_LIMIT (sizeof(utsname()->sysname) + sizeof(utsname()->release) + \
287d751f748SJim Rees 			 sizeof(utsname()->version) + sizeof(utsname()->machine) + 8)
288fc931582SAndy Adamson 
28999fe60d0SBenny Halevy #define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
29099fe60d0SBenny Halevy 				encode_verifier_maxsz + \
29199fe60d0SBenny Halevy 				1 /* co_ownerid.len */ + \
292b8fb2f59SJeff Layton 				/* eia_clientowner */ \
293b8fb2f59SJeff Layton 				1 + XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
29499fe60d0SBenny Halevy 				1 /* flags */ + \
29599fe60d0SBenny Halevy 				1 /* spa_how */ + \
2962031cd1aSWeston Andros Adamson 				/* max is SP4_MACH_CRED (for now) */ + \
2972031cd1aSWeston Andros Adamson 				1 + NFS4_OP_MAP_NUM_WORDS + \
2982031cd1aSWeston Andros Adamson 				1 + NFS4_OP_MAP_NUM_WORDS + \
299db8ac8baSWeston Andros Adamson 				1 /* implementation id array of size 1 */ + \
300db8ac8baSWeston Andros Adamson 				1 /* nii_domain */ + \
301db8ac8baSWeston Andros Adamson 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
302db8ac8baSWeston Andros Adamson 				1 /* nii_name */ + \
303d751f748SJim Rees 				XDR_QUADLEN(IMPL_NAME_LIMIT) + \
304db8ac8baSWeston Andros Adamson 				3 /* nii_date */)
30599fe60d0SBenny Halevy #define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
30699fe60d0SBenny Halevy 				2 /* eir_clientid */ + \
30799fe60d0SBenny Halevy 				1 /* eir_sequenceid */ + \
30899fe60d0SBenny Halevy 				1 /* eir_flags */ + \
30999fe60d0SBenny Halevy 				1 /* spr_how */ + \
3102031cd1aSWeston Andros Adamson 				  /* max is SP4_MACH_CRED (for now) */ + \
3112031cd1aSWeston Andros Adamson 				1 + NFS4_OP_MAP_NUM_WORDS + \
3122031cd1aSWeston Andros Adamson 				1 + NFS4_OP_MAP_NUM_WORDS + \
31399fe60d0SBenny Halevy 				2 /* eir_server_owner.so_minor_id */ + \
31499fe60d0SBenny Halevy 				/* eir_server_owner.so_major_id<> */ \
31599fe60d0SBenny Halevy 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
31699fe60d0SBenny Halevy 				/* eir_server_scope<> */ \
31799fe60d0SBenny Halevy 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
31899fe60d0SBenny Halevy 				1 /* eir_server_impl_id array length */ + \
3197d2ed9acSWeston Andros Adamson 				1 /* nii_domain */ + \
3207d2ed9acSWeston Andros Adamson 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
3217d2ed9acSWeston Andros Adamson 				1 /* nii_name */ + \
3227d2ed9acSWeston Andros Adamson 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
3237d2ed9acSWeston Andros Adamson 				3 /* nii_date */)
324fc931582SAndy Adamson #define encode_channel_attrs_maxsz  (6 + 1 /* ca_rdma_ird.len (0) */)
325fc931582SAndy Adamson #define decode_channel_attrs_maxsz  (6 + \
326fc931582SAndy Adamson 				     1 /* ca_rdma_ird.len */ + \
327fc931582SAndy Adamson 				     1 /* ca_rdma_ird */)
328fc931582SAndy Adamson #define encode_create_session_maxsz  (op_encode_hdr_maxsz + \
329fc931582SAndy Adamson 				     2 /* csa_clientid */ + \
330fc931582SAndy Adamson 				     1 /* csa_sequence */ + \
331fc931582SAndy Adamson 				     1 /* csa_flags */ + \
332fc931582SAndy Adamson 				     encode_channel_attrs_maxsz + \
333fc931582SAndy Adamson 				     encode_channel_attrs_maxsz + \
334fc931582SAndy Adamson 				     1 /* csa_cb_program */ + \
335fc931582SAndy Adamson 				     1 /* csa_sec_parms.len (1) */ + \
336fc931582SAndy Adamson 				     1 /* cb_secflavor (AUTH_SYS) */ + \
337fc931582SAndy Adamson 				     1 /* stamp */ + \
338fc931582SAndy Adamson 				     1 /* machinename.len */ + \
339fc931582SAndy Adamson 				     XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
340fc931582SAndy Adamson 				     1 /* uid */ + \
341fc931582SAndy Adamson 				     1 /* gid */ + \
342fc931582SAndy Adamson 				     1 /* gids.len (0) */)
343fc931582SAndy Adamson #define decode_create_session_maxsz  (op_decode_hdr_maxsz +	\
344fc931582SAndy Adamson 				     XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
345fc931582SAndy Adamson 				     1 /* csr_sequence */ + \
346fc931582SAndy Adamson 				     1 /* csr_flags */ + \
347fc931582SAndy Adamson 				     decode_channel_attrs_maxsz + \
348fc931582SAndy Adamson 				     decode_channel_attrs_maxsz)
3497c44f1aeSWeston Andros Adamson #define encode_bind_conn_to_session_maxsz  (op_encode_hdr_maxsz + \
3507c44f1aeSWeston Andros Adamson 				     /* bctsa_sessid */ \
3517c44f1aeSWeston Andros Adamson 				     XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3527c44f1aeSWeston Andros Adamson 				     1 /* bctsa_dir */ + \
3537c44f1aeSWeston Andros Adamson 				     1 /* bctsa_use_conn_in_rdma_mode */)
3547c44f1aeSWeston Andros Adamson #define decode_bind_conn_to_session_maxsz  (op_decode_hdr_maxsz +	\
3557c44f1aeSWeston Andros Adamson 				     /* bctsr_sessid */ \
3567c44f1aeSWeston Andros Adamson 				     XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
3577c44f1aeSWeston Andros Adamson 				     1 /* bctsr_dir */ + \
3587c44f1aeSWeston Andros Adamson 				     1 /* bctsr_use_conn_in_rdma_mode */)
3590f3e66c6SAndy Adamson #define encode_destroy_session_maxsz    (op_encode_hdr_maxsz + 4)
3600f3e66c6SAndy Adamson #define decode_destroy_session_maxsz    (op_decode_hdr_maxsz)
36166245539STrond Myklebust #define encode_destroy_clientid_maxsz   (op_encode_hdr_maxsz + 2)
36266245539STrond Myklebust #define decode_destroy_clientid_maxsz   (op_decode_hdr_maxsz)
363fc01cea9SAndy Adamson #define encode_sequence_maxsz	(op_encode_hdr_maxsz + \
364fc01cea9SAndy Adamson 				XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
365fc01cea9SAndy Adamson #define decode_sequence_maxsz	(op_decode_hdr_maxsz + \
366fc01cea9SAndy Adamson 				XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
36718019753SRicardo Labiaga #define encode_reclaim_complete_maxsz	(op_encode_hdr_maxsz + 4)
36818019753SRicardo Labiaga #define decode_reclaim_complete_maxsz	(op_decode_hdr_maxsz + 4)
36984c9dee3SChristoph Hellwig #define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + \
37084c9dee3SChristoph Hellwig 				XDR_QUADLEN(NFS4_DEVICEID4_SIZE) + \
37184c9dee3SChristoph Hellwig 				1 /* layout type */ + \
37284c9dee3SChristoph Hellwig 				1 /* maxcount */ + \
37384c9dee3SChristoph Hellwig 				1 /* bitmap size */ + \
37484c9dee3SChristoph Hellwig 				1 /* notification bitmap length */ + \
37584c9dee3SChristoph Hellwig 				1 /* notification bitmap, word 0 */)
376b1f69b75SAndy Adamson #define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
377b1f69b75SAndy Adamson 				1 /* layout type */ + \
378b1f69b75SAndy Adamson 				1 /* opaque devaddr4 length */ + \
379b1f69b75SAndy Adamson 				  /* devaddr4 payload is read into page */ \
380b1f69b75SAndy Adamson 				1 /* notification bitmap length */ + \
38184c9dee3SChristoph Hellwig 				1 /* notification bitmap, word 0 */)
382b1f69b75SAndy Adamson #define encode_layoutget_maxsz	(op_encode_hdr_maxsz + 10 + \
383b1f69b75SAndy Adamson 				encode_stateid_maxsz)
384b1f69b75SAndy Adamson #define decode_layoutget_maxsz	(op_decode_hdr_maxsz + 8 + \
385b1f69b75SAndy Adamson 				decode_stateid_maxsz + \
386b1f69b75SAndy Adamson 				XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
387863a3c6cSAndy Adamson #define encode_layoutcommit_maxsz (op_encode_hdr_maxsz +          \
388863a3c6cSAndy Adamson 				2 /* offset */ + \
389863a3c6cSAndy Adamson 				2 /* length */ + \
390863a3c6cSAndy Adamson 				1 /* reclaim */ + \
391863a3c6cSAndy Adamson 				encode_stateid_maxsz + \
392863a3c6cSAndy Adamson 				1 /* new offset (true) */ + \
393863a3c6cSAndy Adamson 				2 /* last byte written */ + \
394863a3c6cSAndy Adamson 				1 /* nt_timechanged (false) */ + \
395863a3c6cSAndy Adamson 				1 /* layoutupdate4 layout type */ + \
3965f919c9fSChristoph Hellwig 				1 /* layoutupdate4 opaqueue len */)
3975f919c9fSChristoph Hellwig 				  /* the actual content of layoutupdate4 should
3985f919c9fSChristoph Hellwig 				     be allocated by drivers and spliced in
3995f919c9fSChristoph Hellwig 				     using xdr_write_pages */
400863a3c6cSAndy Adamson #define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
401cbe82603SBenny Halevy #define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
402cbe82603SBenny Halevy 				encode_stateid_maxsz + \
4036669cb8bSTrond Myklebust 				1 + \
4046669cb8bSTrond Myklebust 				XDR_QUADLEN(NFS4_OPAQUE_LIMIT))
405cbe82603SBenny Halevy #define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
406cbe82603SBenny Halevy 				1 + decode_stateid_maxsz)
407fca78d6dSBryan Schumaker #define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
408fca78d6dSBryan Schumaker #define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
4097d974794SBryan Schumaker #define encode_test_stateid_maxsz	(op_encode_hdr_maxsz + 2 + \
4107d974794SBryan Schumaker 					 XDR_QUADLEN(NFS4_STATEID_SIZE))
4117d974794SBryan Schumaker #define decode_test_stateid_maxsz	(op_decode_hdr_maxsz + 2 + 1)
4129aeda35fSBryan Schumaker #define encode_free_stateid_maxsz	(op_encode_hdr_maxsz + 1 + \
4139aeda35fSBryan Schumaker 					 XDR_QUADLEN(NFS4_STATEID_SIZE))
4149f79fb48SAndy Adamson #define decode_free_stateid_maxsz	(op_decode_hdr_maxsz)
4159b7b9fccSAndy Adamson #else /* CONFIG_NFS_V4_1 */
4169b7b9fccSAndy Adamson #define encode_sequence_maxsz	0
4179b7b9fccSAndy Adamson #define decode_sequence_maxsz	0
4189b7b9fccSAndy Adamson #endif /* CONFIG_NFS_V4_1 */
4199b7b9fccSAndy Adamson 
4201da177e4SLinus Torvalds #define NFS4_enc_compound_sz	(1024)  /* XXX: large enough? */
4211da177e4SLinus Torvalds #define NFS4_dec_compound_sz	(1024)  /* XXX: large enough? */
4221da177e4SLinus Torvalds #define NFS4_enc_read_sz	(compound_encode_hdr_maxsz + \
4239b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4241da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4259104a55dSTrond Myklebust 				encode_read_maxsz)
4261da177e4SLinus Torvalds #define NFS4_dec_read_sz	(compound_decode_hdr_maxsz + \
4279b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4281da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4299104a55dSTrond Myklebust 				decode_read_maxsz)
4301da177e4SLinus Torvalds #define NFS4_enc_readlink_sz	(compound_encode_hdr_maxsz + \
4319b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4321da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4339104a55dSTrond Myklebust 				encode_readlink_maxsz)
4341da177e4SLinus Torvalds #define NFS4_dec_readlink_sz	(compound_decode_hdr_maxsz + \
4359b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4361da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4379104a55dSTrond Myklebust 				decode_readlink_maxsz)
4381da177e4SLinus Torvalds #define NFS4_enc_readdir_sz	(compound_encode_hdr_maxsz + \
4399b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4401da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4419104a55dSTrond Myklebust 				encode_readdir_maxsz)
4421da177e4SLinus Torvalds #define NFS4_dec_readdir_sz	(compound_decode_hdr_maxsz + \
4439b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4441da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4459104a55dSTrond Myklebust 				decode_readdir_maxsz)
4461da177e4SLinus Torvalds #define NFS4_enc_write_sz	(compound_encode_hdr_maxsz + \
4479b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4481da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4499104a55dSTrond Myklebust 				encode_write_maxsz + \
4504f9838c7STrond Myklebust 				encode_getattr_maxsz)
4511da177e4SLinus Torvalds #define NFS4_dec_write_sz	(compound_decode_hdr_maxsz + \
4529b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4531da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4549104a55dSTrond Myklebust 				decode_write_maxsz + \
4554f9838c7STrond Myklebust 				decode_getattr_maxsz)
4561da177e4SLinus Torvalds #define NFS4_enc_commit_sz	(compound_encode_hdr_maxsz + \
4579b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4581da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4598582715eSTrond Myklebust 				encode_commit_maxsz)
4601da177e4SLinus Torvalds #define NFS4_dec_commit_sz	(compound_decode_hdr_maxsz + \
4619b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4621da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4638582715eSTrond Myklebust 				decode_commit_maxsz)
4641da177e4SLinus Torvalds #define NFS4_enc_open_sz        (compound_encode_hdr_maxsz + \
4659b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
4661da177e4SLinus Torvalds 				encode_putfh_maxsz + \
4672cebf828STrond Myklebust 				encode_open_maxsz + \
4686168f62cSWeston Andros Adamson 				encode_access_maxsz + \
4692cebf828STrond Myklebust 				encode_getfh_maxsz + \
4702cebf828STrond Myklebust 				encode_getattr_maxsz)
4711da177e4SLinus Torvalds #define NFS4_dec_open_sz        (compound_decode_hdr_maxsz + \
4729b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
4731da177e4SLinus Torvalds 				decode_putfh_maxsz + \
4742cebf828STrond Myklebust 				decode_open_maxsz + \
4756168f62cSWeston Andros Adamson 				decode_access_maxsz + \
4762cebf828STrond Myklebust 				decode_getfh_maxsz + \
4772cebf828STrond Myklebust 				decode_getattr_maxsz)
4781da177e4SLinus Torvalds #define NFS4_enc_open_confirm_sz \
4791da177e4SLinus Torvalds 				(compound_encode_hdr_maxsz + \
4801da177e4SLinus Torvalds 				 encode_putfh_maxsz + \
4819104a55dSTrond Myklebust 				 encode_open_confirm_maxsz)
4829104a55dSTrond Myklebust #define NFS4_dec_open_confirm_sz \
4839104a55dSTrond Myklebust 				(compound_decode_hdr_maxsz + \
4841da177e4SLinus Torvalds 				 decode_putfh_maxsz + \
4859104a55dSTrond Myklebust 				 decode_open_confirm_maxsz)
4861da177e4SLinus Torvalds #define NFS4_enc_open_noattr_sz	(compound_encode_hdr_maxsz + \
4879b7b9fccSAndy Adamson 					encode_sequence_maxsz + \
4881da177e4SLinus Torvalds 					encode_putfh_maxsz + \
4892cebf828STrond Myklebust 					encode_open_maxsz + \
4906168f62cSWeston Andros Adamson 					encode_access_maxsz + \
4912cebf828STrond Myklebust 					encode_getattr_maxsz)
4921da177e4SLinus Torvalds #define NFS4_dec_open_noattr_sz	(compound_decode_hdr_maxsz + \
4939b7b9fccSAndy Adamson 					decode_sequence_maxsz + \
4941da177e4SLinus Torvalds 					decode_putfh_maxsz + \
4952cebf828STrond Myklebust 					decode_open_maxsz + \
4966168f62cSWeston Andros Adamson 					decode_access_maxsz + \
4972cebf828STrond Myklebust 					decode_getattr_maxsz)
4981da177e4SLinus Torvalds #define NFS4_enc_open_downgrade_sz \
4991da177e4SLinus Torvalds 				(compound_encode_hdr_maxsz + \
5009b7b9fccSAndy Adamson 				 encode_sequence_maxsz + \
5011da177e4SLinus Torvalds 				 encode_putfh_maxsz + \
5029104a55dSTrond Myklebust 				 encode_open_downgrade_maxsz + \
503516a6af6STrond Myklebust 				 encode_getattr_maxsz)
5041da177e4SLinus Torvalds #define NFS4_dec_open_downgrade_sz \
5051da177e4SLinus Torvalds 				(compound_decode_hdr_maxsz + \
5069b7b9fccSAndy Adamson 				 decode_sequence_maxsz + \
5071da177e4SLinus Torvalds 				 decode_putfh_maxsz + \
5089104a55dSTrond Myklebust 				 decode_open_downgrade_maxsz + \
509516a6af6STrond Myklebust 				 decode_getattr_maxsz)
5101da177e4SLinus Torvalds #define NFS4_enc_close_sz	(compound_encode_hdr_maxsz + \
5119b7b9fccSAndy Adamson 				 encode_sequence_maxsz + \
5121da177e4SLinus Torvalds 				 encode_putfh_maxsz + \
5139104a55dSTrond Myklebust 				 encode_close_maxsz + \
514516a6af6STrond Myklebust 				 encode_getattr_maxsz)
5151da177e4SLinus Torvalds #define NFS4_dec_close_sz	(compound_decode_hdr_maxsz + \
5169b7b9fccSAndy Adamson 				 decode_sequence_maxsz + \
5171da177e4SLinus Torvalds 				 decode_putfh_maxsz + \
5189104a55dSTrond Myklebust 				 decode_close_maxsz + \
519516a6af6STrond Myklebust 				 decode_getattr_maxsz)
5201da177e4SLinus Torvalds #define NFS4_enc_setattr_sz	(compound_encode_hdr_maxsz + \
5219b7b9fccSAndy Adamson 				 encode_sequence_maxsz + \
5221da177e4SLinus Torvalds 				 encode_putfh_maxsz + \
5239104a55dSTrond Myklebust 				 encode_setattr_maxsz + \
5241da177e4SLinus Torvalds 				 encode_getattr_maxsz)
5251da177e4SLinus Torvalds #define NFS4_dec_setattr_sz	(compound_decode_hdr_maxsz + \
5269b7b9fccSAndy Adamson 				 decode_sequence_maxsz + \
5271da177e4SLinus Torvalds 				 decode_putfh_maxsz + \
5289104a55dSTrond Myklebust 				 decode_setattr_maxsz + \
5299104a55dSTrond Myklebust 				 decode_getattr_maxsz)
5301da177e4SLinus Torvalds #define NFS4_enc_fsinfo_sz	(compound_encode_hdr_maxsz + \
5319b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5321da177e4SLinus Torvalds 				encode_putfh_maxsz + \
5331da177e4SLinus Torvalds 				encode_fsinfo_maxsz)
5341da177e4SLinus Torvalds #define NFS4_dec_fsinfo_sz	(compound_decode_hdr_maxsz + \
5359b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
5361da177e4SLinus Torvalds 				decode_putfh_maxsz + \
5371da177e4SLinus Torvalds 				decode_fsinfo_maxsz)
5381da177e4SLinus Torvalds #define NFS4_enc_renew_sz	(compound_encode_hdr_maxsz + \
5391da177e4SLinus Torvalds 				encode_renew_maxsz)
5401da177e4SLinus Torvalds #define NFS4_dec_renew_sz	(compound_decode_hdr_maxsz + \
5411da177e4SLinus Torvalds 				decode_renew_maxsz)
5421da177e4SLinus Torvalds #define NFS4_enc_setclientid_sz	(compound_encode_hdr_maxsz + \
5431da177e4SLinus Torvalds 				encode_setclientid_maxsz)
5441da177e4SLinus Torvalds #define NFS4_dec_setclientid_sz	(compound_decode_hdr_maxsz + \
5451da177e4SLinus Torvalds 				decode_setclientid_maxsz)
5461da177e4SLinus Torvalds #define NFS4_enc_setclientid_confirm_sz \
5471da177e4SLinus Torvalds 				(compound_encode_hdr_maxsz + \
54883ca7f5aSChuck Lever 				encode_setclientid_confirm_maxsz)
5491da177e4SLinus Torvalds #define NFS4_dec_setclientid_confirm_sz \
5501da177e4SLinus Torvalds 				(compound_decode_hdr_maxsz + \
55183ca7f5aSChuck Lever 				decode_setclientid_confirm_maxsz)
5521da177e4SLinus Torvalds #define NFS4_enc_lock_sz        (compound_encode_hdr_maxsz + \
5539b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5541da177e4SLinus Torvalds 				encode_putfh_maxsz + \
5559104a55dSTrond Myklebust 				encode_lock_maxsz)
5561da177e4SLinus Torvalds #define NFS4_dec_lock_sz        (compound_decode_hdr_maxsz + \
5579b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
5581da177e4SLinus Torvalds 				decode_putfh_maxsz + \
5599104a55dSTrond Myklebust 				decode_lock_maxsz)
5601da177e4SLinus Torvalds #define NFS4_enc_lockt_sz       (compound_encode_hdr_maxsz + \
5619b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5621da177e4SLinus Torvalds 				encode_putfh_maxsz + \
5639104a55dSTrond Myklebust 				encode_lockt_maxsz)
5649104a55dSTrond Myklebust #define NFS4_dec_lockt_sz       (compound_decode_hdr_maxsz + \
5659b7b9fccSAndy Adamson 				 decode_sequence_maxsz + \
5669104a55dSTrond Myklebust 				 decode_putfh_maxsz + \
5679104a55dSTrond Myklebust 				 decode_lockt_maxsz)
5681da177e4SLinus Torvalds #define NFS4_enc_locku_sz       (compound_encode_hdr_maxsz + \
5699b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5701da177e4SLinus Torvalds 				encode_putfh_maxsz + \
5719104a55dSTrond Myklebust 				encode_locku_maxsz)
5721da177e4SLinus Torvalds #define NFS4_dec_locku_sz       (compound_decode_hdr_maxsz + \
5739b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
5741da177e4SLinus Torvalds 				decode_putfh_maxsz + \
5759104a55dSTrond Myklebust 				decode_locku_maxsz)
576d3c7b7ccSTrond Myklebust #define NFS4_enc_release_lockowner_sz \
577d3c7b7ccSTrond Myklebust 				(compound_encode_hdr_maxsz + \
578d3c7b7ccSTrond Myklebust 				 encode_lockowner_maxsz)
579d3c7b7ccSTrond Myklebust #define NFS4_dec_release_lockowner_sz \
580d3c7b7ccSTrond Myklebust 				(compound_decode_hdr_maxsz + \
581d3c7b7ccSTrond Myklebust 				 decode_lockowner_maxsz)
5821da177e4SLinus Torvalds #define NFS4_enc_access_sz	(compound_encode_hdr_maxsz + \
5839b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5841da177e4SLinus Torvalds 				encode_putfh_maxsz + \
58576b32999STrond Myklebust 				encode_access_maxsz + \
58676b32999STrond Myklebust 				encode_getattr_maxsz)
5871da177e4SLinus Torvalds #define NFS4_dec_access_sz	(compound_decode_hdr_maxsz + \
5889b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
5891da177e4SLinus Torvalds 				decode_putfh_maxsz + \
59076b32999STrond Myklebust 				decode_access_maxsz + \
59176b32999STrond Myklebust 				decode_getattr_maxsz)
5921da177e4SLinus Torvalds #define NFS4_enc_getattr_sz	(compound_encode_hdr_maxsz + \
5939b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
5941da177e4SLinus Torvalds 				encode_putfh_maxsz + \
59544c99933SChuck Lever 				encode_getattr_maxsz + \
59644c99933SChuck Lever 				encode_renew_maxsz)
5971da177e4SLinus Torvalds #define NFS4_dec_getattr_sz	(compound_decode_hdr_maxsz + \
5989b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
5991da177e4SLinus Torvalds 				decode_putfh_maxsz + \
60044c99933SChuck Lever 				decode_getattr_maxsz + \
60144c99933SChuck Lever 				decode_renew_maxsz)
6021da177e4SLinus Torvalds #define NFS4_enc_lookup_sz	(compound_encode_hdr_maxsz + \
6039b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6041da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6051da177e4SLinus Torvalds 				encode_lookup_maxsz + \
6061da177e4SLinus Torvalds 				encode_getattr_maxsz + \
6071da177e4SLinus Torvalds 				encode_getfh_maxsz)
6081da177e4SLinus Torvalds #define NFS4_dec_lookup_sz	(compound_decode_hdr_maxsz + \
6099b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6101da177e4SLinus Torvalds 				decode_putfh_maxsz + \
611e6889620STrond Myklebust 				decode_lookup_maxsz + \
6121da177e4SLinus Torvalds 				decode_getattr_maxsz + \
6131da177e4SLinus Torvalds 				decode_getfh_maxsz)
6141da177e4SLinus Torvalds #define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
6159b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6161da177e4SLinus Torvalds 				encode_putrootfh_maxsz + \
6171da177e4SLinus Torvalds 				encode_getattr_maxsz + \
6181da177e4SLinus Torvalds 				encode_getfh_maxsz)
6191da177e4SLinus Torvalds #define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
6209b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6211da177e4SLinus Torvalds 				decode_putrootfh_maxsz + \
6221da177e4SLinus Torvalds 				decode_getattr_maxsz + \
6231da177e4SLinus Torvalds 				decode_getfh_maxsz)
6241da177e4SLinus Torvalds #define NFS4_enc_remove_sz	(compound_encode_hdr_maxsz + \
6259b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6261da177e4SLinus Torvalds 				encode_putfh_maxsz + \
627778d2817STrond Myklebust 				encode_remove_maxsz)
6281da177e4SLinus Torvalds #define NFS4_dec_remove_sz	(compound_decode_hdr_maxsz + \
6299b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6301da177e4SLinus Torvalds 				decode_putfh_maxsz + \
631778d2817STrond Myklebust 				decode_remove_maxsz)
6321da177e4SLinus Torvalds #define NFS4_enc_rename_sz	(compound_encode_hdr_maxsz + \
6339b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6341da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6351da177e4SLinus Torvalds 				encode_savefh_maxsz + \
6361da177e4SLinus Torvalds 				encode_putfh_maxsz + \
637778d2817STrond Myklebust 				encode_rename_maxsz)
6381da177e4SLinus Torvalds #define NFS4_dec_rename_sz	(compound_decode_hdr_maxsz + \
6399b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6401da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6411da177e4SLinus Torvalds 				decode_savefh_maxsz + \
6421da177e4SLinus Torvalds 				decode_putfh_maxsz + \
643778d2817STrond Myklebust 				decode_rename_maxsz)
6441da177e4SLinus Torvalds #define NFS4_enc_link_sz	(compound_encode_hdr_maxsz + \
6459b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6461da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6471da177e4SLinus Torvalds 				encode_savefh_maxsz + \
6481da177e4SLinus Torvalds 				encode_putfh_maxsz + \
64991ba2eeeSTrond Myklebust 				encode_link_maxsz + \
65091ba2eeeSTrond Myklebust 				encode_restorefh_maxsz + \
651a9f6991bSTrond Myklebust 				encode_getattr_maxsz)
6521da177e4SLinus Torvalds #define NFS4_dec_link_sz	(compound_decode_hdr_maxsz + \
6539b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6541da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6551da177e4SLinus Torvalds 				decode_savefh_maxsz + \
6561da177e4SLinus Torvalds 				decode_putfh_maxsz + \
65791ba2eeeSTrond Myklebust 				decode_link_maxsz + \
65891ba2eeeSTrond Myklebust 				decode_restorefh_maxsz + \
65991ba2eeeSTrond Myklebust 				decode_getattr_maxsz)
6601da177e4SLinus Torvalds #define NFS4_enc_symlink_sz	(compound_encode_hdr_maxsz + \
6619b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6621da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6631da177e4SLinus Torvalds 				encode_symlink_maxsz + \
6641da177e4SLinus Torvalds 				encode_getattr_maxsz + \
6651da177e4SLinus Torvalds 				encode_getfh_maxsz)
6661da177e4SLinus Torvalds #define NFS4_dec_symlink_sz	(compound_decode_hdr_maxsz + \
6679b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6681da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6691da177e4SLinus Torvalds 				decode_symlink_maxsz + \
6701da177e4SLinus Torvalds 				decode_getattr_maxsz + \
6711da177e4SLinus Torvalds 				decode_getfh_maxsz)
6721da177e4SLinus Torvalds #define NFS4_enc_create_sz	(compound_encode_hdr_maxsz + \
6739b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6741da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6751da177e4SLinus Torvalds 				encode_create_maxsz + \
67656ae19f3STrond Myklebust 				encode_getfh_maxsz + \
67756ae19f3STrond Myklebust 				encode_getattr_maxsz)
6781da177e4SLinus Torvalds #define NFS4_dec_create_sz	(compound_decode_hdr_maxsz + \
6799b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6801da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6811da177e4SLinus Torvalds 				decode_create_maxsz + \
68256ae19f3STrond Myklebust 				decode_getfh_maxsz + \
68356ae19f3STrond Myklebust 				decode_getattr_maxsz)
6841da177e4SLinus Torvalds #define NFS4_enc_pathconf_sz	(compound_encode_hdr_maxsz + \
6859b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6861da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6871da177e4SLinus Torvalds 				encode_getattr_maxsz)
6881da177e4SLinus Torvalds #define NFS4_dec_pathconf_sz	(compound_decode_hdr_maxsz + \
6899b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6901da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6911da177e4SLinus Torvalds 				decode_getattr_maxsz)
6921da177e4SLinus Torvalds #define NFS4_enc_statfs_sz	(compound_encode_hdr_maxsz + \
6939b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
6941da177e4SLinus Torvalds 				encode_putfh_maxsz + \
6959104a55dSTrond Myklebust 				encode_statfs_maxsz)
6961da177e4SLinus Torvalds #define NFS4_dec_statfs_sz	(compound_decode_hdr_maxsz + \
6979b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
6981da177e4SLinus Torvalds 				decode_putfh_maxsz + \
6999104a55dSTrond Myklebust 				decode_statfs_maxsz)
7001da177e4SLinus Torvalds #define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
7019b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
702ab91f264STrond Myklebust 				encode_putfh_maxsz + \
7031da177e4SLinus Torvalds 				encode_getattr_maxsz)
7041da177e4SLinus Torvalds #define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
7059b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
706ab91f264STrond Myklebust 				decode_putfh_maxsz + \
7071da177e4SLinus Torvalds 				decode_getattr_maxsz)
7081da177e4SLinus Torvalds #define NFS4_enc_delegreturn_sz	(compound_encode_hdr_maxsz + \
7099b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
7101da177e4SLinus Torvalds 				encode_putfh_maxsz + \
711fa178f29STrond Myklebust 				encode_delegreturn_maxsz + \
712fa178f29STrond Myklebust 				encode_getattr_maxsz)
7131da177e4SLinus Torvalds #define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
7149b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
715fa178f29STrond Myklebust 				decode_delegreturn_maxsz + \
716fa178f29STrond Myklebust 				decode_getattr_maxsz)
717029d105eSJ. Bruce Fields #define NFS4_enc_getacl_sz	(compound_encode_hdr_maxsz + \
7189b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
719029d105eSJ. Bruce Fields 				encode_putfh_maxsz + \
7209104a55dSTrond Myklebust 				encode_getacl_maxsz)
721029d105eSJ. Bruce Fields #define NFS4_dec_getacl_sz	(compound_decode_hdr_maxsz + \
7229b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
723029d105eSJ. Bruce Fields 				decode_putfh_maxsz + \
7249104a55dSTrond Myklebust 				decode_getacl_maxsz)
72523ec6965SJ. Bruce Fields #define NFS4_enc_setacl_sz	(compound_encode_hdr_maxsz + \
7269b7b9fccSAndy Adamson 				encode_sequence_maxsz + \
72723ec6965SJ. Bruce Fields 				encode_putfh_maxsz + \
7289104a55dSTrond Myklebust 				encode_setacl_maxsz)
72923ec6965SJ. Bruce Fields #define NFS4_dec_setacl_sz	(compound_decode_hdr_maxsz + \
7309b7b9fccSAndy Adamson 				decode_sequence_maxsz + \
73123ec6965SJ. Bruce Fields 				decode_putfh_maxsz + \
7329104a55dSTrond Myklebust 				decode_setacl_maxsz)
733683b57b4STrond Myklebust #define NFS4_enc_fs_locations_sz \
734683b57b4STrond Myklebust 				(compound_encode_hdr_maxsz + \
7359b7b9fccSAndy Adamson 				 encode_sequence_maxsz + \
736683b57b4STrond Myklebust 				 encode_putfh_maxsz + \
737e6889620STrond Myklebust 				 encode_lookup_maxsz + \
738b03d735bSChuck Lever 				 encode_fs_locations_maxsz + \
739b03d735bSChuck Lever 				 encode_renew_maxsz)
740683b57b4STrond Myklebust #define NFS4_dec_fs_locations_sz \
741683b57b4STrond Myklebust 				(compound_decode_hdr_maxsz + \
7429b7b9fccSAndy Adamson 				 decode_sequence_maxsz + \
743683b57b4STrond Myklebust 				 decode_putfh_maxsz + \
744e6889620STrond Myklebust 				 decode_lookup_maxsz + \
745b03d735bSChuck Lever 				 decode_fs_locations_maxsz + \
746b03d735bSChuck Lever 				 decode_renew_maxsz)
7475a5ea0d4SBryan Schumaker #define NFS4_enc_secinfo_sz 	(compound_encode_hdr_maxsz + \
7485a5ea0d4SBryan Schumaker 				encode_sequence_maxsz + \
7495a5ea0d4SBryan Schumaker 				encode_putfh_maxsz + \
7505a5ea0d4SBryan Schumaker 				encode_secinfo_maxsz)
7515a5ea0d4SBryan Schumaker #define NFS4_dec_secinfo_sz	(compound_decode_hdr_maxsz + \
7525a5ea0d4SBryan Schumaker 				decode_sequence_maxsz + \
7535a5ea0d4SBryan Schumaker 				decode_putfh_maxsz + \
7545a5ea0d4SBryan Schumaker 				decode_secinfo_maxsz)
75544c99933SChuck Lever #define NFS4_enc_fsid_present_sz \
75644c99933SChuck Lever 				(compound_encode_hdr_maxsz + \
75744c99933SChuck Lever 				 encode_sequence_maxsz + \
75844c99933SChuck Lever 				 encode_putfh_maxsz + \
75944c99933SChuck Lever 				 encode_getfh_maxsz + \
76044c99933SChuck Lever 				 encode_renew_maxsz)
76144c99933SChuck Lever #define NFS4_dec_fsid_present_sz \
76244c99933SChuck Lever 				(compound_decode_hdr_maxsz + \
76344c99933SChuck Lever 				 decode_sequence_maxsz + \
76444c99933SChuck Lever 				 decode_putfh_maxsz + \
76544c99933SChuck Lever 				 decode_getfh_maxsz + \
76644c99933SChuck Lever 				 decode_renew_maxsz)
76799fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
7687c44f1aeSWeston Andros Adamson #define NFS4_enc_bind_conn_to_session_sz \
7697c44f1aeSWeston Andros Adamson 				(compound_encode_hdr_maxsz + \
7707c44f1aeSWeston Andros Adamson 				 encode_bind_conn_to_session_maxsz)
7717c44f1aeSWeston Andros Adamson #define NFS4_dec_bind_conn_to_session_sz \
7727c44f1aeSWeston Andros Adamson 				(compound_decode_hdr_maxsz + \
7737c44f1aeSWeston Andros Adamson 				 decode_bind_conn_to_session_maxsz)
77499fe60d0SBenny Halevy #define NFS4_enc_exchange_id_sz \
77599fe60d0SBenny Halevy 				(compound_encode_hdr_maxsz + \
77699fe60d0SBenny Halevy 				 encode_exchange_id_maxsz)
77799fe60d0SBenny Halevy #define NFS4_dec_exchange_id_sz \
77899fe60d0SBenny Halevy 				(compound_decode_hdr_maxsz + \
77999fe60d0SBenny Halevy 				 decode_exchange_id_maxsz)
780fc931582SAndy Adamson #define NFS4_enc_create_session_sz \
781fc931582SAndy Adamson 				(compound_encode_hdr_maxsz + \
782fc931582SAndy Adamson 				 encode_create_session_maxsz)
783fc931582SAndy Adamson #define NFS4_dec_create_session_sz \
784fc931582SAndy Adamson 				(compound_decode_hdr_maxsz + \
785fc931582SAndy Adamson 				 decode_create_session_maxsz)
7860f3e66c6SAndy Adamson #define NFS4_enc_destroy_session_sz	(compound_encode_hdr_maxsz + \
7870f3e66c6SAndy Adamson 					 encode_destroy_session_maxsz)
7880f3e66c6SAndy Adamson #define NFS4_dec_destroy_session_sz	(compound_decode_hdr_maxsz + \
7890f3e66c6SAndy Adamson 					 decode_destroy_session_maxsz)
79066245539STrond Myklebust #define NFS4_enc_destroy_clientid_sz	(compound_encode_hdr_maxsz + \
79166245539STrond Myklebust 					 encode_destroy_clientid_maxsz)
79266245539STrond Myklebust #define NFS4_dec_destroy_clientid_sz	(compound_decode_hdr_maxsz + \
79366245539STrond Myklebust 					 decode_destroy_clientid_maxsz)
794fc01cea9SAndy Adamson #define NFS4_enc_sequence_sz \
795fc01cea9SAndy Adamson 				(compound_decode_hdr_maxsz + \
796fc01cea9SAndy Adamson 				 encode_sequence_maxsz)
797fc01cea9SAndy Adamson #define NFS4_dec_sequence_sz \
798fc01cea9SAndy Adamson 				(compound_decode_hdr_maxsz + \
799fc01cea9SAndy Adamson 				 decode_sequence_maxsz)
8002050f0ccSAndy Adamson #define NFS4_enc_get_lease_time_sz	(compound_encode_hdr_maxsz + \
8012050f0ccSAndy Adamson 					 encode_sequence_maxsz + \
8022050f0ccSAndy Adamson 					 encode_putrootfh_maxsz + \
8032050f0ccSAndy Adamson 					 encode_fsinfo_maxsz)
8042050f0ccSAndy Adamson #define NFS4_dec_get_lease_time_sz	(compound_decode_hdr_maxsz + \
8052050f0ccSAndy Adamson 					 decode_sequence_maxsz + \
8062050f0ccSAndy Adamson 					 decode_putrootfh_maxsz + \
8072050f0ccSAndy Adamson 					 decode_fsinfo_maxsz)
80818019753SRicardo Labiaga #define NFS4_enc_reclaim_complete_sz	(compound_encode_hdr_maxsz + \
80918019753SRicardo Labiaga 					 encode_sequence_maxsz + \
81018019753SRicardo Labiaga 					 encode_reclaim_complete_maxsz)
81118019753SRicardo Labiaga #define NFS4_dec_reclaim_complete_sz	(compound_decode_hdr_maxsz + \
81218019753SRicardo Labiaga 					 decode_sequence_maxsz + \
81318019753SRicardo Labiaga 					 decode_reclaim_complete_maxsz)
814b1f69b75SAndy Adamson #define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz +    \
815b1f69b75SAndy Adamson 				encode_sequence_maxsz +\
816b1f69b75SAndy Adamson 				encode_getdeviceinfo_maxsz)
817b1f69b75SAndy Adamson #define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz +    \
818b1f69b75SAndy Adamson 				decode_sequence_maxsz + \
819b1f69b75SAndy Adamson 				decode_getdeviceinfo_maxsz)
820b1f69b75SAndy Adamson #define NFS4_enc_layoutget_sz	(compound_encode_hdr_maxsz + \
821b1f69b75SAndy Adamson 				encode_sequence_maxsz + \
822b1f69b75SAndy Adamson 				encode_putfh_maxsz +        \
823b1f69b75SAndy Adamson 				encode_layoutget_maxsz)
824b1f69b75SAndy Adamson #define NFS4_dec_layoutget_sz	(compound_decode_hdr_maxsz + \
825b1f69b75SAndy Adamson 				decode_sequence_maxsz + \
826b1f69b75SAndy Adamson 				decode_putfh_maxsz +        \
827b1f69b75SAndy Adamson 				decode_layoutget_maxsz)
828863a3c6cSAndy Adamson #define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
829863a3c6cSAndy Adamson 				encode_sequence_maxsz +\
830863a3c6cSAndy Adamson 				encode_putfh_maxsz + \
831863a3c6cSAndy Adamson 				encode_layoutcommit_maxsz + \
832863a3c6cSAndy Adamson 				encode_getattr_maxsz)
833863a3c6cSAndy Adamson #define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
834863a3c6cSAndy Adamson 				decode_sequence_maxsz + \
835863a3c6cSAndy Adamson 				decode_putfh_maxsz + \
836863a3c6cSAndy Adamson 				decode_layoutcommit_maxsz + \
837863a3c6cSAndy Adamson 				decode_getattr_maxsz)
838cbe82603SBenny Halevy #define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
839cbe82603SBenny Halevy 				encode_sequence_maxsz + \
840cbe82603SBenny Halevy 				encode_putfh_maxsz + \
841cbe82603SBenny Halevy 				encode_layoutreturn_maxsz)
842cbe82603SBenny Halevy #define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
843cbe82603SBenny Halevy 				decode_sequence_maxsz + \
844cbe82603SBenny Halevy 				decode_putfh_maxsz + \
845cbe82603SBenny Halevy 				decode_layoutreturn_maxsz)
846fca78d6dSBryan Schumaker #define NFS4_enc_secinfo_no_name_sz	(compound_encode_hdr_maxsz + \
847fca78d6dSBryan Schumaker 					encode_sequence_maxsz + \
848fca78d6dSBryan Schumaker 					encode_putrootfh_maxsz +\
849fca78d6dSBryan Schumaker 					encode_secinfo_no_name_maxsz)
850fca78d6dSBryan Schumaker #define NFS4_dec_secinfo_no_name_sz	(compound_decode_hdr_maxsz + \
851fca78d6dSBryan Schumaker 					decode_sequence_maxsz + \
852fca78d6dSBryan Schumaker 					decode_putrootfh_maxsz + \
853fca78d6dSBryan Schumaker 					decode_secinfo_no_name_maxsz)
8547d974794SBryan Schumaker #define NFS4_enc_test_stateid_sz	(compound_encode_hdr_maxsz + \
8557d974794SBryan Schumaker 					 encode_sequence_maxsz + \
8567d974794SBryan Schumaker 					 encode_test_stateid_maxsz)
8577d974794SBryan Schumaker #define NFS4_dec_test_stateid_sz	(compound_decode_hdr_maxsz + \
8587d974794SBryan Schumaker 					 decode_sequence_maxsz + \
8597d974794SBryan Schumaker 					 decode_test_stateid_maxsz)
8609aeda35fSBryan Schumaker #define NFS4_enc_free_stateid_sz	(compound_encode_hdr_maxsz + \
8619aeda35fSBryan Schumaker 					 encode_sequence_maxsz + \
8629aeda35fSBryan Schumaker 					 encode_free_stateid_maxsz)
8639aeda35fSBryan Schumaker #define NFS4_dec_free_stateid_sz	(compound_decode_hdr_maxsz + \
8649aeda35fSBryan Schumaker 					 decode_sequence_maxsz + \
8659aeda35fSBryan Schumaker 					 decode_free_stateid_maxsz)
8662449ea2eSAlexandros Batsakis 
8672449ea2eSAlexandros Batsakis const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
8682449ea2eSAlexandros Batsakis 				      compound_encode_hdr_maxsz +
8692449ea2eSAlexandros Batsakis 				      encode_sequence_maxsz +
8702449ea2eSAlexandros Batsakis 				      encode_putfh_maxsz +
8712449ea2eSAlexandros Batsakis 				      encode_getattr_maxsz) *
8722449ea2eSAlexandros Batsakis 				     XDR_UNIT);
8732449ea2eSAlexandros Batsakis 
8742449ea2eSAlexandros Batsakis const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
8752449ea2eSAlexandros Batsakis 				     compound_decode_hdr_maxsz +
8762449ea2eSAlexandros Batsakis 				     decode_sequence_maxsz +
8772449ea2eSAlexandros Batsakis 				     decode_putfh_maxsz) *
8782449ea2eSAlexandros Batsakis 				    XDR_UNIT);
879f1c097beSAndy Adamson 
880f1c097beSAndy Adamson const u32 nfs41_maxgetdevinfo_overhead = ((RPC_MAX_REPHEADER_WITH_AUTH +
881f1c097beSAndy Adamson 					   compound_decode_hdr_maxsz +
882f1c097beSAndy Adamson 					   decode_sequence_maxsz) *
883f1c097beSAndy Adamson 					  XDR_UNIT);
884f1c097beSAndy Adamson EXPORT_SYMBOL_GPL(nfs41_maxgetdevinfo_overhead);
88599fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
8861da177e4SLinus Torvalds 
887bca79478STrond Myklebust static const umode_t nfs_type2fmt[] = {
888bca79478STrond Myklebust 	[NF4BAD] = 0,
889bca79478STrond Myklebust 	[NF4REG] = S_IFREG,
890bca79478STrond Myklebust 	[NF4DIR] = S_IFDIR,
891bca79478STrond Myklebust 	[NF4BLK] = S_IFBLK,
892bca79478STrond Myklebust 	[NF4CHR] = S_IFCHR,
893bca79478STrond Myklebust 	[NF4LNK] = S_IFLNK,
894bca79478STrond Myklebust 	[NF4SOCK] = S_IFSOCK,
895bca79478STrond Myklebust 	[NF4FIFO] = S_IFIFO,
896bca79478STrond Myklebust 	[NF4ATTRDIR] = 0,
897bca79478STrond Myklebust 	[NF4NAMEDATTR] = 0,
8981da177e4SLinus Torvalds };
8991da177e4SLinus Torvalds 
9001da177e4SLinus Torvalds struct compound_hdr {
9011da177e4SLinus Torvalds 	int32_t		status;
9021da177e4SLinus Torvalds 	uint32_t	nops;
903d017931cSAndy Adamson 	__be32 *	nops_p;
9041da177e4SLinus Torvalds 	uint32_t	taglen;
9051da177e4SLinus Torvalds 	char *		tag;
9060c4e8c18SBenny Halevy 	uint32_t	replen;		/* expected reply words */
90766cc0429SBenny Halevy 	u32		minorversion;
9081da177e4SLinus Torvalds };
9091da177e4SLinus Torvalds 
91013c65ce9SBenny Halevy static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
91113c65ce9SBenny Halevy {
91213c65ce9SBenny Halevy 	__be32 *p = xdr_reserve_space(xdr, nbytes);
91313c65ce9SBenny Halevy 	BUG_ON(!p);
91413c65ce9SBenny Halevy 	return p;
91513c65ce9SBenny Halevy }
9161da177e4SLinus Torvalds 
917cb17e556STrond Myklebust static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
918cb17e556STrond Myklebust {
919cb17e556STrond Myklebust 	__be32 *p;
920cb17e556STrond Myklebust 
921cb17e556STrond Myklebust 	p = xdr_reserve_space(xdr, len);
922cb17e556STrond Myklebust 	xdr_encode_opaque_fixed(p, buf, len);
923cb17e556STrond Myklebust }
924cb17e556STrond Myklebust 
9251da177e4SLinus Torvalds static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
9261da177e4SLinus Torvalds {
9278687b63aSAl Viro 	__be32 *p;
9281da177e4SLinus Torvalds 
9296fdfb0bcSTrond Myklebust 	p = reserve_space(xdr, 4 + len);
9301da177e4SLinus Torvalds 	xdr_encode_opaque(p, str, len);
9311da177e4SLinus Torvalds }
9321da177e4SLinus Torvalds 
9334ade9821STrond Myklebust static void encode_uint32(struct xdr_stream *xdr, u32 n)
9344ade9821STrond Myklebust {
9354ade9821STrond Myklebust 	__be32 *p;
9364ade9821STrond Myklebust 
9374ade9821STrond Myklebust 	p = reserve_space(xdr, 4);
9384ade9821STrond Myklebust 	*p = cpu_to_be32(n);
9394ade9821STrond Myklebust }
9404ade9821STrond Myklebust 
941ff2eb681STrond Myklebust static void encode_uint64(struct xdr_stream *xdr, u64 n)
942ff2eb681STrond Myklebust {
943ff2eb681STrond Myklebust 	__be32 *p;
944ff2eb681STrond Myklebust 
945ff2eb681STrond Myklebust 	p = reserve_space(xdr, 8);
946ff2eb681STrond Myklebust 	xdr_encode_hyper(p, n);
947ff2eb681STrond Myklebust }
948ff2eb681STrond Myklebust 
9494ade9821STrond Myklebust static void encode_nfs4_seqid(struct xdr_stream *xdr,
9504ade9821STrond Myklebust 		const struct nfs_seqid *seqid)
9514ade9821STrond Myklebust {
952a6796419STrond Myklebust 	if (seqid != NULL)
9534ade9821STrond Myklebust 		encode_uint32(xdr, seqid->sequence->counter);
954a6796419STrond Myklebust 	else
955a6796419STrond Myklebust 		encode_uint32(xdr, 0);
9564ade9821STrond Myklebust }
9574ade9821STrond Myklebust 
9580c4e8c18SBenny Halevy static void encode_compound_hdr(struct xdr_stream *xdr,
9590c4e8c18SBenny Halevy 				struct rpc_rqst *req,
9600c4e8c18SBenny Halevy 				struct compound_hdr *hdr)
9611da177e4SLinus Torvalds {
9628687b63aSAl Viro 	__be32 *p;
963a17c2153STrond Myklebust 	struct rpc_auth *auth = req->rq_cred->cr_auth;
9640c4e8c18SBenny Halevy 
9650c4e8c18SBenny Halevy 	/* initialize running count of expected bytes in reply.
9660c4e8c18SBenny Halevy 	 * NOTE: the replied tag SHOULD be the same is the one sent,
9670c4e8c18SBenny Halevy 	 * but this is not required as a MUST for the server to do so. */
9680c4e8c18SBenny Halevy 	hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
9691da177e4SLinus Torvalds 
9707fc38846STrond Myklebust 	WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN);
9716fdfb0bcSTrond Myklebust 	encode_string(xdr, hdr->taglen, hdr->tag);
9726fdfb0bcSTrond Myklebust 	p = reserve_space(xdr, 8);
973e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(hdr->minorversion);
974d017931cSAndy Adamson 	hdr->nops_p = p;
97534558513SBenny Halevy 	*p = cpu_to_be32(hdr->nops);
976d017931cSAndy Adamson }
977d017931cSAndy Adamson 
978ab19b481STrond Myklebust static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
979ab19b481STrond Myklebust 		uint32_t replen,
980ab19b481STrond Myklebust 		struct compound_hdr *hdr)
981ab19b481STrond Myklebust {
982ab19b481STrond Myklebust 	encode_uint32(xdr, op);
983ab19b481STrond Myklebust 	hdr->nops++;
984ab19b481STrond Myklebust 	hdr->replen += replen;
985ab19b481STrond Myklebust }
986ab19b481STrond Myklebust 
987d017931cSAndy Adamson static void encode_nops(struct compound_hdr *hdr)
988d017931cSAndy Adamson {
9897fc38846STrond Myklebust 	WARN_ON_ONCE(hdr->nops > NFS4_MAX_OPS);
990d017931cSAndy Adamson 	*hdr->nops_p = htonl(hdr->nops);
9911da177e4SLinus Torvalds }
9921da177e4SLinus Torvalds 
993ea9d23f5STrond Myklebust static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
994ea9d23f5STrond Myklebust {
9952d2f24adSTrond Myklebust 	encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
996ea9d23f5STrond Myklebust }
997ea9d23f5STrond Myklebust 
9981da177e4SLinus Torvalds static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
9991da177e4SLinus Torvalds {
1000cb17e556STrond Myklebust 	encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
10011da177e4SLinus Torvalds }
10021da177e4SLinus Torvalds 
1003aa9c2669SDavid Quigley static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap,
1004aa9c2669SDavid Quigley 				const struct nfs4_label *label,
10055334c5bdSKinglong Mee 				const struct nfs_server *server,
10065334c5bdSKinglong Mee 				bool excl_check)
10071da177e4SLinus Torvalds {
10081da177e4SLinus Torvalds 	char owner_name[IDMAP_NAMESZ];
10091da177e4SLinus Torvalds 	char owner_group[IDMAP_NAMESZ];
10101da177e4SLinus Torvalds 	int owner_namelen = 0;
10111da177e4SLinus Torvalds 	int owner_grouplen = 0;
10128687b63aSAl Viro 	__be32 *p;
1013d7067b2dSTrond Myklebust 	unsigned i;
1014d7067b2dSTrond Myklebust 	uint32_t len = 0;
1015d7067b2dSTrond Myklebust 	uint32_t bmval_len;
1016d7067b2dSTrond Myklebust 	uint32_t bmval[3] = { 0 };
10171da177e4SLinus Torvalds 
10181da177e4SLinus Torvalds 	/*
10191da177e4SLinus Torvalds 	 * We reserve enough space to write the entire attribute buffer at once.
10201da177e4SLinus Torvalds 	 * In the worst-case, this would be
1021a09df2caSDavid Quigley 	 * 16(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
1022a09df2caSDavid Quigley 	 * = 40 bytes, plus any contribution from variable-length fields
102323ec6965SJ. Bruce Fields 	 *            such as owner/group.
10241da177e4SLinus Torvalds 	 */
1025d7067b2dSTrond Myklebust 	if (iap->ia_valid & ATTR_SIZE) {
1026d7067b2dSTrond Myklebust 		bmval[0] |= FATTR4_WORD0_SIZE;
10271da177e4SLinus Torvalds 		len += 8;
1028d7067b2dSTrond Myklebust 	}
1029d7067b2dSTrond Myklebust 	if (iap->ia_valid & ATTR_MODE) {
1030d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_MODE;
10311da177e4SLinus Torvalds 		len += 4;
1032d7067b2dSTrond Myklebust 	}
10331da177e4SLinus Torvalds 	if (iap->ia_valid & ATTR_UID) {
1034e4fd72a1STrond Myklebust 		owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
10351da177e4SLinus Torvalds 		if (owner_namelen < 0) {
1036fe82a183SChuck Lever 			dprintk("nfs: couldn't resolve uid %d to string\n",
1037e5782076SEric W. Biederman 					from_kuid(&init_user_ns, iap->ia_uid));
10381da177e4SLinus Torvalds 			/* XXX */
10391da177e4SLinus Torvalds 			strcpy(owner_name, "nobody");
10401da177e4SLinus Torvalds 			owner_namelen = sizeof("nobody") - 1;
10411da177e4SLinus Torvalds 			/* goto out; */
10421da177e4SLinus Torvalds 		}
1043d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_OWNER;
10441da177e4SLinus Torvalds 		len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
10451da177e4SLinus Torvalds 	}
10461da177e4SLinus Torvalds 	if (iap->ia_valid & ATTR_GID) {
1047e4fd72a1STrond Myklebust 		owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
10481da177e4SLinus Torvalds 		if (owner_grouplen < 0) {
1049fe82a183SChuck Lever 			dprintk("nfs: couldn't resolve gid %d to string\n",
1050e5782076SEric W. Biederman 					from_kgid(&init_user_ns, iap->ia_gid));
10511da177e4SLinus Torvalds 			strcpy(owner_group, "nobody");
10521da177e4SLinus Torvalds 			owner_grouplen = sizeof("nobody") - 1;
10531da177e4SLinus Torvalds 			/* goto out; */
10541da177e4SLinus Torvalds 		}
1055d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_OWNER_GROUP;
10561da177e4SLinus Torvalds 		len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
10571da177e4SLinus Torvalds 	}
1058d7067b2dSTrond Myklebust 	if (iap->ia_valid & ATTR_ATIME_SET) {
1059d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
10601da177e4SLinus Torvalds 		len += 16;
1061d7067b2dSTrond Myklebust 	} else if (iap->ia_valid & ATTR_ATIME) {
1062d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
10631da177e4SLinus Torvalds 		len += 4;
1064d7067b2dSTrond Myklebust 	}
1065d7067b2dSTrond Myklebust 	if (iap->ia_valid & ATTR_MTIME_SET) {
1066d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
10671da177e4SLinus Torvalds 		len += 16;
1068d7067b2dSTrond Myklebust 	} else if (iap->ia_valid & ATTR_MTIME) {
1069d7067b2dSTrond Myklebust 		bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
10701da177e4SLinus Torvalds 		len += 4;
1071d7067b2dSTrond Myklebust 	}
10725334c5bdSKinglong Mee 
10735334c5bdSKinglong Mee 	if (excl_check) {
10745334c5bdSKinglong Mee 		const u32 *excl_bmval = server->exclcreat_bitmask;
10755334c5bdSKinglong Mee 		bmval[0] &= excl_bmval[0];
10765334c5bdSKinglong Mee 		bmval[1] &= excl_bmval[1];
10775334c5bdSKinglong Mee 		bmval[2] &= excl_bmval[2];
10785334c5bdSKinglong Mee 
10795334c5bdSKinglong Mee 		if (!(excl_bmval[2] & FATTR4_WORD2_SECURITY_LABEL))
10805334c5bdSKinglong Mee 			label = NULL;
10815334c5bdSKinglong Mee 	}
10825334c5bdSKinglong Mee 
1083b4a2cf76STrond Myklebust 	if (label) {
1084b4a2cf76STrond Myklebust 		len += 4 + 4 + 4 + (XDR_QUADLEN(label->len) << 2);
1085d7067b2dSTrond Myklebust 		bmval[2] |= FATTR4_WORD2_SECURITY_LABEL;
1086d7067b2dSTrond Myklebust 	}
1087d7067b2dSTrond Myklebust 
1088d7067b2dSTrond Myklebust 	if (bmval[2] != 0)
1089b4a2cf76STrond Myklebust 		bmval_len = 3;
1090d7067b2dSTrond Myklebust 	else if (bmval[1] != 0)
1091d7067b2dSTrond Myklebust 		bmval_len = 2;
1092d7067b2dSTrond Myklebust 	else
1093d7067b2dSTrond Myklebust 		bmval_len = 1;
1094b4a2cf76STrond Myklebust 
1095d7067b2dSTrond Myklebust 	p = reserve_space(xdr, 4 + (bmval_len << 2) + 4 + len);
10961da177e4SLinus Torvalds 
1097b4a2cf76STrond Myklebust 	*p++ = cpu_to_be32(bmval_len);
1098d7067b2dSTrond Myklebust 	for (i = 0; i < bmval_len; i++)
1099d7067b2dSTrond Myklebust 		*p++ = cpu_to_be32(bmval[i]);
1100d7067b2dSTrond Myklebust 	*p++ = cpu_to_be32(len);
11011da177e4SLinus Torvalds 
1102d7067b2dSTrond Myklebust 	if (bmval[0] & FATTR4_WORD0_SIZE)
1103b95be5a9SBenny Halevy 		p = xdr_encode_hyper(p, iap->ia_size);
1104d7067b2dSTrond Myklebust 	if (bmval[1] & FATTR4_WORD1_MODE)
1105e75bc1c8SBenny Halevy 		*p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
1106d7067b2dSTrond Myklebust 	if (bmval[1] & FATTR4_WORD1_OWNER)
1107811652bdSBenny Halevy 		p = xdr_encode_opaque(p, owner_name, owner_namelen);
1108d7067b2dSTrond Myklebust 	if (bmval[1] & FATTR4_WORD1_OWNER_GROUP)
1109811652bdSBenny Halevy 		p = xdr_encode_opaque(p, owner_group, owner_grouplen);
1110d7067b2dSTrond Myklebust 	if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
11111da177e4SLinus Torvalds 		if (iap->ia_valid & ATTR_ATIME_SET) {
1112e75bc1c8SBenny Halevy 			*p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1113042ad0b3SBryan Schumaker 			p = xdr_encode_hyper(p, (s64)iap->ia_atime.tv_sec);
1114d3f6baaaSTrond Myklebust 			*p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
1115d7067b2dSTrond Myklebust 		} else
1116e75bc1c8SBenny Halevy 			*p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
11171da177e4SLinus Torvalds 	}
1118d7067b2dSTrond Myklebust 	if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
11191da177e4SLinus Torvalds 		if (iap->ia_valid & ATTR_MTIME_SET) {
1120e75bc1c8SBenny Halevy 			*p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1121042ad0b3SBryan Schumaker 			p = xdr_encode_hyper(p, (s64)iap->ia_mtime.tv_sec);
1122e75bc1c8SBenny Halevy 			*p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
1123d7067b2dSTrond Myklebust 		} else
1124e75bc1c8SBenny Halevy 			*p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
11251da177e4SLinus Torvalds 	}
1126d7067b2dSTrond Myklebust 	if (bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
1127aa9c2669SDavid Quigley 		*p++ = cpu_to_be32(label->lfs);
1128aa9c2669SDavid Quigley 		*p++ = cpu_to_be32(label->pi);
1129aa9c2669SDavid Quigley 		*p++ = cpu_to_be32(label->len);
1130aa9c2669SDavid Quigley 		p = xdr_encode_opaque_fixed(p, label->label, label->len);
1131aa9c2669SDavid Quigley 	}
11321da177e4SLinus Torvalds 
11331da177e4SLinus Torvalds /* out: */
11341da177e4SLinus Torvalds }
11351da177e4SLinus Torvalds 
1136cf8cdbe5SAndy Adamson static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
11371da177e4SLinus Torvalds {
1138475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1139475d4ba0STrond Myklebust 	encode_uint32(xdr, access);
11401da177e4SLinus Torvalds }
11411da177e4SLinus Torvalds 
1142cf8cdbe5SAndy Adamson static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
11431da177e4SLinus Torvalds {
1144ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
11454ade9821STrond Myklebust 	encode_nfs4_seqid(xdr, arg->seqid);
1146566fcec6STrond Myklebust 	encode_nfs4_stateid(xdr, &arg->stateid);
11471da177e4SLinus Torvalds }
11481da177e4SLinus Torvalds 
11490b7c0153SFred Isaman static void encode_commit(struct xdr_stream *xdr, const struct nfs_commitargs *args, struct compound_hdr *hdr)
11501da177e4SLinus Torvalds {
11518687b63aSAl Viro 	__be32 *p;
11521da177e4SLinus Torvalds 
1153475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1154475d4ba0STrond Myklebust 	p = reserve_space(xdr, 12);
1155b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->offset);
115634558513SBenny Halevy 	*p = cpu_to_be32(args->count);
11571da177e4SLinus Torvalds }
11581da177e4SLinus Torvalds 
1159cf8cdbe5SAndy Adamson static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
11601da177e4SLinus Torvalds {
11618687b63aSAl Viro 	__be32 *p;
11621da177e4SLinus Torvalds 
1163475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1164475d4ba0STrond Myklebust 	encode_uint32(xdr, create->ftype);
11651da177e4SLinus Torvalds 
11661da177e4SLinus Torvalds 	switch (create->ftype) {
11671da177e4SLinus Torvalds 	case NF4LNK:
116813c65ce9SBenny Halevy 		p = reserve_space(xdr, 4);
116934558513SBenny Halevy 		*p = cpu_to_be32(create->u.symlink.len);
11702fcc213aSChuck Lever 		xdr_write_pages(xdr, create->u.symlink.pages, 0,
11712fcc213aSChuck Lever 				create->u.symlink.len);
11722fcc213aSChuck Lever 		xdr->buf->flags |= XDRBUF_WRITE;
11731da177e4SLinus Torvalds 		break;
11741da177e4SLinus Torvalds 
11751da177e4SLinus Torvalds 	case NF4BLK: case NF4CHR:
117613c65ce9SBenny Halevy 		p = reserve_space(xdr, 8);
1177e75bc1c8SBenny Halevy 		*p++ = cpu_to_be32(create->u.device.specdata1);
117834558513SBenny Halevy 		*p = cpu_to_be32(create->u.device.specdata2);
11791da177e4SLinus Torvalds 		break;
11801da177e4SLinus Torvalds 
11811da177e4SLinus Torvalds 	default:
11821da177e4SLinus Torvalds 		break;
11831da177e4SLinus Torvalds 	}
11841da177e4SLinus Torvalds 
1185811652bdSBenny Halevy 	encode_string(xdr, create->name->len, create->name->name);
11865334c5bdSKinglong Mee 	encode_attrs(xdr, create->attrs, create->label, create->server, false);
11871da177e4SLinus Torvalds }
11881da177e4SLinus Torvalds 
1189cf8cdbe5SAndy Adamson static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
11901da177e4SLinus Torvalds {
11918687b63aSAl Viro 	__be32 *p;
11921da177e4SLinus Torvalds 
1193475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1194475d4ba0STrond Myklebust 	p = reserve_space(xdr, 8);
1195e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(1);
119634558513SBenny Halevy 	*p = cpu_to_be32(bitmap);
11971da177e4SLinus Torvalds }
11981da177e4SLinus Torvalds 
1199cf8cdbe5SAndy Adamson static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
12001da177e4SLinus Torvalds {
12018687b63aSAl Viro 	__be32 *p;
12021da177e4SLinus Torvalds 
1203475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1204475d4ba0STrond Myklebust 	p = reserve_space(xdr, 12);
1205e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(2);
1206e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(bm0);
120734558513SBenny Halevy 	*p = cpu_to_be32(bm1);
12081da177e4SLinus Torvalds }
12091da177e4SLinus Torvalds 
1210dae100c2SFred Isaman static void
1211dae100c2SFred Isaman encode_getattr_three(struct xdr_stream *xdr,
1212dae100c2SFred Isaman 		     uint32_t bm0, uint32_t bm1, uint32_t bm2,
1213dae100c2SFred Isaman 		     struct compound_hdr *hdr)
1214dae100c2SFred Isaman {
1215dae100c2SFred Isaman 	__be32 *p;
1216dae100c2SFred Isaman 
1217ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1218dae100c2SFred Isaman 	if (bm2) {
1219dae100c2SFred Isaman 		p = reserve_space(xdr, 16);
1220dae100c2SFred Isaman 		*p++ = cpu_to_be32(3);
1221dae100c2SFred Isaman 		*p++ = cpu_to_be32(bm0);
1222dae100c2SFred Isaman 		*p++ = cpu_to_be32(bm1);
1223dae100c2SFred Isaman 		*p = cpu_to_be32(bm2);
1224dae100c2SFred Isaman 	} else if (bm1) {
1225dae100c2SFred Isaman 		p = reserve_space(xdr, 12);
1226dae100c2SFred Isaman 		*p++ = cpu_to_be32(2);
1227dae100c2SFred Isaman 		*p++ = cpu_to_be32(bm0);
1228dae100c2SFred Isaman 		*p = cpu_to_be32(bm1);
1229dae100c2SFred Isaman 	} else {
1230dae100c2SFred Isaman 		p = reserve_space(xdr, 8);
1231dae100c2SFred Isaman 		*p++ = cpu_to_be32(1);
1232dae100c2SFred Isaman 		*p = cpu_to_be32(bm0);
1233dae100c2SFred Isaman 	}
1234dae100c2SFred Isaman }
1235dae100c2SFred Isaman 
1236cf8cdbe5SAndy Adamson static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
12371da177e4SLinus Torvalds {
1238a09df2caSDavid Quigley 	encode_getattr_three(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1239a09df2caSDavid Quigley 			   bitmask[1] & nfs4_fattr_bitmap[1],
1240a09df2caSDavid Quigley 			   bitmask[2] & nfs4_fattr_bitmap[2],
1241a09df2caSDavid Quigley 			   hdr);
12421da177e4SLinus Torvalds }
12431da177e4SLinus Torvalds 
124488034c3dSAndy Adamson static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask,
12451549210fSTrond Myklebust 				 const u32 *open_bitmap,
124688034c3dSAndy Adamson 				 struct compound_hdr *hdr)
124788034c3dSAndy Adamson {
124888034c3dSAndy Adamson 	encode_getattr_three(xdr,
12491549210fSTrond Myklebust 			     bitmask[0] & open_bitmap[0],
12501549210fSTrond Myklebust 			     bitmask[1] & open_bitmap[1],
12511549210fSTrond Myklebust 			     bitmask[2] & open_bitmap[2],
125288034c3dSAndy Adamson 			     hdr);
125388034c3dSAndy Adamson }
125488034c3dSAndy Adamson 
1255cf8cdbe5SAndy Adamson static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
12561da177e4SLinus Torvalds {
1257dae100c2SFred Isaman 	encode_getattr_three(xdr,
1258dae100c2SFred Isaman 			     bitmask[0] & nfs4_fsinfo_bitmap[0],
1259dae100c2SFred Isaman 			     bitmask[1] & nfs4_fsinfo_bitmap[1],
1260dae100c2SFred Isaman 			     bitmask[2] & nfs4_fsinfo_bitmap[2],
1261dae100c2SFred Isaman 			     hdr);
12621da177e4SLinus Torvalds }
12631da177e4SLinus Torvalds 
1264cf8cdbe5SAndy Adamson static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1265830b8e33SManoj Naik {
1266cf8cdbe5SAndy Adamson 	encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1267cf8cdbe5SAndy Adamson 			   bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
1268830b8e33SManoj Naik }
1269830b8e33SManoj Naik 
1270cf8cdbe5SAndy Adamson static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
12711da177e4SLinus Torvalds {
1272ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
12731da177e4SLinus Torvalds }
12741da177e4SLinus Torvalds 
1275cf8cdbe5SAndy Adamson static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
12761da177e4SLinus Torvalds {
1277ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
12786fdfb0bcSTrond Myklebust 	encode_string(xdr, name->len, name->name);
12791da177e4SLinus Torvalds }
12801da177e4SLinus Torvalds 
1281911d1aafSTrond Myklebust static inline int nfs4_lock_type(struct file_lock *fl, int block)
1282911d1aafSTrond Myklebust {
1283f44106e2SJeff Layton 	if (fl->fl_type == F_RDLCK)
1284911d1aafSTrond Myklebust 		return block ? NFS4_READW_LT : NFS4_READ_LT;
1285911d1aafSTrond Myklebust 	return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1286911d1aafSTrond Myklebust }
1287911d1aafSTrond Myklebust 
1288911d1aafSTrond Myklebust static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1289911d1aafSTrond Myklebust {
1290911d1aafSTrond Myklebust 	if (fl->fl_end == OFFSET_MAX)
1291911d1aafSTrond Myklebust 		return ~(uint64_t)0;
1292911d1aafSTrond Myklebust 	return fl->fl_end - fl->fl_start + 1;
1293911d1aafSTrond Myklebust }
1294911d1aafSTrond Myklebust 
1295daccbdedSTrond Myklebust static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1296daccbdedSTrond Myklebust {
1297daccbdedSTrond Myklebust 	__be32 *p;
1298daccbdedSTrond Myklebust 
1299d035c36cSTrond Myklebust 	p = reserve_space(xdr, 32);
1300daccbdedSTrond Myklebust 	p = xdr_encode_hyper(p, lowner->clientid);
1301d035c36cSTrond Myklebust 	*p++ = cpu_to_be32(20);
1302daccbdedSTrond Myklebust 	p = xdr_encode_opaque_fixed(p, "lock id:", 8);
1303d035c36cSTrond Myklebust 	*p++ = cpu_to_be32(lowner->s_dev);
1304daccbdedSTrond Myklebust 	xdr_encode_hyper(p, lowner->id);
1305daccbdedSTrond Myklebust }
1306daccbdedSTrond Myklebust 
13071da177e4SLinus Torvalds /*
13081da177e4SLinus Torvalds  * opcode,type,reclaim,offset,length,new_lock_owner = 32
13091da177e4SLinus Torvalds  * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
13101da177e4SLinus Torvalds  */
1311cf8cdbe5SAndy Adamson static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
13121da177e4SLinus Torvalds {
13138687b63aSAl Viro 	__be32 *p;
13141da177e4SLinus Torvalds 
1315475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1316475d4ba0STrond Myklebust 	p = reserve_space(xdr, 28);
1317e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1318e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->reclaim);
1319b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->fl->fl_start);
1320b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
132134558513SBenny Halevy 	*p = cpu_to_be32(args->new_lock_owner);
1322911d1aafSTrond Myklebust 	if (args->new_lock_owner){
13234ade9821STrond Myklebust 		encode_nfs4_seqid(xdr, args->open_seqid);
1324425c1d4eSTrond Myklebust 		encode_nfs4_stateid(xdr, &args->open_stateid);
13254ade9821STrond Myklebust 		encode_nfs4_seqid(xdr, args->lock_seqid);
1326daccbdedSTrond Myklebust 		encode_lockowner(xdr, &args->lock_owner);
13271da177e4SLinus Torvalds 	}
13281da177e4SLinus Torvalds 	else {
1329425c1d4eSTrond Myklebust 		encode_nfs4_stateid(xdr, &args->lock_stateid);
13304ade9821STrond Myklebust 		encode_nfs4_seqid(xdr, args->lock_seqid);
13311da177e4SLinus Torvalds 	}
13321da177e4SLinus Torvalds }
13331da177e4SLinus Torvalds 
1334cf8cdbe5SAndy Adamson static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
13351da177e4SLinus Torvalds {
13368687b63aSAl Viro 	__be32 *p;
13371da177e4SLinus Torvalds 
1338475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1339475d4ba0STrond Myklebust 	p = reserve_space(xdr, 20);
1340e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
1341b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->fl->fl_start);
1342b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
1343daccbdedSTrond Myklebust 	encode_lockowner(xdr, &args->lock_owner);
13441da177e4SLinus Torvalds }
13451da177e4SLinus Torvalds 
1346cf8cdbe5SAndy Adamson static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
13471da177e4SLinus Torvalds {
13488687b63aSAl Viro 	__be32 *p;
13491da177e4SLinus Torvalds 
1350475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1351475d4ba0STrond Myklebust 	encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
13524ade9821STrond Myklebust 	encode_nfs4_seqid(xdr, args->seqid);
1353425c1d4eSTrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
1354ea9d23f5STrond Myklebust 	p = reserve_space(xdr, 16);
1355b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->fl->fl_start);
135634558513SBenny Halevy 	xdr_encode_hyper(p, nfs4_lock_length(args->fl));
13571da177e4SLinus Torvalds }
13581da177e4SLinus Torvalds 
1359d3c7b7ccSTrond Myklebust static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1360d3c7b7ccSTrond Myklebust {
1361ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
1362d3c7b7ccSTrond Myklebust 	encode_lockowner(xdr, lowner);
1363d3c7b7ccSTrond Myklebust }
1364d3c7b7ccSTrond Myklebust 
1365cf8cdbe5SAndy Adamson static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
13661da177e4SLinus Torvalds {
1367ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
13686fdfb0bcSTrond Myklebust 	encode_string(xdr, name->len, name->name);
13691da177e4SLinus Torvalds }
13701da177e4SLinus Torvalds 
13716ae37339STrond Myklebust static void encode_share_access(struct xdr_stream *xdr, u32 share_access)
13721da177e4SLinus Torvalds {
13738687b63aSAl Viro 	__be32 *p;
13741da177e4SLinus Torvalds 
137513c65ce9SBenny Halevy 	p = reserve_space(xdr, 8);
13766ae37339STrond Myklebust 	*p++ = cpu_to_be32(share_access);
137734558513SBenny Halevy 	*p = cpu_to_be32(0);		/* for linux, share_deny = 0 always */
13781da177e4SLinus Torvalds }
13791da177e4SLinus Torvalds 
13801da177e4SLinus Torvalds static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
13811da177e4SLinus Torvalds {
13828687b63aSAl Viro 	__be32 *p;
13831da177e4SLinus Torvalds  /*
13841da177e4SLinus Torvalds  * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
13851da177e4SLinus Torvalds  * owner 4 = 32
13861da177e4SLinus Torvalds  */
13874ade9821STrond Myklebust 	encode_nfs4_seqid(xdr, arg->seqid);
13886ae37339STrond Myklebust 	encode_share_access(xdr, arg->share_access);
138995b72eb0STrond Myklebust 	p = reserve_space(xdr, 36);
1390b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, arg->clientid);
139195b72eb0STrond Myklebust 	*p++ = cpu_to_be32(24);
139293f0cf25SBenny Halevy 	p = xdr_encode_opaque_fixed(p, "open id:", 8);
1393d035c36cSTrond Myklebust 	*p++ = cpu_to_be32(arg->server->s_dev);
139495b72eb0STrond Myklebust 	*p++ = cpu_to_be32(arg->id.uniquifier);
139595b72eb0STrond Myklebust 	xdr_encode_hyper(p, arg->id.create_time);
13961da177e4SLinus Torvalds }
13971da177e4SLinus Torvalds 
13981da177e4SLinus Torvalds static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
13991da177e4SLinus Torvalds {
14008687b63aSAl Viro 	__be32 *p;
14011da177e4SLinus Torvalds 
140213c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
1403549b19ccSTrond Myklebust 	switch(arg->createmode) {
1404549b19ccSTrond Myklebust 	case NFS4_CREATE_UNCHECKED:
140534558513SBenny Halevy 		*p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
14065334c5bdSKinglong Mee 		encode_attrs(xdr, arg->u.attrs, arg->label, arg->server, false);
14071da177e4SLinus Torvalds 		break;
1408549b19ccSTrond Myklebust 	case NFS4_CREATE_GUARDED:
14094882ef72SAlexandros Batsakis 		*p = cpu_to_be32(NFS4_CREATE_GUARDED);
14105334c5bdSKinglong Mee 		encode_attrs(xdr, arg->u.attrs, arg->label, arg->server, false);
1411549b19ccSTrond Myklebust 		break;
1412549b19ccSTrond Myklebust 	case NFS4_CREATE_EXCLUSIVE:
1413549b19ccSTrond Myklebust 		*p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1414549b19ccSTrond Myklebust 		encode_nfs4_verifier(xdr, &arg->u.verifier);
1415549b19ccSTrond Myklebust 		break;
1416549b19ccSTrond Myklebust 	case NFS4_CREATE_EXCLUSIVE4_1:
14174882ef72SAlexandros Batsakis 		*p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
14184882ef72SAlexandros Batsakis 		encode_nfs4_verifier(xdr, &arg->u.verifier);
14195334c5bdSKinglong Mee 		encode_attrs(xdr, arg->u.attrs, arg->label, arg->server, true);
14204882ef72SAlexandros Batsakis 	}
14214882ef72SAlexandros Batsakis }
14221da177e4SLinus Torvalds 
14231da177e4SLinus Torvalds static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
14241da177e4SLinus Torvalds {
14258687b63aSAl Viro 	__be32 *p;
14261da177e4SLinus Torvalds 
142713c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
14281da177e4SLinus Torvalds 	switch (arg->open_flags & O_CREAT) {
14291da177e4SLinus Torvalds 	case 0:
143034558513SBenny Halevy 		*p = cpu_to_be32(NFS4_OPEN_NOCREATE);
14311da177e4SLinus Torvalds 		break;
14321da177e4SLinus Torvalds 	default:
143334558513SBenny Halevy 		*p = cpu_to_be32(NFS4_OPEN_CREATE);
14341da177e4SLinus Torvalds 		encode_createmode(xdr, arg);
14351da177e4SLinus Torvalds 	}
14361da177e4SLinus Torvalds }
14371da177e4SLinus Torvalds 
1438bd7bf9d5STrond Myklebust static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
14391da177e4SLinus Torvalds {
14408687b63aSAl Viro 	__be32 *p;
14411da177e4SLinus Torvalds 
144213c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
14431da177e4SLinus Torvalds 	switch (delegation_type) {
14441da177e4SLinus Torvalds 	case 0:
144534558513SBenny Halevy 		*p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
14461da177e4SLinus Torvalds 		break;
14471da177e4SLinus Torvalds 	case FMODE_READ:
144834558513SBenny Halevy 		*p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
14491da177e4SLinus Torvalds 		break;
14501da177e4SLinus Torvalds 	case FMODE_WRITE|FMODE_READ:
145134558513SBenny Halevy 		*p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
14521da177e4SLinus Torvalds 		break;
14531da177e4SLinus Torvalds 	default:
14541da177e4SLinus Torvalds 		BUG();
14551da177e4SLinus Torvalds 	}
14561da177e4SLinus Torvalds }
14571da177e4SLinus Torvalds 
14581da177e4SLinus Torvalds static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
14591da177e4SLinus Torvalds {
14608687b63aSAl Viro 	__be32 *p;
14611da177e4SLinus Torvalds 
146213c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
146334558513SBenny Halevy 	*p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
14641da177e4SLinus Torvalds 	encode_string(xdr, name->len, name->name);
14651da177e4SLinus Torvalds }
14661da177e4SLinus Torvalds 
1467bd7bf9d5STrond Myklebust static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
14681da177e4SLinus Torvalds {
14698687b63aSAl Viro 	__be32 *p;
14701da177e4SLinus Torvalds 
147113c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
147234558513SBenny Halevy 	*p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
14731da177e4SLinus Torvalds 	encode_delegation_type(xdr, type);
14741da177e4SLinus Torvalds }
14751da177e4SLinus Torvalds 
14761da177e4SLinus Torvalds static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
14771da177e4SLinus Torvalds {
14788687b63aSAl Viro 	__be32 *p;
14791da177e4SLinus Torvalds 
1480ea9d23f5STrond Myklebust 	p = reserve_space(xdr, 4);
1481ea9d23f5STrond Myklebust 	*p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1482ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, stateid);
14831da177e4SLinus Torvalds 	encode_string(xdr, name->len, name->name);
14841da177e4SLinus Torvalds }
14851da177e4SLinus Torvalds 
1486d9fc6619STrond Myklebust static inline void encode_claim_fh(struct xdr_stream *xdr)
1487d9fc6619STrond Myklebust {
1488d9fc6619STrond Myklebust 	__be32 *p;
1489d9fc6619STrond Myklebust 
1490d9fc6619STrond Myklebust 	p = reserve_space(xdr, 4);
1491d9fc6619STrond Myklebust 	*p = cpu_to_be32(NFS4_OPEN_CLAIM_FH);
1492d9fc6619STrond Myklebust }
1493d9fc6619STrond Myklebust 
1494d9fc6619STrond Myklebust static inline void encode_claim_delegate_cur_fh(struct xdr_stream *xdr, const nfs4_stateid *stateid)
1495d9fc6619STrond Myklebust {
1496d9fc6619STrond Myklebust 	__be32 *p;
1497d9fc6619STrond Myklebust 
1498d9fc6619STrond Myklebust 	p = reserve_space(xdr, 4);
1499d9fc6619STrond Myklebust 	*p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1500d9fc6619STrond Myklebust 	encode_nfs4_stateid(xdr, stateid);
1501d9fc6619STrond Myklebust }
1502d9fc6619STrond Myklebust 
1503cf8cdbe5SAndy Adamson static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
15041da177e4SLinus Torvalds {
1505ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
15061da177e4SLinus Torvalds 	encode_openhdr(xdr, arg);
15071da177e4SLinus Torvalds 	encode_opentype(xdr, arg);
15081da177e4SLinus Torvalds 	switch (arg->claim) {
15091da177e4SLinus Torvalds 	case NFS4_OPEN_CLAIM_NULL:
15101da177e4SLinus Torvalds 		encode_claim_null(xdr, arg->name);
15111da177e4SLinus Torvalds 		break;
15121da177e4SLinus Torvalds 	case NFS4_OPEN_CLAIM_PREVIOUS:
15131da177e4SLinus Torvalds 		encode_claim_previous(xdr, arg->u.delegation_type);
15141da177e4SLinus Torvalds 		break;
15151da177e4SLinus Torvalds 	case NFS4_OPEN_CLAIM_DELEGATE_CUR:
15161da177e4SLinus Torvalds 		encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
15171da177e4SLinus Torvalds 		break;
1518d9fc6619STrond Myklebust 	case NFS4_OPEN_CLAIM_FH:
1519d9fc6619STrond Myklebust 		encode_claim_fh(xdr);
1520d9fc6619STrond Myklebust 		break;
1521d9fc6619STrond Myklebust 	case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1522d9fc6619STrond Myklebust 		encode_claim_delegate_cur_fh(xdr, &arg->u.delegation);
1523d9fc6619STrond Myklebust 		break;
15241da177e4SLinus Torvalds 	default:
15251da177e4SLinus Torvalds 		BUG();
15261da177e4SLinus Torvalds 	}
15271da177e4SLinus Torvalds }
15281da177e4SLinus Torvalds 
1529cf8cdbe5SAndy Adamson static void encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg, struct compound_hdr *hdr)
15301da177e4SLinus Torvalds {
1531ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
1532ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, arg->stateid);
15334ade9821STrond Myklebust 	encode_nfs4_seqid(xdr, arg->seqid);
15341da177e4SLinus Torvalds }
15351da177e4SLinus Torvalds 
1536cf8cdbe5SAndy Adamson static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
15371da177e4SLinus Torvalds {
1538ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
1539566fcec6STrond Myklebust 	encode_nfs4_stateid(xdr, &arg->stateid);
15404ade9821STrond Myklebust 	encode_nfs4_seqid(xdr, arg->seqid);
15416ae37339STrond Myklebust 	encode_share_access(xdr, arg->share_access);
15421da177e4SLinus Torvalds }
15431da177e4SLinus Torvalds 
1544cf8cdbe5SAndy Adamson static void
1545d017931cSAndy Adamson encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
15461da177e4SLinus Torvalds {
1547ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
15486fdfb0bcSTrond Myklebust 	encode_string(xdr, fh->size, fh->data);
15491da177e4SLinus Torvalds }
15501da177e4SLinus Torvalds 
1551cf8cdbe5SAndy Adamson static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
15521da177e4SLinus Torvalds {
1553ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
15541da177e4SLinus Torvalds }
15551da177e4SLinus Torvalds 
15563c6b899cSAnna Schumaker static void encode_read(struct xdr_stream *xdr, const struct nfs_pgio_args *args,
15573c6b899cSAnna Schumaker 			struct compound_hdr *hdr)
15581da177e4SLinus Torvalds {
15598687b63aSAl Viro 	__be32 *p;
15601da177e4SLinus Torvalds 
1561ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
15629b206149STrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
15631da177e4SLinus Torvalds 
156413c65ce9SBenny Halevy 	p = reserve_space(xdr, 12);
1565b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->offset);
156634558513SBenny Halevy 	*p = cpu_to_be32(args->count);
15671da177e4SLinus Torvalds }
15681da177e4SLinus Torvalds 
1569cf8cdbe5SAndy Adamson static void encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req, struct compound_hdr *hdr)
15701da177e4SLinus Torvalds {
1571aa9c2669SDavid Quigley 	uint32_t attrs[3] = {
157228331a46STrond Myklebust 		FATTR4_WORD0_RDATTR_ERROR,
157328331a46STrond Myklebust 		FATTR4_WORD1_MOUNTED_ON_FILEID,
157428331a46STrond Myklebust 	};
15756f7a35bdSTrond Myklebust 	uint32_t dircount = readdir->count >> 1;
1576cd93710eSChuck Lever 	__be32 *p, verf[2];
1577d204c5d2STrond Myklebust 	uint32_t attrlen = 0;
1578d204c5d2STrond Myklebust 	unsigned int i;
15791da177e4SLinus Torvalds 
158082f2e547SBryan Schumaker 	if (readdir->plus) {
158182f2e547SBryan Schumaker 		attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
158228331a46STrond Myklebust 			FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
158382f2e547SBryan Schumaker 		attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
158482f2e547SBryan Schumaker 			FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
158582f2e547SBryan Schumaker 			FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
158682f2e547SBryan Schumaker 			FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
1587d204c5d2STrond Myklebust 		attrs[2] |= FATTR4_WORD2_SECURITY_LABEL;
15886f7a35bdSTrond Myklebust 		dircount >>= 1;
158982f2e547SBryan Schumaker 	}
159028331a46STrond Myklebust 	/* Use mounted_on_fileid only if the server supports it */
159128331a46STrond Myklebust 	if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
159228331a46STrond Myklebust 		attrs[0] |= FATTR4_WORD0_FILEID;
1593d204c5d2STrond Myklebust 	for (i = 0; i < ARRAY_SIZE(attrs); i++) {
1594d204c5d2STrond Myklebust 		attrs[i] &= readdir->bitmask[i];
1595d204c5d2STrond Myklebust 		if (attrs[i] != 0)
1596d204c5d2STrond Myklebust 			attrlen = i+1;
1597d204c5d2STrond Myklebust 	}
15986f7a35bdSTrond Myklebust 
1599475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
1600ff2eb681STrond Myklebust 	encode_uint64(xdr, readdir->cookie);
1601cd93710eSChuck Lever 	encode_nfs4_verifier(xdr, &readdir->verifier);
1602d204c5d2STrond Myklebust 	p = reserve_space(xdr, 12 + (attrlen << 2));
16036f7a35bdSTrond Myklebust 	*p++ = cpu_to_be32(dircount);
16046f7a35bdSTrond Myklebust 	*p++ = cpu_to_be32(readdir->count);
1605d204c5d2STrond Myklebust 	*p++ = cpu_to_be32(attrlen);
1606d204c5d2STrond Myklebust 	for (i = 0; i < attrlen; i++)
1607d204c5d2STrond Myklebust 		*p++ = cpu_to_be32(attrs[i]);
1608cd93710eSChuck Lever 	memcpy(verf, readdir->verifier.data, sizeof(verf));
1609aa9c2669SDavid Quigley 
1610aa9c2669SDavid Quigley 	dprintk("%s: cookie = %llu, verifier = %08x:%08x, bitmap = %08x:%08x:%08x\n",
161144109241SFred Isaman 			__func__,
1612eadf4598STrond Myklebust 			(unsigned long long)readdir->cookie,
1613cd93710eSChuck Lever 			verf[0], verf[1],
1614eadf4598STrond Myklebust 			attrs[0] & readdir->bitmask[0],
1615aa9c2669SDavid Quigley 			attrs[1] & readdir->bitmask[1],
1616aa9c2669SDavid Quigley 			attrs[2] & readdir->bitmask[2]);
16171da177e4SLinus Torvalds }
16181da177e4SLinus Torvalds 
1619cf8cdbe5SAndy Adamson static void encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req, struct compound_hdr *hdr)
16201da177e4SLinus Torvalds {
1621ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
16221da177e4SLinus Torvalds }
16231da177e4SLinus Torvalds 
1624cf8cdbe5SAndy Adamson static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
16251da177e4SLinus Torvalds {
1626ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
16276fdfb0bcSTrond Myklebust 	encode_string(xdr, name->len, name->name);
16281da177e4SLinus Torvalds }
16291da177e4SLinus Torvalds 
1630cf8cdbe5SAndy Adamson static void encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_hdr *hdr)
16311da177e4SLinus Torvalds {
1632ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
1633811652bdSBenny Halevy 	encode_string(xdr, oldname->len, oldname->name);
1634811652bdSBenny Halevy 	encode_string(xdr, newname->len, newname->name);
16351da177e4SLinus Torvalds }
16361da177e4SLinus Torvalds 
1637bb4dae5eSChuck Lever static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1638bb4dae5eSChuck Lever 			 struct compound_hdr *hdr)
16391da177e4SLinus Torvalds {
1640475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
1641ff2eb681STrond Myklebust 	encode_uint64(xdr, clid);
16421da177e4SLinus Torvalds }
16431da177e4SLinus Torvalds 
1644cf8cdbe5SAndy Adamson static void
1645d017931cSAndy Adamson encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
164656ae19f3STrond Myklebust {
1647ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
164856ae19f3STrond Myklebust }
164956ae19f3STrond Myklebust 
16509f06c719SChuck Lever static void
1651d017931cSAndy Adamson encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
165223ec6965SJ. Bruce Fields {
16538687b63aSAl Viro 	__be32 *p;
165423ec6965SJ. Bruce Fields 
1655ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
1656ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, &zero_stateid);
165713c65ce9SBenny Halevy 	p = reserve_space(xdr, 2*4);
1658e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(1);
165934558513SBenny Halevy 	*p = cpu_to_be32(FATTR4_WORD0_ACL);
166013c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
166134558513SBenny Halevy 	*p = cpu_to_be32(arg->acl_len);
16628fbcf237SAndreas Gruenbacher 	xdr_write_pages(xdr, arg->acl_pages, 0, arg->acl_len);
166323ec6965SJ. Bruce Fields }
166423ec6965SJ. Bruce Fields 
1665cf8cdbe5SAndy Adamson static void
1666d017931cSAndy Adamson encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
16671da177e4SLinus Torvalds {
1668ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
16691da177e4SLinus Torvalds }
16701da177e4SLinus Torvalds 
1671cf8cdbe5SAndy Adamson static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
16721da177e4SLinus Torvalds {
1673ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
1674ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, &arg->stateid);
16755334c5bdSKinglong Mee 	encode_attrs(xdr, arg->iap, arg->label, server, false);
16761da177e4SLinus Torvalds }
16771da177e4SLinus Torvalds 
1678cf8cdbe5SAndy Adamson static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
16791da177e4SLinus Torvalds {
16808687b63aSAl Viro 	__be32 *p;
16811da177e4SLinus Torvalds 
168270019514STrond Myklebust 	encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
1683cd93710eSChuck Lever 	encode_nfs4_verifier(xdr, setclientid->sc_verifier);
16841da177e4SLinus Torvalds 
16853a6bb738SJeff Layton 	encode_string(xdr, strlen(setclientid->sc_clnt->cl_owner_id),
16863a6bb738SJeff Layton 			setclientid->sc_clnt->cl_owner_id);
168713c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
168834558513SBenny Halevy 	*p = cpu_to_be32(setclientid->sc_prog);
16891da177e4SLinus Torvalds 	encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
16901da177e4SLinus Torvalds 	encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
169113c65ce9SBenny Halevy 	p = reserve_space(xdr, 4);
16923a6bb738SJeff Layton 	*p = cpu_to_be32(setclientid->sc_clnt->cl_cb_ident);
16931da177e4SLinus Torvalds }
16941da177e4SLinus Torvalds 
1695bb8b27e5STrond Myklebust static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs4_setclientid_res *arg, struct compound_hdr *hdr)
16961da177e4SLinus Torvalds {
1697475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1698475d4ba0STrond Myklebust 			decode_setclientid_confirm_maxsz, hdr);
1699ff2eb681STrond Myklebust 	encode_uint64(xdr, arg->clientid);
1700cd93710eSChuck Lever 	encode_nfs4_verifier(xdr, &arg->confirm);
17011da177e4SLinus Torvalds }
17021da177e4SLinus Torvalds 
17033c6b899cSAnna Schumaker static void encode_write(struct xdr_stream *xdr, const struct nfs_pgio_args *args,
17043c6b899cSAnna Schumaker 			 struct compound_hdr *hdr)
17051da177e4SLinus Torvalds {
17068687b63aSAl Viro 	__be32 *p;
17071da177e4SLinus Torvalds 
1708ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
17099b206149STrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
17101da177e4SLinus Torvalds 
171113c65ce9SBenny Halevy 	p = reserve_space(xdr, 16);
1712b95be5a9SBenny Halevy 	p = xdr_encode_hyper(p, args->offset);
1713e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->stable);
171434558513SBenny Halevy 	*p = cpu_to_be32(args->count);
17151da177e4SLinus Torvalds 
17161da177e4SLinus Torvalds 	xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
17171da177e4SLinus Torvalds }
17181da177e4SLinus Torvalds 
1719cf8cdbe5SAndy Adamson static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
17201da177e4SLinus Torvalds {
1721ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
1722ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, stateid);
17231da177e4SLinus Torvalds }
17249b7b9fccSAndy Adamson 
17255a5ea0d4SBryan Schumaker static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
17265a5ea0d4SBryan Schumaker {
1727ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
17286fdfb0bcSTrond Myklebust 	encode_string(xdr, name->len, name->name);
17295a5ea0d4SBryan Schumaker }
17305a5ea0d4SBryan Schumaker 
173199fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
17329b7b9fccSAndy Adamson /* NFSv4.1 operations */
17337c44f1aeSWeston Andros Adamson static void encode_bind_conn_to_session(struct xdr_stream *xdr,
173471a097c6STrond Myklebust 				   struct nfs41_bind_conn_to_session_args *args,
17357c44f1aeSWeston Andros Adamson 				   struct compound_hdr *hdr)
17367c44f1aeSWeston Andros Adamson {
17377c44f1aeSWeston Andros Adamson 	__be32 *p;
17387c44f1aeSWeston Andros Adamson 
17397c44f1aeSWeston Andros Adamson 	encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
17407c44f1aeSWeston Andros Adamson 		decode_bind_conn_to_session_maxsz, hdr);
174171a097c6STrond Myklebust 	encode_opaque_fixed(xdr, args->sessionid.data, NFS4_MAX_SESSIONID_LEN);
17427c44f1aeSWeston Andros Adamson 	p = xdr_reserve_space(xdr, 8);
174371a097c6STrond Myklebust 	*p++ = cpu_to_be32(args->dir);
174471a097c6STrond Myklebust 	*p = (args->use_conn_in_rdma_mode) ? cpu_to_be32(1) : cpu_to_be32(0);
17457c44f1aeSWeston Andros Adamson }
17467c44f1aeSWeston Andros Adamson 
17472031cd1aSWeston Andros Adamson static void encode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
17482031cd1aSWeston Andros Adamson {
17492031cd1aSWeston Andros Adamson 	unsigned int i;
17502031cd1aSWeston Andros Adamson 	encode_uint32(xdr, NFS4_OP_MAP_NUM_WORDS);
17512031cd1aSWeston Andros Adamson 	for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++)
17522031cd1aSWeston Andros Adamson 		encode_uint32(xdr, op_map->u.words[i]);
17532031cd1aSWeston Andros Adamson }
17542031cd1aSWeston Andros Adamson 
175599fe60d0SBenny Halevy static void encode_exchange_id(struct xdr_stream *xdr,
175699fe60d0SBenny Halevy 			       struct nfs41_exchange_id_args *args,
175799fe60d0SBenny Halevy 			       struct compound_hdr *hdr)
175899fe60d0SBenny Halevy {
175999fe60d0SBenny Halevy 	__be32 *p;
1760d751f748SJim Rees 	char impl_name[IMPL_NAME_LIMIT];
1761db8ac8baSWeston Andros Adamson 	int len = 0;
176299fe60d0SBenny Halevy 
176370019514STrond Myklebust 	encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
1764cd93710eSChuck Lever 	encode_nfs4_verifier(xdr, args->verifier);
176599fe60d0SBenny Halevy 
17663a6bb738SJeff Layton 	encode_string(xdr, strlen(args->client->cl_owner_id),
17673a6bb738SJeff Layton 			args->client->cl_owner_id);
176899fe60d0SBenny Halevy 
17692031cd1aSWeston Andros Adamson 	encode_uint32(xdr, args->flags);
17702031cd1aSWeston Andros Adamson 	encode_uint32(xdr, args->state_protect.how);
17712031cd1aSWeston Andros Adamson 
17722031cd1aSWeston Andros Adamson 	switch (args->state_protect.how) {
17732031cd1aSWeston Andros Adamson 	case SP4_NONE:
17742031cd1aSWeston Andros Adamson 		break;
17752031cd1aSWeston Andros Adamson 	case SP4_MACH_CRED:
17762031cd1aSWeston Andros Adamson 		encode_op_map(xdr, &args->state_protect.enforce);
17772031cd1aSWeston Andros Adamson 		encode_op_map(xdr, &args->state_protect.allow);
17782031cd1aSWeston Andros Adamson 		break;
17792031cd1aSWeston Andros Adamson 	default:
17802031cd1aSWeston Andros Adamson 		WARN_ON_ONCE(1);
17812031cd1aSWeston Andros Adamson 		break;
17822031cd1aSWeston Andros Adamson 	}
1783db8ac8baSWeston Andros Adamson 
1784db8ac8baSWeston Andros Adamson 	if (send_implementation_id &&
1785db8ac8baSWeston Andros Adamson 	    sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1786db8ac8baSWeston Andros Adamson 	    sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1787d751f748SJim Rees 		<= sizeof(impl_name) + 1)
1788db8ac8baSWeston Andros Adamson 		len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1789db8ac8baSWeston Andros Adamson 			       utsname()->sysname, utsname()->release,
1790db8ac8baSWeston Andros Adamson 			       utsname()->version, utsname()->machine);
1791db8ac8baSWeston Andros Adamson 
1792db8ac8baSWeston Andros Adamson 	if (len > 0) {
17932031cd1aSWeston Andros Adamson 		encode_uint32(xdr, 1);	/* implementation id array length=1 */
1794db8ac8baSWeston Andros Adamson 
1795db8ac8baSWeston Andros Adamson 		encode_string(xdr,
1796db8ac8baSWeston Andros Adamson 			sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1797db8ac8baSWeston Andros Adamson 			CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1798db8ac8baSWeston Andros Adamson 		encode_string(xdr, len, impl_name);
1799db8ac8baSWeston Andros Adamson 		/* just send zeros for nii_date - the date is in nii_name */
1800db8ac8baSWeston Andros Adamson 		p = reserve_space(xdr, 12);
1801db8ac8baSWeston Andros Adamson 		p = xdr_encode_hyper(p, 0);
1802db8ac8baSWeston Andros Adamson 		*p = cpu_to_be32(0);
1803db8ac8baSWeston Andros Adamson 	} else
18042031cd1aSWeston Andros Adamson 		encode_uint32(xdr, 0);	/* implementation id array length=0 */
180599fe60d0SBenny Halevy }
1806fc931582SAndy Adamson 
1807fc931582SAndy Adamson static void encode_create_session(struct xdr_stream *xdr,
1808fc931582SAndy Adamson 				  struct nfs41_create_session_args *args,
1809fc931582SAndy Adamson 				  struct compound_hdr *hdr)
1810fc931582SAndy Adamson {
1811fc931582SAndy Adamson 	__be32 *p;
1812fc931582SAndy Adamson 	struct nfs_client *clp = args->client;
181389f0ff38STrond Myklebust 	struct rpc_clnt *clnt = clp->cl_rpcclient;
1814f092075dSChuck Lever 	struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
18158e0d46e1SMike Sager 	u32 max_resp_sz_cached;
18168e0d46e1SMike Sager 
18178e0d46e1SMike Sager 	/*
18188e0d46e1SMike Sager 	 * Assumes OPEN is the biggest non-idempotent compound.
18198e0d46e1SMike Sager 	 * 2 is the verifier.
18208e0d46e1SMike Sager 	 */
18218e0d46e1SMike Sager 	max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
18228e0d46e1SMike Sager 			      RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
1823fc931582SAndy Adamson 
1824475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
182589f0ff38STrond Myklebust 	p = reserve_space(xdr, 16 + 2*28 + 20 + clnt->cl_nodelen + 12);
182679969dd1STrond Myklebust 	p = xdr_encode_hyper(p, args->clientid);
182779969dd1STrond Myklebust 	*p++ = cpu_to_be32(args->seqid);			/*Sequence id */
1828e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->flags);			/*flags */
1829fc931582SAndy Adamson 
1830fc931582SAndy Adamson 	/* Fore Channel */
1831c9c30dd5SBenny Halevy 	*p++ = cpu_to_be32(0);				/* header padding size */
1832e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz);	/* max req size */
1833e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->fc_attrs.max_resp_sz);	/* max resp size */
18348e0d46e1SMike Sager 	*p++ = cpu_to_be32(max_resp_sz_cached);		/* Max resp sz cached */
1835e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->fc_attrs.max_ops);	/* max operations */
1836e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->fc_attrs.max_reqs);	/* max requests */
1837e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(0);				/* rdmachannel_attrs */
1838fc931582SAndy Adamson 
1839fc931582SAndy Adamson 	/* Back Channel */
1840c9c30dd5SBenny Halevy 	*p++ = cpu_to_be32(0);				/* header padding size */
1841e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz);	/* max req size */
1842e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->bc_attrs.max_resp_sz);	/* max resp size */
1843e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached);	/* Max resp sz cached */
1844e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->bc_attrs.max_ops);	/* max operations */
1845e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->bc_attrs.max_reqs);	/* max requests */
1846e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(0);				/* rdmachannel_attrs */
1847fc931582SAndy Adamson 
1848e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(args->cb_program);		/* cb_program */
1849e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(1);
1850e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(RPC_AUTH_UNIX);			/* auth_sys */
1851fc931582SAndy Adamson 
1852fc931582SAndy Adamson 	/* authsys_parms rfc1831 */
185317f26b12STrond Myklebust 	*p++ = cpu_to_be32(nn->boot_time.tv_nsec);	/* stamp */
185489f0ff38STrond Myklebust 	p = xdr_encode_array(p, clnt->cl_nodename, clnt->cl_nodelen);
1855e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(0);				/* UID */
1856e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(0);				/* GID */
185734558513SBenny Halevy 	*p = cpu_to_be32(0);				/* No more gids */
1858fc931582SAndy Adamson }
18590f3e66c6SAndy Adamson 
18600f3e66c6SAndy Adamson static void encode_destroy_session(struct xdr_stream *xdr,
18610f3e66c6SAndy Adamson 				   struct nfs4_session *session,
18620f3e66c6SAndy Adamson 				   struct compound_hdr *hdr)
18630f3e66c6SAndy Adamson {
1864475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1865475d4ba0STrond Myklebust 	encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
18660f3e66c6SAndy Adamson }
186718019753SRicardo Labiaga 
186866245539STrond Myklebust static void encode_destroy_clientid(struct xdr_stream *xdr,
186966245539STrond Myklebust 				   uint64_t clientid,
187066245539STrond Myklebust 				   struct compound_hdr *hdr)
187166245539STrond Myklebust {
187266245539STrond Myklebust 	encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
187366245539STrond Myklebust 	encode_uint64(xdr, clientid);
187466245539STrond Myklebust }
187566245539STrond Myklebust 
187618019753SRicardo Labiaga static void encode_reclaim_complete(struct xdr_stream *xdr,
187718019753SRicardo Labiaga 				    struct nfs41_reclaim_complete_args *args,
187818019753SRicardo Labiaga 				    struct compound_hdr *hdr)
187918019753SRicardo Labiaga {
1880475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1881475d4ba0STrond Myklebust 	encode_uint32(xdr, args->one_fs);
188218019753SRicardo Labiaga }
188399fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
188499fe60d0SBenny Halevy 
18859b7b9fccSAndy Adamson static void encode_sequence(struct xdr_stream *xdr,
18869b7b9fccSAndy Adamson 			    const struct nfs4_sequence_args *args,
18879b7b9fccSAndy Adamson 			    struct compound_hdr *hdr)
18889b7b9fccSAndy Adamson {
18899b7b9fccSAndy Adamson #if defined(CONFIG_NFS_V4_1)
18902b2fa717STrond Myklebust 	struct nfs4_session *session;
1891fc01cea9SAndy Adamson 	struct nfs4_slot_table *tp;
18922b2fa717STrond Myklebust 	struct nfs4_slot *slot = args->sa_slot;
1893fc01cea9SAndy Adamson 	__be32 *p;
18949b7b9fccSAndy Adamson 
18952b2fa717STrond Myklebust 	tp = slot->table;
18962b2fa717STrond Myklebust 	session = tp->session;
18973bd2384aSChuck Lever 	if (!session)
18983bd2384aSChuck Lever 		return;
1899fc01cea9SAndy Adamson 
1900475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
1901fc01cea9SAndy Adamson 
1902fc01cea9SAndy Adamson 	/*
1903fc01cea9SAndy Adamson 	 * Sessionid + seqid + slotid + max slotid + cache_this
1904fc01cea9SAndy Adamson 	 */
1905fc01cea9SAndy Adamson 	dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1906fc01cea9SAndy Adamson 		"max_slotid=%d cache_this=%d\n",
1907fc01cea9SAndy Adamson 		__func__,
1908fc01cea9SAndy Adamson 		((u32 *)session->sess_id.data)[0],
1909fc01cea9SAndy Adamson 		((u32 *)session->sess_id.data)[1],
1910fc01cea9SAndy Adamson 		((u32 *)session->sess_id.data)[2],
1911fc01cea9SAndy Adamson 		((u32 *)session->sess_id.data)[3],
19122b2fa717STrond Myklebust 		slot->seq_nr, slot->slot_nr,
1913fc01cea9SAndy Adamson 		tp->highest_used_slotid, args->sa_cache_this);
1914475d4ba0STrond Myklebust 	p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
191593f0cf25SBenny Halevy 	p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1916e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(slot->seq_nr);
19172b2fa717STrond Myklebust 	*p++ = cpu_to_be32(slot->slot_nr);
1918e75bc1c8SBenny Halevy 	*p++ = cpu_to_be32(tp->highest_used_slotid);
191934558513SBenny Halevy 	*p = cpu_to_be32(args->sa_cache_this);
19209b7b9fccSAndy Adamson #endif /* CONFIG_NFS_V4_1 */
19219b7b9fccSAndy Adamson }
19229b7b9fccSAndy Adamson 
1923b1f69b75SAndy Adamson #ifdef CONFIG_NFS_V4_1
1924b1f69b75SAndy Adamson static void
1925b1f69b75SAndy Adamson encode_getdeviceinfo(struct xdr_stream *xdr,
1926b1f69b75SAndy Adamson 		     const struct nfs4_getdeviceinfo_args *args,
1927b1f69b75SAndy Adamson 		     struct compound_hdr *hdr)
1928b1f69b75SAndy Adamson {
1929b1f69b75SAndy Adamson 	__be32 *p;
1930b1f69b75SAndy Adamson 
1931475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
193284c9dee3SChristoph Hellwig 	p = reserve_space(xdr, NFS4_DEVICEID4_SIZE + 4 + 4);
1933b1f69b75SAndy Adamson 	p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1934b1f69b75SAndy Adamson 				    NFS4_DEVICEID4_SIZE);
1935b1f69b75SAndy Adamson 	*p++ = cpu_to_be32(args->pdev->layout_type);
1936f1c097beSAndy Adamson 	*p++ = cpu_to_be32(args->pdev->maxcount);	/* gdia_maxcount */
193784c9dee3SChristoph Hellwig 
193884c9dee3SChristoph Hellwig 	p = reserve_space(xdr, 4 + 4);
193984c9dee3SChristoph Hellwig 	*p++ = cpu_to_be32(1);			/* bitmap length */
19404e590803STrond Myklebust 	*p++ = cpu_to_be32(args->notify_types);
1941b1f69b75SAndy Adamson }
1942b1f69b75SAndy Adamson 
1943b1f69b75SAndy Adamson static void
1944b1f69b75SAndy Adamson encode_layoutget(struct xdr_stream *xdr,
1945b1f69b75SAndy Adamson 		      const struct nfs4_layoutget_args *args,
1946b1f69b75SAndy Adamson 		      struct compound_hdr *hdr)
1947b1f69b75SAndy Adamson {
1948b1f69b75SAndy Adamson 	__be32 *p;
1949b1f69b75SAndy Adamson 
1950475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1951475d4ba0STrond Myklebust 	p = reserve_space(xdr, 36);
1952b1f69b75SAndy Adamson 	*p++ = cpu_to_be32(0);     /* Signal layout available */
1953b1f69b75SAndy Adamson 	*p++ = cpu_to_be32(args->type);
1954b1f69b75SAndy Adamson 	*p++ = cpu_to_be32(args->range.iomode);
1955b1f69b75SAndy Adamson 	p = xdr_encode_hyper(p, args->range.offset);
1956b1f69b75SAndy Adamson 	p = xdr_encode_hyper(p, args->range.length);
1957b1f69b75SAndy Adamson 	p = xdr_encode_hyper(p, args->minlength);
1958ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
1959475d4ba0STrond Myklebust 	encode_uint32(xdr, args->maxcount);
1960b1f69b75SAndy Adamson 
1961b1f69b75SAndy Adamson 	dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1962b1f69b75SAndy Adamson 		__func__,
1963b1f69b75SAndy Adamson 		args->type,
1964b1f69b75SAndy Adamson 		args->range.iomode,
1965b1f69b75SAndy Adamson 		(unsigned long)args->range.offset,
1966b1f69b75SAndy Adamson 		(unsigned long)args->range.length,
1967b1f69b75SAndy Adamson 		args->maxcount);
1968b1f69b75SAndy Adamson }
1969863a3c6cSAndy Adamson 
1970863a3c6cSAndy Adamson static int
1971863a3c6cSAndy Adamson encode_layoutcommit(struct xdr_stream *xdr,
1972ac7db726SBenny Halevy 		    struct inode *inode,
19735f919c9fSChristoph Hellwig 		    struct nfs4_layoutcommit_args *args,
1974863a3c6cSAndy Adamson 		    struct compound_hdr *hdr)
1975863a3c6cSAndy Adamson {
1976863a3c6cSAndy Adamson 	__be32 *p;
1977863a3c6cSAndy Adamson 
1978863a3c6cSAndy Adamson 	dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1979863a3c6cSAndy Adamson 		NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1980863a3c6cSAndy Adamson 
1981475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
1982475d4ba0STrond Myklebust 	p = reserve_space(xdr, 20);
1983863a3c6cSAndy Adamson 	/* Only whole file layouts */
1984863a3c6cSAndy Adamson 	p = xdr_encode_hyper(p, 0); /* offset */
19853557c6c3SPeng Tao 	p = xdr_encode_hyper(p, args->lastbytewritten + 1);	/* length */
1986ea9d23f5STrond Myklebust 	*p = cpu_to_be32(0); /* reclaim */
1987ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
1988ea9d23f5STrond Myklebust 	p = reserve_space(xdr, 20);
1989863a3c6cSAndy Adamson 	*p++ = cpu_to_be32(1); /* newoffset = TRUE */
1990863a3c6cSAndy Adamson 	p = xdr_encode_hyper(p, args->lastbytewritten);
1991863a3c6cSAndy Adamson 	*p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1992863a3c6cSAndy Adamson 	*p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
1993ac7db726SBenny Halevy 
19945f919c9fSChristoph Hellwig 	if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit) {
1995ac7db726SBenny Halevy 		NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1996ac7db726SBenny Halevy 			NFS_I(inode)->layout, xdr, args);
19975f919c9fSChristoph Hellwig 	} else {
19985f919c9fSChristoph Hellwig 		encode_uint32(xdr, args->layoutupdate_len);
19995f919c9fSChristoph Hellwig 		if (args->layoutupdate_pages) {
20005f919c9fSChristoph Hellwig 			xdr_write_pages(xdr, args->layoutupdate_pages, 0,
20015f919c9fSChristoph Hellwig 					args->layoutupdate_len);
20025f919c9fSChristoph Hellwig 		}
20035f919c9fSChristoph Hellwig 	}
2004863a3c6cSAndy Adamson 
2005863a3c6cSAndy Adamson 	return 0;
2006863a3c6cSAndy Adamson }
2007cbe82603SBenny Halevy 
2008cbe82603SBenny Halevy static void
2009cbe82603SBenny Halevy encode_layoutreturn(struct xdr_stream *xdr,
2010cbe82603SBenny Halevy 		    const struct nfs4_layoutreturn_args *args,
2011cbe82603SBenny Halevy 		    struct compound_hdr *hdr)
2012cbe82603SBenny Halevy {
2013cbe82603SBenny Halevy 	__be32 *p;
2014cbe82603SBenny Halevy 
2015475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
2016475d4ba0STrond Myklebust 	p = reserve_space(xdr, 16);
2017cbe82603SBenny Halevy 	*p++ = cpu_to_be32(0);		/* reclaim. always 0 for now */
2018cbe82603SBenny Halevy 	*p++ = cpu_to_be32(args->layout_type);
201915eb67c1SPeng Tao 	*p++ = cpu_to_be32(args->range.iomode);
2020cbe82603SBenny Halevy 	*p = cpu_to_be32(RETURN_FILE);
2021ea9d23f5STrond Myklebust 	p = reserve_space(xdr, 16);
202215eb67c1SPeng Tao 	p = xdr_encode_hyper(p, args->range.offset);
202315eb67c1SPeng Tao 	p = xdr_encode_hyper(p, args->range.length);
2024cbe82603SBenny Halevy 	spin_lock(&args->inode->i_lock);
2025ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
2026cbe82603SBenny Halevy 	spin_unlock(&args->inode->i_lock);
202704a55549SAndy Adamson 	if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
202804a55549SAndy Adamson 		NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
202904a55549SAndy Adamson 			NFS_I(args->inode)->layout, xdr, args);
2030475d4ba0STrond Myklebust 	} else
2031475d4ba0STrond Myklebust 		encode_uint32(xdr, 0);
2032cbe82603SBenny Halevy }
2033fca78d6dSBryan Schumaker 
2034fca78d6dSBryan Schumaker static int
2035fca78d6dSBryan Schumaker encode_secinfo_no_name(struct xdr_stream *xdr,
2036fca78d6dSBryan Schumaker 		       const struct nfs41_secinfo_no_name_args *args,
2037fca78d6dSBryan Schumaker 		       struct compound_hdr *hdr)
2038fca78d6dSBryan Schumaker {
2039475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
2040475d4ba0STrond Myklebust 	encode_uint32(xdr, args->style);
2041fca78d6dSBryan Schumaker 	return 0;
2042fca78d6dSBryan Schumaker }
20437d974794SBryan Schumaker 
20447d974794SBryan Schumaker static void encode_test_stateid(struct xdr_stream *xdr,
20457d974794SBryan Schumaker 				struct nfs41_test_stateid_args *args,
20467d974794SBryan Schumaker 				struct compound_hdr *hdr)
20477d974794SBryan Schumaker {
2048475d4ba0STrond Myklebust 	encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2049475d4ba0STrond Myklebust 	encode_uint32(xdr, 1);
2050ea9d23f5STrond Myklebust 	encode_nfs4_stateid(xdr, args->stateid);
20517d974794SBryan Schumaker }
20529aeda35fSBryan Schumaker 
20539aeda35fSBryan Schumaker static void encode_free_stateid(struct xdr_stream *xdr,
20549aeda35fSBryan Schumaker 				struct nfs41_free_stateid_args *args,
20559aeda35fSBryan Schumaker 				struct compound_hdr *hdr)
20569aeda35fSBryan Schumaker {
2057ab19b481STrond Myklebust 	encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
20587c1d5faeSTrond Myklebust 	encode_nfs4_stateid(xdr, &args->stateid);
20599aeda35fSBryan Schumaker }
2060b1f69b75SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
2061b1f69b75SAndy Adamson 
20621da177e4SLinus Torvalds /*
20631da177e4SLinus Torvalds  * END OF "GENERIC" ENCODE ROUTINES.
20641da177e4SLinus Torvalds  */
20651da177e4SLinus Torvalds 
206666cc0429SBenny Halevy static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
206766cc0429SBenny Halevy {
206866cc0429SBenny Halevy #if defined(CONFIG_NFS_V4_1)
20693bd2384aSChuck Lever 	struct nfs4_session *session = args->sa_slot->table->session;
20703bd2384aSChuck Lever 	if (session)
20713bd2384aSChuck Lever 		return session->clp->cl_mvops->minor_version;
207266cc0429SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
207366cc0429SBenny Halevy 	return 0;
207466cc0429SBenny Halevy }
207566cc0429SBenny Halevy 
20761da177e4SLinus Torvalds /*
20771da177e4SLinus Torvalds  * Encode an ACCESS request
20781da177e4SLinus Torvalds  */
20799f06c719SChuck Lever static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
20809f06c719SChuck Lever 				const struct nfs4_accessargs *args)
20811da177e4SLinus Torvalds {
20821da177e4SLinus Torvalds 	struct compound_hdr hdr = {
208366cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
20841da177e4SLinus Torvalds 	};
20851da177e4SLinus Torvalds 
20869f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
20879f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
20889f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
20899f06c719SChuck Lever 	encode_access(xdr, args->access, &hdr);
20909f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2091d017931cSAndy Adamson 	encode_nops(&hdr);
20921da177e4SLinus Torvalds }
20931da177e4SLinus Torvalds 
20941da177e4SLinus Torvalds /*
20951da177e4SLinus Torvalds  * Encode LOOKUP request
20961da177e4SLinus Torvalds  */
20979f06c719SChuck Lever static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
20989f06c719SChuck Lever 				const struct nfs4_lookup_arg *args)
20991da177e4SLinus Torvalds {
21001da177e4SLinus Torvalds 	struct compound_hdr hdr = {
210166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21021da177e4SLinus Torvalds 	};
21031da177e4SLinus Torvalds 
21049f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
21059f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
21069f06c719SChuck Lever 	encode_putfh(xdr, args->dir_fh, &hdr);
21079f06c719SChuck Lever 	encode_lookup(xdr, args->name, &hdr);
21089f06c719SChuck Lever 	encode_getfh(xdr, &hdr);
21099f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2110d017931cSAndy Adamson 	encode_nops(&hdr);
21111da177e4SLinus Torvalds }
21121da177e4SLinus Torvalds 
21131da177e4SLinus Torvalds /*
21141da177e4SLinus Torvalds  * Encode LOOKUP_ROOT request
21151da177e4SLinus Torvalds  */
21169f06c719SChuck Lever static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
21179f06c719SChuck Lever 				     struct xdr_stream *xdr,
21189f06c719SChuck Lever 				     const struct nfs4_lookup_root_arg *args)
21191da177e4SLinus Torvalds {
21201da177e4SLinus Torvalds 	struct compound_hdr hdr = {
212166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21221da177e4SLinus Torvalds 	};
21231da177e4SLinus Torvalds 
21249f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
21259f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
21269f06c719SChuck Lever 	encode_putrootfh(xdr, &hdr);
21279f06c719SChuck Lever 	encode_getfh(xdr, &hdr);
21289f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2129d017931cSAndy Adamson 	encode_nops(&hdr);
21301da177e4SLinus Torvalds }
21311da177e4SLinus Torvalds 
21321da177e4SLinus Torvalds /*
21331da177e4SLinus Torvalds  * Encode REMOVE request
21341da177e4SLinus Torvalds  */
21359f06c719SChuck Lever static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
21369f06c719SChuck Lever 				const struct nfs_removeargs *args)
21371da177e4SLinus Torvalds {
21381da177e4SLinus Torvalds 	struct compound_hdr hdr = {
213966cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21401da177e4SLinus Torvalds 	};
21411da177e4SLinus Torvalds 
21429f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
21439f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
21449f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
21459f06c719SChuck Lever 	encode_remove(xdr, &args->name, &hdr);
2146d017931cSAndy Adamson 	encode_nops(&hdr);
21471da177e4SLinus Torvalds }
21481da177e4SLinus Torvalds 
21491da177e4SLinus Torvalds /*
21501da177e4SLinus Torvalds  * Encode RENAME request
21511da177e4SLinus Torvalds  */
21529f06c719SChuck Lever static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
21539f06c719SChuck Lever 				const struct nfs_renameargs *args)
21541da177e4SLinus Torvalds {
21551da177e4SLinus Torvalds 	struct compound_hdr hdr = {
215666cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21571da177e4SLinus Torvalds 	};
21581da177e4SLinus Torvalds 
21599f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
21609f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
21619f06c719SChuck Lever 	encode_putfh(xdr, args->old_dir, &hdr);
21629f06c719SChuck Lever 	encode_savefh(xdr, &hdr);
21639f06c719SChuck Lever 	encode_putfh(xdr, args->new_dir, &hdr);
21649f06c719SChuck Lever 	encode_rename(xdr, args->old_name, args->new_name, &hdr);
2165d017931cSAndy Adamson 	encode_nops(&hdr);
21661da177e4SLinus Torvalds }
21671da177e4SLinus Torvalds 
21681da177e4SLinus Torvalds /*
21691da177e4SLinus Torvalds  * Encode LINK request
21701da177e4SLinus Torvalds  */
21719f06c719SChuck Lever static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
21729f06c719SChuck Lever 			     const struct nfs4_link_arg *args)
21731da177e4SLinus Torvalds {
21741da177e4SLinus Torvalds 	struct compound_hdr hdr = {
217566cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21761da177e4SLinus Torvalds 	};
21771da177e4SLinus Torvalds 
21789f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
21799f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
21809f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
21819f06c719SChuck Lever 	encode_savefh(xdr, &hdr);
21829f06c719SChuck Lever 	encode_putfh(xdr, args->dir_fh, &hdr);
21839f06c719SChuck Lever 	encode_link(xdr, args->name, &hdr);
21849f06c719SChuck Lever 	encode_restorefh(xdr, &hdr);
21859f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2186d017931cSAndy Adamson 	encode_nops(&hdr);
21871da177e4SLinus Torvalds }
21881da177e4SLinus Torvalds 
21891da177e4SLinus Torvalds /*
21901da177e4SLinus Torvalds  * Encode CREATE request
21911da177e4SLinus Torvalds  */
21929f06c719SChuck Lever static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
21939f06c719SChuck Lever 				const struct nfs4_create_arg *args)
21941da177e4SLinus Torvalds {
21951da177e4SLinus Torvalds 	struct compound_hdr hdr = {
219666cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
21971da177e4SLinus Torvalds 	};
21981da177e4SLinus Torvalds 
21999f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
22009f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
22019f06c719SChuck Lever 	encode_putfh(xdr, args->dir_fh, &hdr);
22029f06c719SChuck Lever 	encode_create(xdr, args, &hdr);
22039f06c719SChuck Lever 	encode_getfh(xdr, &hdr);
22049f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2205d017931cSAndy Adamson 	encode_nops(&hdr);
22061da177e4SLinus Torvalds }
22071da177e4SLinus Torvalds 
22081da177e4SLinus Torvalds /*
22091da177e4SLinus Torvalds  * Encode SYMLINK request
22101da177e4SLinus Torvalds  */
22119f06c719SChuck Lever static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
22129f06c719SChuck Lever 				 const struct nfs4_create_arg *args)
22131da177e4SLinus Torvalds {
22149f06c719SChuck Lever 	nfs4_xdr_enc_create(req, xdr, args);
22151da177e4SLinus Torvalds }
22161da177e4SLinus Torvalds 
22171da177e4SLinus Torvalds /*
22181da177e4SLinus Torvalds  * Encode GETATTR request
22191da177e4SLinus Torvalds  */
22209f06c719SChuck Lever static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
22219f06c719SChuck Lever 				 const struct nfs4_getattr_arg *args)
22221da177e4SLinus Torvalds {
22231da177e4SLinus Torvalds 	struct compound_hdr hdr = {
222466cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
22251da177e4SLinus Torvalds 	};
22261da177e4SLinus Torvalds 
22279f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
22289f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
22299f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
22309f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2231d017931cSAndy Adamson 	encode_nops(&hdr);
22321da177e4SLinus Torvalds }
22331da177e4SLinus Torvalds 
22341da177e4SLinus Torvalds /*
22351da177e4SLinus Torvalds  * Encode a CLOSE request
22361da177e4SLinus Torvalds  */
22379f06c719SChuck Lever static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
22389f06c719SChuck Lever 			       struct nfs_closeargs *args)
22391da177e4SLinus Torvalds {
22401da177e4SLinus Torvalds 	struct compound_hdr hdr = {
224166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
22421da177e4SLinus Torvalds 	};
22431da177e4SLinus Torvalds 
22449f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
22459f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
22469f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
22479f06c719SChuck Lever 	encode_close(xdr, args, &hdr);
22489f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2249d017931cSAndy Adamson 	encode_nops(&hdr);
22501da177e4SLinus Torvalds }
22511da177e4SLinus Torvalds 
22521da177e4SLinus Torvalds /*
22531da177e4SLinus Torvalds  * Encode an OPEN request
22541da177e4SLinus Torvalds  */
22559f06c719SChuck Lever static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
22569f06c719SChuck Lever 			      struct nfs_openargs *args)
22571da177e4SLinus Torvalds {
22581da177e4SLinus Torvalds 	struct compound_hdr hdr = {
225966cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
22601da177e4SLinus Torvalds 	};
22611da177e4SLinus Torvalds 
22629f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
22639f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
22649f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
22659f06c719SChuck Lever 	encode_open(xdr, args, &hdr);
22669f06c719SChuck Lever 	encode_getfh(xdr, &hdr);
2267ae2bb032SWeston Andros Adamson 	if (args->access)
22686168f62cSWeston Andros Adamson 		encode_access(xdr, args->access, &hdr);
22691549210fSTrond Myklebust 	encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
2270d017931cSAndy Adamson 	encode_nops(&hdr);
22711da177e4SLinus Torvalds }
22721da177e4SLinus Torvalds 
22731da177e4SLinus Torvalds /*
22741da177e4SLinus Torvalds  * Encode an OPEN_CONFIRM request
22751da177e4SLinus Torvalds  */
22769f06c719SChuck Lever static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
22779f06c719SChuck Lever 				      struct xdr_stream *xdr,
22789f06c719SChuck Lever 				      struct nfs_open_confirmargs *args)
22791da177e4SLinus Torvalds {
22801da177e4SLinus Torvalds 	struct compound_hdr hdr = {
2281d017931cSAndy Adamson 		.nops   = 0,
22821da177e4SLinus Torvalds 	};
22831da177e4SLinus Torvalds 
22849f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
22859f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
22869f06c719SChuck Lever 	encode_open_confirm(xdr, args, &hdr);
2287d017931cSAndy Adamson 	encode_nops(&hdr);
22881da177e4SLinus Torvalds }
22891da177e4SLinus Torvalds 
22901da177e4SLinus Torvalds /*
22911da177e4SLinus Torvalds  * Encode an OPEN request with no attributes.
22921da177e4SLinus Torvalds  */
22939f06c719SChuck Lever static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
22949f06c719SChuck Lever 				     struct xdr_stream *xdr,
22959f06c719SChuck Lever 				     struct nfs_openargs *args)
22961da177e4SLinus Torvalds {
22971da177e4SLinus Torvalds 	struct compound_hdr hdr = {
229866cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
22991da177e4SLinus Torvalds 	};
23001da177e4SLinus Torvalds 
23019f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23029f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
23039f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
23049f06c719SChuck Lever 	encode_open(xdr, args, &hdr);
2305ae2bb032SWeston Andros Adamson 	if (args->access)
23066168f62cSWeston Andros Adamson 		encode_access(xdr, args->access, &hdr);
2307e23008ecSAndy Adamson 	encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
2308d017931cSAndy Adamson 	encode_nops(&hdr);
23091da177e4SLinus Torvalds }
23101da177e4SLinus Torvalds 
23111da177e4SLinus Torvalds /*
23121da177e4SLinus Torvalds  * Encode an OPEN_DOWNGRADE request
23131da177e4SLinus Torvalds  */
23149f06c719SChuck Lever static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
23159f06c719SChuck Lever 					struct xdr_stream *xdr,
23169f06c719SChuck Lever 					struct nfs_closeargs *args)
23171da177e4SLinus Torvalds {
23181da177e4SLinus Torvalds 	struct compound_hdr hdr = {
231966cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
23201da177e4SLinus Torvalds 	};
23211da177e4SLinus Torvalds 
23229f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23239f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
23249f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
23259f06c719SChuck Lever 	encode_open_downgrade(xdr, args, &hdr);
23269f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2327d017931cSAndy Adamson 	encode_nops(&hdr);
23281da177e4SLinus Torvalds }
23291da177e4SLinus Torvalds 
23301da177e4SLinus Torvalds /*
23311da177e4SLinus Torvalds  * Encode a LOCK request
23321da177e4SLinus Torvalds  */
23339f06c719SChuck Lever static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
23349f06c719SChuck Lever 			      struct nfs_lock_args *args)
23351da177e4SLinus Torvalds {
23361da177e4SLinus Torvalds 	struct compound_hdr hdr = {
233766cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
23381da177e4SLinus Torvalds 	};
23391da177e4SLinus Torvalds 
23409f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23419f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
23429f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
23439f06c719SChuck Lever 	encode_lock(xdr, args, &hdr);
2344d017931cSAndy Adamson 	encode_nops(&hdr);
23451da177e4SLinus Torvalds }
23461da177e4SLinus Torvalds 
23471da177e4SLinus Torvalds /*
23481da177e4SLinus Torvalds  * Encode a LOCKT request
23491da177e4SLinus Torvalds  */
23509f06c719SChuck Lever static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
23519f06c719SChuck Lever 			       struct nfs_lockt_args *args)
23521da177e4SLinus Torvalds {
23531da177e4SLinus Torvalds 	struct compound_hdr hdr = {
235466cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
23551da177e4SLinus Torvalds 	};
23561da177e4SLinus Torvalds 
23579f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23589f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
23599f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
23609f06c719SChuck Lever 	encode_lockt(xdr, args, &hdr);
2361d017931cSAndy Adamson 	encode_nops(&hdr);
23621da177e4SLinus Torvalds }
23631da177e4SLinus Torvalds 
23641da177e4SLinus Torvalds /*
23651da177e4SLinus Torvalds  * Encode a LOCKU request
23661da177e4SLinus Torvalds  */
23679f06c719SChuck Lever static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
23689f06c719SChuck Lever 			       struct nfs_locku_args *args)
23691da177e4SLinus Torvalds {
23701da177e4SLinus Torvalds 	struct compound_hdr hdr = {
237166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
23721da177e4SLinus Torvalds 	};
23731da177e4SLinus Torvalds 
23749f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23759f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
23769f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
23779f06c719SChuck Lever 	encode_locku(xdr, args, &hdr);
2378d017931cSAndy Adamson 	encode_nops(&hdr);
23791da177e4SLinus Torvalds }
23801da177e4SLinus Torvalds 
23819f06c719SChuck Lever static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
23829f06c719SChuck Lever 					   struct xdr_stream *xdr,
23839f06c719SChuck Lever 					struct nfs_release_lockowner_args *args)
2384d3c7b7ccSTrond Myklebust {
2385d3c7b7ccSTrond Myklebust 	struct compound_hdr hdr = {
2386d3c7b7ccSTrond Myklebust 		.minorversion = 0,
2387d3c7b7ccSTrond Myklebust 	};
2388d3c7b7ccSTrond Myklebust 
23899f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
23909f06c719SChuck Lever 	encode_release_lockowner(xdr, &args->lock_owner, &hdr);
2391d3c7b7ccSTrond Myklebust 	encode_nops(&hdr);
2392d3c7b7ccSTrond Myklebust }
2393d3c7b7ccSTrond Myklebust 
23941da177e4SLinus Torvalds /*
23951da177e4SLinus Torvalds  * Encode a READLINK request
23961da177e4SLinus Torvalds  */
23979f06c719SChuck Lever static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
23989f06c719SChuck Lever 				  const struct nfs4_readlink *args)
23991da177e4SLinus Torvalds {
24001da177e4SLinus Torvalds 	struct compound_hdr hdr = {
240166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
24021da177e4SLinus Torvalds 	};
24031da177e4SLinus Torvalds 
24049f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
24059f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
24069f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
24079f06c719SChuck Lever 	encode_readlink(xdr, args, req, &hdr);
2408e3a535e1STrond Myklebust 
240928f56694SBenny Halevy 	xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
2410e3a535e1STrond Myklebust 			args->pgbase, args->pglen);
2411d017931cSAndy Adamson 	encode_nops(&hdr);
24121da177e4SLinus Torvalds }
24131da177e4SLinus Torvalds 
24141da177e4SLinus Torvalds /*
24151da177e4SLinus Torvalds  * Encode a READDIR request
24161da177e4SLinus Torvalds  */
24179f06c719SChuck Lever static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
24189f06c719SChuck Lever 				 const struct nfs4_readdir_arg *args)
24191da177e4SLinus Torvalds {
24201da177e4SLinus Torvalds 	struct compound_hdr hdr = {
242166cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
24221da177e4SLinus Torvalds 	};
24231da177e4SLinus Torvalds 
24249f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
24259f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
24269f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
24279f06c719SChuck Lever 	encode_readdir(xdr, args, req, &hdr);
2428d6ac02dfSTrond Myklebust 
242928f56694SBenny Halevy 	xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
2430d6ac02dfSTrond Myklebust 			 args->pgbase, args->count);
2431d6ac02dfSTrond Myklebust 	dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
243228f56694SBenny Halevy 			__func__, hdr.replen << 2, args->pages,
2433d6ac02dfSTrond Myklebust 			args->pgbase, args->count);
2434d017931cSAndy Adamson 	encode_nops(&hdr);
24351da177e4SLinus Torvalds }
24361da177e4SLinus Torvalds 
24371da177e4SLinus Torvalds /*
24381da177e4SLinus Torvalds  * Encode a READ request
24391da177e4SLinus Torvalds  */
24409f06c719SChuck Lever static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
24413c6b899cSAnna Schumaker 			      struct nfs_pgio_args *args)
24421da177e4SLinus Torvalds {
24431da177e4SLinus Torvalds 	struct compound_hdr hdr = {
244466cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
24451da177e4SLinus Torvalds 	};
24461da177e4SLinus Torvalds 
24479f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
24489f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
24499f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
24509f06c719SChuck Lever 	encode_read(xdr, args, &hdr);
24511da177e4SLinus Torvalds 
245228f56694SBenny Halevy 	xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
24531da177e4SLinus Torvalds 			 args->pages, args->pgbase, args->count);
24544f22ccc3S\"Talpey, Thomas\ 	req->rq_rcv_buf.flags |= XDRBUF_READ;
2455d017931cSAndy Adamson 	encode_nops(&hdr);
24561da177e4SLinus Torvalds }
24571da177e4SLinus Torvalds 
24581da177e4SLinus Torvalds /*
24591da177e4SLinus Torvalds  * Encode an SETATTR request
24601da177e4SLinus Torvalds  */
24619f06c719SChuck Lever static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
24629f06c719SChuck Lever 				 struct nfs_setattrargs *args)
24631da177e4SLinus Torvalds {
24641da177e4SLinus Torvalds 	struct compound_hdr hdr = {
246566cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
24661da177e4SLinus Torvalds 	};
24671da177e4SLinus Torvalds 
24689f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
24699f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
24709f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
24719f06c719SChuck Lever 	encode_setattr(xdr, args, args->server, &hdr);
24729f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2473d017931cSAndy Adamson 	encode_nops(&hdr);
24741da177e4SLinus Torvalds }
24751da177e4SLinus Torvalds 
24761da177e4SLinus Torvalds /*
2477029d105eSJ. Bruce Fields  * Encode a GETACL request
2478029d105eSJ. Bruce Fields  */
24799f06c719SChuck Lever static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2480029d105eSJ. Bruce Fields 				struct nfs_getaclargs *args)
2481029d105eSJ. Bruce Fields {
2482029d105eSJ. Bruce Fields 	struct compound_hdr hdr = {
248366cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2484029d105eSJ. Bruce Fields 	};
248528f56694SBenny Halevy 	uint32_t replen;
2486029d105eSJ. Bruce Fields 
24879f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
24889f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
24899f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
2490bf118a34SAndy Adamson 	replen = hdr.replen + op_decode_hdr_maxsz + 1;
24919f06c719SChuck Lever 	encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
2492cf8cdbe5SAndy Adamson 
249328f56694SBenny Halevy 	xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
24948fbcf237SAndreas Gruenbacher 		args->acl_pages, 0, args->acl_len);
2495bf118a34SAndy Adamson 
2496d017931cSAndy Adamson 	encode_nops(&hdr);
2497029d105eSJ. Bruce Fields }
2498029d105eSJ. Bruce Fields 
2499029d105eSJ. Bruce Fields /*
25001da177e4SLinus Torvalds  * Encode a WRITE request
25011da177e4SLinus Torvalds  */
25029f06c719SChuck Lever static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
25033c6b899cSAnna Schumaker 			       struct nfs_pgio_args *args)
25041da177e4SLinus Torvalds {
25051da177e4SLinus Torvalds 	struct compound_hdr hdr = {
250666cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25071da177e4SLinus Torvalds 	};
25081da177e4SLinus Torvalds 
25099f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
25109f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
25119f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
25129f06c719SChuck Lever 	encode_write(xdr, args, &hdr);
25134f22ccc3S\"Talpey, Thomas\ 	req->rq_snd_buf.flags |= XDRBUF_WRITE;
25147ffd1064SFred Isaman 	if (args->bitmask)
25159f06c719SChuck Lever 		encode_getfattr(xdr, args->bitmask, &hdr);
2516d017931cSAndy Adamson 	encode_nops(&hdr);
25171da177e4SLinus Torvalds }
25181da177e4SLinus Torvalds 
25191da177e4SLinus Torvalds /*
25201da177e4SLinus Torvalds  *  a COMMIT request
25211da177e4SLinus Torvalds  */
25229f06c719SChuck Lever static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
25230b7c0153SFred Isaman 				struct nfs_commitargs *args)
25241da177e4SLinus Torvalds {
25251da177e4SLinus Torvalds 	struct compound_hdr hdr = {
252666cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25271da177e4SLinus Torvalds 	};
25281da177e4SLinus Torvalds 
25299f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
25309f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
25319f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
25329f06c719SChuck Lever 	encode_commit(xdr, args, &hdr);
2533d017931cSAndy Adamson 	encode_nops(&hdr);
25341da177e4SLinus Torvalds }
25351da177e4SLinus Torvalds 
25361da177e4SLinus Torvalds /*
25371da177e4SLinus Torvalds  * FSINFO request
25381da177e4SLinus Torvalds  */
25399f06c719SChuck Lever static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
25409f06c719SChuck Lever 				struct nfs4_fsinfo_arg *args)
25411da177e4SLinus Torvalds {
25421da177e4SLinus Torvalds 	struct compound_hdr hdr = {
254366cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25441da177e4SLinus Torvalds 	};
25451da177e4SLinus Torvalds 
25469f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
25479f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
25489f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
25499f06c719SChuck Lever 	encode_fsinfo(xdr, args->bitmask, &hdr);
2550d017931cSAndy Adamson 	encode_nops(&hdr);
25511da177e4SLinus Torvalds }
25521da177e4SLinus Torvalds 
25531da177e4SLinus Torvalds /*
25541da177e4SLinus Torvalds  * a PATHCONF request
25551da177e4SLinus Torvalds  */
25569f06c719SChuck Lever static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
25579f06c719SChuck Lever 				  const struct nfs4_pathconf_arg *args)
25581da177e4SLinus Torvalds {
25591da177e4SLinus Torvalds 	struct compound_hdr hdr = {
256066cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25611da177e4SLinus Torvalds 	};
25621da177e4SLinus Torvalds 
25639f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
25649f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
25659f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
25669f06c719SChuck Lever 	encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2567d017931cSAndy Adamson 			   &hdr);
2568d017931cSAndy Adamson 	encode_nops(&hdr);
25691da177e4SLinus Torvalds }
25701da177e4SLinus Torvalds 
25711da177e4SLinus Torvalds /*
25721da177e4SLinus Torvalds  * a STATFS request
25731da177e4SLinus Torvalds  */
25749f06c719SChuck Lever static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
25759f06c719SChuck Lever 				const struct nfs4_statfs_arg *args)
25761da177e4SLinus Torvalds {
25771da177e4SLinus Torvalds 	struct compound_hdr hdr = {
257866cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25791da177e4SLinus Torvalds 	};
25801da177e4SLinus Torvalds 
25819f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
25829f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
25839f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
25849f06c719SChuck Lever 	encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
2585d017931cSAndy Adamson 			   args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
2586d017931cSAndy Adamson 	encode_nops(&hdr);
25871da177e4SLinus Torvalds }
25881da177e4SLinus Torvalds 
25891da177e4SLinus Torvalds /*
25901da177e4SLinus Torvalds  * GETATTR_BITMAP request
25911da177e4SLinus Torvalds  */
25929f06c719SChuck Lever static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
25939f06c719SChuck Lever 				     struct xdr_stream *xdr,
259443652ad5SBenny Halevy 				     struct nfs4_server_caps_arg *args)
25951da177e4SLinus Torvalds {
25968c61282fSKinglong Mee 	const u32 *bitmask = args->bitmask;
25971da177e4SLinus Torvalds 	struct compound_hdr hdr = {
259866cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
25991da177e4SLinus Torvalds 	};
26001da177e4SLinus Torvalds 
26019f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
26029f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
26039f06c719SChuck Lever 	encode_putfh(xdr, args->fhandle, &hdr);
26048c61282fSKinglong Mee 	encode_getattr_three(xdr, bitmask[0], bitmask[1], bitmask[2], &hdr);
2605d017931cSAndy Adamson 	encode_nops(&hdr);
26061da177e4SLinus Torvalds }
26071da177e4SLinus Torvalds 
26081da177e4SLinus Torvalds /*
26091da177e4SLinus Torvalds  * a RENEW request
26101da177e4SLinus Torvalds  */
26119f06c719SChuck Lever static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
26129f06c719SChuck Lever 			       struct nfs_client *clp)
26131da177e4SLinus Torvalds {
26141da177e4SLinus Torvalds 	struct compound_hdr hdr = {
2615d017931cSAndy Adamson 		.nops	= 0,
26161da177e4SLinus Torvalds 	};
26171da177e4SLinus Torvalds 
26189f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
2619bb4dae5eSChuck Lever 	encode_renew(xdr, clp->cl_clientid, &hdr);
2620d017931cSAndy Adamson 	encode_nops(&hdr);
26211da177e4SLinus Torvalds }
26221da177e4SLinus Torvalds 
26231da177e4SLinus Torvalds /*
26241da177e4SLinus Torvalds  * a SETCLIENTID request
26251da177e4SLinus Torvalds  */
26269f06c719SChuck Lever static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
26279f06c719SChuck Lever 				     struct xdr_stream *xdr,
26289f06c719SChuck Lever 				     struct nfs4_setclientid *sc)
26291da177e4SLinus Torvalds {
26301da177e4SLinus Torvalds 	struct compound_hdr hdr = {
2631d017931cSAndy Adamson 		.nops	= 0,
26321da177e4SLinus Torvalds 	};
26331da177e4SLinus Torvalds 
26349f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
26359f06c719SChuck Lever 	encode_setclientid(xdr, sc, &hdr);
2636d017931cSAndy Adamson 	encode_nops(&hdr);
26371da177e4SLinus Torvalds }
26381da177e4SLinus Torvalds 
26391da177e4SLinus Torvalds /*
26401da177e4SLinus Torvalds  * a SETCLIENTID_CONFIRM request
26411da177e4SLinus Torvalds  */
26429f06c719SChuck Lever static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
26439f06c719SChuck Lever 					     struct xdr_stream *xdr,
26449f06c719SChuck Lever 					     struct nfs4_setclientid_res *arg)
26451da177e4SLinus Torvalds {
26461da177e4SLinus Torvalds 	struct compound_hdr hdr = {
2647d017931cSAndy Adamson 		.nops	= 0,
26481da177e4SLinus Torvalds 	};
26491da177e4SLinus Torvalds 
26509f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
26519f06c719SChuck Lever 	encode_setclientid_confirm(xdr, arg, &hdr);
2652d017931cSAndy Adamson 	encode_nops(&hdr);
26531da177e4SLinus Torvalds }
26541da177e4SLinus Torvalds 
26551da177e4SLinus Torvalds /*
26561da177e4SLinus Torvalds  * DELEGRETURN request
26571da177e4SLinus Torvalds  */
26589f06c719SChuck Lever static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
26599f06c719SChuck Lever 				     struct xdr_stream *xdr,
26609f06c719SChuck Lever 				     const struct nfs4_delegreturnargs *args)
26611da177e4SLinus Torvalds {
26621da177e4SLinus Torvalds 	struct compound_hdr hdr = {
266366cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
26641da177e4SLinus Torvalds 	};
26651da177e4SLinus Torvalds 
26669f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
26679f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
26689f06c719SChuck Lever 	encode_putfh(xdr, args->fhandle, &hdr);
26699f06c719SChuck Lever 	encode_getfattr(xdr, args->bitmask, &hdr);
2670e144cbccSTrond Myklebust 	encode_delegreturn(xdr, args->stateid, &hdr);
2671d017931cSAndy Adamson 	encode_nops(&hdr);
26721da177e4SLinus Torvalds }
26731da177e4SLinus Torvalds 
26741da177e4SLinus Torvalds /*
2675683b57b4STrond Myklebust  * Encode FS_LOCATIONS request
2676683b57b4STrond Myklebust  */
26779f06c719SChuck Lever static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
26789f06c719SChuck Lever 				      struct xdr_stream *xdr,
26799f06c719SChuck Lever 				      struct nfs4_fs_locations_arg *args)
2680683b57b4STrond Myklebust {
2681683b57b4STrond Myklebust 	struct compound_hdr hdr = {
268266cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2683683b57b4STrond Myklebust 	};
268428f56694SBenny Halevy 	uint32_t replen;
2685683b57b4STrond Myklebust 
26869f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
26879f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
2688b03d735bSChuck Lever 	if (args->migration) {
2689b03d735bSChuck Lever 		encode_putfh(xdr, args->fh, &hdr);
2690b03d735bSChuck Lever 		replen = hdr.replen;
2691b03d735bSChuck Lever 		encode_fs_locations(xdr, args->bitmask, &hdr);
2692b03d735bSChuck Lever 		if (args->renew)
2693b03d735bSChuck Lever 			encode_renew(xdr, args->clientid, &hdr);
2694b03d735bSChuck Lever 	} else {
26959f06c719SChuck Lever 		encode_putfh(xdr, args->dir_fh, &hdr);
26969f06c719SChuck Lever 		encode_lookup(xdr, args->name, &hdr);
2697b03d735bSChuck Lever 		replen = hdr.replen;
26989f06c719SChuck Lever 		encode_fs_locations(xdr, args->bitmask, &hdr);
2699b03d735bSChuck Lever 	}
2700cf8cdbe5SAndy Adamson 
2701b03d735bSChuck Lever 	/* Set up reply kvec to capture returned fs_locations array. */
270228f56694SBenny Halevy 	xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
2703683b57b4STrond Myklebust 			0, PAGE_SIZE);
2704d017931cSAndy Adamson 	encode_nops(&hdr);
2705683b57b4STrond Myklebust }
2706683b57b4STrond Myklebust 
27075a5ea0d4SBryan Schumaker /*
27085a5ea0d4SBryan Schumaker  * Encode SECINFO request
27095a5ea0d4SBryan Schumaker  */
27105a5ea0d4SBryan Schumaker static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
27115a5ea0d4SBryan Schumaker 				struct xdr_stream *xdr,
27125a5ea0d4SBryan Schumaker 				struct nfs4_secinfo_arg *args)
27135a5ea0d4SBryan Schumaker {
27145a5ea0d4SBryan Schumaker 	struct compound_hdr hdr = {
27155a5ea0d4SBryan Schumaker 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
27165a5ea0d4SBryan Schumaker 	};
27175a5ea0d4SBryan Schumaker 
27185a5ea0d4SBryan Schumaker 	encode_compound_hdr(xdr, req, &hdr);
27195a5ea0d4SBryan Schumaker 	encode_sequence(xdr, &args->seq_args, &hdr);
27205a5ea0d4SBryan Schumaker 	encode_putfh(xdr, args->dir_fh, &hdr);
27215a5ea0d4SBryan Schumaker 	encode_secinfo(xdr, args->name, &hdr);
27225a5ea0d4SBryan Schumaker 	encode_nops(&hdr);
27235a5ea0d4SBryan Schumaker }
27245a5ea0d4SBryan Schumaker 
272544c99933SChuck Lever /*
272644c99933SChuck Lever  * Encode FSID_PRESENT request
272744c99933SChuck Lever  */
272844c99933SChuck Lever static void nfs4_xdr_enc_fsid_present(struct rpc_rqst *req,
272944c99933SChuck Lever 				      struct xdr_stream *xdr,
273044c99933SChuck Lever 				      struct nfs4_fsid_present_arg *args)
273144c99933SChuck Lever {
273244c99933SChuck Lever 	struct compound_hdr hdr = {
273344c99933SChuck Lever 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
273444c99933SChuck Lever 	};
273544c99933SChuck Lever 
273644c99933SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
273744c99933SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
273844c99933SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
273944c99933SChuck Lever 	encode_getfh(xdr, &hdr);
274044c99933SChuck Lever 	if (args->renew)
274144c99933SChuck Lever 		encode_renew(xdr, args->clientid, &hdr);
274244c99933SChuck Lever 	encode_nops(&hdr);
274344c99933SChuck Lever }
274444c99933SChuck Lever 
274599fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
274699fe60d0SBenny Halevy /*
27477c44f1aeSWeston Andros Adamson  * BIND_CONN_TO_SESSION request
27487c44f1aeSWeston Andros Adamson  */
27497c44f1aeSWeston Andros Adamson static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
27507c44f1aeSWeston Andros Adamson 				struct xdr_stream *xdr,
275171a097c6STrond Myklebust 				struct nfs41_bind_conn_to_session_args *args)
27527c44f1aeSWeston Andros Adamson {
27537c44f1aeSWeston Andros Adamson 	struct compound_hdr hdr = {
275471a097c6STrond Myklebust 		.minorversion = args->client->cl_mvops->minor_version,
27557c44f1aeSWeston Andros Adamson 	};
27567c44f1aeSWeston Andros Adamson 
27577c44f1aeSWeston Andros Adamson 	encode_compound_hdr(xdr, req, &hdr);
275871a097c6STrond Myklebust 	encode_bind_conn_to_session(xdr, args, &hdr);
27597c44f1aeSWeston Andros Adamson 	encode_nops(&hdr);
27607c44f1aeSWeston Andros Adamson }
27617c44f1aeSWeston Andros Adamson 
27627c44f1aeSWeston Andros Adamson /*
276399fe60d0SBenny Halevy  * EXCHANGE_ID request
276499fe60d0SBenny Halevy  */
27659f06c719SChuck Lever static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
27669f06c719SChuck Lever 				     struct xdr_stream *xdr,
276799fe60d0SBenny Halevy 				     struct nfs41_exchange_id_args *args)
276899fe60d0SBenny Halevy {
276999fe60d0SBenny Halevy 	struct compound_hdr hdr = {
2770a4432345STrond Myklebust 		.minorversion = args->client->cl_mvops->minor_version,
277199fe60d0SBenny Halevy 	};
277299fe60d0SBenny Halevy 
27739f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
27749f06c719SChuck Lever 	encode_exchange_id(xdr, args, &hdr);
277599fe60d0SBenny Halevy 	encode_nops(&hdr);
277699fe60d0SBenny Halevy }
27772050f0ccSAndy Adamson 
27782050f0ccSAndy Adamson /*
2779fc931582SAndy Adamson  * a CREATE_SESSION request
2780fc931582SAndy Adamson  */
27819f06c719SChuck Lever static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
27829f06c719SChuck Lever 					struct xdr_stream *xdr,
2783fc931582SAndy Adamson 					struct nfs41_create_session_args *args)
2784fc931582SAndy Adamson {
2785fc931582SAndy Adamson 	struct compound_hdr hdr = {
2786a4432345STrond Myklebust 		.minorversion = args->client->cl_mvops->minor_version,
2787fc931582SAndy Adamson 	};
2788fc931582SAndy Adamson 
27899f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
27909f06c719SChuck Lever 	encode_create_session(xdr, args, &hdr);
2791fc931582SAndy Adamson 	encode_nops(&hdr);
2792fc931582SAndy Adamson }
2793fc931582SAndy Adamson 
2794fc931582SAndy Adamson /*
27950f3e66c6SAndy Adamson  * a DESTROY_SESSION request
27960f3e66c6SAndy Adamson  */
27979f06c719SChuck Lever static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
27989f06c719SChuck Lever 					 struct xdr_stream *xdr,
27990f3e66c6SAndy Adamson 					 struct nfs4_session *session)
28000f3e66c6SAndy Adamson {
28010f3e66c6SAndy Adamson 	struct compound_hdr hdr = {
2802a4432345STrond Myklebust 		.minorversion = session->clp->cl_mvops->minor_version,
28030f3e66c6SAndy Adamson 	};
28040f3e66c6SAndy Adamson 
28059f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
28069f06c719SChuck Lever 	encode_destroy_session(xdr, session, &hdr);
28070f3e66c6SAndy Adamson 	encode_nops(&hdr);
28080f3e66c6SAndy Adamson }
28090f3e66c6SAndy Adamson 
28100f3e66c6SAndy Adamson /*
281166245539STrond Myklebust  * a DESTROY_CLIENTID request
281266245539STrond Myklebust  */
281366245539STrond Myklebust static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
281466245539STrond Myklebust 					 struct xdr_stream *xdr,
281566245539STrond Myklebust 					 struct nfs_client *clp)
281666245539STrond Myklebust {
281766245539STrond Myklebust 	struct compound_hdr hdr = {
281866245539STrond Myklebust 		.minorversion = clp->cl_mvops->minor_version,
281966245539STrond Myklebust 	};
282066245539STrond Myklebust 
282166245539STrond Myklebust 	encode_compound_hdr(xdr, req, &hdr);
282266245539STrond Myklebust 	encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
282366245539STrond Myklebust 	encode_nops(&hdr);
282466245539STrond Myklebust }
282566245539STrond Myklebust 
282666245539STrond Myklebust /*
2827fc01cea9SAndy Adamson  * a SEQUENCE request
2828fc01cea9SAndy Adamson  */
28299f06c719SChuck Lever static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2830fc01cea9SAndy Adamson 				  struct nfs4_sequence_args *args)
2831fc01cea9SAndy Adamson {
2832fc01cea9SAndy Adamson 	struct compound_hdr hdr = {
2833fc01cea9SAndy Adamson 		.minorversion = nfs4_xdr_minorversion(args),
2834fc01cea9SAndy Adamson 	};
2835fc01cea9SAndy Adamson 
28369f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
28379f06c719SChuck Lever 	encode_sequence(xdr, args, &hdr);
2838fc01cea9SAndy Adamson 	encode_nops(&hdr);
2839fc01cea9SAndy Adamson }
2840fc01cea9SAndy Adamson 
2841fc01cea9SAndy Adamson /*
28422050f0ccSAndy Adamson  * a GET_LEASE_TIME request
28432050f0ccSAndy Adamson  */
28449f06c719SChuck Lever static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
28459f06c719SChuck Lever 					struct xdr_stream *xdr,
28462050f0ccSAndy Adamson 					struct nfs4_get_lease_time_args *args)
28472050f0ccSAndy Adamson {
28482050f0ccSAndy Adamson 	struct compound_hdr hdr = {
28492050f0ccSAndy Adamson 		.minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
28502050f0ccSAndy Adamson 	};
2851dae100c2SFred Isaman 	const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
28522050f0ccSAndy Adamson 
28539f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
28549f06c719SChuck Lever 	encode_sequence(xdr, &args->la_seq_args, &hdr);
28559f06c719SChuck Lever 	encode_putrootfh(xdr, &hdr);
28569f06c719SChuck Lever 	encode_fsinfo(xdr, lease_bitmap, &hdr);
28572050f0ccSAndy Adamson 	encode_nops(&hdr);
28582050f0ccSAndy Adamson }
285918019753SRicardo Labiaga 
286018019753SRicardo Labiaga /*
286118019753SRicardo Labiaga  * a RECLAIM_COMPLETE request
286218019753SRicardo Labiaga  */
28639f06c719SChuck Lever static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
28649f06c719SChuck Lever 					  struct xdr_stream *xdr,
286518019753SRicardo Labiaga 				struct nfs41_reclaim_complete_args *args)
286618019753SRicardo Labiaga {
286718019753SRicardo Labiaga 	struct compound_hdr hdr = {
286818019753SRicardo Labiaga 		.minorversion = nfs4_xdr_minorversion(&args->seq_args)
286918019753SRicardo Labiaga 	};
287018019753SRicardo Labiaga 
28719f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
28729f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
28739f06c719SChuck Lever 	encode_reclaim_complete(xdr, args, &hdr);
287418019753SRicardo Labiaga 	encode_nops(&hdr);
287518019753SRicardo Labiaga }
287618019753SRicardo Labiaga 
2877b1f69b75SAndy Adamson /*
2878b1f69b75SAndy Adamson  * Encode GETDEVICEINFO request
2879b1f69b75SAndy Adamson  */
28809f06c719SChuck Lever static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
28819f06c719SChuck Lever 				       struct xdr_stream *xdr,
2882b1f69b75SAndy Adamson 				       struct nfs4_getdeviceinfo_args *args)
2883b1f69b75SAndy Adamson {
2884b1f69b75SAndy Adamson 	struct compound_hdr hdr = {
2885b1f69b75SAndy Adamson 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2886b1f69b75SAndy Adamson 	};
2887b1f69b75SAndy Adamson 
28889f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
28899f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
28909f06c719SChuck Lever 	encode_getdeviceinfo(xdr, args, &hdr);
2891b1f69b75SAndy Adamson 
2892b1f69b75SAndy Adamson 	/* set up reply kvec. Subtract notification bitmap max size (2)
2893b1f69b75SAndy Adamson 	 * so that notification bitmap is put in xdr_buf tail */
2894b1f69b75SAndy Adamson 	xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2895b1f69b75SAndy Adamson 			 args->pdev->pages, args->pdev->pgbase,
2896b1f69b75SAndy Adamson 			 args->pdev->pglen);
2897b1f69b75SAndy Adamson 
2898b1f69b75SAndy Adamson 	encode_nops(&hdr);
2899b1f69b75SAndy Adamson }
2900b1f69b75SAndy Adamson 
2901b1f69b75SAndy Adamson /*
2902b1f69b75SAndy Adamson  *  Encode LAYOUTGET request
2903b1f69b75SAndy Adamson  */
29049f06c719SChuck Lever static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
29059f06c719SChuck Lever 				   struct xdr_stream *xdr,
2906b1f69b75SAndy Adamson 				   struct nfs4_layoutget_args *args)
2907b1f69b75SAndy Adamson {
2908b1f69b75SAndy Adamson 	struct compound_hdr hdr = {
2909b1f69b75SAndy Adamson 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2910b1f69b75SAndy Adamson 	};
2911b1f69b75SAndy Adamson 
29129f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
29139f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
29149f06c719SChuck Lever 	encode_putfh(xdr, NFS_FH(args->inode), &hdr);
29159f06c719SChuck Lever 	encode_layoutget(xdr, args, &hdr);
291635124a09SWeston Andros Adamson 
291735124a09SWeston Andros Adamson 	xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
291835124a09SWeston Andros Adamson 	    args->layout.pages, 0, args->layout.pglen);
291935124a09SWeston Andros Adamson 
2920b1f69b75SAndy Adamson 	encode_nops(&hdr);
2921b1f69b75SAndy Adamson }
2922863a3c6cSAndy Adamson 
2923863a3c6cSAndy Adamson /*
2924863a3c6cSAndy Adamson  *  Encode LAYOUTCOMMIT request
2925863a3c6cSAndy Adamson  */
2926cbe82603SBenny Halevy static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2927863a3c6cSAndy Adamson 				      struct xdr_stream *xdr,
2928863a3c6cSAndy Adamson 				      struct nfs4_layoutcommit_args *args)
2929863a3c6cSAndy Adamson {
2930ac7db726SBenny Halevy 	struct nfs4_layoutcommit_data *data =
2931ac7db726SBenny Halevy 		container_of(args, struct nfs4_layoutcommit_data, args);
2932863a3c6cSAndy Adamson 	struct compound_hdr hdr = {
2933863a3c6cSAndy Adamson 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2934863a3c6cSAndy Adamson 	};
2935863a3c6cSAndy Adamson 
2936863a3c6cSAndy Adamson 	encode_compound_hdr(xdr, req, &hdr);
2937863a3c6cSAndy Adamson 	encode_sequence(xdr, &args->seq_args, &hdr);
2938863a3c6cSAndy Adamson 	encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2939ac7db726SBenny Halevy 	encode_layoutcommit(xdr, data->args.inode, args, &hdr);
2940863a3c6cSAndy Adamson 	encode_getfattr(xdr, args->bitmask, &hdr);
2941863a3c6cSAndy Adamson 	encode_nops(&hdr);
2942cbe82603SBenny Halevy }
2943cbe82603SBenny Halevy 
2944cbe82603SBenny Halevy /*
2945cbe82603SBenny Halevy  * Encode LAYOUTRETURN request
2946cbe82603SBenny Halevy  */
2947cbe82603SBenny Halevy static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2948cbe82603SBenny Halevy 				      struct xdr_stream *xdr,
2949cbe82603SBenny Halevy 				      struct nfs4_layoutreturn_args *args)
2950cbe82603SBenny Halevy {
2951cbe82603SBenny Halevy 	struct compound_hdr hdr = {
2952cbe82603SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2953cbe82603SBenny Halevy 	};
2954cbe82603SBenny Halevy 
2955cbe82603SBenny Halevy 	encode_compound_hdr(xdr, req, &hdr);
2956cbe82603SBenny Halevy 	encode_sequence(xdr, &args->seq_args, &hdr);
2957cbe82603SBenny Halevy 	encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2958cbe82603SBenny Halevy 	encode_layoutreturn(xdr, args, &hdr);
2959cbe82603SBenny Halevy 	encode_nops(&hdr);
2960863a3c6cSAndy Adamson }
2961fca78d6dSBryan Schumaker 
2962fca78d6dSBryan Schumaker /*
2963fca78d6dSBryan Schumaker  * Encode SECINFO_NO_NAME request
2964fca78d6dSBryan Schumaker  */
2965fca78d6dSBryan Schumaker static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2966fca78d6dSBryan Schumaker 					struct xdr_stream *xdr,
2967fca78d6dSBryan Schumaker 					struct nfs41_secinfo_no_name_args *args)
2968fca78d6dSBryan Schumaker {
2969fca78d6dSBryan Schumaker 	struct compound_hdr hdr = {
2970fca78d6dSBryan Schumaker 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
2971fca78d6dSBryan Schumaker 	};
2972fca78d6dSBryan Schumaker 
2973fca78d6dSBryan Schumaker 	encode_compound_hdr(xdr, req, &hdr);
2974fca78d6dSBryan Schumaker 	encode_sequence(xdr, &args->seq_args, &hdr);
2975fca78d6dSBryan Schumaker 	encode_putrootfh(xdr, &hdr);
2976fca78d6dSBryan Schumaker 	encode_secinfo_no_name(xdr, args, &hdr);
2977fca78d6dSBryan Schumaker 	encode_nops(&hdr);
2978fca78d6dSBryan Schumaker 	return 0;
2979fca78d6dSBryan Schumaker }
29807d974794SBryan Schumaker 
29817d974794SBryan Schumaker /*
29827d974794SBryan Schumaker  *  Encode TEST_STATEID request
29837d974794SBryan Schumaker  */
29847d974794SBryan Schumaker static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
29857d974794SBryan Schumaker 				      struct xdr_stream *xdr,
29867d974794SBryan Schumaker 				      struct nfs41_test_stateid_args *args)
29877d974794SBryan Schumaker {
29887d974794SBryan Schumaker 	struct compound_hdr hdr = {
29897d974794SBryan Schumaker 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
29907d974794SBryan Schumaker 	};
29917d974794SBryan Schumaker 
29927d974794SBryan Schumaker 	encode_compound_hdr(xdr, req, &hdr);
29937d974794SBryan Schumaker 	encode_sequence(xdr, &args->seq_args, &hdr);
29947d974794SBryan Schumaker 	encode_test_stateid(xdr, args, &hdr);
29957d974794SBryan Schumaker 	encode_nops(&hdr);
29967d974794SBryan Schumaker }
29979aeda35fSBryan Schumaker 
29989aeda35fSBryan Schumaker /*
29999aeda35fSBryan Schumaker  *  Encode FREE_STATEID request
30009aeda35fSBryan Schumaker  */
30019aeda35fSBryan Schumaker static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
30029aeda35fSBryan Schumaker 				     struct xdr_stream *xdr,
30039aeda35fSBryan Schumaker 				     struct nfs41_free_stateid_args *args)
30049aeda35fSBryan Schumaker {
30059aeda35fSBryan Schumaker 	struct compound_hdr hdr = {
30069aeda35fSBryan Schumaker 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
30079aeda35fSBryan Schumaker 	};
30089aeda35fSBryan Schumaker 
30099aeda35fSBryan Schumaker 	encode_compound_hdr(xdr, req, &hdr);
30109aeda35fSBryan Schumaker 	encode_sequence(xdr, &args->seq_args, &hdr);
30119aeda35fSBryan Schumaker 	encode_free_stateid(xdr, args, &hdr);
30129aeda35fSBryan Schumaker 	encode_nops(&hdr);
30139aeda35fSBryan Schumaker }
301499fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
301599fe60d0SBenny Halevy 
3016686841b3SBenny Halevy static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
3017686841b3SBenny Halevy {
3018686841b3SBenny Halevy 	dprintk("nfs: %s: prematurely hit end of receive buffer. "
3019686841b3SBenny Halevy 		"Remaining buffer length is %tu words.\n",
3020686841b3SBenny Halevy 		func, xdr->end - xdr->p);
3021686841b3SBenny Halevy }
30221da177e4SLinus Torvalds 
3023683b57b4STrond Myklebust static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
30241da177e4SLinus Torvalds {
30258687b63aSAl Viro 	__be32 *p;
30261da177e4SLinus Torvalds 
3027c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
3028c0eae66eSBenny Halevy 	if (unlikely(!p))
3029c0eae66eSBenny Halevy 		goto out_overflow;
3030cccddf4fSBenny Halevy 	*len = be32_to_cpup(p);
3031c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, *len);
3032c0eae66eSBenny Halevy 	if (unlikely(!p))
3033c0eae66eSBenny Halevy 		goto out_overflow;
30341da177e4SLinus Torvalds 	*string = (char *)p;
30351da177e4SLinus Torvalds 	return 0;
3036c0eae66eSBenny Halevy out_overflow:
3037c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3038c0eae66eSBenny Halevy 	return -EIO;
30391da177e4SLinus Torvalds }
30401da177e4SLinus Torvalds 
30411da177e4SLinus Torvalds static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
30421da177e4SLinus Torvalds {
30438687b63aSAl Viro 	__be32 *p;
30441da177e4SLinus Torvalds 
3045c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
3046c0eae66eSBenny Halevy 	if (unlikely(!p))
3047c0eae66eSBenny Halevy 		goto out_overflow;
30486f723f77SBenny Halevy 	hdr->status = be32_to_cpup(p++);
3049cccddf4fSBenny Halevy 	hdr->taglen = be32_to_cpup(p);
30501da177e4SLinus Torvalds 
3051c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, hdr->taglen + 4);
3052c0eae66eSBenny Halevy 	if (unlikely(!p))
3053c0eae66eSBenny Halevy 		goto out_overflow;
30541da177e4SLinus Torvalds 	hdr->tag = (char *)p;
30551da177e4SLinus Torvalds 	p += XDR_QUADLEN(hdr->taglen);
3056cccddf4fSBenny Halevy 	hdr->nops = be32_to_cpup(p);
3057aadf6152SBenny Halevy 	if (unlikely(hdr->nops < 1))
3058aadf6152SBenny Halevy 		return nfs4_stat_to_errno(hdr->status);
30591da177e4SLinus Torvalds 	return 0;
3060c0eae66eSBenny Halevy out_overflow:
3061c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3062c0eae66eSBenny Halevy 	return -EIO;
30631da177e4SLinus Torvalds }
30641da177e4SLinus Torvalds 
3065c7848f69STrond Myklebust static bool __decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected,
3066c7848f69STrond Myklebust 		int *nfs_retval)
30671da177e4SLinus Torvalds {
30688687b63aSAl Viro 	__be32 *p;
30691da177e4SLinus Torvalds 	uint32_t opnum;
30701da177e4SLinus Torvalds 	int32_t nfserr;
30711da177e4SLinus Torvalds 
3072c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
3073c0eae66eSBenny Halevy 	if (unlikely(!p))
3074c0eae66eSBenny Halevy 		goto out_overflow;
30756f723f77SBenny Halevy 	opnum = be32_to_cpup(p++);
3076c7848f69STrond Myklebust 	if (unlikely(opnum != expected))
3077c7848f69STrond Myklebust 		goto out_bad_operation;
3078c7848f69STrond Myklebust 	nfserr = be32_to_cpup(p);
3079c7848f69STrond Myklebust 	if (nfserr == NFS_OK)
3080c7848f69STrond Myklebust 		*nfs_retval = 0;
3081c7848f69STrond Myklebust 	else
3082c7848f69STrond Myklebust 		*nfs_retval = nfs4_stat_to_errno(nfserr);
3083c7848f69STrond Myklebust 	return true;
3084c7848f69STrond Myklebust out_bad_operation:
3085fe82a183SChuck Lever 	dprintk("nfs: Server returned operation"
30861da177e4SLinus Torvalds 		" %d but we issued a request for %d\n",
30871da177e4SLinus Torvalds 			opnum, expected);
3088c7848f69STrond Myklebust 	*nfs_retval = -EREMOTEIO;
3089c7848f69STrond Myklebust 	return false;
3090c0eae66eSBenny Halevy out_overflow:
3091c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3092c7848f69STrond Myklebust 	*nfs_retval = -EIO;
3093c7848f69STrond Myklebust 	return false;
3094c7848f69STrond Myklebust }
3095c7848f69STrond Myklebust 
3096c7848f69STrond Myklebust static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3097c7848f69STrond Myklebust {
3098c7848f69STrond Myklebust 	int retval;
3099c7848f69STrond Myklebust 
3100c7848f69STrond Myklebust 	__decode_op_hdr(xdr, expected, &retval);
3101c7848f69STrond Myklebust 	return retval;
31021da177e4SLinus Torvalds }
31031da177e4SLinus Torvalds 
31041da177e4SLinus Torvalds /* Dummy routine */
3105adfa6f98SDavid Howells static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
31061da177e4SLinus Torvalds {
31078687b63aSAl Viro 	__be32 *p;
3108683b57b4STrond Myklebust 	unsigned int strlen;
31091da177e4SLinus Torvalds 	char *str;
31101da177e4SLinus Torvalds 
3111c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 12);
3112c0eae66eSBenny Halevy 	if (likely(p))
31131da177e4SLinus Torvalds 		return decode_opaque_inline(xdr, &strlen, &str);
3114c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3115c0eae66eSBenny Halevy 	return -EIO;
31161da177e4SLinus Torvalds }
31171da177e4SLinus Torvalds 
31181da177e4SLinus Torvalds static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
31191da177e4SLinus Torvalds {
31208687b63aSAl Viro 	uint32_t bmlen;
31218687b63aSAl Viro 	__be32 *p;
31221da177e4SLinus Torvalds 
3123c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
3124c0eae66eSBenny Halevy 	if (unlikely(!p))
3125c0eae66eSBenny Halevy 		goto out_overflow;
3126cccddf4fSBenny Halevy 	bmlen = be32_to_cpup(p);
31271da177e4SLinus Torvalds 
3128dae100c2SFred Isaman 	bitmap[0] = bitmap[1] = bitmap[2] = 0;
3129c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, (bmlen << 2));
3130c0eae66eSBenny Halevy 	if (unlikely(!p))
3131c0eae66eSBenny Halevy 		goto out_overflow;
31321da177e4SLinus Torvalds 	if (bmlen > 0) {
31336f723f77SBenny Halevy 		bitmap[0] = be32_to_cpup(p++);
3134dae100c2SFred Isaman 		if (bmlen > 1) {
3135dae100c2SFred Isaman 			bitmap[1] = be32_to_cpup(p++);
3136dae100c2SFred Isaman 			if (bmlen > 2)
3137dae100c2SFred Isaman 				bitmap[2] = be32_to_cpup(p);
3138dae100c2SFred Isaman 		}
31391da177e4SLinus Torvalds 	}
31401da177e4SLinus Torvalds 	return 0;
3141c0eae66eSBenny Halevy out_overflow:
3142c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3143c0eae66eSBenny Halevy 	return -EIO;
31441da177e4SLinus Torvalds }
31451da177e4SLinus Torvalds 
3146256e48bbSTrond Myklebust static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
31471da177e4SLinus Torvalds {
31488687b63aSAl Viro 	__be32 *p;
31491da177e4SLinus Torvalds 
3150c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
3151c0eae66eSBenny Halevy 	if (unlikely(!p))
3152c0eae66eSBenny Halevy 		goto out_overflow;
3153cccddf4fSBenny Halevy 	*attrlen = be32_to_cpup(p);
3154256e48bbSTrond Myklebust 	*savep = xdr_stream_pos(xdr);
31551da177e4SLinus Torvalds 	return 0;
3156c0eae66eSBenny Halevy out_overflow:
3157c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3158c0eae66eSBenny Halevy 	return -EIO;
31591da177e4SLinus Torvalds }
31601da177e4SLinus Torvalds 
31611da177e4SLinus Torvalds static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
31621da177e4SLinus Torvalds {
31631da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
31643388bff5SRoman Borisov 		int ret;
31653388bff5SRoman Borisov 		ret = decode_attr_bitmap(xdr, bitmask);
31663388bff5SRoman Borisov 		if (unlikely(ret < 0))
31673388bff5SRoman Borisov 			return ret;
31681da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
31691da177e4SLinus Torvalds 	} else
3170dae100c2SFred Isaman 		bitmask[0] = bitmask[1] = bitmask[2] = 0;
3171dae100c2SFred Isaman 	dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3172dae100c2SFred Isaman 		bitmask[0], bitmask[1], bitmask[2]);
31731da177e4SLinus Torvalds 	return 0;
31741da177e4SLinus Torvalds }
31751da177e4SLinus Torvalds 
31761da177e4SLinus Torvalds static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
31771da177e4SLinus Torvalds {
31788687b63aSAl Viro 	__be32 *p;
3179409924e4STrond Myklebust 	int ret = 0;
31801da177e4SLinus Torvalds 
31811da177e4SLinus Torvalds 	*type = 0;
31821da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
31831da177e4SLinus Torvalds 		return -EIO;
31841da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
3185c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3186c0eae66eSBenny Halevy 		if (unlikely(!p))
3187c0eae66eSBenny Halevy 			goto out_overflow;
3188cccddf4fSBenny Halevy 		*type = be32_to_cpup(p);
31891da177e4SLinus Torvalds 		if (*type < NF4REG || *type > NF4NAMEDATTR) {
31903110ff80SHarvey Harrison 			dprintk("%s: bad type %d\n", __func__, *type);
31911da177e4SLinus Torvalds 			return -EIO;
31921da177e4SLinus Torvalds 		}
31931da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_TYPE;
3194409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_TYPE;
31951da177e4SLinus Torvalds 	}
3196bca79478STrond Myklebust 	dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
3197409924e4STrond Myklebust 	return ret;
3198c0eae66eSBenny Halevy out_overflow:
3199c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3200c0eae66eSBenny Halevy 	return -EIO;
32011da177e4SLinus Torvalds }
32021da177e4SLinus Torvalds 
3203264e6351SChuck Lever static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3204264e6351SChuck Lever 				      uint32_t *bitmap, uint32_t *type)
3205264e6351SChuck Lever {
3206264e6351SChuck Lever 	__be32 *p;
3207264e6351SChuck Lever 
3208264e6351SChuck Lever 	*type = 0;
3209264e6351SChuck Lever 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3210264e6351SChuck Lever 		return -EIO;
3211264e6351SChuck Lever 	if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3212264e6351SChuck Lever 		p = xdr_inline_decode(xdr, 4);
3213264e6351SChuck Lever 		if (unlikely(!p))
3214264e6351SChuck Lever 			goto out_overflow;
3215264e6351SChuck Lever 		*type = be32_to_cpup(p);
3216264e6351SChuck Lever 		bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3217264e6351SChuck Lever 	}
3218264e6351SChuck Lever 	dprintk("%s: expire type=0x%x\n", __func__, *type);
3219264e6351SChuck Lever 	return 0;
3220264e6351SChuck Lever out_overflow:
3221264e6351SChuck Lever 	print_overflow_msg(__func__, xdr);
3222264e6351SChuck Lever 	return -EIO;
3223264e6351SChuck Lever }
3224264e6351SChuck Lever 
32251da177e4SLinus Torvalds static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
32261da177e4SLinus Torvalds {
32278687b63aSAl Viro 	__be32 *p;
3228409924e4STrond Myklebust 	int ret = 0;
32291da177e4SLinus Torvalds 
32301da177e4SLinus Torvalds 	*change = 0;
32311da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
32321da177e4SLinus Torvalds 		return -EIO;
32331da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
3234c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3235c0eae66eSBenny Halevy 		if (unlikely(!p))
3236c0eae66eSBenny Halevy 			goto out_overflow;
3237cccddf4fSBenny Halevy 		xdr_decode_hyper(p, change);
32381da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_CHANGE;
3239409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_CHANGE;
32401da177e4SLinus Torvalds 	}
32413110ff80SHarvey Harrison 	dprintk("%s: change attribute=%Lu\n", __func__,
32421da177e4SLinus Torvalds 			(unsigned long long)*change);
3243409924e4STrond Myklebust 	return ret;
3244c0eae66eSBenny Halevy out_overflow:
3245c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3246c0eae66eSBenny Halevy 	return -EIO;
32471da177e4SLinus Torvalds }
32481da177e4SLinus Torvalds 
32491da177e4SLinus Torvalds static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
32501da177e4SLinus Torvalds {
32518687b63aSAl Viro 	__be32 *p;
3252409924e4STrond Myklebust 	int ret = 0;
32531da177e4SLinus Torvalds 
32541da177e4SLinus Torvalds 	*size = 0;
32551da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
32561da177e4SLinus Torvalds 		return -EIO;
32571da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
3258c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3259c0eae66eSBenny Halevy 		if (unlikely(!p))
3260c0eae66eSBenny Halevy 			goto out_overflow;
3261cccddf4fSBenny Halevy 		xdr_decode_hyper(p, size);
32621da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_SIZE;
3263409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_SIZE;
32641da177e4SLinus Torvalds 	}
32653110ff80SHarvey Harrison 	dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
3266409924e4STrond Myklebust 	return ret;
3267c0eae66eSBenny Halevy out_overflow:
3268c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3269c0eae66eSBenny Halevy 	return -EIO;
32701da177e4SLinus Torvalds }
32711da177e4SLinus Torvalds 
32721da177e4SLinus Torvalds static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
32731da177e4SLinus Torvalds {
32748687b63aSAl Viro 	__be32 *p;
32751da177e4SLinus Torvalds 
32761da177e4SLinus Torvalds 	*res = 0;
32771da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
32781da177e4SLinus Torvalds 		return -EIO;
32791da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
3280c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3281c0eae66eSBenny Halevy 		if (unlikely(!p))
3282c0eae66eSBenny Halevy 			goto out_overflow;
3283cccddf4fSBenny Halevy 		*res = be32_to_cpup(p);
32841da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
32851da177e4SLinus Torvalds 	}
32863110ff80SHarvey Harrison 	dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
32871da177e4SLinus Torvalds 	return 0;
3288c0eae66eSBenny Halevy out_overflow:
3289c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3290c0eae66eSBenny Halevy 	return -EIO;
32911da177e4SLinus Torvalds }
32921da177e4SLinus Torvalds 
32931da177e4SLinus Torvalds static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
32941da177e4SLinus Torvalds {
32958687b63aSAl Viro 	__be32 *p;
32961da177e4SLinus Torvalds 
32971da177e4SLinus Torvalds 	*res = 0;
32981da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
32991da177e4SLinus Torvalds 		return -EIO;
33001da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
3301c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3302c0eae66eSBenny Halevy 		if (unlikely(!p))
3303c0eae66eSBenny Halevy 			goto out_overflow;
3304cccddf4fSBenny Halevy 		*res = be32_to_cpup(p);
33051da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
33061da177e4SLinus Torvalds 	}
33073110ff80SHarvey Harrison 	dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
33081da177e4SLinus Torvalds 	return 0;
3309c0eae66eSBenny Halevy out_overflow:
3310c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3311c0eae66eSBenny Halevy 	return -EIO;
33121da177e4SLinus Torvalds }
33131da177e4SLinus Torvalds 
33148b4bdcf8STrond Myklebust static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
33151da177e4SLinus Torvalds {
33168687b63aSAl Viro 	__be32 *p;
3317409924e4STrond Myklebust 	int ret = 0;
33181da177e4SLinus Torvalds 
33191da177e4SLinus Torvalds 	fsid->major = 0;
33201da177e4SLinus Torvalds 	fsid->minor = 0;
33211da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
33221da177e4SLinus Torvalds 		return -EIO;
33231da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
3324c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 16);
3325c0eae66eSBenny Halevy 		if (unlikely(!p))
3326c0eae66eSBenny Halevy 			goto out_overflow;
33273ceb4dbbSBenny Halevy 		p = xdr_decode_hyper(p, &fsid->major);
3328cccddf4fSBenny Halevy 		xdr_decode_hyper(p, &fsid->minor);
33291da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_FSID;
3330409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_FSID;
33311da177e4SLinus Torvalds 	}
33323110ff80SHarvey Harrison 	dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
33331da177e4SLinus Torvalds 			(unsigned long long)fsid->major,
33341da177e4SLinus Torvalds 			(unsigned long long)fsid->minor);
3335409924e4STrond Myklebust 	return ret;
3336c0eae66eSBenny Halevy out_overflow:
3337c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3338c0eae66eSBenny Halevy 	return -EIO;
33391da177e4SLinus Torvalds }
33401da177e4SLinus Torvalds 
33411da177e4SLinus Torvalds static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
33421da177e4SLinus Torvalds {
33438687b63aSAl Viro 	__be32 *p;
33441da177e4SLinus Torvalds 
33451da177e4SLinus Torvalds 	*res = 60;
33461da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
33471da177e4SLinus Torvalds 		return -EIO;
33481da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
3349c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3350c0eae66eSBenny Halevy 		if (unlikely(!p))
3351c0eae66eSBenny Halevy 			goto out_overflow;
3352cccddf4fSBenny Halevy 		*res = be32_to_cpup(p);
33531da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
33541da177e4SLinus Torvalds 	}
33553110ff80SHarvey Harrison 	dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
33561da177e4SLinus Torvalds 	return 0;
3357c0eae66eSBenny Halevy out_overflow:
3358c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3359c0eae66eSBenny Halevy 	return -EIO;
33601da177e4SLinus Torvalds }
33611da177e4SLinus Torvalds 
3362ee7b75fcSTrond Myklebust static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
3363ae42c70aSBryan Schumaker {
3364ae42c70aSBryan Schumaker 	__be32 *p;
3365ae42c70aSBryan Schumaker 
3366ae42c70aSBryan Schumaker 	if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3367ae42c70aSBryan Schumaker 		return -EIO;
3368ae42c70aSBryan Schumaker 	if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3369ae42c70aSBryan Schumaker 		p = xdr_inline_decode(xdr, 4);
3370ae42c70aSBryan Schumaker 		if (unlikely(!p))
3371ae42c70aSBryan Schumaker 			goto out_overflow;
3372ae42c70aSBryan Schumaker 		bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
3373ee7b75fcSTrond Myklebust 		*res = -be32_to_cpup(p);
3374ae42c70aSBryan Schumaker 	}
3375ae42c70aSBryan Schumaker 	return 0;
3376ae42c70aSBryan Schumaker out_overflow:
3377ae42c70aSBryan Schumaker 	print_overflow_msg(__func__, xdr);
3378ae42c70aSBryan Schumaker 	return -EIO;
3379ae42c70aSBryan Schumaker }
3380ae42c70aSBryan Schumaker 
33818c61282fSKinglong Mee static int decode_attr_exclcreat_supported(struct xdr_stream *xdr,
33828c61282fSKinglong Mee 				 uint32_t *bitmap, uint32_t *bitmask)
33838c61282fSKinglong Mee {
33848c61282fSKinglong Mee 	if (likely(bitmap[2] & FATTR4_WORD2_SUPPATTR_EXCLCREAT)) {
33858c61282fSKinglong Mee 		int ret;
33868c61282fSKinglong Mee 		ret = decode_attr_bitmap(xdr, bitmask);
33878c61282fSKinglong Mee 		if (unlikely(ret < 0))
33888c61282fSKinglong Mee 			return ret;
33898c61282fSKinglong Mee 		bitmap[2] &= ~FATTR4_WORD2_SUPPATTR_EXCLCREAT;
33908c61282fSKinglong Mee 	} else
33918c61282fSKinglong Mee 		bitmask[0] = bitmask[1] = bitmask[2] = 0;
33928c61282fSKinglong Mee 	dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
33938c61282fSKinglong Mee 		bitmask[0], bitmask[1], bitmask[2]);
33948c61282fSKinglong Mee 	return 0;
33958c61282fSKinglong Mee }
33968c61282fSKinglong Mee 
3397ae42c70aSBryan Schumaker static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3398ae42c70aSBryan Schumaker {
3399ae42c70aSBryan Schumaker 	__be32 *p;
3400ae42c70aSBryan Schumaker 	int len;
3401ae42c70aSBryan Schumaker 
34027ad07353STrond Myklebust 	if (fh != NULL)
3403ae42c70aSBryan Schumaker 		memset(fh, 0, sizeof(*fh));
3404ae42c70aSBryan Schumaker 
3405ae42c70aSBryan Schumaker 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3406ae42c70aSBryan Schumaker 		return -EIO;
3407ae42c70aSBryan Schumaker 	if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3408ae42c70aSBryan Schumaker 		p = xdr_inline_decode(xdr, 4);
3409ae42c70aSBryan Schumaker 		if (unlikely(!p))
3410ae42c70aSBryan Schumaker 			goto out_overflow;
3411ae42c70aSBryan Schumaker 		len = be32_to_cpup(p);
3412ae42c70aSBryan Schumaker 		if (len > NFS4_FHSIZE)
3413ae42c70aSBryan Schumaker 			return -EIO;
3414ae42c70aSBryan Schumaker 		p = xdr_inline_decode(xdr, len);
3415ae42c70aSBryan Schumaker 		if (unlikely(!p))
3416ae42c70aSBryan Schumaker 			goto out_overflow;
34177ad07353STrond Myklebust 		if (fh != NULL) {
3418ae42c70aSBryan Schumaker 			memcpy(fh->data, p, len);
34197ad07353STrond Myklebust 			fh->size = len;
34207ad07353STrond Myklebust 		}
3421ae42c70aSBryan Schumaker 		bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3422ae42c70aSBryan Schumaker 	}
3423ae42c70aSBryan Schumaker 	return 0;
3424ae42c70aSBryan Schumaker out_overflow:
3425ae42c70aSBryan Schumaker 	print_overflow_msg(__func__, xdr);
3426ae42c70aSBryan Schumaker 	return -EIO;
3427ae42c70aSBryan Schumaker }
3428ae42c70aSBryan Schumaker 
34291da177e4SLinus Torvalds static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
34301da177e4SLinus Torvalds {
34318687b63aSAl Viro 	__be32 *p;
34321da177e4SLinus Torvalds 
3433a1800acaSMalahal Naineni 	*res = 0;
34341da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
34351da177e4SLinus Torvalds 		return -EIO;
34361da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
3437c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3438c0eae66eSBenny Halevy 		if (unlikely(!p))
3439c0eae66eSBenny Halevy 			goto out_overflow;
3440cccddf4fSBenny Halevy 		*res = be32_to_cpup(p);
34411da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
34421da177e4SLinus Torvalds 	}
34433110ff80SHarvey Harrison 	dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
34441da177e4SLinus Torvalds 	return 0;
3445c0eae66eSBenny Halevy out_overflow:
3446c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3447c0eae66eSBenny Halevy 	return -EIO;
34481da177e4SLinus Torvalds }
34491da177e4SLinus Torvalds 
34501da177e4SLinus Torvalds static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
34511da177e4SLinus Torvalds {
34528687b63aSAl Viro 	__be32 *p;
3453409924e4STrond Myklebust 	int ret = 0;
34541da177e4SLinus Torvalds 
34551da177e4SLinus Torvalds 	*fileid = 0;
34561da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
34571da177e4SLinus Torvalds 		return -EIO;
34581da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
3459c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3460c0eae66eSBenny Halevy 		if (unlikely(!p))
3461c0eae66eSBenny Halevy 			goto out_overflow;
3462cccddf4fSBenny Halevy 		xdr_decode_hyper(p, fileid);
34631da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_FILEID;
3464409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_FILEID;
34651da177e4SLinus Torvalds 	}
34663110ff80SHarvey Harrison 	dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
3467409924e4STrond Myklebust 	return ret;
3468c0eae66eSBenny Halevy out_overflow:
3469c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3470c0eae66eSBenny Halevy 	return -EIO;
34711da177e4SLinus Torvalds }
34721da177e4SLinus Torvalds 
347399baf625SManoj Naik static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
347499baf625SManoj Naik {
34758687b63aSAl Viro 	__be32 *p;
3476409924e4STrond Myklebust 	int ret = 0;
347799baf625SManoj Naik 
347899baf625SManoj Naik 	*fileid = 0;
347999baf625SManoj Naik 	if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
348099baf625SManoj Naik 		return -EIO;
348199baf625SManoj Naik 	if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
3482c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3483c0eae66eSBenny Halevy 		if (unlikely(!p))
3484c0eae66eSBenny Halevy 			goto out_overflow;
3485cccddf4fSBenny Halevy 		xdr_decode_hyper(p, fileid);
348699baf625SManoj Naik 		bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
348728331a46STrond Myklebust 		ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
348899baf625SManoj Naik 	}
34893110ff80SHarvey Harrison 	dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
3490409924e4STrond Myklebust 	return ret;
3491c0eae66eSBenny Halevy out_overflow:
3492c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3493c0eae66eSBenny Halevy 	return -EIO;
349499baf625SManoj Naik }
349599baf625SManoj Naik 
34961da177e4SLinus Torvalds static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
34971da177e4SLinus Torvalds {
34988687b63aSAl Viro 	__be32 *p;
34991da177e4SLinus Torvalds 	int status = 0;
35001da177e4SLinus Torvalds 
35011da177e4SLinus Torvalds 	*res = 0;
35021da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
35031da177e4SLinus Torvalds 		return -EIO;
35041da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
3505c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3506c0eae66eSBenny Halevy 		if (unlikely(!p))
3507c0eae66eSBenny Halevy 			goto out_overflow;
3508cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
35091da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
35101da177e4SLinus Torvalds 	}
35113110ff80SHarvey Harrison 	dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
35121da177e4SLinus Torvalds 	return status;
3513c0eae66eSBenny Halevy out_overflow:
3514c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3515c0eae66eSBenny Halevy 	return -EIO;
35161da177e4SLinus Torvalds }
35171da177e4SLinus Torvalds 
35181da177e4SLinus Torvalds static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
35191da177e4SLinus Torvalds {
35208687b63aSAl Viro 	__be32 *p;
35211da177e4SLinus Torvalds 	int status = 0;
35221da177e4SLinus Torvalds 
35231da177e4SLinus Torvalds 	*res = 0;
35241da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
35251da177e4SLinus Torvalds 		return -EIO;
35261da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
3527c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3528c0eae66eSBenny Halevy 		if (unlikely(!p))
3529c0eae66eSBenny Halevy 			goto out_overflow;
3530cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
35311da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
35321da177e4SLinus Torvalds 	}
35333110ff80SHarvey Harrison 	dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
35341da177e4SLinus Torvalds 	return status;
3535c0eae66eSBenny Halevy out_overflow:
3536c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3537c0eae66eSBenny Halevy 	return -EIO;
35381da177e4SLinus Torvalds }
35391da177e4SLinus Torvalds 
35401da177e4SLinus Torvalds static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
35411da177e4SLinus Torvalds {
35428687b63aSAl Viro 	__be32 *p;
35431da177e4SLinus Torvalds 	int status = 0;
35441da177e4SLinus Torvalds 
35451da177e4SLinus Torvalds 	*res = 0;
35461da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
35471da177e4SLinus Torvalds 		return -EIO;
35481da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
3549c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3550c0eae66eSBenny Halevy 		if (unlikely(!p))
3551c0eae66eSBenny Halevy 			goto out_overflow;
3552cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
35531da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
35541da177e4SLinus Torvalds 	}
35553110ff80SHarvey Harrison 	dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
35561da177e4SLinus Torvalds 	return status;
3557c0eae66eSBenny Halevy out_overflow:
3558c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3559c0eae66eSBenny Halevy 	return -EIO;
35601da177e4SLinus Torvalds }
35611da177e4SLinus Torvalds 
35627aaa0b3bSManoj Naik static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
35637aaa0b3bSManoj Naik {
3564464ad6b1SChuck Lever 	u32 n;
35658687b63aSAl Viro 	__be32 *p;
35667aaa0b3bSManoj Naik 	int status = 0;
35677aaa0b3bSManoj Naik 
3568c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
3569c0eae66eSBenny Halevy 	if (unlikely(!p))
3570c0eae66eSBenny Halevy 		goto out_overflow;
3571cccddf4fSBenny Halevy 	n = be32_to_cpup(p);
357233a43f28SAndy Adamson 	if (n == 0)
357333a43f28SAndy Adamson 		goto root_path;
357402a2976cSChuck Lever 	dprintk("pathname4: ");
3575809b426cSTrond Myklebust 	if (n > NFS4_PATHNAME_MAXCOMPONENTS) {
3576809b426cSTrond Myklebust 		dprintk("cannot parse %d components in path\n", n);
3577809b426cSTrond Myklebust 		goto out_eio;
3578809b426cSTrond Myklebust 	}
3579809b426cSTrond Myklebust 	for (path->ncomponents = 0; path->ncomponents < n; path->ncomponents++) {
35807aaa0b3bSManoj Naik 		struct nfs4_string *component = &path->components[path->ncomponents];
35817aaa0b3bSManoj Naik 		status = decode_opaque_inline(xdr, &component->len, &component->data);
35827aaa0b3bSManoj Naik 		if (unlikely(status != 0))
35837aaa0b3bSManoj Naik 			goto out_eio;
358495a13f7bSTrond Myklebust 		ifdebug (XDR)
358502a2976cSChuck Lever 			pr_cont("%s%.*s ",
358602a2976cSChuck Lever 				(path->ncomponents != n ? "/ " : ""),
358702a2976cSChuck Lever 				component->len, component->data);
35887aaa0b3bSManoj Naik 	}
35897aaa0b3bSManoj Naik out:
35907aaa0b3bSManoj Naik 	return status;
359133a43f28SAndy Adamson root_path:
359233a43f28SAndy Adamson /* a root pathname is sent as a zero component4 */
359333a43f28SAndy Adamson 	path->ncomponents = 1;
359433a43f28SAndy Adamson 	path->components[0].len=0;
359533a43f28SAndy Adamson 	path->components[0].data=NULL;
359602a2976cSChuck Lever 	dprintk("pathname4: /\n");
359733a43f28SAndy Adamson 	goto out;
35987aaa0b3bSManoj Naik out_eio:
35997aaa0b3bSManoj Naik 	dprintk(" status %d", status);
36007aaa0b3bSManoj Naik 	status = -EIO;
36017aaa0b3bSManoj Naik 	goto out;
3602c0eae66eSBenny Halevy out_overflow:
3603c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3604c0eae66eSBenny Halevy 	return -EIO;
36057aaa0b3bSManoj Naik }
36067aaa0b3bSManoj Naik 
36077aaa0b3bSManoj Naik static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
3608683b57b4STrond Myklebust {
3609683b57b4STrond Myklebust 	int n;
36108687b63aSAl Viro 	__be32 *p;
3611683b57b4STrond Myklebust 	int status = -EIO;
3612683b57b4STrond Myklebust 
3613683b57b4STrond Myklebust 	if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3614683b57b4STrond Myklebust 		goto out;
3615683b57b4STrond Myklebust 	status = 0;
3616683b57b4STrond Myklebust 	if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3617683b57b4STrond Myklebust 		goto out;
3618f54423a1SKinglong Mee 	bitmap[0] &= ~FATTR4_WORD0_FS_LOCATIONS;
36198b7e3f49STrond Myklebust 	status = -EIO;
36208b7e3f49STrond Myklebust 	/* Ignore borken servers that return unrequested attrs */
36218b7e3f49STrond Myklebust 	if (unlikely(res == NULL))
36228b7e3f49STrond Myklebust 		goto out;
362302a2976cSChuck Lever 	dprintk("%s: fsroot:\n", __func__);
36247aaa0b3bSManoj Naik 	status = decode_pathname(xdr, &res->fs_path);
3625683b57b4STrond Myklebust 	if (unlikely(status != 0))
3626683b57b4STrond Myklebust 		goto out;
3627c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
3628c0eae66eSBenny Halevy 	if (unlikely(!p))
3629c0eae66eSBenny Halevy 		goto out_overflow;
3630cccddf4fSBenny Halevy 	n = be32_to_cpup(p);
3631683b57b4STrond Myklebust 	if (n <= 0)
3632683b57b4STrond Myklebust 		goto out_eio;
3633809b426cSTrond Myklebust 	for (res->nlocations = 0; res->nlocations < n; res->nlocations++) {
3634464ad6b1SChuck Lever 		u32 m;
3635809b426cSTrond Myklebust 		struct nfs4_fs_location *loc;
3636683b57b4STrond Myklebust 
3637809b426cSTrond Myklebust 		if (res->nlocations == NFS4_FS_LOCATIONS_MAXENTRIES)
3638809b426cSTrond Myklebust 			break;
3639809b426cSTrond Myklebust 		loc = &res->locations[res->nlocations];
3640c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3641c0eae66eSBenny Halevy 		if (unlikely(!p))
3642c0eae66eSBenny Halevy 			goto out_overflow;
3643cccddf4fSBenny Halevy 		m = be32_to_cpup(p);
36447aaa0b3bSManoj Naik 
364502a2976cSChuck Lever 		dprintk("%s: servers:\n", __func__);
3646809b426cSTrond Myklebust 		for (loc->nservers = 0; loc->nservers < m; loc->nservers++) {
3647809b426cSTrond Myklebust 			struct nfs4_string *server;
3648809b426cSTrond Myklebust 
3649809b426cSTrond Myklebust 			if (loc->nservers == NFS4_FS_LOCATION_MAXSERVERS) {
3650464ad6b1SChuck Lever 				unsigned int i;
3651464ad6b1SChuck Lever 				dprintk("%s: using first %u of %u servers "
3652464ad6b1SChuck Lever 					"returned for location %u\n",
36533110ff80SHarvey Harrison 						__func__,
3654464ad6b1SChuck Lever 						NFS4_FS_LOCATION_MAXSERVERS,
3655464ad6b1SChuck Lever 						m, res->nlocations);
36567aaa0b3bSManoj Naik 				for (i = loc->nservers; i < m; i++) {
36572e42c3e2STrond Myklebust 					unsigned int len;
36587aaa0b3bSManoj Naik 					char *data;
36597aaa0b3bSManoj Naik 					status = decode_opaque_inline(xdr, &len, &data);
3660683b57b4STrond Myklebust 					if (unlikely(status != 0))
3661683b57b4STrond Myklebust 						goto out_eio;
36627aaa0b3bSManoj Naik 				}
3663809b426cSTrond Myklebust 				break;
36647aaa0b3bSManoj Naik 			}
3665809b426cSTrond Myklebust 			server = &loc->servers[loc->nservers];
3666809b426cSTrond Myklebust 			status = decode_opaque_inline(xdr, &server->len, &server->data);
3667809b426cSTrond Myklebust 			if (unlikely(status != 0))
3668809b426cSTrond Myklebust 				goto out_eio;
3669809b426cSTrond Myklebust 			dprintk("%s ", server->data);
36707aaa0b3bSManoj Naik 		}
36717aaa0b3bSManoj Naik 		status = decode_pathname(xdr, &loc->rootpath);
36727aaa0b3bSManoj Naik 		if (unlikely(status != 0))
36737aaa0b3bSManoj Naik 			goto out_eio;
3674683b57b4STrond Myklebust 	}
3675409924e4STrond Myklebust 	if (res->nlocations != 0)
367681934ddbSChuck Lever 		status = NFS_ATTR_FATTR_V4_LOCATIONS;
3677683b57b4STrond Myklebust out:
36783110ff80SHarvey Harrison 	dprintk("%s: fs_locations done, error = %d\n", __func__, status);
3679683b57b4STrond Myklebust 	return status;
3680c0eae66eSBenny Halevy out_overflow:
3681c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3682683b57b4STrond Myklebust out_eio:
3683683b57b4STrond Myklebust 	status = -EIO;
3684683b57b4STrond Myklebust 	goto out;
3685683b57b4STrond Myklebust }
3686683b57b4STrond Myklebust 
36871da177e4SLinus Torvalds static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
36881da177e4SLinus Torvalds {
36898687b63aSAl Viro 	__be32 *p;
36901da177e4SLinus Torvalds 	int status = 0;
36911da177e4SLinus Torvalds 
36921da177e4SLinus Torvalds 	*res = 0;
36931da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
36941da177e4SLinus Torvalds 		return -EIO;
36951da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
3696c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3697c0eae66eSBenny Halevy 		if (unlikely(!p))
3698c0eae66eSBenny Halevy 			goto out_overflow;
3699cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
37001da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
37011da177e4SLinus Torvalds 	}
37023110ff80SHarvey Harrison 	dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
37031da177e4SLinus Torvalds 	return status;
3704c0eae66eSBenny Halevy out_overflow:
3705c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3706c0eae66eSBenny Halevy 	return -EIO;
37071da177e4SLinus Torvalds }
37081da177e4SLinus Torvalds 
37091da177e4SLinus Torvalds static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
37101da177e4SLinus Torvalds {
37118687b63aSAl Viro 	__be32 *p;
37121da177e4SLinus Torvalds 	int status = 0;
37131da177e4SLinus Torvalds 
37141da177e4SLinus Torvalds 	*maxlink = 1;
37151da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
37161da177e4SLinus Torvalds 		return -EIO;
37171da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
3718c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3719c0eae66eSBenny Halevy 		if (unlikely(!p))
3720c0eae66eSBenny Halevy 			goto out_overflow;
3721cccddf4fSBenny Halevy 		*maxlink = be32_to_cpup(p);
37221da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
37231da177e4SLinus Torvalds 	}
37243110ff80SHarvey Harrison 	dprintk("%s: maxlink=%u\n", __func__, *maxlink);
37251da177e4SLinus Torvalds 	return status;
3726c0eae66eSBenny Halevy out_overflow:
3727c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3728c0eae66eSBenny Halevy 	return -EIO;
37291da177e4SLinus Torvalds }
37301da177e4SLinus Torvalds 
37311da177e4SLinus Torvalds static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
37321da177e4SLinus Torvalds {
37338687b63aSAl Viro 	__be32 *p;
37341da177e4SLinus Torvalds 	int status = 0;
37351da177e4SLinus Torvalds 
37361da177e4SLinus Torvalds 	*maxname = 1024;
37371da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
37381da177e4SLinus Torvalds 		return -EIO;
37391da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
3740c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3741c0eae66eSBenny Halevy 		if (unlikely(!p))
3742c0eae66eSBenny Halevy 			goto out_overflow;
3743cccddf4fSBenny Halevy 		*maxname = be32_to_cpup(p);
37441da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
37451da177e4SLinus Torvalds 	}
37463110ff80SHarvey Harrison 	dprintk("%s: maxname=%u\n", __func__, *maxname);
37471da177e4SLinus Torvalds 	return status;
3748c0eae66eSBenny Halevy out_overflow:
3749c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3750c0eae66eSBenny Halevy 	return -EIO;
37511da177e4SLinus Torvalds }
37521da177e4SLinus Torvalds 
37531da177e4SLinus Torvalds static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
37541da177e4SLinus Torvalds {
37558687b63aSAl Viro 	__be32 *p;
37561da177e4SLinus Torvalds 	int status = 0;
37571da177e4SLinus Torvalds 
37581da177e4SLinus Torvalds 	*res = 1024;
37591da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
37601da177e4SLinus Torvalds 		return -EIO;
37611da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
37621da177e4SLinus Torvalds 		uint64_t maxread;
3763c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3764c0eae66eSBenny Halevy 		if (unlikely(!p))
3765c0eae66eSBenny Halevy 			goto out_overflow;
3766cccddf4fSBenny Halevy 		xdr_decode_hyper(p, &maxread);
37671da177e4SLinus Torvalds 		if (maxread > 0x7FFFFFFF)
37681da177e4SLinus Torvalds 			maxread = 0x7FFFFFFF;
37691da177e4SLinus Torvalds 		*res = (uint32_t)maxread;
37701da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
37711da177e4SLinus Torvalds 	}
37723110ff80SHarvey Harrison 	dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
37731da177e4SLinus Torvalds 	return status;
3774c0eae66eSBenny Halevy out_overflow:
3775c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3776c0eae66eSBenny Halevy 	return -EIO;
37771da177e4SLinus Torvalds }
37781da177e4SLinus Torvalds 
37791da177e4SLinus Torvalds static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
37801da177e4SLinus Torvalds {
37818687b63aSAl Viro 	__be32 *p;
37821da177e4SLinus Torvalds 	int status = 0;
37831da177e4SLinus Torvalds 
37841da177e4SLinus Torvalds 	*res = 1024;
37851da177e4SLinus Torvalds 	if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
37861da177e4SLinus Torvalds 		return -EIO;
37871da177e4SLinus Torvalds 	if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
37881da177e4SLinus Torvalds 		uint64_t maxwrite;
3789c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3790c0eae66eSBenny Halevy 		if (unlikely(!p))
3791c0eae66eSBenny Halevy 			goto out_overflow;
3792cccddf4fSBenny Halevy 		xdr_decode_hyper(p, &maxwrite);
37931da177e4SLinus Torvalds 		if (maxwrite > 0x7FFFFFFF)
37941da177e4SLinus Torvalds 			maxwrite = 0x7FFFFFFF;
37951da177e4SLinus Torvalds 		*res = (uint32_t)maxwrite;
37961da177e4SLinus Torvalds 		bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
37971da177e4SLinus Torvalds 	}
37983110ff80SHarvey Harrison 	dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
37991da177e4SLinus Torvalds 	return status;
3800c0eae66eSBenny Halevy out_overflow:
3801c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3802c0eae66eSBenny Halevy 	return -EIO;
38031da177e4SLinus Torvalds }
38041da177e4SLinus Torvalds 
3805bca79478STrond Myklebust static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
38061da177e4SLinus Torvalds {
3807bca79478STrond Myklebust 	uint32_t tmp;
38088687b63aSAl Viro 	__be32 *p;
3809409924e4STrond Myklebust 	int ret = 0;
38101da177e4SLinus Torvalds 
38111da177e4SLinus Torvalds 	*mode = 0;
38121da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
38131da177e4SLinus Torvalds 		return -EIO;
38141da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
3815c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3816c0eae66eSBenny Halevy 		if (unlikely(!p))
3817c0eae66eSBenny Halevy 			goto out_overflow;
3818cccddf4fSBenny Halevy 		tmp = be32_to_cpup(p);
3819bca79478STrond Myklebust 		*mode = tmp & ~S_IFMT;
38201da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_MODE;
3821409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_MODE;
38221da177e4SLinus Torvalds 	}
38233110ff80SHarvey Harrison 	dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
3824409924e4STrond Myklebust 	return ret;
3825c0eae66eSBenny Halevy out_overflow:
3826c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3827c0eae66eSBenny Halevy 	return -EIO;
38281da177e4SLinus Torvalds }
38291da177e4SLinus Torvalds 
38301da177e4SLinus Torvalds static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
38311da177e4SLinus Torvalds {
38328687b63aSAl Viro 	__be32 *p;
3833409924e4STrond Myklebust 	int ret = 0;
38341da177e4SLinus Torvalds 
38351da177e4SLinus Torvalds 	*nlink = 1;
38361da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
38371da177e4SLinus Torvalds 		return -EIO;
38381da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
3839c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3840c0eae66eSBenny Halevy 		if (unlikely(!p))
3841c0eae66eSBenny Halevy 			goto out_overflow;
3842cccddf4fSBenny Halevy 		*nlink = be32_to_cpup(p);
38431da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
3844409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_NLINK;
38451da177e4SLinus Torvalds 	}
38463110ff80SHarvey Harrison 	dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
3847409924e4STrond Myklebust 	return ret;
3848c0eae66eSBenny Halevy out_overflow:
3849c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3850c0eae66eSBenny Halevy 	return -EIO;
38511da177e4SLinus Torvalds }
38521da177e4SLinus Torvalds 
385380e52aceSTrond Myklebust static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
3854e5782076SEric W. Biederman 		const struct nfs_server *server, kuid_t *uid,
38556926afd1STrond Myklebust 		struct nfs4_string *owner_name)
38561da177e4SLinus Torvalds {
38578687b63aSAl Viro 	uint32_t len;
38588687b63aSAl Viro 	__be32 *p;
3859409924e4STrond Myklebust 	int ret = 0;
38601da177e4SLinus Torvalds 
3861e5782076SEric W. Biederman 	*uid = make_kuid(&init_user_ns, -2);
38621da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
38631da177e4SLinus Torvalds 		return -EIO;
38641da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
3865c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3866c0eae66eSBenny Halevy 		if (unlikely(!p))
3867c0eae66eSBenny Halevy 			goto out_overflow;
3868cccddf4fSBenny Halevy 		len = be32_to_cpup(p);
3869c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, len);
3870c0eae66eSBenny Halevy 		if (unlikely(!p))
3871c0eae66eSBenny Halevy 			goto out_overflow;
38726926afd1STrond Myklebust 		if (owner_name != NULL) {
38736926afd1STrond Myklebust 			owner_name->data = kmemdup(p, len, GFP_NOWAIT);
38746926afd1STrond Myklebust 			if (owner_name->data != NULL) {
38756926afd1STrond Myklebust 				owner_name->len = len;
38766926afd1STrond Myklebust 				ret = NFS_ATTR_FATTR_OWNER_NAME;
38776926afd1STrond Myklebust 			}
387880e52aceSTrond Myklebust 		} else if (len < XDR_MAX_NETOBJ) {
3879e4fd72a1STrond Myklebust 			if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
3880409924e4STrond Myklebust 				ret = NFS_ATTR_FATTR_OWNER;
3881409924e4STrond Myklebust 			else
38821da177e4SLinus Torvalds 				dprintk("%s: nfs_map_name_to_uid failed!\n",
38833110ff80SHarvey Harrison 						__func__);
38841da177e4SLinus Torvalds 		} else
3885fe82a183SChuck Lever 			dprintk("%s: name too long (%u)!\n",
38863110ff80SHarvey Harrison 					__func__, len);
38871da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_OWNER;
38881da177e4SLinus Torvalds 	}
3889e5782076SEric W. Biederman 	dprintk("%s: uid=%d\n", __func__, (int)from_kuid(&init_user_ns, *uid));
3890409924e4STrond Myklebust 	return ret;
3891c0eae66eSBenny Halevy out_overflow:
3892c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3893c0eae66eSBenny Halevy 	return -EIO;
38941da177e4SLinus Torvalds }
38951da177e4SLinus Torvalds 
389680e52aceSTrond Myklebust static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
3897e5782076SEric W. Biederman 		const struct nfs_server *server, kgid_t *gid,
38986926afd1STrond Myklebust 		struct nfs4_string *group_name)
38991da177e4SLinus Torvalds {
39008687b63aSAl Viro 	uint32_t len;
39018687b63aSAl Viro 	__be32 *p;
3902409924e4STrond Myklebust 	int ret = 0;
39031da177e4SLinus Torvalds 
3904e5782076SEric W. Biederman 	*gid = make_kgid(&init_user_ns, -2);
39051da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
39061da177e4SLinus Torvalds 		return -EIO;
39071da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
3908c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
3909c0eae66eSBenny Halevy 		if (unlikely(!p))
3910c0eae66eSBenny Halevy 			goto out_overflow;
3911cccddf4fSBenny Halevy 		len = be32_to_cpup(p);
3912c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, len);
3913c0eae66eSBenny Halevy 		if (unlikely(!p))
3914c0eae66eSBenny Halevy 			goto out_overflow;
39156926afd1STrond Myklebust 		if (group_name != NULL) {
39166926afd1STrond Myklebust 			group_name->data = kmemdup(p, len, GFP_NOWAIT);
39176926afd1STrond Myklebust 			if (group_name->data != NULL) {
39186926afd1STrond Myklebust 				group_name->len = len;
39196926afd1STrond Myklebust 				ret = NFS_ATTR_FATTR_GROUP_NAME;
39206926afd1STrond Myklebust 			}
392180e52aceSTrond Myklebust 		} else if (len < XDR_MAX_NETOBJ) {
3922e4fd72a1STrond Myklebust 			if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
3923409924e4STrond Myklebust 				ret = NFS_ATTR_FATTR_GROUP;
3924409924e4STrond Myklebust 			else
39251da177e4SLinus Torvalds 				dprintk("%s: nfs_map_group_to_gid failed!\n",
39263110ff80SHarvey Harrison 						__func__);
39271da177e4SLinus Torvalds 		} else
3928fe82a183SChuck Lever 			dprintk("%s: name too long (%u)!\n",
39293110ff80SHarvey Harrison 					__func__, len);
39301da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
39311da177e4SLinus Torvalds 	}
3932e5782076SEric W. Biederman 	dprintk("%s: gid=%d\n", __func__, (int)from_kgid(&init_user_ns, *gid));
3933409924e4STrond Myklebust 	return ret;
3934c0eae66eSBenny Halevy out_overflow:
3935c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3936c0eae66eSBenny Halevy 	return -EIO;
39371da177e4SLinus Torvalds }
39381da177e4SLinus Torvalds 
39391da177e4SLinus Torvalds static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
39401da177e4SLinus Torvalds {
39418687b63aSAl Viro 	uint32_t major = 0, minor = 0;
39428687b63aSAl Viro 	__be32 *p;
3943409924e4STrond Myklebust 	int ret = 0;
39441da177e4SLinus Torvalds 
39451da177e4SLinus Torvalds 	*rdev = MKDEV(0,0);
39461da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
39471da177e4SLinus Torvalds 		return -EIO;
39481da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
39491da177e4SLinus Torvalds 		dev_t tmp;
39501da177e4SLinus Torvalds 
3951c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3952c0eae66eSBenny Halevy 		if (unlikely(!p))
3953c0eae66eSBenny Halevy 			goto out_overflow;
39546f723f77SBenny Halevy 		major = be32_to_cpup(p++);
3955cccddf4fSBenny Halevy 		minor = be32_to_cpup(p);
39561da177e4SLinus Torvalds 		tmp = MKDEV(major, minor);
39571da177e4SLinus Torvalds 		if (MAJOR(tmp) == major && MINOR(tmp) == minor)
39581da177e4SLinus Torvalds 			*rdev = tmp;
39591da177e4SLinus Torvalds 		bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
3960409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_RDEV;
39611da177e4SLinus Torvalds 	}
39623110ff80SHarvey Harrison 	dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
3963409924e4STrond Myklebust 	return ret;
3964c0eae66eSBenny Halevy out_overflow:
3965c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3966c0eae66eSBenny Halevy 	return -EIO;
39671da177e4SLinus Torvalds }
39681da177e4SLinus Torvalds 
39691da177e4SLinus Torvalds static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
39701da177e4SLinus Torvalds {
39718687b63aSAl Viro 	__be32 *p;
39721da177e4SLinus Torvalds 	int status = 0;
39731da177e4SLinus Torvalds 
39741da177e4SLinus Torvalds 	*res = 0;
39751da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
39761da177e4SLinus Torvalds 		return -EIO;
39771da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
3978c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
3979c0eae66eSBenny Halevy 		if (unlikely(!p))
3980c0eae66eSBenny Halevy 			goto out_overflow;
3981cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
39821da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
39831da177e4SLinus Torvalds 	}
39843110ff80SHarvey Harrison 	dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
39851da177e4SLinus Torvalds 	return status;
3986c0eae66eSBenny Halevy out_overflow:
3987c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
3988c0eae66eSBenny Halevy 	return -EIO;
39891da177e4SLinus Torvalds }
39901da177e4SLinus Torvalds 
39911da177e4SLinus Torvalds static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
39921da177e4SLinus Torvalds {
39938687b63aSAl Viro 	__be32 *p;
39941da177e4SLinus Torvalds 	int status = 0;
39951da177e4SLinus Torvalds 
39961da177e4SLinus Torvalds 	*res = 0;
39971da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
39981da177e4SLinus Torvalds 		return -EIO;
39991da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
4000c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
4001c0eae66eSBenny Halevy 		if (unlikely(!p))
4002c0eae66eSBenny Halevy 			goto out_overflow;
4003cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
40041da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
40051da177e4SLinus Torvalds 	}
40063110ff80SHarvey Harrison 	dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
40071da177e4SLinus Torvalds 	return status;
4008c0eae66eSBenny Halevy out_overflow:
4009c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4010c0eae66eSBenny Halevy 	return -EIO;
40111da177e4SLinus Torvalds }
40121da177e4SLinus Torvalds 
40131da177e4SLinus Torvalds static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
40141da177e4SLinus Torvalds {
40158687b63aSAl Viro 	__be32 *p;
40161da177e4SLinus Torvalds 	int status = 0;
40171da177e4SLinus Torvalds 
40181da177e4SLinus Torvalds 	*res = 0;
40191da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
40201da177e4SLinus Torvalds 		return -EIO;
40211da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
4022c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
4023c0eae66eSBenny Halevy 		if (unlikely(!p))
4024c0eae66eSBenny Halevy 			goto out_overflow;
4025cccddf4fSBenny Halevy 		xdr_decode_hyper(p, res);
40261da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
40271da177e4SLinus Torvalds 	}
40283110ff80SHarvey Harrison 	dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
40291da177e4SLinus Torvalds 	return status;
4030c0eae66eSBenny Halevy out_overflow:
4031c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4032c0eae66eSBenny Halevy 	return -EIO;
40331da177e4SLinus Torvalds }
40341da177e4SLinus Torvalds 
40351da177e4SLinus Torvalds static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
40361da177e4SLinus Torvalds {
40378687b63aSAl Viro 	__be32 *p;
4038409924e4STrond Myklebust 	int ret = 0;
40391da177e4SLinus Torvalds 
40401da177e4SLinus Torvalds 	*used = 0;
40411da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
40421da177e4SLinus Torvalds 		return -EIO;
40431da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
4044c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8);
4045c0eae66eSBenny Halevy 		if (unlikely(!p))
4046c0eae66eSBenny Halevy 			goto out_overflow;
4047cccddf4fSBenny Halevy 		xdr_decode_hyper(p, used);
40481da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
4049409924e4STrond Myklebust 		ret = NFS_ATTR_FATTR_SPACE_USED;
40501da177e4SLinus Torvalds 	}
40513110ff80SHarvey Harrison 	dprintk("%s: space used=%Lu\n", __func__,
40521da177e4SLinus Torvalds 			(unsigned long long)*used);
4053409924e4STrond Myklebust 	return ret;
4054c0eae66eSBenny Halevy out_overflow:
4055c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4056c0eae66eSBenny Halevy 	return -EIO;
40571da177e4SLinus Torvalds }
40581da177e4SLinus Torvalds 
40591da177e4SLinus Torvalds static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
40601da177e4SLinus Torvalds {
40618687b63aSAl Viro 	__be32 *p;
40621da177e4SLinus Torvalds 	uint64_t sec;
40631da177e4SLinus Torvalds 	uint32_t nsec;
40641da177e4SLinus Torvalds 
4065c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 12);
4066c0eae66eSBenny Halevy 	if (unlikely(!p))
4067c0eae66eSBenny Halevy 		goto out_overflow;
40683ceb4dbbSBenny Halevy 	p = xdr_decode_hyper(p, &sec);
4069cccddf4fSBenny Halevy 	nsec = be32_to_cpup(p);
40701da177e4SLinus Torvalds 	time->tv_sec = (time_t)sec;
40711da177e4SLinus Torvalds 	time->tv_nsec = (long)nsec;
40721da177e4SLinus Torvalds 	return 0;
4073c0eae66eSBenny Halevy out_overflow:
4074c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4075c0eae66eSBenny Halevy 	return -EIO;
40761da177e4SLinus Torvalds }
40771da177e4SLinus Torvalds 
40781da177e4SLinus Torvalds static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
40791da177e4SLinus Torvalds {
40801da177e4SLinus Torvalds 	int status = 0;
40811da177e4SLinus Torvalds 
40821da177e4SLinus Torvalds 	time->tv_sec = 0;
40831da177e4SLinus Torvalds 	time->tv_nsec = 0;
40841da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
40851da177e4SLinus Torvalds 		return -EIO;
40861da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
40871da177e4SLinus Torvalds 		status = decode_attr_time(xdr, time);
4088409924e4STrond Myklebust 		if (status == 0)
4089409924e4STrond Myklebust 			status = NFS_ATTR_FATTR_ATIME;
40901da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
40911da177e4SLinus Torvalds 	}
40923110ff80SHarvey Harrison 	dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
40931da177e4SLinus Torvalds 	return status;
40941da177e4SLinus Torvalds }
40951da177e4SLinus Torvalds 
40961da177e4SLinus Torvalds static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
40971da177e4SLinus Torvalds {
40981da177e4SLinus Torvalds 	int status = 0;
40991da177e4SLinus Torvalds 
41001da177e4SLinus Torvalds 	time->tv_sec = 0;
41011da177e4SLinus Torvalds 	time->tv_nsec = 0;
41021da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
41031da177e4SLinus Torvalds 		return -EIO;
41041da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
41051da177e4SLinus Torvalds 		status = decode_attr_time(xdr, time);
4106409924e4STrond Myklebust 		if (status == 0)
4107409924e4STrond Myklebust 			status = NFS_ATTR_FATTR_CTIME;
41081da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
41091da177e4SLinus Torvalds 	}
41103110ff80SHarvey Harrison 	dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
41111da177e4SLinus Torvalds 	return status;
41121da177e4SLinus Torvalds }
41131da177e4SLinus Torvalds 
411455b6e774SRicardo Labiaga static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
411555b6e774SRicardo Labiaga 				  struct timespec *time)
411655b6e774SRicardo Labiaga {
411755b6e774SRicardo Labiaga 	int status = 0;
411855b6e774SRicardo Labiaga 
411955b6e774SRicardo Labiaga 	time->tv_sec = 0;
412055b6e774SRicardo Labiaga 	time->tv_nsec = 0;
412155b6e774SRicardo Labiaga 	if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
412255b6e774SRicardo Labiaga 		return -EIO;
412355b6e774SRicardo Labiaga 	if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
412455b6e774SRicardo Labiaga 		status = decode_attr_time(xdr, time);
412555b6e774SRicardo Labiaga 		bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
412655b6e774SRicardo Labiaga 	}
412755b6e774SRicardo Labiaga 	dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
412855b6e774SRicardo Labiaga 		(long)time->tv_nsec);
412955b6e774SRicardo Labiaga 	return status;
413055b6e774SRicardo Labiaga }
413155b6e774SRicardo Labiaga 
4132aa9c2669SDavid Quigley static int decode_attr_security_label(struct xdr_stream *xdr, uint32_t *bitmap,
4133aa9c2669SDavid Quigley 					struct nfs4_label *label)
4134aa9c2669SDavid Quigley {
4135aa9c2669SDavid Quigley 	uint32_t pi = 0;
4136aa9c2669SDavid Quigley 	uint32_t lfs = 0;
4137aa9c2669SDavid Quigley 	__u32 len;
4138aa9c2669SDavid Quigley 	__be32 *p;
4139aa9c2669SDavid Quigley 	int status = 0;
4140aa9c2669SDavid Quigley 
4141aa9c2669SDavid Quigley 	if (unlikely(bitmap[2] & (FATTR4_WORD2_SECURITY_LABEL - 1U)))
4142aa9c2669SDavid Quigley 		return -EIO;
4143aa9c2669SDavid Quigley 	if (likely(bitmap[2] & FATTR4_WORD2_SECURITY_LABEL)) {
4144aa9c2669SDavid Quigley 		p = xdr_inline_decode(xdr, 4);
4145aa9c2669SDavid Quigley 		if (unlikely(!p))
4146aa9c2669SDavid Quigley 			goto out_overflow;
4147aa9c2669SDavid Quigley 		lfs = be32_to_cpup(p++);
4148aa9c2669SDavid Quigley 		p = xdr_inline_decode(xdr, 4);
4149aa9c2669SDavid Quigley 		if (unlikely(!p))
4150aa9c2669SDavid Quigley 			goto out_overflow;
4151aa9c2669SDavid Quigley 		pi = be32_to_cpup(p++);
4152aa9c2669SDavid Quigley 		p = xdr_inline_decode(xdr, 4);
4153aa9c2669SDavid Quigley 		if (unlikely(!p))
4154aa9c2669SDavid Quigley 			goto out_overflow;
4155aa9c2669SDavid Quigley 		len = be32_to_cpup(p++);
4156aa9c2669SDavid Quigley 		p = xdr_inline_decode(xdr, len);
4157aa9c2669SDavid Quigley 		if (unlikely(!p))
4158aa9c2669SDavid Quigley 			goto out_overflow;
4159aa9c2669SDavid Quigley 		if (len < NFS4_MAXLABELLEN) {
4160aa9c2669SDavid Quigley 			if (label) {
4161aa9c2669SDavid Quigley 				memcpy(label->label, p, len);
4162aa9c2669SDavid Quigley 				label->len = len;
4163aa9c2669SDavid Quigley 				label->pi = pi;
4164aa9c2669SDavid Quigley 				label->lfs = lfs;
4165aa9c2669SDavid Quigley 				status = NFS_ATTR_FATTR_V4_SECURITY_LABEL;
4166aa9c2669SDavid Quigley 			}
4167aa9c2669SDavid Quigley 			bitmap[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
4168aa9c2669SDavid Quigley 		} else
4169aa9c2669SDavid Quigley 			printk(KERN_WARNING "%s: label too long (%u)!\n",
4170aa9c2669SDavid Quigley 					__func__, len);
4171aa9c2669SDavid Quigley 	}
4172aa9c2669SDavid Quigley 	if (label && label->label)
4173aa9c2669SDavid Quigley 		dprintk("%s: label=%s, len=%d, PI=%d, LFS=%d\n", __func__,
4174aa9c2669SDavid Quigley 			(char *)label->label, label->len, label->pi, label->lfs);
4175aa9c2669SDavid Quigley 	return status;
4176aa9c2669SDavid Quigley 
4177aa9c2669SDavid Quigley out_overflow:
4178aa9c2669SDavid Quigley 	print_overflow_msg(__func__, xdr);
4179aa9c2669SDavid Quigley 	return -EIO;
4180aa9c2669SDavid Quigley }
4181aa9c2669SDavid Quigley 
41821da177e4SLinus Torvalds static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
41831da177e4SLinus Torvalds {
41841da177e4SLinus Torvalds 	int status = 0;
41851da177e4SLinus Torvalds 
41861da177e4SLinus Torvalds 	time->tv_sec = 0;
41871da177e4SLinus Torvalds 	time->tv_nsec = 0;
41881da177e4SLinus Torvalds 	if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
41891da177e4SLinus Torvalds 		return -EIO;
41901da177e4SLinus Torvalds 	if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
41911da177e4SLinus Torvalds 		status = decode_attr_time(xdr, time);
4192409924e4STrond Myklebust 		if (status == 0)
4193409924e4STrond Myklebust 			status = NFS_ATTR_FATTR_MTIME;
41941da177e4SLinus Torvalds 		bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
41951da177e4SLinus Torvalds 	}
41963110ff80SHarvey Harrison 	dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
41971da177e4SLinus Torvalds 	return status;
41981da177e4SLinus Torvalds }
41991da177e4SLinus Torvalds 
4200256e48bbSTrond Myklebust static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
42011da177e4SLinus Torvalds {
42021da177e4SLinus Torvalds 	unsigned int attrwords = XDR_QUADLEN(attrlen);
4203256e48bbSTrond Myklebust 	unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
42041da177e4SLinus Torvalds 
42051da177e4SLinus Torvalds 	if (unlikely(attrwords != nwords)) {
4206fe82a183SChuck Lever 		dprintk("%s: server returned incorrect attribute length: "
4207fe82a183SChuck Lever 			"%u %c %u\n",
42083110ff80SHarvey Harrison 				__func__,
42091da177e4SLinus Torvalds 				attrwords << 2,
42101da177e4SLinus Torvalds 				(attrwords < nwords) ? '<' : '>',
42111da177e4SLinus Torvalds 				nwords << 2);
42121da177e4SLinus Torvalds 		return -EIO;
42131da177e4SLinus Torvalds 	}
42141da177e4SLinus Torvalds 	return 0;
42151da177e4SLinus Torvalds }
42161da177e4SLinus Torvalds 
42171da177e4SLinus Torvalds static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
42181da177e4SLinus Torvalds {
42198687b63aSAl Viro 	__be32 *p;
42201da177e4SLinus Torvalds 
4221c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 20);
4222c0eae66eSBenny Halevy 	if (unlikely(!p))
4223c0eae66eSBenny Halevy 		goto out_overflow;
42246f723f77SBenny Halevy 	cinfo->atomic = be32_to_cpup(p++);
42253ceb4dbbSBenny Halevy 	p = xdr_decode_hyper(p, &cinfo->before);
4226cccddf4fSBenny Halevy 	xdr_decode_hyper(p, &cinfo->after);
42271da177e4SLinus Torvalds 	return 0;
4228c0eae66eSBenny Halevy out_overflow:
4229c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4230c0eae66eSBenny Halevy 	return -EIO;
42311da177e4SLinus Torvalds }
42321da177e4SLinus Torvalds 
42336168f62cSWeston Andros Adamson static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
42341da177e4SLinus Torvalds {
42358687b63aSAl Viro 	__be32 *p;
42361da177e4SLinus Torvalds 	uint32_t supp, acc;
42371da177e4SLinus Torvalds 	int status;
42381da177e4SLinus Torvalds 
42391da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_ACCESS);
42401da177e4SLinus Torvalds 	if (status)
42411da177e4SLinus Torvalds 		return status;
4242c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
4243c0eae66eSBenny Halevy 	if (unlikely(!p))
4244c0eae66eSBenny Halevy 		goto out_overflow;
42456f723f77SBenny Halevy 	supp = be32_to_cpup(p++);
4246cccddf4fSBenny Halevy 	acc = be32_to_cpup(p);
42476168f62cSWeston Andros Adamson 	*supported = supp;
42486168f62cSWeston Andros Adamson 	*access = acc;
42491da177e4SLinus Torvalds 	return 0;
4250c0eae66eSBenny Halevy out_overflow:
4251c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4252c0eae66eSBenny Halevy 	return -EIO;
42531da177e4SLinus Torvalds }
42541da177e4SLinus Torvalds 
425507d30434SBenny Halevy static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
42561da177e4SLinus Torvalds {
42578687b63aSAl Viro 	__be32 *p;
425807d30434SBenny Halevy 
425907d30434SBenny Halevy 	p = xdr_inline_decode(xdr, len);
426007d30434SBenny Halevy 	if (likely(p)) {
426107d30434SBenny Halevy 		memcpy(buf, p, len);
426207d30434SBenny Halevy 		return 0;
426307d30434SBenny Halevy 	}
426407d30434SBenny Halevy 	print_overflow_msg(__func__, xdr);
426507d30434SBenny Halevy 	return -EIO;
426607d30434SBenny Halevy }
426707d30434SBenny Halevy 
426807d30434SBenny Halevy static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
426907d30434SBenny Halevy {
42702d2f24adSTrond Myklebust 	return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
42711da177e4SLinus Torvalds }
42721da177e4SLinus Torvalds 
427393b717fdSTrond Myklebust static int decode_open_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
427493b717fdSTrond Myklebust {
427593b717fdSTrond Myklebust 	stateid->type = NFS4_OPEN_STATEID_TYPE;
427693b717fdSTrond Myklebust 	return decode_stateid(xdr, stateid);
427793b717fdSTrond Myklebust }
427893b717fdSTrond Myklebust 
427993b717fdSTrond Myklebust static int decode_lock_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
428093b717fdSTrond Myklebust {
428193b717fdSTrond Myklebust 	stateid->type = NFS4_LOCK_STATEID_TYPE;
428293b717fdSTrond Myklebust 	return decode_stateid(xdr, stateid);
428393b717fdSTrond Myklebust }
428493b717fdSTrond Myklebust 
428593b717fdSTrond Myklebust static int decode_delegation_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
428693b717fdSTrond Myklebust {
428793b717fdSTrond Myklebust 	stateid->type = NFS4_DELEGATION_STATEID_TYPE;
428893b717fdSTrond Myklebust 	return decode_stateid(xdr, stateid);
428993b717fdSTrond Myklebust }
429093b717fdSTrond Myklebust 
42911da177e4SLinus Torvalds static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
42921da177e4SLinus Torvalds {
42931da177e4SLinus Torvalds 	int status;
42941da177e4SLinus Torvalds 
42951da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_CLOSE);
4296c1d51931STrond Myklebust 	if (status != -EIO)
4297c1d51931STrond Myklebust 		nfs_increment_open_seqid(status, res->seqid);
429807d30434SBenny Halevy 	if (!status)
429993b717fdSTrond Myklebust 		status = decode_open_stateid(xdr, &res->stateid);
43001da177e4SLinus Torvalds 	return status;
43011da177e4SLinus Torvalds }
43021da177e4SLinus Torvalds 
4303db942bbdSBenny Halevy static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4304db942bbdSBenny Halevy {
4305cd93710eSChuck Lever 	return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
43061da177e4SLinus Torvalds }
43071da177e4SLinus Torvalds 
43082f2c63bcSTrond Myklebust static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
43092f2c63bcSTrond Myklebust {
43102f2c63bcSTrond Myklebust 	return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
43112f2c63bcSTrond Myklebust }
43122f2c63bcSTrond Myklebust 
43130b7c0153SFred Isaman static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
43141da177e4SLinus Torvalds {
43151da177e4SLinus Torvalds 	int status;
43161da177e4SLinus Torvalds 
43171da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_COMMIT);
4318db942bbdSBenny Halevy 	if (!status)
43192f2c63bcSTrond Myklebust 		status = decode_write_verifier(xdr, &res->verf->verifier);
43201da177e4SLinus Torvalds 	return status;
43211da177e4SLinus Torvalds }
43221da177e4SLinus Torvalds 
43231da177e4SLinus Torvalds static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
43241da177e4SLinus Torvalds {
43258687b63aSAl Viro 	__be32 *p;
43261da177e4SLinus Torvalds 	uint32_t bmlen;
43271da177e4SLinus Torvalds 	int status;
43281da177e4SLinus Torvalds 
43291da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_CREATE);
43301da177e4SLinus Torvalds 	if (status)
43311da177e4SLinus Torvalds 		return status;
43321da177e4SLinus Torvalds 	if ((status = decode_change_info(xdr, cinfo)))
43331da177e4SLinus Torvalds 		return status;
4334c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
4335c0eae66eSBenny Halevy 	if (unlikely(!p))
4336c0eae66eSBenny Halevy 		goto out_overflow;
4337cccddf4fSBenny Halevy 	bmlen = be32_to_cpup(p);
4338c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, bmlen << 2);
4339c0eae66eSBenny Halevy 	if (likely(p))
43401da177e4SLinus Torvalds 		return 0;
4341c0eae66eSBenny Halevy out_overflow:
4342c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4343c0eae66eSBenny Halevy 	return -EIO;
43441da177e4SLinus Torvalds }
43451da177e4SLinus Torvalds 
43461da177e4SLinus Torvalds static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
43471da177e4SLinus Torvalds {
4348256e48bbSTrond Myklebust 	unsigned int savep;
4349dae100c2SFred Isaman 	uint32_t attrlen, bitmap[3] = {0};
43501da177e4SLinus Torvalds 	int status;
43511da177e4SLinus Torvalds 
43521da177e4SLinus Torvalds 	if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
43531da177e4SLinus Torvalds 		goto xdr_error;
43541da177e4SLinus Torvalds 	if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
43551da177e4SLinus Torvalds 		goto xdr_error;
43561da177e4SLinus Torvalds 	if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
43571da177e4SLinus Torvalds 		goto xdr_error;
43581da177e4SLinus Torvalds 	if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
43591da177e4SLinus Torvalds 		goto xdr_error;
4360264e6351SChuck Lever 	if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4361264e6351SChuck Lever 						 &res->fh_expire_type)) != 0)
4362264e6351SChuck Lever 		goto xdr_error;
43631da177e4SLinus Torvalds 	if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
43641da177e4SLinus Torvalds 		goto xdr_error;
43651da177e4SLinus Torvalds 	if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
43661da177e4SLinus Torvalds 		goto xdr_error;
43671da177e4SLinus Torvalds 	if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
43681da177e4SLinus Torvalds 		goto xdr_error;
43698c61282fSKinglong Mee 	if ((status = decode_attr_exclcreat_supported(xdr, bitmap,
43708c61282fSKinglong Mee 				res->exclcreat_bitmask)) != 0)
43718c61282fSKinglong Mee 		goto xdr_error;
43721da177e4SLinus Torvalds 	status = verify_attr_len(xdr, savep, attrlen);
43731da177e4SLinus Torvalds xdr_error:
43743110ff80SHarvey Harrison 	dprintk("%s: xdr returned %d!\n", __func__, -status);
43751da177e4SLinus Torvalds 	return status;
43761da177e4SLinus Torvalds }
43771da177e4SLinus Torvalds 
43781da177e4SLinus Torvalds static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
43791da177e4SLinus Torvalds {
4380256e48bbSTrond Myklebust 	unsigned int savep;
4381dae100c2SFred Isaman 	uint32_t attrlen, bitmap[3] = {0};
43821da177e4SLinus Torvalds 	int status;
43831da177e4SLinus Torvalds 
43841da177e4SLinus Torvalds 	if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
43851da177e4SLinus Torvalds 		goto xdr_error;
43861da177e4SLinus Torvalds 	if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
43871da177e4SLinus Torvalds 		goto xdr_error;
43881da177e4SLinus Torvalds 	if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
43891da177e4SLinus Torvalds 		goto xdr_error;
43901da177e4SLinus Torvalds 
43911da177e4SLinus Torvalds 	if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
43921da177e4SLinus Torvalds 		goto xdr_error;
43931da177e4SLinus Torvalds 	if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
43941da177e4SLinus Torvalds 		goto xdr_error;
43951da177e4SLinus Torvalds 	if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
43961da177e4SLinus Torvalds 		goto xdr_error;
43971ca843a2SAndreas Gruenbacher 
43981ca843a2SAndreas Gruenbacher 	status = -EIO;
43991ca843a2SAndreas Gruenbacher 	if (unlikely(bitmap[0]))
44001ca843a2SAndreas Gruenbacher 		goto xdr_error;
44011ca843a2SAndreas Gruenbacher 
44021da177e4SLinus Torvalds 	if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
44031da177e4SLinus Torvalds 		goto xdr_error;
44041da177e4SLinus Torvalds 	if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
44051da177e4SLinus Torvalds 		goto xdr_error;
44061da177e4SLinus Torvalds 	if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
44071da177e4SLinus Torvalds 		goto xdr_error;
44081da177e4SLinus Torvalds 
44091da177e4SLinus Torvalds 	status = verify_attr_len(xdr, savep, attrlen);
44101da177e4SLinus Torvalds xdr_error:
44113110ff80SHarvey Harrison 	dprintk("%s: xdr returned %d!\n", __func__, -status);
44121da177e4SLinus Torvalds 	return status;
44131da177e4SLinus Torvalds }
44141da177e4SLinus Torvalds 
44151da177e4SLinus Torvalds static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
44161da177e4SLinus Torvalds {
4417256e48bbSTrond Myklebust 	unsigned int savep;
4418dae100c2SFred Isaman 	uint32_t attrlen, bitmap[3] = {0};
44191da177e4SLinus Torvalds 	int status;
44201da177e4SLinus Torvalds 
44211da177e4SLinus Torvalds 	if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
44221da177e4SLinus Torvalds 		goto xdr_error;
44231da177e4SLinus Torvalds 	if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
44241da177e4SLinus Torvalds 		goto xdr_error;
44251da177e4SLinus Torvalds 	if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
44261da177e4SLinus Torvalds 		goto xdr_error;
44271da177e4SLinus Torvalds 
44281da177e4SLinus Torvalds 	if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
44291da177e4SLinus Torvalds 		goto xdr_error;
44301da177e4SLinus Torvalds 	if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
44311da177e4SLinus Torvalds 		goto xdr_error;
44321da177e4SLinus Torvalds 
44331da177e4SLinus Torvalds 	status = verify_attr_len(xdr, savep, attrlen);
44341da177e4SLinus Torvalds xdr_error:
44353110ff80SHarvey Harrison 	dprintk("%s: xdr returned %d!\n", __func__, -status);
44361da177e4SLinus Torvalds 	return status;
44371da177e4SLinus Torvalds }
44381da177e4SLinus Torvalds 
443988034c3dSAndy Adamson static int decode_threshold_hint(struct xdr_stream *xdr,
444088034c3dSAndy Adamson 				  uint32_t *bitmap,
444188034c3dSAndy Adamson 				  uint64_t *res,
444288034c3dSAndy Adamson 				  uint32_t hint_bit)
444388034c3dSAndy Adamson {
444488034c3dSAndy Adamson 	__be32 *p;
444588034c3dSAndy Adamson 
444688034c3dSAndy Adamson 	*res = 0;
444788034c3dSAndy Adamson 	if (likely(bitmap[0] & hint_bit)) {
444888034c3dSAndy Adamson 		p = xdr_inline_decode(xdr, 8);
444988034c3dSAndy Adamson 		if (unlikely(!p))
445088034c3dSAndy Adamson 			goto out_overflow;
445188034c3dSAndy Adamson 		xdr_decode_hyper(p, res);
445288034c3dSAndy Adamson 	}
445388034c3dSAndy Adamson 	return 0;
445488034c3dSAndy Adamson out_overflow:
445588034c3dSAndy Adamson 	print_overflow_msg(__func__, xdr);
445688034c3dSAndy Adamson 	return -EIO;
445788034c3dSAndy Adamson }
445888034c3dSAndy Adamson 
445988034c3dSAndy Adamson static int decode_first_threshold_item4(struct xdr_stream *xdr,
446088034c3dSAndy Adamson 					struct nfs4_threshold *res)
446188034c3dSAndy Adamson {
4462256e48bbSTrond Myklebust 	__be32 *p;
4463256e48bbSTrond Myklebust 	unsigned int savep;
446488034c3dSAndy Adamson 	uint32_t bitmap[3] = {0,}, attrlen;
446588034c3dSAndy Adamson 	int status;
446688034c3dSAndy Adamson 
446788034c3dSAndy Adamson 	/* layout type */
446888034c3dSAndy Adamson 	p = xdr_inline_decode(xdr, 4);
446988034c3dSAndy Adamson 	if (unlikely(!p)) {
447088034c3dSAndy Adamson 		print_overflow_msg(__func__, xdr);
447188034c3dSAndy Adamson 		return -EIO;
447288034c3dSAndy Adamson 	}
447388034c3dSAndy Adamson 	res->l_type = be32_to_cpup(p);
447488034c3dSAndy Adamson 
447588034c3dSAndy Adamson 	/* thi_hintset bitmap */
447688034c3dSAndy Adamson 	status = decode_attr_bitmap(xdr, bitmap);
447788034c3dSAndy Adamson 	if (status < 0)
447888034c3dSAndy Adamson 		goto xdr_error;
447988034c3dSAndy Adamson 
448088034c3dSAndy Adamson 	/* thi_hintlist length */
448188034c3dSAndy Adamson 	status = decode_attr_length(xdr, &attrlen, &savep);
448288034c3dSAndy Adamson 	if (status < 0)
448388034c3dSAndy Adamson 		goto xdr_error;
448488034c3dSAndy Adamson 	/* thi_hintlist */
448588034c3dSAndy Adamson 	status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
448688034c3dSAndy Adamson 	if (status < 0)
448788034c3dSAndy Adamson 		goto xdr_error;
448888034c3dSAndy Adamson 	status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
448988034c3dSAndy Adamson 	if (status < 0)
449088034c3dSAndy Adamson 		goto xdr_error;
449188034c3dSAndy Adamson 	status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
449288034c3dSAndy Adamson 				       THRESHOLD_RD_IO);
449388034c3dSAndy Adamson 	if (status < 0)
449488034c3dSAndy Adamson 		goto xdr_error;
449588034c3dSAndy Adamson 	status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
449688034c3dSAndy Adamson 				       THRESHOLD_WR_IO);
449788034c3dSAndy Adamson 	if (status < 0)
449888034c3dSAndy Adamson 		goto xdr_error;
449988034c3dSAndy Adamson 
450088034c3dSAndy Adamson 	status = verify_attr_len(xdr, savep, attrlen);
450188034c3dSAndy Adamson 	res->bm = bitmap[0];
450288034c3dSAndy Adamson 
450388034c3dSAndy Adamson 	dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
450488034c3dSAndy Adamson 		 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
450588034c3dSAndy Adamson 		res->wr_io_sz);
450688034c3dSAndy Adamson xdr_error:
450788034c3dSAndy Adamson 	dprintk("%s ret=%d!\n", __func__, status);
450888034c3dSAndy Adamson 	return status;
450988034c3dSAndy Adamson }
451088034c3dSAndy Adamson 
451188034c3dSAndy Adamson /*
451288034c3dSAndy Adamson  * Thresholds on pNFS direct I/O vrs MDS I/O
451388034c3dSAndy Adamson  */
451488034c3dSAndy Adamson static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
451588034c3dSAndy Adamson 				    uint32_t *bitmap,
451688034c3dSAndy Adamson 				    struct nfs4_threshold *res)
451788034c3dSAndy Adamson {
451888034c3dSAndy Adamson 	__be32 *p;
451988034c3dSAndy Adamson 	int status = 0;
452088034c3dSAndy Adamson 	uint32_t num;
452188034c3dSAndy Adamson 
452288034c3dSAndy Adamson 	if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
452388034c3dSAndy Adamson 		return -EIO;
4524029c5347STrond Myklebust 	if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
45251549210fSTrond Myklebust 		/* Did the server return an unrequested attribute? */
45261549210fSTrond Myklebust 		if (unlikely(res == NULL))
45271549210fSTrond Myklebust 			return -EREMOTEIO;
452888034c3dSAndy Adamson 		p = xdr_inline_decode(xdr, 4);
452988034c3dSAndy Adamson 		if (unlikely(!p))
453088034c3dSAndy Adamson 			goto out_overflow;
453188034c3dSAndy Adamson 		num = be32_to_cpup(p);
453288034c3dSAndy Adamson 		if (num == 0)
453388034c3dSAndy Adamson 			return 0;
453488034c3dSAndy Adamson 		if (num > 1)
453588034c3dSAndy Adamson 			printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
453688034c3dSAndy Adamson 				"drivers per filesystem not supported\n",
453788034c3dSAndy Adamson 				__func__);
453888034c3dSAndy Adamson 
453988034c3dSAndy Adamson 		status = decode_first_threshold_item4(xdr, res);
4540029c5347STrond Myklebust 		bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
454188034c3dSAndy Adamson 	}
454288034c3dSAndy Adamson 	return status;
454388034c3dSAndy Adamson out_overflow:
454488034c3dSAndy Adamson 	print_overflow_msg(__func__, xdr);
454588034c3dSAndy Adamson 	return -EIO;
454688034c3dSAndy Adamson }
454788034c3dSAndy Adamson 
4548ae42c70aSBryan Schumaker static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4549ae42c70aSBryan Schumaker 		struct nfs_fattr *fattr, struct nfs_fh *fh,
4550aa9c2669SDavid Quigley 		struct nfs4_fs_locations *fs_loc, struct nfs4_label *label,
45516926afd1STrond Myklebust 		const struct nfs_server *server)
45521da177e4SLinus Torvalds {
4553bca79478STrond Myklebust 	int status;
4554bca79478STrond Myklebust 	umode_t fmode = 0;
4555ae42c70aSBryan Schumaker 	uint32_t type;
4556ee7b75fcSTrond Myklebust 	int32_t err;
45571da177e4SLinus Torvalds 
4558f26c7a78STrond Myklebust 	status = decode_attr_type(xdr, bitmap, &type);
4559f26c7a78STrond Myklebust 	if (status < 0)
45601da177e4SLinus Torvalds 		goto xdr_error;
4561409924e4STrond Myklebust 	fattr->mode = 0;
4562409924e4STrond Myklebust 	if (status != 0) {
4563409924e4STrond Myklebust 		fattr->mode |= nfs_type2fmt[type];
4564409924e4STrond Myklebust 		fattr->valid |= status;
4565409924e4STrond Myklebust 	}
45661da177e4SLinus Torvalds 
4567f26c7a78STrond Myklebust 	status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4568f26c7a78STrond Myklebust 	if (status < 0)
45691da177e4SLinus Torvalds 		goto xdr_error;
4570409924e4STrond Myklebust 	fattr->valid |= status;
4571f26c7a78STrond Myklebust 
4572f26c7a78STrond Myklebust 	status = decode_attr_size(xdr, bitmap, &fattr->size);
4573f26c7a78STrond Myklebust 	if (status < 0)
45741da177e4SLinus Torvalds 		goto xdr_error;
4575409924e4STrond Myklebust 	fattr->valid |= status;
4576f26c7a78STrond Myklebust 
4577f26c7a78STrond Myklebust 	status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4578f26c7a78STrond Myklebust 	if (status < 0)
45791da177e4SLinus Torvalds 		goto xdr_error;
4580409924e4STrond Myklebust 	fattr->valid |= status;
4581f26c7a78STrond Myklebust 
4582ee7b75fcSTrond Myklebust 	err = 0;
4583ee7b75fcSTrond Myklebust 	status = decode_attr_error(xdr, bitmap, &err);
4584ae42c70aSBryan Schumaker 	if (status < 0)
4585ae42c70aSBryan Schumaker 		goto xdr_error;
4586ae42c70aSBryan Schumaker 
4587ae42c70aSBryan Schumaker 	status = decode_attr_filehandle(xdr, bitmap, fh);
4588ae42c70aSBryan Schumaker 	if (status < 0)
4589ae42c70aSBryan Schumaker 		goto xdr_error;
4590ae42c70aSBryan Schumaker 
4591f26c7a78STrond Myklebust 	status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4592f26c7a78STrond Myklebust 	if (status < 0)
45931da177e4SLinus Torvalds 		goto xdr_error;
4594409924e4STrond Myklebust 	fattr->valid |= status;
4595f26c7a78STrond Myklebust 
45968b7e3f49STrond Myklebust 	status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
4597f26c7a78STrond Myklebust 	if (status < 0)
4598683b57b4STrond Myklebust 		goto xdr_error;
4599409924e4STrond Myklebust 	fattr->valid |= status;
4600f26c7a78STrond Myklebust 
46011ca843a2SAndreas Gruenbacher 	status = -EIO;
46021ca843a2SAndreas Gruenbacher 	if (unlikely(bitmap[0]))
46031ca843a2SAndreas Gruenbacher 		goto xdr_error;
46041ca843a2SAndreas Gruenbacher 
4605f26c7a78STrond Myklebust 	status = decode_attr_mode(xdr, bitmap, &fmode);
4606f26c7a78STrond Myklebust 	if (status < 0)
46071da177e4SLinus Torvalds 		goto xdr_error;
4608409924e4STrond Myklebust 	if (status != 0) {
46091da177e4SLinus Torvalds 		fattr->mode |= fmode;
4610409924e4STrond Myklebust 		fattr->valid |= status;
4611409924e4STrond Myklebust 	}
4612f26c7a78STrond Myklebust 
4613f26c7a78STrond Myklebust 	status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4614f26c7a78STrond Myklebust 	if (status < 0)
46151da177e4SLinus Torvalds 		goto xdr_error;
4616409924e4STrond Myklebust 	fattr->valid |= status;
4617f26c7a78STrond Myklebust 
46186926afd1STrond Myklebust 	status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
4619f26c7a78STrond Myklebust 	if (status < 0)
46201da177e4SLinus Torvalds 		goto xdr_error;
4621409924e4STrond Myklebust 	fattr->valid |= status;
4622f26c7a78STrond Myklebust 
46236926afd1STrond Myklebust 	status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
4624f26c7a78STrond Myklebust 	if (status < 0)
46251da177e4SLinus Torvalds 		goto xdr_error;
4626409924e4STrond Myklebust 	fattr->valid |= status;
4627f26c7a78STrond Myklebust 
4628f26c7a78STrond Myklebust 	status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4629f26c7a78STrond Myklebust 	if (status < 0)
46301da177e4SLinus Torvalds 		goto xdr_error;
4631409924e4STrond Myklebust 	fattr->valid |= status;
4632f26c7a78STrond Myklebust 
4633f26c7a78STrond Myklebust 	status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4634f26c7a78STrond Myklebust 	if (status < 0)
46351da177e4SLinus Torvalds 		goto xdr_error;
4636409924e4STrond Myklebust 	fattr->valid |= status;
4637f26c7a78STrond Myklebust 
4638f26c7a78STrond Myklebust 	status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4639f26c7a78STrond Myklebust 	if (status < 0)
46401da177e4SLinus Torvalds 		goto xdr_error;
4641409924e4STrond Myklebust 	fattr->valid |= status;
4642f26c7a78STrond Myklebust 
4643f26c7a78STrond Myklebust 	status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4644f26c7a78STrond Myklebust 	if (status < 0)
46451da177e4SLinus Torvalds 		goto xdr_error;
4646409924e4STrond Myklebust 	fattr->valid |= status;
4647f26c7a78STrond Myklebust 
4648f26c7a78STrond Myklebust 	status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4649f26c7a78STrond Myklebust 	if (status < 0)
46501da177e4SLinus Torvalds 		goto xdr_error;
4651409924e4STrond Myklebust 	fattr->valid |= status;
4652f26c7a78STrond Myklebust 
465328331a46STrond Myklebust 	status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
4654f26c7a78STrond Myklebust 	if (status < 0)
465599baf625SManoj Naik 		goto xdr_error;
4656409924e4STrond Myklebust 	fattr->valid |= status;
4657f26c7a78STrond Myklebust 
46581ca843a2SAndreas Gruenbacher 	status = -EIO;
46591ca843a2SAndreas Gruenbacher 	if (unlikely(bitmap[1]))
46601ca843a2SAndreas Gruenbacher 		goto xdr_error;
46611ca843a2SAndreas Gruenbacher 
466288034c3dSAndy Adamson 	status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
466388034c3dSAndy Adamson 	if (status < 0)
466488034c3dSAndy Adamson 		goto xdr_error;
466588034c3dSAndy Adamson 
4666aa9c2669SDavid Quigley 	if (label) {
4667aa9c2669SDavid Quigley 		status = decode_attr_security_label(xdr, bitmap, label);
4668aa9c2669SDavid Quigley 		if (status < 0)
4669aa9c2669SDavid Quigley 			goto xdr_error;
4670aa9c2669SDavid Quigley 		fattr->valid |= status;
4671aa9c2669SDavid Quigley 	}
4672aa9c2669SDavid Quigley 
4673ae42c70aSBryan Schumaker xdr_error:
4674ae42c70aSBryan Schumaker 	dprintk("%s: xdr returned %d\n", __func__, -status);
4675ae42c70aSBryan Schumaker 	return status;
4676ae42c70aSBryan Schumaker }
4677ae42c70aSBryan Schumaker 
4678ae42c70aSBryan Schumaker static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
46798b7e3f49STrond Myklebust 		struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4680aa9c2669SDavid Quigley 		struct nfs4_label *label, const struct nfs_server *server)
4681ae42c70aSBryan Schumaker {
4682256e48bbSTrond Myklebust 	unsigned int savep;
4683ae42c70aSBryan Schumaker 	uint32_t attrlen,
4684dae100c2SFred Isaman 		 bitmap[3] = {0};
4685ae42c70aSBryan Schumaker 	int status;
4686ae42c70aSBryan Schumaker 
4687ae42c70aSBryan Schumaker 	status = decode_op_hdr(xdr, OP_GETATTR);
4688ae42c70aSBryan Schumaker 	if (status < 0)
4689ae42c70aSBryan Schumaker 		goto xdr_error;
4690ae42c70aSBryan Schumaker 
4691ae42c70aSBryan Schumaker 	status = decode_attr_bitmap(xdr, bitmap);
4692ae42c70aSBryan Schumaker 	if (status < 0)
4693ae42c70aSBryan Schumaker 		goto xdr_error;
4694ae42c70aSBryan Schumaker 
4695ae42c70aSBryan Schumaker 	status = decode_attr_length(xdr, &attrlen, &savep);
4696ae42c70aSBryan Schumaker 	if (status < 0)
4697ae42c70aSBryan Schumaker 		goto xdr_error;
4698ae42c70aSBryan Schumaker 
4699aa9c2669SDavid Quigley 	status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc,
4700aa9c2669SDavid Quigley 					label, server);
4701ae42c70aSBryan Schumaker 	if (status < 0)
4702ae42c70aSBryan Schumaker 		goto xdr_error;
4703ae42c70aSBryan Schumaker 
4704f26c7a78STrond Myklebust 	status = verify_attr_len(xdr, savep, attrlen);
47051da177e4SLinus Torvalds xdr_error:
47063110ff80SHarvey Harrison 	dprintk("%s: xdr returned %d\n", __func__, -status);
47071da177e4SLinus Torvalds 	return status;
47081da177e4SLinus Torvalds }
47091da177e4SLinus Torvalds 
4710aa9c2669SDavid Quigley static int decode_getfattr_label(struct xdr_stream *xdr, struct nfs_fattr *fattr,
4711aa9c2669SDavid Quigley 		struct nfs4_label *label, const struct nfs_server *server)
4712aa9c2669SDavid Quigley {
4713aa9c2669SDavid Quigley 	return decode_getfattr_generic(xdr, fattr, NULL, NULL, label, server);
4714aa9c2669SDavid Quigley }
4715aa9c2669SDavid Quigley 
4716ae42c70aSBryan Schumaker static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
47176926afd1STrond Myklebust 		const struct nfs_server *server)
4718ae42c70aSBryan Schumaker {
4719aa9c2669SDavid Quigley 	return decode_getfattr_generic(xdr, fattr, NULL, NULL, NULL, server);
4720ae42c70aSBryan Schumaker }
47211da177e4SLinus Torvalds 
4722504913fbSAndy Adamson /*
4723504913fbSAndy Adamson  * Decode potentially multiple layout types. Currently we only support
4724504913fbSAndy Adamson  * one layout driver per file system.
4725504913fbSAndy Adamson  */
4726504913fbSAndy Adamson static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4727504913fbSAndy Adamson 					 uint32_t *layouttype)
4728504913fbSAndy Adamson {
4729b8a8a0ddSTrond Myklebust 	__be32 *p;
4730504913fbSAndy Adamson 	int num;
4731504913fbSAndy Adamson 
4732504913fbSAndy Adamson 	p = xdr_inline_decode(xdr, 4);
4733504913fbSAndy Adamson 	if (unlikely(!p))
4734504913fbSAndy Adamson 		goto out_overflow;
4735504913fbSAndy Adamson 	num = be32_to_cpup(p);
4736504913fbSAndy Adamson 
4737504913fbSAndy Adamson 	/* pNFS is not supported by the underlying file system */
4738504913fbSAndy Adamson 	if (num == 0) {
4739504913fbSAndy Adamson 		*layouttype = 0;
4740504913fbSAndy Adamson 		return 0;
4741504913fbSAndy Adamson 	}
4742504913fbSAndy Adamson 	if (num > 1)
4743a030889aSWeston Andros Adamson 		printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4744a030889aSWeston Andros Adamson 			"drivers per filesystem not supported\n", __func__);
4745504913fbSAndy Adamson 
4746504913fbSAndy Adamson 	/* Decode and set first layout type, move xdr->p past unused types */
4747504913fbSAndy Adamson 	p = xdr_inline_decode(xdr, num * 4);
4748504913fbSAndy Adamson 	if (unlikely(!p))
4749504913fbSAndy Adamson 		goto out_overflow;
4750504913fbSAndy Adamson 	*layouttype = be32_to_cpup(p);
4751504913fbSAndy Adamson 	return 0;
4752504913fbSAndy Adamson out_overflow:
4753504913fbSAndy Adamson 	print_overflow_msg(__func__, xdr);
4754504913fbSAndy Adamson 	return -EIO;
4755504913fbSAndy Adamson }
4756504913fbSAndy Adamson 
4757504913fbSAndy Adamson /*
4758504913fbSAndy Adamson  * The type of file system exported.
4759504913fbSAndy Adamson  * Note we must ensure that layouttype is set in any non-error case.
4760504913fbSAndy Adamson  */
4761504913fbSAndy Adamson static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4762504913fbSAndy Adamson 				uint32_t *layouttype)
4763504913fbSAndy Adamson {
4764504913fbSAndy Adamson 	int status = 0;
4765504913fbSAndy Adamson 
4766504913fbSAndy Adamson 	dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4767504913fbSAndy Adamson 	if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4768504913fbSAndy Adamson 		return -EIO;
4769504913fbSAndy Adamson 	if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4770504913fbSAndy Adamson 		status = decode_first_pnfs_layout_type(xdr, layouttype);
4771504913fbSAndy Adamson 		bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4772504913fbSAndy Adamson 	} else
4773504913fbSAndy Adamson 		*layouttype = 0;
4774504913fbSAndy Adamson 	return status;
4775504913fbSAndy Adamson }
4776504913fbSAndy Adamson 
4777dae100c2SFred Isaman /*
4778dae100c2SFred Isaman  * The prefered block size for layout directed io
4779dae100c2SFred Isaman  */
4780dae100c2SFred Isaman static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4781dae100c2SFred Isaman 				      uint32_t *res)
4782dae100c2SFred Isaman {
4783dae100c2SFred Isaman 	__be32 *p;
4784dae100c2SFred Isaman 
4785dae100c2SFred Isaman 	dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4786dae100c2SFred Isaman 	*res = 0;
4787dae100c2SFred Isaman 	if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4788dae100c2SFred Isaman 		p = xdr_inline_decode(xdr, 4);
4789dae100c2SFred Isaman 		if (unlikely(!p)) {
4790dae100c2SFred Isaman 			print_overflow_msg(__func__, xdr);
4791dae100c2SFred Isaman 			return -EIO;
4792dae100c2SFred Isaman 		}
4793dae100c2SFred Isaman 		*res = be32_to_cpup(p);
4794dae100c2SFred Isaman 		bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4795dae100c2SFred Isaman 	}
4796dae100c2SFred Isaman 	return 0;
4797dae100c2SFred Isaman }
4798dae100c2SFred Isaman 
47992a92ee92SPeng Tao /*
48002a92ee92SPeng Tao  * The granularity of a CLONE operation.
48012a92ee92SPeng Tao  */
48022a92ee92SPeng Tao static int decode_attr_clone_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
48032a92ee92SPeng Tao 				     uint32_t *res)
48042a92ee92SPeng Tao {
48052a92ee92SPeng Tao 	__be32 *p;
48062a92ee92SPeng Tao 
48072a92ee92SPeng Tao 	dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
48082a92ee92SPeng Tao 	*res = 0;
48092a92ee92SPeng Tao 	if (bitmap[2] & FATTR4_WORD2_CLONE_BLKSIZE) {
48102a92ee92SPeng Tao 		p = xdr_inline_decode(xdr, 4);
48112a92ee92SPeng Tao 		if (unlikely(!p)) {
48122a92ee92SPeng Tao 			print_overflow_msg(__func__, xdr);
48132a92ee92SPeng Tao 			return -EIO;
48142a92ee92SPeng Tao 		}
48152a92ee92SPeng Tao 		*res = be32_to_cpup(p);
48162a92ee92SPeng Tao 		bitmap[2] &= ~FATTR4_WORD2_CLONE_BLKSIZE;
48172a92ee92SPeng Tao 	}
48182a92ee92SPeng Tao 	return 0;
48192a92ee92SPeng Tao }
48202a92ee92SPeng Tao 
48211da177e4SLinus Torvalds static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
48221da177e4SLinus Torvalds {
4823256e48bbSTrond Myklebust 	unsigned int savep;
4824dae100c2SFred Isaman 	uint32_t attrlen, bitmap[3];
48251da177e4SLinus Torvalds 	int status;
48261da177e4SLinus Torvalds 
48271da177e4SLinus Torvalds 	if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
48281da177e4SLinus Torvalds 		goto xdr_error;
48291da177e4SLinus Torvalds 	if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
48301da177e4SLinus Torvalds 		goto xdr_error;
48311da177e4SLinus Torvalds 	if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
48321da177e4SLinus Torvalds 		goto xdr_error;
48331da177e4SLinus Torvalds 
48341da177e4SLinus Torvalds 	fsinfo->rtmult = fsinfo->wtmult = 512;	/* ??? */
48351da177e4SLinus Torvalds 
48361da177e4SLinus Torvalds 	if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
48371da177e4SLinus Torvalds 		goto xdr_error;
48381da177e4SLinus Torvalds 	if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
48391da177e4SLinus Torvalds 		goto xdr_error;
48401da177e4SLinus Torvalds 	if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
48411da177e4SLinus Torvalds 		goto xdr_error;
48421da177e4SLinus Torvalds 	fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
48431da177e4SLinus Torvalds 	if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
48441da177e4SLinus Torvalds 		goto xdr_error;
48451da177e4SLinus Torvalds 	fsinfo->wtpref = fsinfo->wtmax;
48461ca843a2SAndreas Gruenbacher 
48471ca843a2SAndreas Gruenbacher 	status = -EIO;
48481ca843a2SAndreas Gruenbacher 	if (unlikely(bitmap[0]))
48491ca843a2SAndreas Gruenbacher 		goto xdr_error;
48501ca843a2SAndreas Gruenbacher 
485155b6e774SRicardo Labiaga 	status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
485255b6e774SRicardo Labiaga 	if (status != 0)
485355b6e774SRicardo Labiaga 		goto xdr_error;
4854504913fbSAndy Adamson 	status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4855504913fbSAndy Adamson 	if (status != 0)
4856504913fbSAndy Adamson 		goto xdr_error;
48571ca843a2SAndreas Gruenbacher 
48581ca843a2SAndreas Gruenbacher 	status = -EIO;
48591ca843a2SAndreas Gruenbacher 	if (unlikely(bitmap[1]))
48601ca843a2SAndreas Gruenbacher 		goto xdr_error;
48611ca843a2SAndreas Gruenbacher 
4862dae100c2SFred Isaman 	status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4863dae100c2SFred Isaman 	if (status)
4864dae100c2SFred Isaman 		goto xdr_error;
48652a92ee92SPeng Tao 	status = decode_attr_clone_blksize(xdr, bitmap, &fsinfo->clone_blksize);
48662a92ee92SPeng Tao 	if (status)
48672a92ee92SPeng Tao 		goto xdr_error;
48681da177e4SLinus Torvalds 
48691da177e4SLinus Torvalds 	status = verify_attr_len(xdr, savep, attrlen);
48701da177e4SLinus Torvalds xdr_error:
48713110ff80SHarvey Harrison 	dprintk("%s: xdr returned %d!\n", __func__, -status);
48721da177e4SLinus Torvalds 	return status;
48731da177e4SLinus Torvalds }
48741da177e4SLinus Torvalds 
48751da177e4SLinus Torvalds static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
48761da177e4SLinus Torvalds {
48778687b63aSAl Viro 	__be32 *p;
48781da177e4SLinus Torvalds 	uint32_t len;
48791da177e4SLinus Torvalds 	int status;
48801da177e4SLinus Torvalds 
48819936781dSTrond Myklebust 	/* Zero handle first to allow comparisons */
48829936781dSTrond Myklebust 	memset(fh, 0, sizeof(*fh));
48839936781dSTrond Myklebust 
48841da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_GETFH);
48851da177e4SLinus Torvalds 	if (status)
48861da177e4SLinus Torvalds 		return status;
48871da177e4SLinus Torvalds 
4888c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
4889c0eae66eSBenny Halevy 	if (unlikely(!p))
4890c0eae66eSBenny Halevy 		goto out_overflow;
4891cccddf4fSBenny Halevy 	len = be32_to_cpup(p);
48921da177e4SLinus Torvalds 	if (len > NFS4_FHSIZE)
48931da177e4SLinus Torvalds 		return -EIO;
48941da177e4SLinus Torvalds 	fh->size = len;
4895c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, len);
4896c0eae66eSBenny Halevy 	if (unlikely(!p))
4897c0eae66eSBenny Halevy 		goto out_overflow;
489899398d06SBenny Halevy 	memcpy(fh->data, p, len);
48991da177e4SLinus Torvalds 	return 0;
4900c0eae66eSBenny Halevy out_overflow:
4901c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4902c0eae66eSBenny Halevy 	return -EIO;
49031da177e4SLinus Torvalds }
49041da177e4SLinus Torvalds 
49051da177e4SLinus Torvalds static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
49061da177e4SLinus Torvalds {
49071da177e4SLinus Torvalds 	int status;
49081da177e4SLinus Torvalds 
49091da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_LINK);
49101da177e4SLinus Torvalds 	if (status)
49111da177e4SLinus Torvalds 		return status;
49121da177e4SLinus Torvalds 	return decode_change_info(xdr, cinfo);
49131da177e4SLinus Torvalds }
49141da177e4SLinus Torvalds 
49151da177e4SLinus Torvalds /*
49161da177e4SLinus Torvalds  * We create the owner, so we know a proper owner.id length is 4.
49171da177e4SLinus Torvalds  */
4918911d1aafSTrond Myklebust static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
49191da177e4SLinus Torvalds {
4920911d1aafSTrond Myklebust 	uint64_t offset, length, clientid;
49218687b63aSAl Viro 	__be32 *p;
4922911d1aafSTrond Myklebust 	uint32_t namelen, type;
49231da177e4SLinus Torvalds 
4924babddc72SBryan Schumaker 	p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
4925c0eae66eSBenny Halevy 	if (unlikely(!p))
4926c0eae66eSBenny Halevy 		goto out_overflow;
4927babddc72SBryan Schumaker 	p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
49283ceb4dbbSBenny Halevy 	p = xdr_decode_hyper(p, &length);
4929babddc72SBryan Schumaker 	type = be32_to_cpup(p++); /* 4 byte read */
4930babddc72SBryan Schumaker 	if (fl != NULL) { /* manipulate file lock */
4931911d1aafSTrond Myklebust 		fl->fl_start = (loff_t)offset;
4932911d1aafSTrond Myklebust 		fl->fl_end = fl->fl_start + (loff_t)length - 1;
4933911d1aafSTrond Myklebust 		if (length == ~(uint64_t)0)
4934911d1aafSTrond Myklebust 			fl->fl_end = OFFSET_MAX;
4935911d1aafSTrond Myklebust 		fl->fl_type = F_WRLCK;
4936911d1aafSTrond Myklebust 		if (type & 1)
4937911d1aafSTrond Myklebust 			fl->fl_type = F_RDLCK;
4938911d1aafSTrond Myklebust 		fl->fl_pid = 0;
4939911d1aafSTrond Myklebust 	}
4940babddc72SBryan Schumaker 	p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4941babddc72SBryan Schumaker 	namelen = be32_to_cpup(p); /* read 4 bytes */  /* have read all 32 bytes now */
4942babddc72SBryan Schumaker 	p = xdr_inline_decode(xdr, namelen); /* variable size field */
4943c0eae66eSBenny Halevy 	if (likely(p))
49441da177e4SLinus Torvalds 		return -NFS4ERR_DENIED;
4945c0eae66eSBenny Halevy out_overflow:
4946c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
4947c0eae66eSBenny Halevy 	return -EIO;
49481da177e4SLinus Torvalds }
49491da177e4SLinus Torvalds 
4950911d1aafSTrond Myklebust static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
49511da177e4SLinus Torvalds {
49521da177e4SLinus Torvalds 	int status;
49531da177e4SLinus Torvalds 
49541da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_LOCK);
4955c1d51931STrond Myklebust 	if (status == -EIO)
4956c1d51931STrond Myklebust 		goto out;
49571da177e4SLinus Torvalds 	if (status == 0) {
495893b717fdSTrond Myklebust 		status = decode_lock_stateid(xdr, &res->stateid);
495907d30434SBenny Halevy 		if (unlikely(status))
496007d30434SBenny Halevy 			goto out;
49611da177e4SLinus Torvalds 	} else if (status == -NFS4ERR_DENIED)
4962c1d51931STrond Myklebust 		status = decode_lock_denied(xdr, NULL);
4963c1d51931STrond Myklebust 	if (res->open_seqid != NULL)
4964c1d51931STrond Myklebust 		nfs_increment_open_seqid(status, res->open_seqid);
4965c1d51931STrond Myklebust 	nfs_increment_lock_seqid(status, res->lock_seqid);
4966c1d51931STrond Myklebust out:
49671da177e4SLinus Torvalds 	return status;
49681da177e4SLinus Torvalds }
49691da177e4SLinus Torvalds 
4970911d1aafSTrond Myklebust static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
49711da177e4SLinus Torvalds {
49721da177e4SLinus Torvalds 	int status;
49731da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_LOCKT);
49741da177e4SLinus Torvalds 	if (status == -NFS4ERR_DENIED)
4975911d1aafSTrond Myklebust 		return decode_lock_denied(xdr, res->denied);
49761da177e4SLinus Torvalds 	return status;
49771da177e4SLinus Torvalds }
49781da177e4SLinus Torvalds 
4979911d1aafSTrond Myklebust static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
49801da177e4SLinus Torvalds {
49811da177e4SLinus Torvalds 	int status;
49821da177e4SLinus Torvalds 
49831da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_LOCKU);
4984c1d51931STrond Myklebust 	if (status != -EIO)
4985c1d51931STrond Myklebust 		nfs_increment_lock_seqid(status, res->seqid);
498607d30434SBenny Halevy 	if (status == 0)
498793b717fdSTrond Myklebust 		status = decode_lock_stateid(xdr, &res->stateid);
49881da177e4SLinus Torvalds 	return status;
49891da177e4SLinus Torvalds }
49901da177e4SLinus Torvalds 
4991d3c7b7ccSTrond Myklebust static int decode_release_lockowner(struct xdr_stream *xdr)
4992d3c7b7ccSTrond Myklebust {
4993d3c7b7ccSTrond Myklebust 	return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4994d3c7b7ccSTrond Myklebust }
4995d3c7b7ccSTrond Myklebust 
49961da177e4SLinus Torvalds static int decode_lookup(struct xdr_stream *xdr)
49971da177e4SLinus Torvalds {
49981da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_LOOKUP);
49991da177e4SLinus Torvalds }
50001da177e4SLinus Torvalds 
50011da177e4SLinus Torvalds /* This is too sick! */
50027d160a6cSTrond Myklebust static int decode_space_limit(struct xdr_stream *xdr,
50037d160a6cSTrond Myklebust 		unsigned long *pagemod_limit)
50041da177e4SLinus Torvalds {
50058687b63aSAl Viro 	__be32 *p;
50061da177e4SLinus Torvalds 	uint32_t limit_type, nblocks, blocksize;
50077d160a6cSTrond Myklebust 	u64 maxsize = 0;
50081da177e4SLinus Torvalds 
5009c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 12);
5010c0eae66eSBenny Halevy 	if (unlikely(!p))
5011c0eae66eSBenny Halevy 		goto out_overflow;
50126f723f77SBenny Halevy 	limit_type = be32_to_cpup(p++);
50131da177e4SLinus Torvalds 	switch (limit_type) {
50147d160a6cSTrond Myklebust 	case NFS4_LIMIT_SIZE:
50157d160a6cSTrond Myklebust 		xdr_decode_hyper(p, &maxsize);
50161da177e4SLinus Torvalds 		break;
50177d160a6cSTrond Myklebust 	case NFS4_LIMIT_BLOCKS:
50186f723f77SBenny Halevy 		nblocks = be32_to_cpup(p++);
5019cccddf4fSBenny Halevy 		blocksize = be32_to_cpup(p);
50207d160a6cSTrond Myklebust 		maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
50211da177e4SLinus Torvalds 	}
502209cbfeafSKirill A. Shutemov 	maxsize >>= PAGE_SHIFT;
50237d160a6cSTrond Myklebust 	*pagemod_limit = min_t(u64, maxsize, ULONG_MAX);
50241da177e4SLinus Torvalds 	return 0;
5025c0eae66eSBenny Halevy out_overflow:
5026c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5027c0eae66eSBenny Halevy 	return -EIO;
50281da177e4SLinus Torvalds }
50291da177e4SLinus Torvalds 
50306ae37339STrond Myklebust static int decode_rw_delegation(struct xdr_stream *xdr,
50316ae37339STrond Myklebust 		uint32_t delegation_type,
50326ae37339STrond Myklebust 		struct nfs_openres *res)
50331da177e4SLinus Torvalds {
50348687b63aSAl Viro 	__be32 *p;
503507d30434SBenny Halevy 	int status;
50361da177e4SLinus Torvalds 
503793b717fdSTrond Myklebust 	status = decode_delegation_stateid(xdr, &res->delegation);
503807d30434SBenny Halevy 	if (unlikely(status))
503907d30434SBenny Halevy 		return status;
5040c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
5041c0eae66eSBenny Halevy 	if (unlikely(!p))
5042c0eae66eSBenny Halevy 		goto out_overflow;
5043cccddf4fSBenny Halevy 	res->do_recall = be32_to_cpup(p);
504405d564feSAndy Adamson 
50451da177e4SLinus Torvalds 	switch (delegation_type) {
50461da177e4SLinus Torvalds 	case NFS4_OPEN_DELEGATE_READ:
50471da177e4SLinus Torvalds 		res->delegation_type = FMODE_READ;
50481da177e4SLinus Torvalds 		break;
50491da177e4SLinus Torvalds 	case NFS4_OPEN_DELEGATE_WRITE:
50501da177e4SLinus Torvalds 		res->delegation_type = FMODE_WRITE|FMODE_READ;
50517d160a6cSTrond Myklebust 		if (decode_space_limit(xdr, &res->pagemod_limit) < 0)
50521da177e4SLinus Torvalds 				return -EIO;
50531da177e4SLinus Torvalds 	}
50547539bbabSDavid Howells 	return decode_ace(xdr, NULL, res->server->nfs_client);
5055c0eae66eSBenny Halevy out_overflow:
5056c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5057c0eae66eSBenny Halevy 	return -EIO;
50581da177e4SLinus Torvalds }
50591da177e4SLinus Torvalds 
50606ae37339STrond Myklebust static int decode_no_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
50616ae37339STrond Myklebust {
50626ae37339STrond Myklebust 	__be32 *p;
50636ae37339STrond Myklebust 	uint32_t why_no_delegation;
50646ae37339STrond Myklebust 
50656ae37339STrond Myklebust 	p = xdr_inline_decode(xdr, 4);
50666ae37339STrond Myklebust 	if (unlikely(!p))
50676ae37339STrond Myklebust 		goto out_overflow;
50686ae37339STrond Myklebust 	why_no_delegation = be32_to_cpup(p);
50696ae37339STrond Myklebust 	switch (why_no_delegation) {
50706ae37339STrond Myklebust 		case WND4_CONTENTION:
50716ae37339STrond Myklebust 		case WND4_RESOURCE:
50726ae37339STrond Myklebust 			xdr_inline_decode(xdr, 4);
50736ae37339STrond Myklebust 			/* Ignore for now */
50746ae37339STrond Myklebust 	}
50756ae37339STrond Myklebust 	return 0;
50766ae37339STrond Myklebust out_overflow:
50776ae37339STrond Myklebust 	print_overflow_msg(__func__, xdr);
50786ae37339STrond Myklebust 	return -EIO;
50796ae37339STrond Myklebust }
50806ae37339STrond Myklebust 
50816ae37339STrond Myklebust static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
50826ae37339STrond Myklebust {
50836ae37339STrond Myklebust 	__be32 *p;
50846ae37339STrond Myklebust 	uint32_t delegation_type;
50856ae37339STrond Myklebust 
50866ae37339STrond Myklebust 	p = xdr_inline_decode(xdr, 4);
50876ae37339STrond Myklebust 	if (unlikely(!p))
50886ae37339STrond Myklebust 		goto out_overflow;
50896ae37339STrond Myklebust 	delegation_type = be32_to_cpup(p);
50906ae37339STrond Myklebust 	res->delegation_type = 0;
50916ae37339STrond Myklebust 	switch (delegation_type) {
50926ae37339STrond Myklebust 	case NFS4_OPEN_DELEGATE_NONE:
50936ae37339STrond Myklebust 		return 0;
50946ae37339STrond Myklebust 	case NFS4_OPEN_DELEGATE_READ:
50956ae37339STrond Myklebust 	case NFS4_OPEN_DELEGATE_WRITE:
50966ae37339STrond Myklebust 		return decode_rw_delegation(xdr, delegation_type, res);
50976ae37339STrond Myklebust 	case NFS4_OPEN_DELEGATE_NONE_EXT:
50986ae37339STrond Myklebust 		return decode_no_delegation(xdr, res);
50996ae37339STrond Myklebust 	}
51006ae37339STrond Myklebust 	return -EIO;
51016ae37339STrond Myklebust out_overflow:
51026ae37339STrond Myklebust 	print_overflow_msg(__func__, xdr);
51036ae37339STrond Myklebust 	return -EIO;
51046ae37339STrond Myklebust }
51056ae37339STrond Myklebust 
51061da177e4SLinus Torvalds static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
51071da177e4SLinus Torvalds {
51088687b63aSAl Viro 	__be32 *p;
5109aa53ed54SJeff Layton 	uint32_t savewords, bmlen, i;
51101da177e4SLinus Torvalds 	int status;
51111da177e4SLinus Torvalds 
5112c7848f69STrond Myklebust 	if (!__decode_op_hdr(xdr, OP_OPEN, &status))
5113c7848f69STrond Myklebust 		return status;
5114c1d51931STrond Myklebust 	nfs_increment_open_seqid(status, res->seqid);
5115c7848f69STrond Myklebust 	if (status)
5116c7848f69STrond Myklebust 		return status;
511793b717fdSTrond Myklebust 	status = decode_open_stateid(xdr, &res->stateid);
511807d30434SBenny Halevy 	if (unlikely(status))
51191da177e4SLinus Torvalds 		return status;
51201da177e4SLinus Torvalds 
51211da177e4SLinus Torvalds 	decode_change_info(xdr, &res->cinfo);
51221da177e4SLinus Torvalds 
5123c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5124c0eae66eSBenny Halevy 	if (unlikely(!p))
5125c0eae66eSBenny Halevy 		goto out_overflow;
51266f723f77SBenny Halevy 	res->rflags = be32_to_cpup(p++);
5127cccddf4fSBenny Halevy 	bmlen = be32_to_cpup(p);
51281da177e4SLinus Torvalds 	if (bmlen > 10)
51291da177e4SLinus Torvalds 		goto xdr_error;
51301da177e4SLinus Torvalds 
5131c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, bmlen << 2);
5132c0eae66eSBenny Halevy 	if (unlikely(!p))
5133c0eae66eSBenny Halevy 		goto out_overflow;
5134aa53ed54SJeff Layton 	savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
5135aa53ed54SJeff Layton 	for (i = 0; i < savewords; ++i)
51366f723f77SBenny Halevy 		res->attrset[i] = be32_to_cpup(p++);
5137aa53ed54SJeff Layton 	for (; i < NFS4_BITMAP_SIZE; i++)
5138aa53ed54SJeff Layton 		res->attrset[i] = 0;
5139aa53ed54SJeff Layton 
51401da177e4SLinus Torvalds 	return decode_delegation(xdr, res);
51411da177e4SLinus Torvalds xdr_error:
51423110ff80SHarvey Harrison 	dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
51431da177e4SLinus Torvalds 	return -EIO;
5144c0eae66eSBenny Halevy out_overflow:
5145c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5146c0eae66eSBenny Halevy 	return -EIO;
51471da177e4SLinus Torvalds }
51481da177e4SLinus Torvalds 
51491da177e4SLinus Torvalds static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
51501da177e4SLinus Torvalds {
51511da177e4SLinus Torvalds 	int status;
51521da177e4SLinus Torvalds 
51531da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
5154c1d51931STrond Myklebust 	if (status != -EIO)
5155c1d51931STrond Myklebust 		nfs_increment_open_seqid(status, res->seqid);
515607d30434SBenny Halevy 	if (!status)
515793b717fdSTrond Myklebust 		status = decode_open_stateid(xdr, &res->stateid);
51581da177e4SLinus Torvalds 	return status;
51591da177e4SLinus Torvalds }
51601da177e4SLinus Torvalds 
51611da177e4SLinus Torvalds static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
51621da177e4SLinus Torvalds {
51631da177e4SLinus Torvalds 	int status;
51641da177e4SLinus Torvalds 
51651da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
5166c1d51931STrond Myklebust 	if (status != -EIO)
5167c1d51931STrond Myklebust 		nfs_increment_open_seqid(status, res->seqid);
516807d30434SBenny Halevy 	if (!status)
516993b717fdSTrond Myklebust 		status = decode_open_stateid(xdr, &res->stateid);
51701da177e4SLinus Torvalds 	return status;
51711da177e4SLinus Torvalds }
51721da177e4SLinus Torvalds 
51731da177e4SLinus Torvalds static int decode_putfh(struct xdr_stream *xdr)
51741da177e4SLinus Torvalds {
51751da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_PUTFH);
51761da177e4SLinus Torvalds }
51771da177e4SLinus Torvalds 
51781da177e4SLinus Torvalds static int decode_putrootfh(struct xdr_stream *xdr)
51791da177e4SLinus Torvalds {
51801da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_PUTROOTFH);
51811da177e4SLinus Torvalds }
51821da177e4SLinus Torvalds 
51839137bdf3SAnna Schumaker static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req,
51849137bdf3SAnna Schumaker 		       struct nfs_pgio_res *res)
51851da177e4SLinus Torvalds {
51868687b63aSAl Viro 	__be32 *p;
518764bd577eSTrond Myklebust 	uint32_t count, eof, recvd;
51881da177e4SLinus Torvalds 	int status;
51891da177e4SLinus Torvalds 
51901da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_READ);
51911da177e4SLinus Torvalds 	if (status)
51921da177e4SLinus Torvalds 		return status;
5193c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5194c0eae66eSBenny Halevy 	if (unlikely(!p))
5195c0eae66eSBenny Halevy 		goto out_overflow;
51966f723f77SBenny Halevy 	eof = be32_to_cpup(p++);
5197cccddf4fSBenny Halevy 	count = be32_to_cpup(p);
519864bd577eSTrond Myklebust 	recvd = xdr_read_pages(xdr, count);
51991da177e4SLinus Torvalds 	if (count > recvd) {
5200fe82a183SChuck Lever 		dprintk("NFS: server cheating in read reply: "
52011da177e4SLinus Torvalds 				"count %u > recvd %u\n", count, recvd);
52021da177e4SLinus Torvalds 		count = recvd;
52031da177e4SLinus Torvalds 		eof = 0;
52041da177e4SLinus Torvalds 	}
52051da177e4SLinus Torvalds 	res->eof = eof;
52061da177e4SLinus Torvalds 	res->count = count;
52071da177e4SLinus Torvalds 	return 0;
5208c0eae66eSBenny Halevy out_overflow:
5209c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5210c0eae66eSBenny Halevy 	return -EIO;
52111da177e4SLinus Torvalds }
52121da177e4SLinus Torvalds 
52131da177e4SLinus Torvalds static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
52141da177e4SLinus Torvalds {
5215bcecff77SChuck Lever 	int		status;
5216cd93710eSChuck Lever 	__be32		verf[2];
52171da177e4SLinus Torvalds 
52181da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_READDIR);
5219db942bbdSBenny Halevy 	if (!status)
5220db942bbdSBenny Halevy 		status = decode_verifier(xdr, readdir->verifier.data);
5221db942bbdSBenny Halevy 	if (unlikely(status))
52221da177e4SLinus Torvalds 		return status;
5223cd93710eSChuck Lever 	memcpy(verf, readdir->verifier.data, sizeof(verf));
522444109241SFred Isaman 	dprintk("%s: verifier = %08x:%08x\n",
5225cd93710eSChuck Lever 			__func__, verf[0], verf[1]);
522664bd577eSTrond Myklebust 	return xdr_read_pages(xdr, xdr->buf->page_len);
52271da177e4SLinus Torvalds }
52281da177e4SLinus Torvalds 
52291da177e4SLinus Torvalds static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
52301da177e4SLinus Torvalds {
52311da177e4SLinus Torvalds 	struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
5232bcecff77SChuck Lever 	u32 len, recvd;
52338687b63aSAl Viro 	__be32 *p;
52341da177e4SLinus Torvalds 	int status;
52351da177e4SLinus Torvalds 
52361da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_READLINK);
52371da177e4SLinus Torvalds 	if (status)
52381da177e4SLinus Torvalds 		return status;
52391da177e4SLinus Torvalds 
52401da177e4SLinus Torvalds 	/* Convert length of symlink */
5241c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
5242c0eae66eSBenny Halevy 	if (unlikely(!p))
5243c0eae66eSBenny Halevy 		goto out_overflow;
5244cccddf4fSBenny Halevy 	len = be32_to_cpup(p);
52451da177e4SLinus Torvalds 	if (len >= rcvbuf->page_len || len <= 0) {
5246fe82a183SChuck Lever 		dprintk("nfs: server returned giant symlink!\n");
52471da177e4SLinus Torvalds 		return -ENAMETOOLONG;
52481da177e4SLinus Torvalds 	}
524964bd577eSTrond Myklebust 	recvd = xdr_read_pages(xdr, len);
52501da177e4SLinus Torvalds 	if (recvd < len) {
5251fe82a183SChuck Lever 		dprintk("NFS: server cheating in readlink reply: "
52521da177e4SLinus Torvalds 				"count %u > recvd %u\n", len, recvd);
52531da177e4SLinus Torvalds 		return -EIO;
52541da177e4SLinus Torvalds 	}
52551da177e4SLinus Torvalds 	/*
52561da177e4SLinus Torvalds 	 * The XDR encode routine has set things up so that
52571da177e4SLinus Torvalds 	 * the link text will be copied directly into the
52581da177e4SLinus Torvalds 	 * buffer.  We just have to do overflow-checking,
52591da177e4SLinus Torvalds 	 * and and null-terminate the text (the VFS expects
52601da177e4SLinus Torvalds 	 * null-termination).
52611da177e4SLinus Torvalds 	 */
5262b4687da7SChuck Lever 	xdr_terminate_string(rcvbuf, len);
52631da177e4SLinus Torvalds 	return 0;
5264c0eae66eSBenny Halevy out_overflow:
5265c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5266c0eae66eSBenny Halevy 	return -EIO;
52671da177e4SLinus Torvalds }
52681da177e4SLinus Torvalds 
52691da177e4SLinus Torvalds static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
52701da177e4SLinus Torvalds {
52711da177e4SLinus Torvalds 	int status;
52721da177e4SLinus Torvalds 
52731da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_REMOVE);
52741da177e4SLinus Torvalds 	if (status)
52751da177e4SLinus Torvalds 		goto out;
52761da177e4SLinus Torvalds 	status = decode_change_info(xdr, cinfo);
52771da177e4SLinus Torvalds out:
52781da177e4SLinus Torvalds 	return status;
52791da177e4SLinus Torvalds }
52801da177e4SLinus Torvalds 
52811da177e4SLinus Torvalds static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
52821da177e4SLinus Torvalds 	      struct nfs4_change_info *new_cinfo)
52831da177e4SLinus Torvalds {
52841da177e4SLinus Torvalds 	int status;
52851da177e4SLinus Torvalds 
52861da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_RENAME);
52871da177e4SLinus Torvalds 	if (status)
52881da177e4SLinus Torvalds 		goto out;
52891da177e4SLinus Torvalds 	if ((status = decode_change_info(xdr, old_cinfo)))
52901da177e4SLinus Torvalds 		goto out;
52911da177e4SLinus Torvalds 	status = decode_change_info(xdr, new_cinfo);
52921da177e4SLinus Torvalds out:
52931da177e4SLinus Torvalds 	return status;
52941da177e4SLinus Torvalds }
52951da177e4SLinus Torvalds 
52961da177e4SLinus Torvalds static int decode_renew(struct xdr_stream *xdr)
52971da177e4SLinus Torvalds {
52981da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_RENEW);
52991da177e4SLinus Torvalds }
53001da177e4SLinus Torvalds 
530156ae19f3STrond Myklebust static int
530256ae19f3STrond Myklebust decode_restorefh(struct xdr_stream *xdr)
530356ae19f3STrond Myklebust {
530456ae19f3STrond Myklebust 	return decode_op_hdr(xdr, OP_RESTOREFH);
530556ae19f3STrond Myklebust }
530656ae19f3STrond Myklebust 
5307029d105eSJ. Bruce Fields static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
5308bf118a34SAndy Adamson 			 struct nfs_getaclres *res)
5309029d105eSJ. Bruce Fields {
5310256e48bbSTrond Myklebust 	unsigned int savep;
5311029d105eSJ. Bruce Fields 	uint32_t attrlen,
5312dae100c2SFred Isaman 		 bitmap[3] = {0};
5313029d105eSJ. Bruce Fields 	int status;
5314cff298c7STrond Myklebust 	unsigned int pg_offset;
5315029d105eSJ. Bruce Fields 
5316bf118a34SAndy Adamson 	res->acl_len = 0;
5317029d105eSJ. Bruce Fields 	if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5318029d105eSJ. Bruce Fields 		goto out;
53195a006899SSachin Prabhu 
5320519d3959STrond Myklebust 	xdr_enter_page(xdr, xdr->buf->page_len);
5321519d3959STrond Myklebust 
5322cff298c7STrond Myklebust 	/* Calculate the offset of the page data */
5323cff298c7STrond Myklebust 	pg_offset = xdr->buf->head[0].iov_len;
53245a006899SSachin Prabhu 
5325029d105eSJ. Bruce Fields 	if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5326029d105eSJ. Bruce Fields 		goto out;
5327029d105eSJ. Bruce Fields 	if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5328029d105eSJ. Bruce Fields 		goto out;
5329029d105eSJ. Bruce Fields 
5330029d105eSJ. Bruce Fields 	if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5331029d105eSJ. Bruce Fields 		return -EIO;
5332029d105eSJ. Bruce Fields 	if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
5333029d105eSJ. Bruce Fields 
5334bf118a34SAndy Adamson 		/* The bitmap (xdr len + bitmaps) and the attr xdr len words
5335bf118a34SAndy Adamson 		 * are stored with the acl data to handle the problem of
5336bf118a34SAndy Adamson 		 * variable length bitmaps.*/
5337cff298c7STrond Myklebust 		res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
5338519d3959STrond Myklebust 		res->acl_len = attrlen;
53391f1ea6c2STrond Myklebust 
53401f1ea6c2STrond Myklebust 		/* Check for receive buffer overflow */
53411f1ea6c2STrond Myklebust 		if (res->acl_len > (xdr->nwords << 2) ||
53421f1ea6c2STrond Myklebust 		    res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
53431f1ea6c2STrond Myklebust 			res->acl_flags |= NFS4_ACL_TRUNC;
5344519d3959STrond Myklebust 			dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
5345cff298c7STrond Myklebust 					attrlen, xdr->nwords << 2);
5346029d105eSJ. Bruce Fields 		}
53478c233cf9SJ. Bruce Fields 	} else
53488c233cf9SJ. Bruce Fields 		status = -EOPNOTSUPP;
5349029d105eSJ. Bruce Fields 
5350029d105eSJ. Bruce Fields out:
5351029d105eSJ. Bruce Fields 	return status;
5352029d105eSJ. Bruce Fields }
5353029d105eSJ. Bruce Fields 
53541da177e4SLinus Torvalds static int
53551da177e4SLinus Torvalds decode_savefh(struct xdr_stream *xdr)
53561da177e4SLinus Torvalds {
53571da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_SAVEFH);
53581da177e4SLinus Torvalds }
53591da177e4SLinus Torvalds 
53609e9ecc03SBenny Halevy static int decode_setattr(struct xdr_stream *xdr)
53611da177e4SLinus Torvalds {
53628687b63aSAl Viro 	__be32 *p;
53631da177e4SLinus Torvalds 	uint32_t bmlen;
53641da177e4SLinus Torvalds 	int status;
53651da177e4SLinus Torvalds 
53661da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_SETATTR);
53671da177e4SLinus Torvalds 	if (status)
53681da177e4SLinus Torvalds 		return status;
5369c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 4);
5370c0eae66eSBenny Halevy 	if (unlikely(!p))
5371c0eae66eSBenny Halevy 		goto out_overflow;
5372cccddf4fSBenny Halevy 	bmlen = be32_to_cpup(p);
5373c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, bmlen << 2);
5374c0eae66eSBenny Halevy 	if (likely(p))
53751da177e4SLinus Torvalds 		return 0;
5376c0eae66eSBenny Halevy out_overflow:
5377c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5378c0eae66eSBenny Halevy 	return -EIO;
53791da177e4SLinus Torvalds }
53801da177e4SLinus Torvalds 
5381bb8b27e5STrond Myklebust static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
53821da177e4SLinus Torvalds {
53838687b63aSAl Viro 	__be32 *p;
53841da177e4SLinus Torvalds 	uint32_t opnum;
53851da177e4SLinus Torvalds 	int32_t nfserr;
53861da177e4SLinus Torvalds 
5387c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5388c0eae66eSBenny Halevy 	if (unlikely(!p))
5389c0eae66eSBenny Halevy 		goto out_overflow;
53906f723f77SBenny Halevy 	opnum = be32_to_cpup(p++);
53911da177e4SLinus Torvalds 	if (opnum != OP_SETCLIENTID) {
5392fe82a183SChuck Lever 		dprintk("nfs: decode_setclientid: Server returned operation"
53931da177e4SLinus Torvalds 			" %d\n", opnum);
53941da177e4SLinus Torvalds 		return -EIO;
53951da177e4SLinus Torvalds 	}
5396cccddf4fSBenny Halevy 	nfserr = be32_to_cpup(p);
53971da177e4SLinus Torvalds 	if (nfserr == NFS_OK) {
5398c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5399c0eae66eSBenny Halevy 		if (unlikely(!p))
5400c0eae66eSBenny Halevy 			goto out_overflow;
5401bb8b27e5STrond Myklebust 		p = xdr_decode_hyper(p, &res->clientid);
5402bb8b27e5STrond Myklebust 		memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
54031da177e4SLinus Torvalds 	} else if (nfserr == NFSERR_CLID_INUSE) {
54041da177e4SLinus Torvalds 		uint32_t len;
54051da177e4SLinus Torvalds 
54061da177e4SLinus Torvalds 		/* skip netid string */
5407c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
5408c0eae66eSBenny Halevy 		if (unlikely(!p))
5409c0eae66eSBenny Halevy 			goto out_overflow;
5410cccddf4fSBenny Halevy 		len = be32_to_cpup(p);
5411c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, len);
5412c0eae66eSBenny Halevy 		if (unlikely(!p))
5413c0eae66eSBenny Halevy 			goto out_overflow;
54141da177e4SLinus Torvalds 
54151da177e4SLinus Torvalds 		/* skip uaddr string */
5416c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4);
5417c0eae66eSBenny Halevy 		if (unlikely(!p))
5418c0eae66eSBenny Halevy 			goto out_overflow;
5419cccddf4fSBenny Halevy 		len = be32_to_cpup(p);
5420c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, len);
5421c0eae66eSBenny Halevy 		if (unlikely(!p))
5422c0eae66eSBenny Halevy 			goto out_overflow;
54231da177e4SLinus Torvalds 		return -NFSERR_CLID_INUSE;
54241da177e4SLinus Torvalds 	} else
5425856dff3dSBenny Halevy 		return nfs4_stat_to_errno(nfserr);
54261da177e4SLinus Torvalds 
54271da177e4SLinus Torvalds 	return 0;
5428c0eae66eSBenny Halevy out_overflow:
5429c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5430c0eae66eSBenny Halevy 	return -EIO;
54311da177e4SLinus Torvalds }
54321da177e4SLinus Torvalds 
54331da177e4SLinus Torvalds static int decode_setclientid_confirm(struct xdr_stream *xdr)
54341da177e4SLinus Torvalds {
54351da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
54361da177e4SLinus Torvalds }
54371da177e4SLinus Torvalds 
54389137bdf3SAnna Schumaker static int decode_write(struct xdr_stream *xdr, struct nfs_pgio_res *res)
54391da177e4SLinus Torvalds {
54408687b63aSAl Viro 	__be32 *p;
54411da177e4SLinus Torvalds 	int status;
54421da177e4SLinus Torvalds 
54431da177e4SLinus Torvalds 	status = decode_op_hdr(xdr, OP_WRITE);
54441da177e4SLinus Torvalds 	if (status)
54451da177e4SLinus Torvalds 		return status;
54461da177e4SLinus Torvalds 
54472f2c63bcSTrond Myklebust 	p = xdr_inline_decode(xdr, 8);
5448c0eae66eSBenny Halevy 	if (unlikely(!p))
5449c0eae66eSBenny Halevy 		goto out_overflow;
54506f723f77SBenny Halevy 	res->count = be32_to_cpup(p++);
54516f723f77SBenny Halevy 	res->verf->committed = be32_to_cpup(p++);
54522f2c63bcSTrond Myklebust 	return decode_write_verifier(xdr, &res->verf->verifier);
5453c0eae66eSBenny Halevy out_overflow:
5454c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5455c0eae66eSBenny Halevy 	return -EIO;
54561da177e4SLinus Torvalds }
54571da177e4SLinus Torvalds 
54581da177e4SLinus Torvalds static int decode_delegreturn(struct xdr_stream *xdr)
54591da177e4SLinus Torvalds {
54601da177e4SLinus Torvalds 	return decode_op_hdr(xdr, OP_DELEGRETURN);
54611da177e4SLinus Torvalds }
54621da177e4SLinus Torvalds 
5463fb15b26fSChuck Lever static int decode_secinfo_gss(struct xdr_stream *xdr,
5464fb15b26fSChuck Lever 			      struct nfs4_secinfo4 *flavor)
54655a5ea0d4SBryan Schumaker {
5466fb15b26fSChuck Lever 	u32 oid_len;
54675a5ea0d4SBryan Schumaker 	__be32 *p;
54685a5ea0d4SBryan Schumaker 
54695a5ea0d4SBryan Schumaker 	p = xdr_inline_decode(xdr, 4);
54705a5ea0d4SBryan Schumaker 	if (unlikely(!p))
54715a5ea0d4SBryan Schumaker 		goto out_overflow;
5472fb15b26fSChuck Lever 	oid_len = be32_to_cpup(p);
5473fb15b26fSChuck Lever 	if (oid_len > GSS_OID_MAX_LEN)
54745a5ea0d4SBryan Schumaker 		goto out_err;
54755a5ea0d4SBryan Schumaker 
5476fb15b26fSChuck Lever 	p = xdr_inline_decode(xdr, oid_len);
54775a5ea0d4SBryan Schumaker 	if (unlikely(!p))
54785a5ea0d4SBryan Schumaker 		goto out_overflow;
5479fb15b26fSChuck Lever 	memcpy(flavor->flavor_info.oid.data, p, oid_len);
5480fb15b26fSChuck Lever 	flavor->flavor_info.oid.len = oid_len;
54815a5ea0d4SBryan Schumaker 
54825a5ea0d4SBryan Schumaker 	p = xdr_inline_decode(xdr, 8);
54835a5ea0d4SBryan Schumaker 	if (unlikely(!p))
54845a5ea0d4SBryan Schumaker 		goto out_overflow;
5485fb15b26fSChuck Lever 	flavor->flavor_info.qop = be32_to_cpup(p++);
5486fb15b26fSChuck Lever 	flavor->flavor_info.service = be32_to_cpup(p);
54875a5ea0d4SBryan Schumaker 
54885a5ea0d4SBryan Schumaker 	return 0;
54895a5ea0d4SBryan Schumaker 
54905a5ea0d4SBryan Schumaker out_overflow:
54915a5ea0d4SBryan Schumaker 	print_overflow_msg(__func__, xdr);
54925a5ea0d4SBryan Schumaker 	return -EIO;
54935a5ea0d4SBryan Schumaker out_err:
54945a5ea0d4SBryan Schumaker 	return -EINVAL;
54955a5ea0d4SBryan Schumaker }
54965a5ea0d4SBryan Schumaker 
549731e4dda4SBryan Schumaker static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
54985a5ea0d4SBryan Schumaker {
5499fb15b26fSChuck Lever 	struct nfs4_secinfo4 *sec_flavor;
5500fb15b26fSChuck Lever 	unsigned int i, num_flavors;
55015a5ea0d4SBryan Schumaker 	int status;
55025a5ea0d4SBryan Schumaker 	__be32 *p;
55035a5ea0d4SBryan Schumaker 
55045a5ea0d4SBryan Schumaker 	p = xdr_inline_decode(xdr, 4);
55055a5ea0d4SBryan Schumaker 	if (unlikely(!p))
55065a5ea0d4SBryan Schumaker 		goto out_overflow;
55075a5ea0d4SBryan Schumaker 
5508c3dfc280SBryan Schumaker 	res->flavors->num_flavors = 0;
5509c3dfc280SBryan Schumaker 	num_flavors = be32_to_cpup(p);
5510c3dfc280SBryan Schumaker 
5511c3dfc280SBryan Schumaker 	for (i = 0; i < num_flavors; i++) {
55125a5ea0d4SBryan Schumaker 		sec_flavor = &res->flavors->flavors[i];
5513c3dfc280SBryan Schumaker 		if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
55145a5ea0d4SBryan Schumaker 			break;
55155a5ea0d4SBryan Schumaker 
55165a5ea0d4SBryan Schumaker 		p = xdr_inline_decode(xdr, 4);
55175a5ea0d4SBryan Schumaker 		if (unlikely(!p))
55185a5ea0d4SBryan Schumaker 			goto out_overflow;
55195a5ea0d4SBryan Schumaker 		sec_flavor->flavor = be32_to_cpup(p);
55205a5ea0d4SBryan Schumaker 
55215a5ea0d4SBryan Schumaker 		if (sec_flavor->flavor == RPC_AUTH_GSS) {
5522613e901eSBryan Schumaker 			status = decode_secinfo_gss(xdr, sec_flavor);
5523613e901eSBryan Schumaker 			if (status)
5524613e901eSBryan Schumaker 				goto out;
55255a5ea0d4SBryan Schumaker 		}
5526c3dfc280SBryan Schumaker 		res->flavors->num_flavors++;
55275a5ea0d4SBryan Schumaker 	}
55285a5ea0d4SBryan Schumaker 
552931e4dda4SBryan Schumaker 	status = 0;
5530613e901eSBryan Schumaker out:
5531613e901eSBryan Schumaker 	return status;
55325a5ea0d4SBryan Schumaker out_overflow:
55335a5ea0d4SBryan Schumaker 	print_overflow_msg(__func__, xdr);
55345a5ea0d4SBryan Schumaker 	return -EIO;
55355a5ea0d4SBryan Schumaker }
55365a5ea0d4SBryan Schumaker 
553731e4dda4SBryan Schumaker static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
553831e4dda4SBryan Schumaker {
553931e4dda4SBryan Schumaker 	int status = decode_op_hdr(xdr, OP_SECINFO);
554031e4dda4SBryan Schumaker 	if (status)
554131e4dda4SBryan Schumaker 		return status;
554231e4dda4SBryan Schumaker 	return decode_secinfo_common(xdr, res);
554331e4dda4SBryan Schumaker }
554431e4dda4SBryan Schumaker 
554599fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
554631e4dda4SBryan Schumaker static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
554731e4dda4SBryan Schumaker {
554831e4dda4SBryan Schumaker 	int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
554931e4dda4SBryan Schumaker 	if (status)
555031e4dda4SBryan Schumaker 		return status;
555131e4dda4SBryan Schumaker 	return decode_secinfo_common(xdr, res);
555231e4dda4SBryan Schumaker }
555331e4dda4SBryan Schumaker 
55542031cd1aSWeston Andros Adamson static int decode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
55552031cd1aSWeston Andros Adamson {
55562031cd1aSWeston Andros Adamson 	__be32 *p;
55572031cd1aSWeston Andros Adamson 	uint32_t bitmap_words;
55582031cd1aSWeston Andros Adamson 	unsigned int i;
55592031cd1aSWeston Andros Adamson 
55602031cd1aSWeston Andros Adamson 	p = xdr_inline_decode(xdr, 4);
55612031cd1aSWeston Andros Adamson 	bitmap_words = be32_to_cpup(p++);
55622031cd1aSWeston Andros Adamson 	if (bitmap_words > NFS4_OP_MAP_NUM_WORDS)
55632031cd1aSWeston Andros Adamson 		return -EIO;
55642031cd1aSWeston Andros Adamson 	p = xdr_inline_decode(xdr, 4 * bitmap_words);
55652031cd1aSWeston Andros Adamson 	for (i = 0; i < bitmap_words; i++)
55662031cd1aSWeston Andros Adamson 		op_map->u.words[i] = be32_to_cpup(p++);
55672031cd1aSWeston Andros Adamson 
55682031cd1aSWeston Andros Adamson 	return 0;
55692031cd1aSWeston Andros Adamson }
55702031cd1aSWeston Andros Adamson 
557199fe60d0SBenny Halevy static int decode_exchange_id(struct xdr_stream *xdr,
557299fe60d0SBenny Halevy 			      struct nfs41_exchange_id_res *res)
557399fe60d0SBenny Halevy {
557499fe60d0SBenny Halevy 	__be32 *p;
557599fe60d0SBenny Halevy 	uint32_t dummy;
55762460ba57SBenny Halevy 	char *dummy_str;
557799fe60d0SBenny Halevy 	int status;
55787d2ed9acSWeston Andros Adamson 	uint32_t impl_id_count;
557999fe60d0SBenny Halevy 
558099fe60d0SBenny Halevy 	status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
558199fe60d0SBenny Halevy 	if (status)
558299fe60d0SBenny Halevy 		return status;
558399fe60d0SBenny Halevy 
5584c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5585c0eae66eSBenny Halevy 	if (unlikely(!p))
5586c0eae66eSBenny Halevy 		goto out_overflow;
558732b01310STrond Myklebust 	xdr_decode_hyper(p, &res->clientid);
5588c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 12);
5589c0eae66eSBenny Halevy 	if (unlikely(!p))
5590c0eae66eSBenny Halevy 		goto out_overflow;
559132b01310STrond Myklebust 	res->seqid = be32_to_cpup(p++);
559232b01310STrond Myklebust 	res->flags = be32_to_cpup(p++);
559399fe60d0SBenny Halevy 
55942031cd1aSWeston Andros Adamson 	res->state_protect.how = be32_to_cpup(p);
55952031cd1aSWeston Andros Adamson 	switch (res->state_protect.how) {
55962031cd1aSWeston Andros Adamson 	case SP4_NONE:
55972031cd1aSWeston Andros Adamson 		break;
55982031cd1aSWeston Andros Adamson 	case SP4_MACH_CRED:
55992031cd1aSWeston Andros Adamson 		status = decode_op_map(xdr, &res->state_protect.enforce);
56002031cd1aSWeston Andros Adamson 		if (status)
56012031cd1aSWeston Andros Adamson 			return status;
56022031cd1aSWeston Andros Adamson 		status = decode_op_map(xdr, &res->state_protect.allow);
56032031cd1aSWeston Andros Adamson 		if (status)
56042031cd1aSWeston Andros Adamson 			return status;
56052031cd1aSWeston Andros Adamson 		break;
56062031cd1aSWeston Andros Adamson 	default:
56072031cd1aSWeston Andros Adamson 		WARN_ON_ONCE(1);
560899fe60d0SBenny Halevy 		return -EIO;
56092031cd1aSWeston Andros Adamson 	}
561099fe60d0SBenny Halevy 
5611acdeb69dSChuck Lever 	/* server_owner4.so_minor_id */
5612c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5613c0eae66eSBenny Halevy 	if (unlikely(!p))
5614c0eae66eSBenny Halevy 		goto out_overflow;
5615acdeb69dSChuck Lever 	p = xdr_decode_hyper(p, &res->server_owner->minor_id);
561699fe60d0SBenny Halevy 
5617acdeb69dSChuck Lever 	/* server_owner4.so_major_id */
56182460ba57SBenny Halevy 	status = decode_opaque_inline(xdr, &dummy, &dummy_str);
56192460ba57SBenny Halevy 	if (unlikely(status))
56202460ba57SBenny Halevy 		return status;
562178fe0f41SWeston Andros Adamson 	if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
562278fe0f41SWeston Andros Adamson 		return -EIO;
5623acdeb69dSChuck Lever 	memcpy(res->server_owner->major_id, dummy_str, dummy);
5624acdeb69dSChuck Lever 	res->server_owner->major_id_sz = dummy;
562578fe0f41SWeston Andros Adamson 
5626acdeb69dSChuck Lever 	/* server_scope4 */
5627acdeb69dSChuck Lever 	status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5628acdeb69dSChuck Lever 	if (unlikely(status))
5629acdeb69dSChuck Lever 		return status;
5630acdeb69dSChuck Lever 	if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5631acdeb69dSChuck Lever 		return -EIO;
563278fe0f41SWeston Andros Adamson 	memcpy(res->server_scope->server_scope, dummy_str, dummy);
563378fe0f41SWeston Andros Adamson 	res->server_scope->server_scope_sz = dummy;
563478fe0f41SWeston Andros Adamson 
56357d2ed9acSWeston Andros Adamson 	/* Implementation Id */
56367d2ed9acSWeston Andros Adamson 	p = xdr_inline_decode(xdr, 4);
56377d2ed9acSWeston Andros Adamson 	if (unlikely(!p))
56387d2ed9acSWeston Andros Adamson 		goto out_overflow;
56397d2ed9acSWeston Andros Adamson 	impl_id_count = be32_to_cpup(p++);
56407d2ed9acSWeston Andros Adamson 
56417d2ed9acSWeston Andros Adamson 	if (impl_id_count) {
56427d2ed9acSWeston Andros Adamson 		/* nii_domain */
56432460ba57SBenny Halevy 		status = decode_opaque_inline(xdr, &dummy, &dummy_str);
56442460ba57SBenny Halevy 		if (unlikely(status))
56452460ba57SBenny Halevy 			return status;
56467d2ed9acSWeston Andros Adamson 		if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
56477d2ed9acSWeston Andros Adamson 			return -EIO;
56487d2ed9acSWeston Andros Adamson 		memcpy(res->impl_id->domain, dummy_str, dummy);
564999fe60d0SBenny Halevy 
56507d2ed9acSWeston Andros Adamson 		/* nii_name */
56517d2ed9acSWeston Andros Adamson 		status = decode_opaque_inline(xdr, &dummy, &dummy_str);
56527d2ed9acSWeston Andros Adamson 		if (unlikely(status))
56537d2ed9acSWeston Andros Adamson 			return status;
56547d2ed9acSWeston Andros Adamson 		if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
56557d2ed9acSWeston Andros Adamson 			return -EIO;
56567d2ed9acSWeston Andros Adamson 		memcpy(res->impl_id->name, dummy_str, dummy);
56577d2ed9acSWeston Andros Adamson 
56587d2ed9acSWeston Andros Adamson 		/* nii_date */
56597d2ed9acSWeston Andros Adamson 		p = xdr_inline_decode(xdr, 12);
56607d2ed9acSWeston Andros Adamson 		if (unlikely(!p))
56617d2ed9acSWeston Andros Adamson 			goto out_overflow;
56627d2ed9acSWeston Andros Adamson 		p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
56637d2ed9acSWeston Andros Adamson 		res->impl_id->date.nseconds = be32_to_cpup(p);
56647d2ed9acSWeston Andros Adamson 
56657d2ed9acSWeston Andros Adamson 		/* if there's more than one entry, ignore the rest */
56667d2ed9acSWeston Andros Adamson 	}
566799fe60d0SBenny Halevy 	return 0;
5668c0eae66eSBenny Halevy out_overflow:
5669c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5670c0eae66eSBenny Halevy 	return -EIO;
567199fe60d0SBenny Halevy }
5672fc931582SAndy Adamson 
5673fc931582SAndy Adamson static int decode_chan_attrs(struct xdr_stream *xdr,
5674fc931582SAndy Adamson 			     struct nfs4_channel_attrs *attrs)
5675fc931582SAndy Adamson {
5676fc931582SAndy Adamson 	__be32 *p;
5677c9c30dd5SBenny Halevy 	u32 nr_attrs, val;
5678fc931582SAndy Adamson 
5679c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 28);
5680c0eae66eSBenny Halevy 	if (unlikely(!p))
5681c0eae66eSBenny Halevy 		goto out_overflow;
5682c9c30dd5SBenny Halevy 	val = be32_to_cpup(p++);	/* headerpadsz */
5683c9c30dd5SBenny Halevy 	if (val)
5684c9c30dd5SBenny Halevy 		return -EINVAL;		/* no support for header padding yet */
56856f723f77SBenny Halevy 	attrs->max_rqst_sz = be32_to_cpup(p++);
56866f723f77SBenny Halevy 	attrs->max_resp_sz = be32_to_cpup(p++);
56876f723f77SBenny Halevy 	attrs->max_resp_sz_cached = be32_to_cpup(p++);
56886f723f77SBenny Halevy 	attrs->max_ops = be32_to_cpup(p++);
56896f723f77SBenny Halevy 	attrs->max_reqs = be32_to_cpup(p++);
5690cccddf4fSBenny Halevy 	nr_attrs = be32_to_cpup(p);
5691fc931582SAndy Adamson 	if (unlikely(nr_attrs > 1)) {
5692a030889aSWeston Andros Adamson 		printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5693a030889aSWeston Andros Adamson 			"count %u\n", __func__, nr_attrs);
5694fc931582SAndy Adamson 		return -EINVAL;
5695fc931582SAndy Adamson 	}
5696c0eae66eSBenny Halevy 	if (nr_attrs == 1) {
5697c0eae66eSBenny Halevy 		p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5698c0eae66eSBenny Halevy 		if (unlikely(!p))
5699c0eae66eSBenny Halevy 			goto out_overflow;
5700c0eae66eSBenny Halevy 	}
5701fc931582SAndy Adamson 	return 0;
5702c0eae66eSBenny Halevy out_overflow:
5703c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5704c0eae66eSBenny Halevy 	return -EIO;
5705fc931582SAndy Adamson }
5706fc931582SAndy Adamson 
5707e78291e4SBenny Halevy static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5708e78291e4SBenny Halevy {
5709e78291e4SBenny Halevy 	return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
5710fc931582SAndy Adamson }
5711fc931582SAndy Adamson 
57127c44f1aeSWeston Andros Adamson static int decode_bind_conn_to_session(struct xdr_stream *xdr,
57137c44f1aeSWeston Andros Adamson 				struct nfs41_bind_conn_to_session_res *res)
57147c44f1aeSWeston Andros Adamson {
57157c44f1aeSWeston Andros Adamson 	__be32 *p;
57167c44f1aeSWeston Andros Adamson 	int status;
57177c44f1aeSWeston Andros Adamson 
57187c44f1aeSWeston Andros Adamson 	status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
57197c44f1aeSWeston Andros Adamson 	if (!status)
572071a097c6STrond Myklebust 		status = decode_sessionid(xdr, &res->sessionid);
57217c44f1aeSWeston Andros Adamson 	if (unlikely(status))
57227c44f1aeSWeston Andros Adamson 		return status;
57237c44f1aeSWeston Andros Adamson 
57247c44f1aeSWeston Andros Adamson 	/* dir flags, rdma mode bool */
57257c44f1aeSWeston Andros Adamson 	p = xdr_inline_decode(xdr, 8);
57267c44f1aeSWeston Andros Adamson 	if (unlikely(!p))
57277c44f1aeSWeston Andros Adamson 		goto out_overflow;
57287c44f1aeSWeston Andros Adamson 
57297c44f1aeSWeston Andros Adamson 	res->dir = be32_to_cpup(p++);
57307c44f1aeSWeston Andros Adamson 	if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
57317c44f1aeSWeston Andros Adamson 		return -EIO;
57327c44f1aeSWeston Andros Adamson 	if (be32_to_cpup(p) == 0)
57337c44f1aeSWeston Andros Adamson 		res->use_conn_in_rdma_mode = false;
57347c44f1aeSWeston Andros Adamson 	else
57357c44f1aeSWeston Andros Adamson 		res->use_conn_in_rdma_mode = true;
57367c44f1aeSWeston Andros Adamson 
57377c44f1aeSWeston Andros Adamson 	return 0;
57387c44f1aeSWeston Andros Adamson out_overflow:
57397c44f1aeSWeston Andros Adamson 	print_overflow_msg(__func__, xdr);
57407c44f1aeSWeston Andros Adamson 	return -EIO;
57417c44f1aeSWeston Andros Adamson }
57427c44f1aeSWeston Andros Adamson 
5743fc931582SAndy Adamson static int decode_create_session(struct xdr_stream *xdr,
5744fc931582SAndy Adamson 				 struct nfs41_create_session_res *res)
5745fc931582SAndy Adamson {
5746fc931582SAndy Adamson 	__be32 *p;
5747fc931582SAndy Adamson 	int status;
5748fc931582SAndy Adamson 
5749fc931582SAndy Adamson 	status = decode_op_hdr(xdr, OP_CREATE_SESSION);
5750e78291e4SBenny Halevy 	if (!status)
575179969dd1STrond Myklebust 		status = decode_sessionid(xdr, &res->sessionid);
5752e78291e4SBenny Halevy 	if (unlikely(status))
5753fc931582SAndy Adamson 		return status;
5754fc931582SAndy Adamson 
5755fc931582SAndy Adamson 	/* seqid, flags */
5756c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 8);
5757c0eae66eSBenny Halevy 	if (unlikely(!p))
5758c0eae66eSBenny Halevy 		goto out_overflow;
575979969dd1STrond Myklebust 	res->seqid = be32_to_cpup(p++);
576079969dd1STrond Myklebust 	res->flags = be32_to_cpup(p);
5761fc931582SAndy Adamson 
5762fc931582SAndy Adamson 	/* Channel attributes */
576379969dd1STrond Myklebust 	status = decode_chan_attrs(xdr, &res->fc_attrs);
5764fc931582SAndy Adamson 	if (!status)
576579969dd1STrond Myklebust 		status = decode_chan_attrs(xdr, &res->bc_attrs);
5766fc931582SAndy Adamson 	return status;
5767c0eae66eSBenny Halevy out_overflow:
5768c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5769c0eae66eSBenny Halevy 	return -EIO;
5770fc931582SAndy Adamson }
57710f3e66c6SAndy Adamson 
57720f3e66c6SAndy Adamson static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
57730f3e66c6SAndy Adamson {
57740f3e66c6SAndy Adamson 	return decode_op_hdr(xdr, OP_DESTROY_SESSION);
57750f3e66c6SAndy Adamson }
577618019753SRicardo Labiaga 
577766245539STrond Myklebust static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
577866245539STrond Myklebust {
577966245539STrond Myklebust 	return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
578066245539STrond Myklebust }
578166245539STrond Myklebust 
578218019753SRicardo Labiaga static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
578318019753SRicardo Labiaga {
578418019753SRicardo Labiaga 	return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
578518019753SRicardo Labiaga }
578699fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
578799fe60d0SBenny Halevy 
57889b7b9fccSAndy Adamson static int decode_sequence(struct xdr_stream *xdr,
57899b7b9fccSAndy Adamson 			   struct nfs4_sequence_res *res,
57909b7b9fccSAndy Adamson 			   struct rpc_rqst *rqstp)
57919b7b9fccSAndy Adamson {
57929b7b9fccSAndy Adamson #if defined(CONFIG_NFS_V4_1)
5793e3725ec0STrond Myklebust 	struct nfs4_session *session;
5794fc01cea9SAndy Adamson 	struct nfs4_sessionid id;
5795fc01cea9SAndy Adamson 	u32 dummy;
5796fc01cea9SAndy Adamson 	int status;
5797fc01cea9SAndy Adamson 	__be32 *p;
5798fc01cea9SAndy Adamson 
5799e3725ec0STrond Myklebust 	if (res->sr_slot == NULL)
58009b7b9fccSAndy Adamson 		return 0;
58013bd2384aSChuck Lever 	if (!res->sr_slot->table->session)
58023bd2384aSChuck Lever 		return 0;
58039b7b9fccSAndy Adamson 
5804fc01cea9SAndy Adamson 	status = decode_op_hdr(xdr, OP_SEQUENCE);
5805e78291e4SBenny Halevy 	if (!status)
5806e78291e4SBenny Halevy 		status = decode_sessionid(xdr, &id);
5807e78291e4SBenny Halevy 	if (unlikely(status))
5808fc01cea9SAndy Adamson 		goto out_err;
58099b7b9fccSAndy Adamson 
5810fc01cea9SAndy Adamson 	/*
5811fc01cea9SAndy Adamson 	 * If the server returns different values for sessionID, slotID or
5812fc01cea9SAndy Adamson 	 * sequence number, the server is looney tunes.
5813fc01cea9SAndy Adamson 	 */
5814fdcb4577STrond Myklebust 	status = -EREMOTEIO;
5815e3725ec0STrond Myklebust 	session = res->sr_slot->table->session;
5816fc01cea9SAndy Adamson 
5817e3725ec0STrond Myklebust 	if (memcmp(id.data, session->sess_id.data,
5818fc01cea9SAndy Adamson 		   NFS4_MAX_SESSIONID_LEN)) {
5819fc01cea9SAndy Adamson 		dprintk("%s Invalid session id\n", __func__);
5820fc01cea9SAndy Adamson 		goto out_err;
5821fc01cea9SAndy Adamson 	}
5822e78291e4SBenny Halevy 
5823c0eae66eSBenny Halevy 	p = xdr_inline_decode(xdr, 20);
5824c0eae66eSBenny Halevy 	if (unlikely(!p))
5825c0eae66eSBenny Halevy 		goto out_overflow;
5826e78291e4SBenny Halevy 
5827fc01cea9SAndy Adamson 	/* seqid */
58286f723f77SBenny Halevy 	dummy = be32_to_cpup(p++);
5829dfb4f309SBenny Halevy 	if (dummy != res->sr_slot->seq_nr) {
5830fc01cea9SAndy Adamson 		dprintk("%s Invalid sequence number\n", __func__);
5831fc01cea9SAndy Adamson 		goto out_err;
5832fc01cea9SAndy Adamson 	}
5833fc01cea9SAndy Adamson 	/* slot id */
58346f723f77SBenny Halevy 	dummy = be32_to_cpup(p++);
5835df2fabffSTrond Myklebust 	if (dummy != res->sr_slot->slot_nr) {
5836fc01cea9SAndy Adamson 		dprintk("%s Invalid slot id\n", __func__);
5837fc01cea9SAndy Adamson 		goto out_err;
5838fc01cea9SAndy Adamson 	}
5839da0507b7STrond Myklebust 	/* highest slot id */
5840da0507b7STrond Myklebust 	res->sr_highest_slotid = be32_to_cpup(p++);
5841464ee9f9STrond Myklebust 	/* target highest slot id */
5842464ee9f9STrond Myklebust 	res->sr_target_highest_slotid = be32_to_cpup(p++);
58430629e370SAlexandros Batsakis 	/* result flags */
58440629e370SAlexandros Batsakis 	res->sr_status_flags = be32_to_cpup(p);
5845fc01cea9SAndy Adamson 	status = 0;
5846fc01cea9SAndy Adamson out_err:
5847fc01cea9SAndy Adamson 	res->sr_status = status;
5848fc01cea9SAndy Adamson 	return status;
5849c0eae66eSBenny Halevy out_overflow:
5850c0eae66eSBenny Halevy 	print_overflow_msg(__func__, xdr);
5851c0eae66eSBenny Halevy 	status = -EIO;
5852c0eae66eSBenny Halevy 	goto out_err;
5853fc01cea9SAndy Adamson #else  /* CONFIG_NFS_V4_1 */
58549b7b9fccSAndy Adamson 	return 0;
5855fc01cea9SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
58569b7b9fccSAndy Adamson }
58579b7b9fccSAndy Adamson 
5858b1f69b75SAndy Adamson #if defined(CONFIG_NFS_V4_1)
585993b717fdSTrond Myklebust static int decode_layout_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
586093b717fdSTrond Myklebust {
586193b717fdSTrond Myklebust 	stateid->type = NFS4_LAYOUT_STATEID_TYPE;
586293b717fdSTrond Myklebust 	return decode_stateid(xdr, stateid);
586393b717fdSTrond Myklebust }
586493b717fdSTrond Myklebust 
5865b1f69b75SAndy Adamson static int decode_getdeviceinfo(struct xdr_stream *xdr,
58664e590803STrond Myklebust 				struct nfs4_getdeviceinfo_res *res)
5867b1f69b75SAndy Adamson {
58684e590803STrond Myklebust 	struct pnfs_device *pdev = res->pdev;
5869b1f69b75SAndy Adamson 	__be32 *p;
5870b1f69b75SAndy Adamson 	uint32_t len, type;
5871b1f69b75SAndy Adamson 	int status;
5872b1f69b75SAndy Adamson 
5873b1f69b75SAndy Adamson 	status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5874b1f69b75SAndy Adamson 	if (status) {
5875b1f69b75SAndy Adamson 		if (status == -ETOOSMALL) {
5876b1f69b75SAndy Adamson 			p = xdr_inline_decode(xdr, 4);
5877b1f69b75SAndy Adamson 			if (unlikely(!p))
5878b1f69b75SAndy Adamson 				goto out_overflow;
5879b1f69b75SAndy Adamson 			pdev->mincount = be32_to_cpup(p);
5880b1f69b75SAndy Adamson 			dprintk("%s: Min count too small. mincnt = %u\n",
5881b1f69b75SAndy Adamson 				__func__, pdev->mincount);
5882b1f69b75SAndy Adamson 		}
5883b1f69b75SAndy Adamson 		return status;
5884b1f69b75SAndy Adamson 	}
5885b1f69b75SAndy Adamson 
5886b1f69b75SAndy Adamson 	p = xdr_inline_decode(xdr, 8);
5887b1f69b75SAndy Adamson 	if (unlikely(!p))
5888b1f69b75SAndy Adamson 		goto out_overflow;
5889b1f69b75SAndy Adamson 	type = be32_to_cpup(p++);
5890b1f69b75SAndy Adamson 	if (type != pdev->layout_type) {
5891b1f69b75SAndy Adamson 		dprintk("%s: layout mismatch req: %u pdev: %u\n",
5892b1f69b75SAndy Adamson 			__func__, pdev->layout_type, type);
5893b1f69b75SAndy Adamson 		return -EINVAL;
5894b1f69b75SAndy Adamson 	}
5895b1f69b75SAndy Adamson 	/*
5896b1f69b75SAndy Adamson 	 * Get the length of the opaque device_addr4. xdr_read_pages places
5897b1f69b75SAndy Adamson 	 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5898b1f69b75SAndy Adamson 	 * and places the remaining xdr data in xdr_buf->tail
5899b1f69b75SAndy Adamson 	 */
5900b1f69b75SAndy Adamson 	pdev->mincount = be32_to_cpup(p);
590113fe4ba1STrond Myklebust 	if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
590213fe4ba1STrond Myklebust 		goto out_overflow;
5903b1f69b75SAndy Adamson 
5904b1f69b75SAndy Adamson 	/* Parse notification bitmap, verifying that it is zero. */
5905b1f69b75SAndy Adamson 	p = xdr_inline_decode(xdr, 4);
5906b1f69b75SAndy Adamson 	if (unlikely(!p))
5907b1f69b75SAndy Adamson 		goto out_overflow;
5908b1f69b75SAndy Adamson 	len = be32_to_cpup(p);
5909b1f69b75SAndy Adamson 	if (len) {
5910ead00597SChuck Lever 		uint32_t i;
5911b1f69b75SAndy Adamson 
5912b1f69b75SAndy Adamson 		p = xdr_inline_decode(xdr, 4 * len);
5913b1f69b75SAndy Adamson 		if (unlikely(!p))
5914b1f69b75SAndy Adamson 			goto out_overflow;
591584c9dee3SChristoph Hellwig 
59164e590803STrond Myklebust 		res->notification = be32_to_cpup(p++);
591784c9dee3SChristoph Hellwig 		for (i = 1; i < len; i++) {
591884c9dee3SChristoph Hellwig 			if (be32_to_cpup(p++)) {
591984c9dee3SChristoph Hellwig 				dprintk("%s: unsupported notification\n",
5920b1f69b75SAndy Adamson 					__func__);
5921b1f69b75SAndy Adamson 				return -EIO;
5922b1f69b75SAndy Adamson 			}
5923b1f69b75SAndy Adamson 		}
5924b1f69b75SAndy Adamson 	}
5925b1f69b75SAndy Adamson 	return 0;
5926b1f69b75SAndy Adamson out_overflow:
5927b1f69b75SAndy Adamson 	print_overflow_msg(__func__, xdr);
5928b1f69b75SAndy Adamson 	return -EIO;
5929b1f69b75SAndy Adamson }
5930b1f69b75SAndy Adamson 
5931b1f69b75SAndy Adamson static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5932b1f69b75SAndy Adamson 			    struct nfs4_layoutget_res *res)
5933b1f69b75SAndy Adamson {
5934b1f69b75SAndy Adamson 	__be32 *p;
5935b1f69b75SAndy Adamson 	int status;
5936b1f69b75SAndy Adamson 	u32 layout_count;
593764bd577eSTrond Myklebust 	u32 recvd;
5938b1f69b75SAndy Adamson 
5939b1f69b75SAndy Adamson 	status = decode_op_hdr(xdr, OP_LAYOUTGET);
5940b1f69b75SAndy Adamson 	if (status)
5941b1f69b75SAndy Adamson 		return status;
5942ea9d23f5STrond Myklebust 	p = xdr_inline_decode(xdr, 4);
5943b1f69b75SAndy Adamson 	if (unlikely(!p))
5944b1f69b75SAndy Adamson 		goto out_overflow;
5945ea9d23f5STrond Myklebust 	res->return_on_close = be32_to_cpup(p);
594693b717fdSTrond Myklebust 	decode_layout_stateid(xdr, &res->stateid);
5947ea9d23f5STrond Myklebust 	p = xdr_inline_decode(xdr, 4);
5948ea9d23f5STrond Myklebust 	if (unlikely(!p))
5949ea9d23f5STrond Myklebust 		goto out_overflow;
5950b1f69b75SAndy Adamson 	layout_count = be32_to_cpup(p);
5951b1f69b75SAndy Adamson 	if (!layout_count) {
5952b1f69b75SAndy Adamson 		dprintk("%s: server responded with empty layout array\n",
5953b1f69b75SAndy Adamson 			__func__);
5954b1f69b75SAndy Adamson 		return -EINVAL;
5955b1f69b75SAndy Adamson 	}
5956b1f69b75SAndy Adamson 
595735124a09SWeston Andros Adamson 	p = xdr_inline_decode(xdr, 28);
5958b1f69b75SAndy Adamson 	if (unlikely(!p))
5959b1f69b75SAndy Adamson 		goto out_overflow;
5960b1f69b75SAndy Adamson 	p = xdr_decode_hyper(p, &res->range.offset);
5961b1f69b75SAndy Adamson 	p = xdr_decode_hyper(p, &res->range.length);
5962b1f69b75SAndy Adamson 	res->range.iomode = be32_to_cpup(p++);
5963b1f69b75SAndy Adamson 	res->type = be32_to_cpup(p++);
596435124a09SWeston Andros Adamson 	res->layoutp->len = be32_to_cpup(p);
5965b1f69b75SAndy Adamson 
5966b1f69b75SAndy Adamson 	dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5967b1f69b75SAndy Adamson 		__func__,
5968b1f69b75SAndy Adamson 		(unsigned long)res->range.offset,
5969b1f69b75SAndy Adamson 		(unsigned long)res->range.length,
5970b1f69b75SAndy Adamson 		res->range.iomode,
5971b1f69b75SAndy Adamson 		res->type,
597235124a09SWeston Andros Adamson 		res->layoutp->len);
5973b1f69b75SAndy Adamson 
597464bd577eSTrond Myklebust 	recvd = xdr_read_pages(xdr, res->layoutp->len);
597535124a09SWeston Andros Adamson 	if (res->layoutp->len > recvd) {
597635124a09SWeston Andros Adamson 		dprintk("NFS: server cheating in layoutget reply: "
597735124a09SWeston Andros Adamson 				"layout len %u > recvd %u\n",
597835124a09SWeston Andros Adamson 				res->layoutp->len, recvd);
597935124a09SWeston Andros Adamson 		return -EINVAL;
598035124a09SWeston Andros Adamson 	}
598135124a09SWeston Andros Adamson 
5982b1f69b75SAndy Adamson 	if (layout_count > 1) {
5983b1f69b75SAndy Adamson 		/* We only handle a length one array at the moment.  Any
5984b1f69b75SAndy Adamson 		 * further entries are just ignored.  Note that this means
5985b1f69b75SAndy Adamson 		 * the client may see a response that is less than the
5986b1f69b75SAndy Adamson 		 * minimum it requested.
5987b1f69b75SAndy Adamson 		 */
5988b1f69b75SAndy Adamson 		dprintk("%s: server responded with %d layouts, dropping tail\n",
5989b1f69b75SAndy Adamson 			__func__, layout_count);
5990b1f69b75SAndy Adamson 	}
5991b1f69b75SAndy Adamson 
5992b1f69b75SAndy Adamson 	return 0;
5993b1f69b75SAndy Adamson out_overflow:
5994b1f69b75SAndy Adamson 	print_overflow_msg(__func__, xdr);
5995b1f69b75SAndy Adamson 	return -EIO;
5996b1f69b75SAndy Adamson }
5997863a3c6cSAndy Adamson 
5998cbe82603SBenny Halevy static int decode_layoutreturn(struct xdr_stream *xdr,
5999cbe82603SBenny Halevy 			       struct nfs4_layoutreturn_res *res)
6000cbe82603SBenny Halevy {
6001cbe82603SBenny Halevy 	__be32 *p;
6002cbe82603SBenny Halevy 	int status;
6003cbe82603SBenny Halevy 
6004cbe82603SBenny Halevy 	status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
6005cbe82603SBenny Halevy 	if (status)
6006cbe82603SBenny Halevy 		return status;
6007cbe82603SBenny Halevy 	p = xdr_inline_decode(xdr, 4);
6008cbe82603SBenny Halevy 	if (unlikely(!p))
6009cbe82603SBenny Halevy 		goto out_overflow;
6010cbe82603SBenny Halevy 	res->lrs_present = be32_to_cpup(p);
6011cbe82603SBenny Halevy 	if (res->lrs_present)
601293b717fdSTrond Myklebust 		status = decode_layout_stateid(xdr, &res->stateid);
6013cbe82603SBenny Halevy 	return status;
6014cbe82603SBenny Halevy out_overflow:
6015cbe82603SBenny Halevy 	print_overflow_msg(__func__, xdr);
6016cbe82603SBenny Halevy 	return -EIO;
6017cbe82603SBenny Halevy }
6018cbe82603SBenny Halevy 
6019863a3c6cSAndy Adamson static int decode_layoutcommit(struct xdr_stream *xdr,
6020863a3c6cSAndy Adamson 			       struct rpc_rqst *req,
6021863a3c6cSAndy Adamson 			       struct nfs4_layoutcommit_res *res)
6022863a3c6cSAndy Adamson {
6023863a3c6cSAndy Adamson 	__be32 *p;
6024863a3c6cSAndy Adamson 	__u32 sizechanged;
6025863a3c6cSAndy Adamson 	int status;
6026863a3c6cSAndy Adamson 
6027863a3c6cSAndy Adamson 	status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
6028db29c089SAndy Adamson 	res->status = status;
6029863a3c6cSAndy Adamson 	if (status)
6030863a3c6cSAndy Adamson 		return status;
6031863a3c6cSAndy Adamson 
6032863a3c6cSAndy Adamson 	p = xdr_inline_decode(xdr, 4);
6033863a3c6cSAndy Adamson 	if (unlikely(!p))
6034863a3c6cSAndy Adamson 		goto out_overflow;
6035863a3c6cSAndy Adamson 	sizechanged = be32_to_cpup(p);
6036863a3c6cSAndy Adamson 
6037863a3c6cSAndy Adamson 	if (sizechanged) {
6038863a3c6cSAndy Adamson 		/* throw away new size */
6039863a3c6cSAndy Adamson 		p = xdr_inline_decode(xdr, 8);
6040863a3c6cSAndy Adamson 		if (unlikely(!p))
6041863a3c6cSAndy Adamson 			goto out_overflow;
6042863a3c6cSAndy Adamson 	}
6043863a3c6cSAndy Adamson 	return 0;
6044863a3c6cSAndy Adamson out_overflow:
6045863a3c6cSAndy Adamson 	print_overflow_msg(__func__, xdr);
6046863a3c6cSAndy Adamson 	return -EIO;
6047863a3c6cSAndy Adamson }
60487d974794SBryan Schumaker 
60497d974794SBryan Schumaker static int decode_test_stateid(struct xdr_stream *xdr,
60507d974794SBryan Schumaker 			       struct nfs41_test_stateid_res *res)
60517d974794SBryan Schumaker {
60527d974794SBryan Schumaker 	__be32 *p;
60537d974794SBryan Schumaker 	int status;
60547d974794SBryan Schumaker 	int num_res;
60557d974794SBryan Schumaker 
60567d974794SBryan Schumaker 	status = decode_op_hdr(xdr, OP_TEST_STATEID);
60577d974794SBryan Schumaker 	if (status)
60587d974794SBryan Schumaker 		return status;
60597d974794SBryan Schumaker 
60607d974794SBryan Schumaker 	p = xdr_inline_decode(xdr, 4);
60617d974794SBryan Schumaker 	if (unlikely(!p))
60627d974794SBryan Schumaker 		goto out_overflow;
60637d974794SBryan Schumaker 	num_res = be32_to_cpup(p++);
60647d974794SBryan Schumaker 	if (num_res != 1)
60657d974794SBryan Schumaker 		goto out;
60667d974794SBryan Schumaker 
60677d974794SBryan Schumaker 	p = xdr_inline_decode(xdr, 4);
60687d974794SBryan Schumaker 	if (unlikely(!p))
60697d974794SBryan Schumaker 		goto out_overflow;
60707d974794SBryan Schumaker 	res->status = be32_to_cpup(p++);
60711cab0652SBryan Schumaker 
60721cab0652SBryan Schumaker 	return status;
60737d974794SBryan Schumaker out_overflow:
60747d974794SBryan Schumaker 	print_overflow_msg(__func__, xdr);
60757d974794SBryan Schumaker out:
60767d974794SBryan Schumaker 	return -EIO;
60777d974794SBryan Schumaker }
60789aeda35fSBryan Schumaker 
60799aeda35fSBryan Schumaker static int decode_free_stateid(struct xdr_stream *xdr,
60809aeda35fSBryan Schumaker 			       struct nfs41_free_stateid_res *res)
60819aeda35fSBryan Schumaker {
60829f79fb48SAndy Adamson 	res->status = decode_op_hdr(xdr, OP_FREE_STATEID);
60839aeda35fSBryan Schumaker 	return res->status;
60849aeda35fSBryan Schumaker }
6085b1f69b75SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
6086b1f69b75SAndy Adamson 
60871da177e4SLinus Torvalds /*
608849c2559eSBenny Halevy  * END OF "GENERIC" DECODE ROUTINES.
608949c2559eSBenny Halevy  */
609049c2559eSBenny Halevy 
609149c2559eSBenny Halevy /*
60921da177e4SLinus Torvalds  * Decode OPEN_DOWNGRADE response
60931da177e4SLinus Torvalds  */
6094bf269551SChuck Lever static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
6095bf269551SChuck Lever 				       struct xdr_stream *xdr,
6096bf269551SChuck Lever 				       struct nfs_closeres *res)
60971da177e4SLinus Torvalds {
60981da177e4SLinus Torvalds 	struct compound_hdr hdr;
60991da177e4SLinus Torvalds 	int status;
61001da177e4SLinus Torvalds 
6101bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
61021da177e4SLinus Torvalds 	if (status)
61031da177e4SLinus Torvalds 		goto out;
6104bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
61059b7b9fccSAndy Adamson 	if (status)
61069b7b9fccSAndy Adamson 		goto out;
6107bf269551SChuck Lever 	status = decode_putfh(xdr);
61081da177e4SLinus Torvalds 	if (status)
61091da177e4SLinus Torvalds 		goto out;
6110bf269551SChuck Lever 	status = decode_open_downgrade(xdr, res);
6111516a6af6STrond Myklebust 	if (status != 0)
6112516a6af6STrond Myklebust 		goto out;
61136926afd1STrond Myklebust 	decode_getfattr(xdr, res->fattr, res->server);
61141da177e4SLinus Torvalds out:
61151da177e4SLinus Torvalds 	return status;
61161da177e4SLinus Torvalds }
61171da177e4SLinus Torvalds 
61181da177e4SLinus Torvalds /*
61191da177e4SLinus Torvalds  * Decode ACCESS response
61201da177e4SLinus Torvalds  */
6121bf269551SChuck Lever static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6122bf269551SChuck Lever 			       struct nfs4_accessres *res)
61231da177e4SLinus Torvalds {
61241da177e4SLinus Torvalds 	struct compound_hdr hdr;
61251da177e4SLinus Torvalds 	int status;
61261da177e4SLinus Torvalds 
6127bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
61289b7b9fccSAndy Adamson 	if (status)
61299b7b9fccSAndy Adamson 		goto out;
6130bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
61319b7b9fccSAndy Adamson 	if (status)
61321da177e4SLinus Torvalds 		goto out;
6133bf269551SChuck Lever 	status = decode_putfh(xdr);
613476b32999STrond Myklebust 	if (status != 0)
613576b32999STrond Myklebust 		goto out;
61366168f62cSWeston Andros Adamson 	status = decode_access(xdr, &res->supported, &res->access);
613776b32999STrond Myklebust 	if (status != 0)
613876b32999STrond Myklebust 		goto out;
61396926afd1STrond Myklebust 	decode_getfattr(xdr, res->fattr, res->server);
61401da177e4SLinus Torvalds out:
61411da177e4SLinus Torvalds 	return status;
61421da177e4SLinus Torvalds }
61431da177e4SLinus Torvalds 
61441da177e4SLinus Torvalds /*
61451da177e4SLinus Torvalds  * Decode LOOKUP response
61461da177e4SLinus Torvalds  */
6147bf269551SChuck Lever static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6148bf269551SChuck Lever 			       struct nfs4_lookup_res *res)
61491da177e4SLinus Torvalds {
61501da177e4SLinus Torvalds 	struct compound_hdr hdr;
61511da177e4SLinus Torvalds 	int status;
61521da177e4SLinus Torvalds 
6153bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
61549b7b9fccSAndy Adamson 	if (status)
61559b7b9fccSAndy Adamson 		goto out;
6156bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
61579b7b9fccSAndy Adamson 	if (status)
61581da177e4SLinus Torvalds 		goto out;
6159bf269551SChuck Lever 	status = decode_putfh(xdr);
6160bf269551SChuck Lever 	if (status)
61611da177e4SLinus Torvalds 		goto out;
6162bf269551SChuck Lever 	status = decode_lookup(xdr);
6163bf269551SChuck Lever 	if (status)
61641da177e4SLinus Torvalds 		goto out;
6165bf269551SChuck Lever 	status = decode_getfh(xdr, res->fh);
6166bf269551SChuck Lever 	if (status)
61671da177e4SLinus Torvalds 		goto out;
6168aa9c2669SDavid Quigley 	status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
61691da177e4SLinus Torvalds out:
61701da177e4SLinus Torvalds 	return status;
61711da177e4SLinus Torvalds }
61721da177e4SLinus Torvalds 
61731da177e4SLinus Torvalds /*
61741da177e4SLinus Torvalds  * Decode LOOKUP_ROOT response
61751da177e4SLinus Torvalds  */
6176bf269551SChuck Lever static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
6177bf269551SChuck Lever 				    struct xdr_stream *xdr,
6178bf269551SChuck Lever 				    struct nfs4_lookup_res *res)
61791da177e4SLinus Torvalds {
61801da177e4SLinus Torvalds 	struct compound_hdr hdr;
61811da177e4SLinus Torvalds 	int status;
61821da177e4SLinus Torvalds 
6183bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
61849b7b9fccSAndy Adamson 	if (status)
61859b7b9fccSAndy Adamson 		goto out;
6186bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
61879b7b9fccSAndy Adamson 	if (status)
61881da177e4SLinus Torvalds 		goto out;
6189bf269551SChuck Lever 	status = decode_putrootfh(xdr);
6190bf269551SChuck Lever 	if (status)
61911da177e4SLinus Torvalds 		goto out;
6192bf269551SChuck Lever 	status = decode_getfh(xdr, res->fh);
6193bf269551SChuck Lever 	if (status == 0)
6194aa9c2669SDavid Quigley 		status = decode_getfattr_label(xdr, res->fattr,
6195aa9c2669SDavid Quigley 						res->label, res->server);
61961da177e4SLinus Torvalds out:
61971da177e4SLinus Torvalds 	return status;
61981da177e4SLinus Torvalds }
61991da177e4SLinus Torvalds 
62001da177e4SLinus Torvalds /*
62011da177e4SLinus Torvalds  * Decode REMOVE response
62021da177e4SLinus Torvalds  */
6203bf269551SChuck Lever static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6204bf269551SChuck Lever 			       struct nfs_removeres *res)
62051da177e4SLinus Torvalds {
62061da177e4SLinus Torvalds 	struct compound_hdr hdr;
62071da177e4SLinus Torvalds 	int status;
62081da177e4SLinus Torvalds 
6209bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
62109b7b9fccSAndy Adamson 	if (status)
62119b7b9fccSAndy Adamson 		goto out;
6212bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
62139b7b9fccSAndy Adamson 	if (status)
62141da177e4SLinus Torvalds 		goto out;
6215bf269551SChuck Lever 	status = decode_putfh(xdr);
6216bf269551SChuck Lever 	if (status)
621716e42959STrond Myklebust 		goto out;
6218bf269551SChuck Lever 	status = decode_remove(xdr, &res->cinfo);
62191da177e4SLinus Torvalds out:
62201da177e4SLinus Torvalds 	return status;
62211da177e4SLinus Torvalds }
62221da177e4SLinus Torvalds 
62231da177e4SLinus Torvalds /*
62241da177e4SLinus Torvalds  * Decode RENAME response
62251da177e4SLinus Torvalds  */
6226bf269551SChuck Lever static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6227bf269551SChuck Lever 			       struct nfs_renameres *res)
62281da177e4SLinus Torvalds {
62291da177e4SLinus Torvalds 	struct compound_hdr hdr;
62301da177e4SLinus Torvalds 	int status;
62311da177e4SLinus Torvalds 
6232bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
62339b7b9fccSAndy Adamson 	if (status)
62349b7b9fccSAndy Adamson 		goto out;
6235bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
62369b7b9fccSAndy Adamson 	if (status)
62371da177e4SLinus Torvalds 		goto out;
6238bf269551SChuck Lever 	status = decode_putfh(xdr);
6239bf269551SChuck Lever 	if (status)
62401da177e4SLinus Torvalds 		goto out;
6241bf269551SChuck Lever 	status = decode_savefh(xdr);
6242bf269551SChuck Lever 	if (status)
62431da177e4SLinus Torvalds 		goto out;
6244bf269551SChuck Lever 	status = decode_putfh(xdr);
6245bf269551SChuck Lever 	if (status)
62461da177e4SLinus Torvalds 		goto out;
6247bf269551SChuck Lever 	status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
62481da177e4SLinus Torvalds out:
62491da177e4SLinus Torvalds 	return status;
62501da177e4SLinus Torvalds }
62511da177e4SLinus Torvalds 
62521da177e4SLinus Torvalds /*
62531da177e4SLinus Torvalds  * Decode LINK response
62541da177e4SLinus Torvalds  */
6255bf269551SChuck Lever static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6256bf269551SChuck Lever 			     struct nfs4_link_res *res)
62571da177e4SLinus Torvalds {
62581da177e4SLinus Torvalds 	struct compound_hdr hdr;
62591da177e4SLinus Torvalds 	int status;
62601da177e4SLinus Torvalds 
6261bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
62629b7b9fccSAndy Adamson 	if (status)
62639b7b9fccSAndy Adamson 		goto out;
6264bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
62659b7b9fccSAndy Adamson 	if (status)
62661da177e4SLinus Torvalds 		goto out;
6267bf269551SChuck Lever 	status = decode_putfh(xdr);
6268bf269551SChuck Lever 	if (status)
62691da177e4SLinus Torvalds 		goto out;
6270bf269551SChuck Lever 	status = decode_savefh(xdr);
6271bf269551SChuck Lever 	if (status)
62721da177e4SLinus Torvalds 		goto out;
6273bf269551SChuck Lever 	status = decode_putfh(xdr);
6274bf269551SChuck Lever 	if (status)
62751da177e4SLinus Torvalds 		goto out;
6276bf269551SChuck Lever 	status = decode_link(xdr, &res->cinfo);
6277bf269551SChuck Lever 	if (status)
627891ba2eeeSTrond Myklebust 		goto out;
627991ba2eeeSTrond Myklebust 	/*
628091ba2eeeSTrond Myklebust 	 * Note order: OP_LINK leaves the directory as the current
628191ba2eeeSTrond Myklebust 	 *             filehandle.
628291ba2eeeSTrond Myklebust 	 */
6283bf269551SChuck Lever 	status = decode_restorefh(xdr);
6284bf269551SChuck Lever 	if (status)
628591ba2eeeSTrond Myklebust 		goto out;
6286aa9c2669SDavid Quigley 	decode_getfattr_label(xdr, res->fattr, res->label, res->server);
62871da177e4SLinus Torvalds out:
62881da177e4SLinus Torvalds 	return status;
62891da177e4SLinus Torvalds }
62901da177e4SLinus Torvalds 
62911da177e4SLinus Torvalds /*
62921da177e4SLinus Torvalds  * Decode CREATE response
62931da177e4SLinus Torvalds  */
6294bf269551SChuck Lever static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6295bf269551SChuck Lever 			       struct nfs4_create_res *res)
62961da177e4SLinus Torvalds {
62971da177e4SLinus Torvalds 	struct compound_hdr hdr;
62981da177e4SLinus Torvalds 	int status;
62991da177e4SLinus Torvalds 
6300bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
63019b7b9fccSAndy Adamson 	if (status)
63029b7b9fccSAndy Adamson 		goto out;
6303bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
63049b7b9fccSAndy Adamson 	if (status)
63051da177e4SLinus Torvalds 		goto out;
6306bf269551SChuck Lever 	status = decode_putfh(xdr);
6307bf269551SChuck Lever 	if (status)
63081da177e4SLinus Torvalds 		goto out;
6309bf269551SChuck Lever 	status = decode_create(xdr, &res->dir_cinfo);
6310bf269551SChuck Lever 	if (status)
63111da177e4SLinus Torvalds 		goto out;
6312bf269551SChuck Lever 	status = decode_getfh(xdr, res->fh);
6313bf269551SChuck Lever 	if (status)
63141da177e4SLinus Torvalds 		goto out;
6315aa9c2669SDavid Quigley 	decode_getfattr_label(xdr, res->fattr, res->label, res->server);
63161da177e4SLinus Torvalds out:
63171da177e4SLinus Torvalds 	return status;
63181da177e4SLinus Torvalds }
63191da177e4SLinus Torvalds 
63201da177e4SLinus Torvalds /*
63211da177e4SLinus Torvalds  * Decode SYMLINK response
63221da177e4SLinus Torvalds  */
6323bf269551SChuck Lever static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6324bf269551SChuck Lever 				struct nfs4_create_res *res)
63251da177e4SLinus Torvalds {
6326bf269551SChuck Lever 	return nfs4_xdr_dec_create(rqstp, xdr, res);
63271da177e4SLinus Torvalds }
63281da177e4SLinus Torvalds 
63291da177e4SLinus Torvalds /*
63301da177e4SLinus Torvalds  * Decode GETATTR response
63311da177e4SLinus Torvalds  */
6332bf269551SChuck Lever static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6333bf269551SChuck Lever 				struct nfs4_getattr_res *res)
63341da177e4SLinus Torvalds {
63351da177e4SLinus Torvalds 	struct compound_hdr hdr;
63361da177e4SLinus Torvalds 	int status;
63371da177e4SLinus Torvalds 
6338bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
63391da177e4SLinus Torvalds 	if (status)
63401da177e4SLinus Torvalds 		goto out;
6341bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
63429b7b9fccSAndy Adamson 	if (status)
63439b7b9fccSAndy Adamson 		goto out;
6344bf269551SChuck Lever 	status = decode_putfh(xdr);
63451da177e4SLinus Torvalds 	if (status)
63461da177e4SLinus Torvalds 		goto out;
6347aa9c2669SDavid Quigley 	status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
63481da177e4SLinus Torvalds out:
63491da177e4SLinus Torvalds 	return status;
63501da177e4SLinus Torvalds }
63511da177e4SLinus Torvalds 
635223ec6965SJ. Bruce Fields /*
635323ec6965SJ. Bruce Fields  * Encode an SETACL request
635423ec6965SJ. Bruce Fields  */
63559f06c719SChuck Lever static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
63569f06c719SChuck Lever 				struct nfs_setaclargs *args)
635723ec6965SJ. Bruce Fields {
635823ec6965SJ. Bruce Fields 	struct compound_hdr hdr = {
635966cc0429SBenny Halevy 		.minorversion = nfs4_xdr_minorversion(&args->seq_args),
636023ec6965SJ. Bruce Fields 	};
636123ec6965SJ. Bruce Fields 
63629f06c719SChuck Lever 	encode_compound_hdr(xdr, req, &hdr);
63639f06c719SChuck Lever 	encode_sequence(xdr, &args->seq_args, &hdr);
63649f06c719SChuck Lever 	encode_putfh(xdr, args->fh, &hdr);
63659f06c719SChuck Lever 	encode_setacl(xdr, args, &hdr);
6366d017931cSAndy Adamson 	encode_nops(&hdr);
636723ec6965SJ. Bruce Fields }
636805d564feSAndy Adamson 
636923ec6965SJ. Bruce Fields /*
637023ec6965SJ. Bruce Fields  * Decode SETACL response
637123ec6965SJ. Bruce Fields  */
637223ec6965SJ. Bruce Fields static int
6373bf269551SChuck Lever nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
637473c403a9SBenny Halevy 		    struct nfs_setaclres *res)
637523ec6965SJ. Bruce Fields {
637623ec6965SJ. Bruce Fields 	struct compound_hdr hdr;
637723ec6965SJ. Bruce Fields 	int status;
637823ec6965SJ. Bruce Fields 
6379bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
638023ec6965SJ. Bruce Fields 	if (status)
638123ec6965SJ. Bruce Fields 		goto out;
6382bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
63839b7b9fccSAndy Adamson 	if (status)
63849b7b9fccSAndy Adamson 		goto out;
6385bf269551SChuck Lever 	status = decode_putfh(xdr);
638623ec6965SJ. Bruce Fields 	if (status)
638723ec6965SJ. Bruce Fields 		goto out;
6388bf269551SChuck Lever 	status = decode_setattr(xdr);
638923ec6965SJ. Bruce Fields out:
639023ec6965SJ. Bruce Fields 	return status;
639123ec6965SJ. Bruce Fields }
63921da177e4SLinus Torvalds 
63931da177e4SLinus Torvalds /*
6394029d105eSJ. Bruce Fields  * Decode GETACL response
6395029d105eSJ. Bruce Fields  */
6396029d105eSJ. Bruce Fields static int
6397bf269551SChuck Lever nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6398663c79b3SBenny Halevy 		    struct nfs_getaclres *res)
6399029d105eSJ. Bruce Fields {
6400029d105eSJ. Bruce Fields 	struct compound_hdr hdr;
6401029d105eSJ. Bruce Fields 	int status;
6402029d105eSJ. Bruce Fields 
6403331818f1STrond Myklebust 	if (res->acl_scratch != NULL) {
6404331818f1STrond Myklebust 		void *p = page_address(res->acl_scratch);
6405331818f1STrond Myklebust 		xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6406331818f1STrond Myklebust 	}
6407bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
6408029d105eSJ. Bruce Fields 	if (status)
6409029d105eSJ. Bruce Fields 		goto out;
6410bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
64119b7b9fccSAndy Adamson 	if (status)
64129b7b9fccSAndy Adamson 		goto out;
6413bf269551SChuck Lever 	status = decode_putfh(xdr);
6414029d105eSJ. Bruce Fields 	if (status)
6415029d105eSJ. Bruce Fields 		goto out;
6416bf118a34SAndy Adamson 	status = decode_getacl(xdr, rqstp, res);
6417029d105eSJ. Bruce Fields 
6418029d105eSJ. Bruce Fields out:
6419029d105eSJ. Bruce Fields 	return status;
6420029d105eSJ. Bruce Fields }
6421029d105eSJ. Bruce Fields 
6422029d105eSJ. Bruce Fields /*
64231da177e4SLinus Torvalds  * Decode CLOSE response
64241da177e4SLinus Torvalds  */
6425bf269551SChuck Lever static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6426bf269551SChuck Lever 			      struct nfs_closeres *res)
64271da177e4SLinus Torvalds {
64281da177e4SLinus Torvalds 	struct compound_hdr hdr;
64291da177e4SLinus Torvalds 	int status;
64301da177e4SLinus Torvalds 
6431bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
64321da177e4SLinus Torvalds 	if (status)
64331da177e4SLinus Torvalds 		goto out;
6434bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
64359b7b9fccSAndy Adamson 	if (status)
64369b7b9fccSAndy Adamson 		goto out;
6437bf269551SChuck Lever 	status = decode_putfh(xdr);
64381da177e4SLinus Torvalds 	if (status)
64391da177e4SLinus Torvalds 		goto out;
6440bf269551SChuck Lever 	status = decode_close(xdr, res);
6441516a6af6STrond Myklebust 	if (status != 0)
6442516a6af6STrond Myklebust 		goto out;
6443516a6af6STrond Myklebust 	/*
6444516a6af6STrond Myklebust 	 * Note: Server may do delete on close for this file
6445516a6af6STrond Myklebust 	 * 	in which case the getattr call will fail with
6446516a6af6STrond Myklebust 	 * 	an ESTALE error. Shouldn't be a problem,
6447516a6af6STrond Myklebust 	 * 	though, since fattr->valid will remain unset.
6448516a6af6STrond Myklebust 	 */
64496926afd1STrond Myklebust 	decode_getfattr(xdr, res->fattr, res->server);
64501da177e4SLinus Torvalds out:
64511da177e4SLinus Torvalds 	return status;
64521da177e4SLinus Torvalds }
64531da177e4SLinus Torvalds 
64541da177e4SLinus Torvalds /*
64551da177e4SLinus Torvalds  * Decode OPEN response
64561da177e4SLinus Torvalds  */
6457bf269551SChuck Lever static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6458bf269551SChuck Lever 			     struct nfs_openres *res)
64591da177e4SLinus Torvalds {
64601da177e4SLinus Torvalds 	struct compound_hdr hdr;
64611da177e4SLinus Torvalds 	int status;
64621da177e4SLinus Torvalds 
6463bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
64641da177e4SLinus Torvalds 	if (status)
64651da177e4SLinus Torvalds 		goto out;
6466bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
64679b7b9fccSAndy Adamson 	if (status)
64689b7b9fccSAndy Adamson 		goto out;
6469bf269551SChuck Lever 	status = decode_putfh(xdr);
64701da177e4SLinus Torvalds 	if (status)
64711da177e4SLinus Torvalds 		goto out;
6472bf269551SChuck Lever 	status = decode_open(xdr, res);
64731da177e4SLinus Torvalds 	if (status)
64741da177e4SLinus Torvalds 		goto out;
647501913b49SWeston Andros Adamson 	status = decode_getfh(xdr, &res->fh);
647601913b49SWeston Andros Adamson 	if (status)
64771da177e4SLinus Torvalds 		goto out;
6478ae2bb032SWeston Andros Adamson 	if (res->access_request)
64796168f62cSWeston Andros Adamson 		decode_access(xdr, &res->access_supported, &res->access_result);
6480aa9c2669SDavid Quigley 	decode_getfattr_label(xdr, res->f_attr, res->f_label, res->server);
64811da177e4SLinus Torvalds out:
64821da177e4SLinus Torvalds 	return status;
64831da177e4SLinus Torvalds }
64841da177e4SLinus Torvalds 
64851da177e4SLinus Torvalds /*
64861da177e4SLinus Torvalds  * Decode OPEN_CONFIRM response
64871da177e4SLinus Torvalds  */
6488bf269551SChuck Lever static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6489bf269551SChuck Lever 				     struct xdr_stream *xdr,
6490bf269551SChuck Lever 				     struct nfs_open_confirmres *res)
64911da177e4SLinus Torvalds {
64921da177e4SLinus Torvalds 	struct compound_hdr hdr;
64931da177e4SLinus Torvalds 	int status;
64941da177e4SLinus Torvalds 
6495bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
64961da177e4SLinus Torvalds 	if (status)
64971da177e4SLinus Torvalds 		goto out;
6498bf269551SChuck Lever 	status = decode_putfh(xdr);
64991da177e4SLinus Torvalds 	if (status)
65001da177e4SLinus Torvalds 		goto out;
6501bf269551SChuck Lever 	status = decode_open_confirm(xdr, res);
65021da177e4SLinus Torvalds out:
65031da177e4SLinus Torvalds 	return status;
65041da177e4SLinus Torvalds }
65051da177e4SLinus Torvalds 
65061da177e4SLinus Torvalds /*
65071da177e4SLinus Torvalds  * Decode OPEN response
65081da177e4SLinus Torvalds  */
6509bf269551SChuck Lever static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6510bf269551SChuck Lever 				    struct xdr_stream *xdr,
6511bf269551SChuck Lever 				    struct nfs_openres *res)
65121da177e4SLinus Torvalds {
65131da177e4SLinus Torvalds 	struct compound_hdr hdr;
65141da177e4SLinus Torvalds 	int status;
65151da177e4SLinus Torvalds 
6516bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
65171da177e4SLinus Torvalds 	if (status)
65181da177e4SLinus Torvalds 		goto out;
6519bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
65209b7b9fccSAndy Adamson 	if (status)
65219b7b9fccSAndy Adamson 		goto out;
6522bf269551SChuck Lever 	status = decode_putfh(xdr);
65231da177e4SLinus Torvalds 	if (status)
65241da177e4SLinus Torvalds 		goto out;
6525bf269551SChuck Lever 	status = decode_open(xdr, res);
6526864472e9STrond Myklebust 	if (status)
6527864472e9STrond Myklebust 		goto out;
6528ae2bb032SWeston Andros Adamson 	if (res->access_request)
65296168f62cSWeston Andros Adamson 		decode_access(xdr, &res->access_supported, &res->access_result);
65306926afd1STrond Myklebust 	decode_getfattr(xdr, res->f_attr, res->server);
65311da177e4SLinus Torvalds out:
65321da177e4SLinus Torvalds 	return status;
65331da177e4SLinus Torvalds }
65341da177e4SLinus Torvalds 
65351da177e4SLinus Torvalds /*
65361da177e4SLinus Torvalds  * Decode SETATTR response
65371da177e4SLinus Torvalds  */
6538bf269551SChuck Lever static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6539bf269551SChuck Lever 				struct xdr_stream *xdr,
6540bf269551SChuck Lever 				struct nfs_setattrres *res)
65411da177e4SLinus Torvalds {
65421da177e4SLinus Torvalds 	struct compound_hdr hdr;
65431da177e4SLinus Torvalds 	int status;
65441da177e4SLinus Torvalds 
6545bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
65461da177e4SLinus Torvalds 	if (status)
65471da177e4SLinus Torvalds 		goto out;
6548bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
65499b7b9fccSAndy Adamson 	if (status)
65509b7b9fccSAndy Adamson 		goto out;
6551bf269551SChuck Lever 	status = decode_putfh(xdr);
65521da177e4SLinus Torvalds 	if (status)
65531da177e4SLinus Torvalds 		goto out;
6554bf269551SChuck Lever 	status = decode_setattr(xdr);
65551da177e4SLinus Torvalds 	if (status)
65561da177e4SLinus Torvalds 		goto out;
6557aa9c2669SDavid Quigley 	decode_getfattr_label(xdr, res->fattr, res->label, res->server);
65581da177e4SLinus Torvalds out:
65591da177e4SLinus Torvalds 	return status;
65601da177e4SLinus Torvalds }
65611da177e4SLinus Torvalds 
65621da177e4SLinus Torvalds /*
65631da177e4SLinus Torvalds  * Decode LOCK response
65641da177e4SLinus Torvalds  */
6565bf269551SChuck Lever static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6566bf269551SChuck Lever 			     struct nfs_lock_res *res)
65671da177e4SLinus Torvalds {
65681da177e4SLinus Torvalds 	struct compound_hdr hdr;
65691da177e4SLinus Torvalds 	int status;
65701da177e4SLinus Torvalds 
6571bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
65721da177e4SLinus Torvalds 	if (status)
65731da177e4SLinus Torvalds 		goto out;
6574bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
65759b7b9fccSAndy Adamson 	if (status)
65769b7b9fccSAndy Adamson 		goto out;
6577bf269551SChuck Lever 	status = decode_putfh(xdr);
65781da177e4SLinus Torvalds 	if (status)
65791da177e4SLinus Torvalds 		goto out;
6580bf269551SChuck Lever 	status = decode_lock(xdr, res);
65811da177e4SLinus Torvalds out:
65821da177e4SLinus Torvalds 	return status;
65831da177e4SLinus Torvalds }
65841da177e4SLinus Torvalds 
65851da177e4SLinus Torvalds /*
65861da177e4SLinus Torvalds  * Decode LOCKT response
65871da177e4SLinus Torvalds  */
6588bf269551SChuck Lever static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6589bf269551SChuck Lever 			      struct nfs_lockt_res *res)
65901da177e4SLinus Torvalds {
65911da177e4SLinus Torvalds 	struct compound_hdr hdr;
65921da177e4SLinus Torvalds 	int status;
65931da177e4SLinus Torvalds 
6594bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
65951da177e4SLinus Torvalds 	if (status)
65961da177e4SLinus Torvalds 		goto out;
6597bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
65989b7b9fccSAndy Adamson 	if (status)
65999b7b9fccSAndy Adamson 		goto out;
6600bf269551SChuck Lever 	status = decode_putfh(xdr);
66011da177e4SLinus Torvalds 	if (status)
66021da177e4SLinus Torvalds 		goto out;
6603bf269551SChuck Lever 	status = decode_lockt(xdr, res);
66041da177e4SLinus Torvalds out:
66051da177e4SLinus Torvalds 	return status;
66061da177e4SLinus Torvalds }
66071da177e4SLinus Torvalds 
66081da177e4SLinus Torvalds /*
66091da177e4SLinus Torvalds  * Decode LOCKU response
66101da177e4SLinus Torvalds  */
6611bf269551SChuck Lever static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6612bf269551SChuck Lever 			      struct nfs_locku_res *res)
66131da177e4SLinus Torvalds {
66141da177e4SLinus Torvalds 	struct compound_hdr hdr;
66151da177e4SLinus Torvalds 	int status;
66161da177e4SLinus Torvalds 
6617bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
66181da177e4SLinus Torvalds 	if (status)
66191da177e4SLinus Torvalds 		goto out;
6620bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
66219b7b9fccSAndy Adamson 	if (status)
66229b7b9fccSAndy Adamson 		goto out;
6623bf269551SChuck Lever 	status = decode_putfh(xdr);
66241da177e4SLinus Torvalds 	if (status)
66251da177e4SLinus Torvalds 		goto out;
6626bf269551SChuck Lever 	status = decode_locku(xdr, res);
66271da177e4SLinus Torvalds out:
66281da177e4SLinus Torvalds 	return status;
66291da177e4SLinus Torvalds }
66301da177e4SLinus Torvalds 
6631bf269551SChuck Lever static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6632bf269551SChuck Lever 					  struct xdr_stream *xdr, void *dummy)
6633d3c7b7ccSTrond Myklebust {
6634d3c7b7ccSTrond Myklebust 	struct compound_hdr hdr;
6635d3c7b7ccSTrond Myklebust 	int status;
6636d3c7b7ccSTrond Myklebust 
6637bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
6638d3c7b7ccSTrond Myklebust 	if (!status)
6639bf269551SChuck Lever 		status = decode_release_lockowner(xdr);
6640d3c7b7ccSTrond Myklebust 	return status;
6641d3c7b7ccSTrond Myklebust }
6642d3c7b7ccSTrond Myklebust 
66431da177e4SLinus Torvalds /*
66441da177e4SLinus Torvalds  * Decode READLINK response
66451da177e4SLinus Torvalds  */
6646bf269551SChuck Lever static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6647bf269551SChuck Lever 				 struct xdr_stream *xdr,
6648f50c7000SBenny Halevy 				 struct nfs4_readlink_res *res)
66491da177e4SLinus Torvalds {
66501da177e4SLinus Torvalds 	struct compound_hdr hdr;
66511da177e4SLinus Torvalds 	int status;
66521da177e4SLinus Torvalds 
6653bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
66541da177e4SLinus Torvalds 	if (status)
66551da177e4SLinus Torvalds 		goto out;
6656bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
66579b7b9fccSAndy Adamson 	if (status)
66589b7b9fccSAndy Adamson 		goto out;
6659bf269551SChuck Lever 	status = decode_putfh(xdr);
66601da177e4SLinus Torvalds 	if (status)
66611da177e4SLinus Torvalds 		goto out;
6662bf269551SChuck Lever 	status = decode_readlink(xdr, rqstp);
66631da177e4SLinus Torvalds out:
66641da177e4SLinus Torvalds 	return status;
66651da177e4SLinus Torvalds }
66661da177e4SLinus Torvalds 
66671da177e4SLinus Torvalds /*
66681da177e4SLinus Torvalds  * Decode READDIR response
66691da177e4SLinus Torvalds  */
6670bf269551SChuck Lever static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6671bf269551SChuck Lever 				struct nfs4_readdir_res *res)
66721da177e4SLinus Torvalds {
66731da177e4SLinus Torvalds 	struct compound_hdr hdr;
66741da177e4SLinus Torvalds 	int status;
66751da177e4SLinus Torvalds 
6676bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
66771da177e4SLinus Torvalds 	if (status)
66781da177e4SLinus Torvalds 		goto out;
6679bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
66809b7b9fccSAndy Adamson 	if (status)
66819b7b9fccSAndy Adamson 		goto out;
6682bf269551SChuck Lever 	status = decode_putfh(xdr);
66831da177e4SLinus Torvalds 	if (status)
66841da177e4SLinus Torvalds 		goto out;
6685bf269551SChuck Lever 	status = decode_readdir(xdr, rqstp, res);
66861da177e4SLinus Torvalds out:
66871da177e4SLinus Torvalds 	return status;
66881da177e4SLinus Torvalds }
66891da177e4SLinus Torvalds 
66901da177e4SLinus Torvalds /*
66911da177e4SLinus Torvalds  * Decode Read response
66921da177e4SLinus Torvalds  */
6693bf269551SChuck Lever static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
66949137bdf3SAnna Schumaker 			     struct nfs_pgio_res *res)
66951da177e4SLinus Torvalds {
66961da177e4SLinus Torvalds 	struct compound_hdr hdr;
66971da177e4SLinus Torvalds 	int status;
66981da177e4SLinus Torvalds 
6699bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
6700aabff4ddSPeng Tao 	res->op_status = hdr.status;
67011da177e4SLinus Torvalds 	if (status)
67021da177e4SLinus Torvalds 		goto out;
6703bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
67049b7b9fccSAndy Adamson 	if (status)
67059b7b9fccSAndy Adamson 		goto out;
6706bf269551SChuck Lever 	status = decode_putfh(xdr);
67071da177e4SLinus Torvalds 	if (status)
67081da177e4SLinus Torvalds 		goto out;
6709bf269551SChuck Lever 	status = decode_read(xdr, rqstp, res);
67101da177e4SLinus Torvalds 	if (!status)
67111da177e4SLinus Torvalds 		status = res->count;
67121da177e4SLinus Torvalds out:
67131da177e4SLinus Torvalds 	return status;
67141da177e4SLinus Torvalds }
67151da177e4SLinus Torvalds 
67161da177e4SLinus Torvalds /*
67171da177e4SLinus Torvalds  * Decode WRITE response
67181da177e4SLinus Torvalds  */
6719bf269551SChuck Lever static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
67209137bdf3SAnna Schumaker 			      struct nfs_pgio_res *res)
67211da177e4SLinus Torvalds {
67221da177e4SLinus Torvalds 	struct compound_hdr hdr;
67231da177e4SLinus Torvalds 	int status;
67241da177e4SLinus Torvalds 
6725bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
6726aabff4ddSPeng Tao 	res->op_status = hdr.status;
67271da177e4SLinus Torvalds 	if (status)
67281da177e4SLinus Torvalds 		goto out;
6729bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
67309b7b9fccSAndy Adamson 	if (status)
67319b7b9fccSAndy Adamson 		goto out;
6732bf269551SChuck Lever 	status = decode_putfh(xdr);
67331da177e4SLinus Torvalds 	if (status)
67341da177e4SLinus Torvalds 		goto out;
6735bf269551SChuck Lever 	status = decode_write(xdr, res);
67364f9838c7STrond Myklebust 	if (status)
67374f9838c7STrond Myklebust 		goto out;
67387ffd1064SFred Isaman 	if (res->fattr)
67396926afd1STrond Myklebust 		decode_getfattr(xdr, res->fattr, res->server);
67401da177e4SLinus Torvalds 	if (!status)
67411da177e4SLinus Torvalds 		status = res->count;
67421da177e4SLinus Torvalds out:
67431da177e4SLinus Torvalds 	return status;
67441da177e4SLinus Torvalds }
67451da177e4SLinus Torvalds 
67461da177e4SLinus Torvalds /*
67471da177e4SLinus Torvalds  * Decode COMMIT response
67481da177e4SLinus Torvalds  */
6749bf269551SChuck Lever static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
67500b7c0153SFred Isaman 			       struct nfs_commitres *res)
67511da177e4SLinus Torvalds {
67521da177e4SLinus Torvalds 	struct compound_hdr hdr;
67531da177e4SLinus Torvalds 	int status;
67541da177e4SLinus Torvalds 
6755bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
6756aabff4ddSPeng Tao 	res->op_status = hdr.status;
67571da177e4SLinus Torvalds 	if (status)
67581da177e4SLinus Torvalds 		goto out;
6759bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
67609b7b9fccSAndy Adamson 	if (status)
67619b7b9fccSAndy Adamson 		goto out;
6762bf269551SChuck Lever 	status = decode_putfh(xdr);
67631da177e4SLinus Torvalds 	if (status)
67641da177e4SLinus Torvalds 		goto out;
6765bf269551SChuck Lever 	status = decode_commit(xdr, res);
67661da177e4SLinus Torvalds out:
67671da177e4SLinus Torvalds 	return status;
67681da177e4SLinus Torvalds }
67691da177e4SLinus Torvalds 
67701da177e4SLinus Torvalds /*
67718b173218SRicardo Labiaga  * Decode FSINFO response
67721da177e4SLinus Torvalds  */
6773bf269551SChuck Lever static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
67743dda5e43SBenny Halevy 			       struct nfs4_fsinfo_res *res)
67751da177e4SLinus Torvalds {
67761da177e4SLinus Torvalds 	struct compound_hdr hdr;
67771da177e4SLinus Torvalds 	int status;
67781da177e4SLinus Torvalds 
6779bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
67801da177e4SLinus Torvalds 	if (!status)
6781bf269551SChuck Lever 		status = decode_sequence(xdr, &res->seq_res, req);
67829b7b9fccSAndy Adamson 	if (!status)
6783bf269551SChuck Lever 		status = decode_putfh(xdr);
67841da177e4SLinus Torvalds 	if (!status)
6785bf269551SChuck Lever 		status = decode_fsinfo(xdr, res->fsinfo);
67861da177e4SLinus Torvalds 	return status;
67871da177e4SLinus Torvalds }
67881da177e4SLinus Torvalds 
67891da177e4SLinus Torvalds /*
67908b173218SRicardo Labiaga  * Decode PATHCONF response
67911da177e4SLinus Torvalds  */
6792bf269551SChuck Lever static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
6793d45b2989SBenny Halevy 				 struct nfs4_pathconf_res *res)
67941da177e4SLinus Torvalds {
67951da177e4SLinus Torvalds 	struct compound_hdr hdr;
67961da177e4SLinus Torvalds 	int status;
67971da177e4SLinus Torvalds 
6798bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
67991da177e4SLinus Torvalds 	if (!status)
6800bf269551SChuck Lever 		status = decode_sequence(xdr, &res->seq_res, req);
68019b7b9fccSAndy Adamson 	if (!status)
6802bf269551SChuck Lever 		status = decode_putfh(xdr);
68031da177e4SLinus Torvalds 	if (!status)
6804bf269551SChuck Lever 		status = decode_pathconf(xdr, res->pathconf);
68051da177e4SLinus Torvalds 	return status;
68061da177e4SLinus Torvalds }
68071da177e4SLinus Torvalds 
68081da177e4SLinus Torvalds /*
68098b173218SRicardo Labiaga  * Decode STATFS response
68101da177e4SLinus Torvalds  */
6811bf269551SChuck Lever static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
681224ad148aSBenny Halevy 			       struct nfs4_statfs_res *res)
68131da177e4SLinus Torvalds {
68141da177e4SLinus Torvalds 	struct compound_hdr hdr;
68151da177e4SLinus Torvalds 	int status;
68161da177e4SLinus Torvalds 
6817bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
68181da177e4SLinus Torvalds 	if (!status)
6819bf269551SChuck Lever 		status = decode_sequence(xdr, &res->seq_res, req);
68209b7b9fccSAndy Adamson 	if (!status)
6821bf269551SChuck Lever 		status = decode_putfh(xdr);
68221da177e4SLinus Torvalds 	if (!status)
6823bf269551SChuck Lever 		status = decode_statfs(xdr, res->fsstat);
68241da177e4SLinus Torvalds 	return status;
68251da177e4SLinus Torvalds }
68261da177e4SLinus Torvalds 
68271da177e4SLinus Torvalds /*
68288b173218SRicardo Labiaga  * Decode GETATTR_BITMAP response
68291da177e4SLinus Torvalds  */
6830bf269551SChuck Lever static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6831bf269551SChuck Lever 				    struct xdr_stream *xdr,
6832bf269551SChuck Lever 				    struct nfs4_server_caps_res *res)
68331da177e4SLinus Torvalds {
68341da177e4SLinus Torvalds 	struct compound_hdr hdr;
68351da177e4SLinus Torvalds 	int status;
68361da177e4SLinus Torvalds 
6837bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
68389b7b9fccSAndy Adamson 	if (status)
68399b7b9fccSAndy Adamson 		goto out;
6840bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, req);
68419b7b9fccSAndy Adamson 	if (status)
68421da177e4SLinus Torvalds 		goto out;
6843bf269551SChuck Lever 	status = decode_putfh(xdr);
6844bf269551SChuck Lever 	if (status)
68451da177e4SLinus Torvalds 		goto out;
6846bf269551SChuck Lever 	status = decode_server_caps(xdr, res);
68471da177e4SLinus Torvalds out:
68481da177e4SLinus Torvalds 	return status;
68491da177e4SLinus Torvalds }
68501da177e4SLinus Torvalds 
68511da177e4SLinus Torvalds /*
68521da177e4SLinus Torvalds  * Decode RENEW response
68531da177e4SLinus Torvalds  */
6854bf269551SChuck Lever static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6855bf269551SChuck Lever 			      void *__unused)
68561da177e4SLinus Torvalds {
68571da177e4SLinus Torvalds 	struct compound_hdr hdr;
68581da177e4SLinus Torvalds 	int status;
68591da177e4SLinus Torvalds 
6860bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
68611da177e4SLinus Torvalds 	if (!status)
6862bf269551SChuck Lever 		status = decode_renew(xdr);
68631da177e4SLinus Torvalds 	return status;
68641da177e4SLinus Torvalds }
68651da177e4SLinus Torvalds 
68661da177e4SLinus Torvalds /*
68678b173218SRicardo Labiaga  * Decode SETCLIENTID response
68681da177e4SLinus Torvalds  */
6869bf269551SChuck Lever static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6870bf269551SChuck Lever 				    struct xdr_stream *xdr,
6871bb8b27e5STrond Myklebust 				    struct nfs4_setclientid_res *res)
68721da177e4SLinus Torvalds {
68731da177e4SLinus Torvalds 	struct compound_hdr hdr;
68741da177e4SLinus Torvalds 	int status;
68751da177e4SLinus Torvalds 
6876bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
68771da177e4SLinus Torvalds 	if (!status)
6878bf269551SChuck Lever 		status = decode_setclientid(xdr, res);
68791da177e4SLinus Torvalds 	return status;
68801da177e4SLinus Torvalds }
68811da177e4SLinus Torvalds 
68821da177e4SLinus Torvalds /*
68838b173218SRicardo Labiaga  * Decode SETCLIENTID_CONFIRM response
68841da177e4SLinus Torvalds  */
6885bf269551SChuck Lever static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
688683ca7f5aSChuck Lever 					    struct xdr_stream *xdr)
68871da177e4SLinus Torvalds {
68881da177e4SLinus Torvalds 	struct compound_hdr hdr;
68891da177e4SLinus Torvalds 	int status;
68901da177e4SLinus Torvalds 
6891bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
68921da177e4SLinus Torvalds 	if (!status)
6893bf269551SChuck Lever 		status = decode_setclientid_confirm(xdr);
68941da177e4SLinus Torvalds 	return status;
68951da177e4SLinus Torvalds }
68961da177e4SLinus Torvalds 
68971da177e4SLinus Torvalds /*
68988b173218SRicardo Labiaga  * Decode DELEGRETURN response
68991da177e4SLinus Torvalds  */
6900bf269551SChuck Lever static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6901bf269551SChuck Lever 				    struct xdr_stream *xdr,
6902bf269551SChuck Lever 				    struct nfs4_delegreturnres *res)
69031da177e4SLinus Torvalds {
69041da177e4SLinus Torvalds 	struct compound_hdr hdr;
69051da177e4SLinus Torvalds 	int status;
69061da177e4SLinus Torvalds 
6907bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
69089b7b9fccSAndy Adamson 	if (status)
69099b7b9fccSAndy Adamson 		goto out;
6910bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
69119b7b9fccSAndy Adamson 	if (status)
6912fa178f29STrond Myklebust 		goto out;
6913bf269551SChuck Lever 	status = decode_putfh(xdr);
6914fa178f29STrond Myklebust 	if (status != 0)
6915fa178f29STrond Myklebust 		goto out;
6916e144cbccSTrond Myklebust 	status = decode_getfattr(xdr, res->fattr, res->server);
6917556ae3bbSJeff Layton 	if (status != 0)
6918556ae3bbSJeff Layton 		goto out;
6919e144cbccSTrond Myklebust 	status = decode_delegreturn(xdr);
6920fa178f29STrond Myklebust out:
69211da177e4SLinus Torvalds 	return status;
69221da177e4SLinus Torvalds }
69231da177e4SLinus Torvalds 
6924683b57b4STrond Myklebust /*
69258b173218SRicardo Labiaga  * Decode FS_LOCATIONS response
6926683b57b4STrond Myklebust  */
6927bf269551SChuck Lever static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6928bf269551SChuck Lever 				     struct xdr_stream *xdr,
692922958463SBenny Halevy 				     struct nfs4_fs_locations_res *res)
6930683b57b4STrond Myklebust {
6931683b57b4STrond Myklebust 	struct compound_hdr hdr;
6932683b57b4STrond Myklebust 	int status;
6933683b57b4STrond Myklebust 
6934bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
69359b7b9fccSAndy Adamson 	if (status)
69369b7b9fccSAndy Adamson 		goto out;
6937bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, req);
69389b7b9fccSAndy Adamson 	if (status)
6939683b57b4STrond Myklebust 		goto out;
6940bf269551SChuck Lever 	status = decode_putfh(xdr);
6941bf269551SChuck Lever 	if (status)
6942683b57b4STrond Myklebust 		goto out;
6943b03d735bSChuck Lever 	if (res->migration) {
6944b03d735bSChuck Lever 		xdr_enter_page(xdr, PAGE_SIZE);
6945b03d735bSChuck Lever 		status = decode_getfattr_generic(xdr,
6946b03d735bSChuck Lever 					&res->fs_locations->fattr,
6947b03d735bSChuck Lever 					 NULL, res->fs_locations,
6948b03d735bSChuck Lever 					 NULL, res->fs_locations->server);
6949b03d735bSChuck Lever 		if (status)
6950b03d735bSChuck Lever 			goto out;
6951b03d735bSChuck Lever 		if (res->renew)
6952b03d735bSChuck Lever 			status = decode_renew(xdr);
6953b03d735bSChuck Lever 	} else {
6954bf269551SChuck Lever 		status = decode_lookup(xdr);
6955bf269551SChuck Lever 		if (status)
6956683b57b4STrond Myklebust 			goto out;
6957bf269551SChuck Lever 		xdr_enter_page(xdr, PAGE_SIZE);
6958b03d735bSChuck Lever 		status = decode_getfattr_generic(xdr,
6959b03d735bSChuck Lever 					&res->fs_locations->fattr,
69608b7e3f49STrond Myklebust 					 NULL, res->fs_locations,
6961aa9c2669SDavid Quigley 					 NULL, res->fs_locations->server);
6962b03d735bSChuck Lever 	}
6963683b57b4STrond Myklebust out:
6964683b57b4STrond Myklebust 	return status;
6965683b57b4STrond Myklebust }
6966683b57b4STrond Myklebust 
69675a5ea0d4SBryan Schumaker /*
69685a5ea0d4SBryan Schumaker  * Decode SECINFO response
69695a5ea0d4SBryan Schumaker  */
69705a5ea0d4SBryan Schumaker static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
69715a5ea0d4SBryan Schumaker 				struct xdr_stream *xdr,
69725a5ea0d4SBryan Schumaker 				struct nfs4_secinfo_res *res)
69735a5ea0d4SBryan Schumaker {
69745a5ea0d4SBryan Schumaker 	struct compound_hdr hdr;
69755a5ea0d4SBryan Schumaker 	int status;
69765a5ea0d4SBryan Schumaker 
69775a5ea0d4SBryan Schumaker 	status = decode_compound_hdr(xdr, &hdr);
69785a5ea0d4SBryan Schumaker 	if (status)
69795a5ea0d4SBryan Schumaker 		goto out;
69805a5ea0d4SBryan Schumaker 	status = decode_sequence(xdr, &res->seq_res, rqstp);
69815a5ea0d4SBryan Schumaker 	if (status)
69825a5ea0d4SBryan Schumaker 		goto out;
69835a5ea0d4SBryan Schumaker 	status = decode_putfh(xdr);
69845a5ea0d4SBryan Schumaker 	if (status)
69855a5ea0d4SBryan Schumaker 		goto out;
69865a5ea0d4SBryan Schumaker 	status = decode_secinfo(xdr, res);
69875a5ea0d4SBryan Schumaker out:
69885a5ea0d4SBryan Schumaker 	return status;
69895a5ea0d4SBryan Schumaker }
69905a5ea0d4SBryan Schumaker 
699144c99933SChuck Lever /*
699244c99933SChuck Lever  * Decode FSID_PRESENT response
699344c99933SChuck Lever  */
699444c99933SChuck Lever static int nfs4_xdr_dec_fsid_present(struct rpc_rqst *rqstp,
699544c99933SChuck Lever 				     struct xdr_stream *xdr,
699644c99933SChuck Lever 				     struct nfs4_fsid_present_res *res)
699744c99933SChuck Lever {
699844c99933SChuck Lever 	struct compound_hdr hdr;
699944c99933SChuck Lever 	int status;
700044c99933SChuck Lever 
700144c99933SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
700244c99933SChuck Lever 	if (status)
700344c99933SChuck Lever 		goto out;
700444c99933SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
700544c99933SChuck Lever 	if (status)
700644c99933SChuck Lever 		goto out;
700744c99933SChuck Lever 	status = decode_putfh(xdr);
700844c99933SChuck Lever 	if (status)
700944c99933SChuck Lever 		goto out;
701044c99933SChuck Lever 	status = decode_getfh(xdr, res->fh);
701144c99933SChuck Lever 	if (status)
701244c99933SChuck Lever 		goto out;
701344c99933SChuck Lever 	if (res->renew)
701444c99933SChuck Lever 		status = decode_renew(xdr);
701544c99933SChuck Lever out:
701644c99933SChuck Lever 	return status;
701744c99933SChuck Lever }
701844c99933SChuck Lever 
701999fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
702099fe60d0SBenny Halevy /*
70217c44f1aeSWeston Andros Adamson  * Decode BIND_CONN_TO_SESSION response
70227c44f1aeSWeston Andros Adamson  */
70237c44f1aeSWeston Andros Adamson static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
70247c44f1aeSWeston Andros Adamson 					struct xdr_stream *xdr,
70257c44f1aeSWeston Andros Adamson 					void *res)
70267c44f1aeSWeston Andros Adamson {
70277c44f1aeSWeston Andros Adamson 	struct compound_hdr hdr;
70287c44f1aeSWeston Andros Adamson 	int status;
70297c44f1aeSWeston Andros Adamson 
70307c44f1aeSWeston Andros Adamson 	status = decode_compound_hdr(xdr, &hdr);
70317c44f1aeSWeston Andros Adamson 	if (!status)
70327c44f1aeSWeston Andros Adamson 		status = decode_bind_conn_to_session(xdr, res);
70337c44f1aeSWeston Andros Adamson 	return status;
70347c44f1aeSWeston Andros Adamson }
70357c44f1aeSWeston Andros Adamson 
70367c44f1aeSWeston Andros Adamson /*
70378b173218SRicardo Labiaga  * Decode EXCHANGE_ID response
703899fe60d0SBenny Halevy  */
7039bf269551SChuck Lever static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
7040bf269551SChuck Lever 				    struct xdr_stream *xdr,
704199fe60d0SBenny Halevy 				    void *res)
704299fe60d0SBenny Halevy {
704399fe60d0SBenny Halevy 	struct compound_hdr hdr;
704499fe60d0SBenny Halevy 	int status;
704599fe60d0SBenny Halevy 
7046bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
704799fe60d0SBenny Halevy 	if (!status)
7048bf269551SChuck Lever 		status = decode_exchange_id(xdr, res);
704999fe60d0SBenny Halevy 	return status;
705099fe60d0SBenny Halevy }
70512050f0ccSAndy Adamson 
70522050f0ccSAndy Adamson /*
70538b173218SRicardo Labiaga  * Decode CREATE_SESSION response
7054fc931582SAndy Adamson  */
7055bf269551SChuck Lever static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
7056bf269551SChuck Lever 				       struct xdr_stream *xdr,
7057fc931582SAndy Adamson 				       struct nfs41_create_session_res *res)
7058fc931582SAndy Adamson {
7059fc931582SAndy Adamson 	struct compound_hdr hdr;
7060fc931582SAndy Adamson 	int status;
7061fc931582SAndy Adamson 
7062bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
7063fc931582SAndy Adamson 	if (!status)
7064bf269551SChuck Lever 		status = decode_create_session(xdr, res);
7065fc931582SAndy Adamson 	return status;
7066fc931582SAndy Adamson }
7067fc931582SAndy Adamson 
7068fc931582SAndy Adamson /*
70698b173218SRicardo Labiaga  * Decode DESTROY_SESSION response
70700f3e66c6SAndy Adamson  */
7071bf269551SChuck Lever static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
7072bf269551SChuck Lever 					struct xdr_stream *xdr,
7073bf269551SChuck Lever 					void *res)
70740f3e66c6SAndy Adamson {
70750f3e66c6SAndy Adamson 	struct compound_hdr hdr;
70760f3e66c6SAndy Adamson 	int status;
70770f3e66c6SAndy Adamson 
7078bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
70790f3e66c6SAndy Adamson 	if (!status)
7080bf269551SChuck Lever 		status = decode_destroy_session(xdr, res);
70810f3e66c6SAndy Adamson 	return status;
70820f3e66c6SAndy Adamson }
70830f3e66c6SAndy Adamson 
70840f3e66c6SAndy Adamson /*
708566245539STrond Myklebust  * Decode DESTROY_CLIENTID response
708666245539STrond Myklebust  */
708766245539STrond Myklebust static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
708866245539STrond Myklebust 					struct xdr_stream *xdr,
708966245539STrond Myklebust 					void *res)
709066245539STrond Myklebust {
709166245539STrond Myklebust 	struct compound_hdr hdr;
709266245539STrond Myklebust 	int status;
709366245539STrond Myklebust 
709466245539STrond Myklebust 	status = decode_compound_hdr(xdr, &hdr);
709566245539STrond Myklebust 	if (!status)
709666245539STrond Myklebust 		status = decode_destroy_clientid(xdr, res);
709766245539STrond Myklebust 	return status;
709866245539STrond Myklebust }
709966245539STrond Myklebust 
710066245539STrond Myklebust /*
71018b173218SRicardo Labiaga  * Decode SEQUENCE response
7102fc01cea9SAndy Adamson  */
7103bf269551SChuck Lever static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
7104bf269551SChuck Lever 				 struct xdr_stream *xdr,
7105fc01cea9SAndy Adamson 				 struct nfs4_sequence_res *res)
7106fc01cea9SAndy Adamson {
7107fc01cea9SAndy Adamson 	struct compound_hdr hdr;
7108fc01cea9SAndy Adamson 	int status;
7109fc01cea9SAndy Adamson 
7110bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
7111fc01cea9SAndy Adamson 	if (!status)
7112bf269551SChuck Lever 		status = decode_sequence(xdr, res, rqstp);
7113fc01cea9SAndy Adamson 	return status;
7114fc01cea9SAndy Adamson }
7115fc01cea9SAndy Adamson 
7116fc01cea9SAndy Adamson /*
71178b173218SRicardo Labiaga  * Decode GET_LEASE_TIME response
71182050f0ccSAndy Adamson  */
7119bf269551SChuck Lever static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
7120bf269551SChuck Lever 				       struct xdr_stream *xdr,
71212050f0ccSAndy Adamson 				       struct nfs4_get_lease_time_res *res)
71222050f0ccSAndy Adamson {
71232050f0ccSAndy Adamson 	struct compound_hdr hdr;
71242050f0ccSAndy Adamson 	int status;
71252050f0ccSAndy Adamson 
7126bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
71272050f0ccSAndy Adamson 	if (!status)
7128bf269551SChuck Lever 		status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
71292050f0ccSAndy Adamson 	if (!status)
7130bf269551SChuck Lever 		status = decode_putrootfh(xdr);
71312050f0ccSAndy Adamson 	if (!status)
7132bf269551SChuck Lever 		status = decode_fsinfo(xdr, res->lr_fsinfo);
71332050f0ccSAndy Adamson 	return status;
71342050f0ccSAndy Adamson }
713518019753SRicardo Labiaga 
713618019753SRicardo Labiaga /*
713718019753SRicardo Labiaga  * Decode RECLAIM_COMPLETE response
713818019753SRicardo Labiaga  */
7139bf269551SChuck Lever static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
7140bf269551SChuck Lever 					 struct xdr_stream *xdr,
714118019753SRicardo Labiaga 					 struct nfs41_reclaim_complete_res *res)
714218019753SRicardo Labiaga {
714318019753SRicardo Labiaga 	struct compound_hdr hdr;
714418019753SRicardo Labiaga 	int status;
714518019753SRicardo Labiaga 
7146bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
714718019753SRicardo Labiaga 	if (!status)
7148bf269551SChuck Lever 		status = decode_sequence(xdr, &res->seq_res, rqstp);
714918019753SRicardo Labiaga 	if (!status)
71508ee2b78aSHimangi Saraogi 		status = decode_reclaim_complete(xdr, NULL);
715118019753SRicardo Labiaga 	return status;
715218019753SRicardo Labiaga }
7153b1f69b75SAndy Adamson 
7154b1f69b75SAndy Adamson /*
7155b1f69b75SAndy Adamson  * Decode GETDEVINFO response
7156b1f69b75SAndy Adamson  */
7157bf269551SChuck Lever static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
7158bf269551SChuck Lever 				      struct xdr_stream *xdr,
7159b1f69b75SAndy Adamson 				      struct nfs4_getdeviceinfo_res *res)
7160b1f69b75SAndy Adamson {
7161b1f69b75SAndy Adamson 	struct compound_hdr hdr;
7162b1f69b75SAndy Adamson 	int status;
7163b1f69b75SAndy Adamson 
7164bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
7165b1f69b75SAndy Adamson 	if (status != 0)
7166b1f69b75SAndy Adamson 		goto out;
7167bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
7168b1f69b75SAndy Adamson 	if (status != 0)
7169b1f69b75SAndy Adamson 		goto out;
71704e590803STrond Myklebust 	status = decode_getdeviceinfo(xdr, res);
7171b1f69b75SAndy Adamson out:
7172b1f69b75SAndy Adamson 	return status;
7173b1f69b75SAndy Adamson }
7174b1f69b75SAndy Adamson 
7175b1f69b75SAndy Adamson /*
7176b1f69b75SAndy Adamson  * Decode LAYOUTGET response
7177b1f69b75SAndy Adamson  */
7178bf269551SChuck Lever static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
7179bf269551SChuck Lever 				  struct xdr_stream *xdr,
7180b1f69b75SAndy Adamson 				  struct nfs4_layoutget_res *res)
7181b1f69b75SAndy Adamson {
7182b1f69b75SAndy Adamson 	struct compound_hdr hdr;
7183b1f69b75SAndy Adamson 	int status;
7184b1f69b75SAndy Adamson 
7185bf269551SChuck Lever 	status = decode_compound_hdr(xdr, &hdr);
7186b1f69b75SAndy Adamson 	if (status)
7187b1f69b75SAndy Adamson 		goto out;
7188bf269551SChuck Lever 	status = decode_sequence(xdr, &res->seq_res, rqstp);
7189b1f69b75SAndy Adamson 	if (status)
7190b1f69b75SAndy Adamson 		goto out;
7191bf269551SChuck Lever 	status = decode_putfh(xdr);
7192b1f69b75SAndy Adamson 	if (status)
7193b1f69b75SAndy Adamson 		goto out;
7194bf269551SChuck Lever 	status = decode_layoutget(xdr, rqstp, res);
7195b1f69b75SAndy Adamson out:
7196b1f69b75SAndy Adamson 	return status;
7197b1f69b75SAndy Adamson }
7198863a3c6cSAndy Adamson 
7199863a3c6cSAndy Adamson /*
7200cbe82603SBenny Halevy  * Decode LAYOUTRETURN response
7201cbe82603SBenny Halevy  */
7202cbe82603SBenny Halevy static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
7203cbe82603SBenny Halevy 				     struct xdr_stream *xdr,
7204cbe82603SBenny Halevy 				     struct nfs4_layoutreturn_res *res)
7205cbe82603SBenny Halevy {
7206cbe82603SBenny Halevy 	struct compound_hdr hdr;
7207cbe82603SBenny Halevy 	int status;
7208cbe82603SBenny Halevy 
7209cbe82603SBenny Halevy 	status = decode_compound_hdr(xdr, &hdr);
7210cbe82603SBenny Halevy 	if (status)
7211cbe82603SBenny Halevy 		goto out;
7212cbe82603SBenny Halevy 	status = decode_sequence(xdr, &res->seq_res, rqstp);
7213cbe82603SBenny Halevy 	if (status)
7214cbe82603SBenny Halevy 		goto out;
7215cbe82603SBenny Halevy 	status = decode_putfh(xdr);
7216cbe82603SBenny Halevy 	if (status)
7217cbe82603SBenny Halevy 		goto out;
7218cbe82603SBenny Halevy 	status = decode_layoutreturn(xdr, res);
7219cbe82603SBenny Halevy out:
7220cbe82603SBenny Halevy 	return status;
7221cbe82603SBenny Halevy }
7222cbe82603SBenny Halevy 
7223cbe82603SBenny Halevy /*
7224863a3c6cSAndy Adamson  * Decode LAYOUTCOMMIT response
7225863a3c6cSAndy Adamson  */
7226863a3c6cSAndy Adamson static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
7227863a3c6cSAndy Adamson 				     struct xdr_stream *xdr,
7228863a3c6cSAndy Adamson 				     struct nfs4_layoutcommit_res *res)
7229863a3c6cSAndy Adamson {
7230863a3c6cSAndy Adamson 	struct compound_hdr hdr;
7231863a3c6cSAndy Adamson 	int status;
7232863a3c6cSAndy Adamson 
7233863a3c6cSAndy Adamson 	status = decode_compound_hdr(xdr, &hdr);
7234863a3c6cSAndy Adamson 	if (status)
7235863a3c6cSAndy Adamson 		goto out;
7236863a3c6cSAndy Adamson 	status = decode_sequence(xdr, &res->seq_res, rqstp);
7237863a3c6cSAndy Adamson 	if (status)
7238863a3c6cSAndy Adamson 		goto out;
7239863a3c6cSAndy Adamson 	status = decode_putfh(xdr);
7240863a3c6cSAndy Adamson 	if (status)
7241863a3c6cSAndy Adamson 		goto out;
7242863a3c6cSAndy Adamson 	status = decode_layoutcommit(xdr, rqstp, res);
7243863a3c6cSAndy Adamson 	if (status)
7244863a3c6cSAndy Adamson 		goto out;
72456926afd1STrond Myklebust 	decode_getfattr(xdr, res->fattr, res->server);
7246863a3c6cSAndy Adamson out:
7247863a3c6cSAndy Adamson 	return status;
7248863a3c6cSAndy Adamson }
7249fca78d6dSBryan Schumaker 
7250fca78d6dSBryan Schumaker /*
7251fca78d6dSBryan Schumaker  * Decode SECINFO_NO_NAME response
7252fca78d6dSBryan Schumaker  */
7253fca78d6dSBryan Schumaker static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7254fca78d6dSBryan Schumaker 					struct xdr_stream *xdr,
7255fca78d6dSBryan Schumaker 					struct nfs4_secinfo_res *res)
7256fca78d6dSBryan Schumaker {
7257fca78d6dSBryan Schumaker 	struct compound_hdr hdr;
7258fca78d6dSBryan Schumaker 	int status;
7259fca78d6dSBryan Schumaker 
7260fca78d6dSBryan Schumaker 	status = decode_compound_hdr(xdr, &hdr);
7261fca78d6dSBryan Schumaker 	if (status)
7262fca78d6dSBryan Schumaker 		goto out;
7263fca78d6dSBryan Schumaker 	status = decode_sequence(xdr, &res->seq_res, rqstp);
7264fca78d6dSBryan Schumaker 	if (status)
7265fca78d6dSBryan Schumaker 		goto out;
7266fca78d6dSBryan Schumaker 	status = decode_putrootfh(xdr);
7267fca78d6dSBryan Schumaker 	if (status)
7268fca78d6dSBryan Schumaker 		goto out;
726931e4dda4SBryan Schumaker 	status = decode_secinfo_no_name(xdr, res);
7270fca78d6dSBryan Schumaker out:
7271fca78d6dSBryan Schumaker 	return status;
7272fca78d6dSBryan Schumaker }
72737d974794SBryan Schumaker 
72747d974794SBryan Schumaker /*
72757d974794SBryan Schumaker  * Decode TEST_STATEID response
72767d974794SBryan Schumaker  */
72777d974794SBryan Schumaker static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
72787d974794SBryan Schumaker 				     struct xdr_stream *xdr,
72797d974794SBryan Schumaker 				     struct nfs41_test_stateid_res *res)
72807d974794SBryan Schumaker {
72817d974794SBryan Schumaker 	struct compound_hdr hdr;
72827d974794SBryan Schumaker 	int status;
72837d974794SBryan Schumaker 
72847d974794SBryan Schumaker 	status = decode_compound_hdr(xdr, &hdr);
72857d974794SBryan Schumaker 	if (status)
72867d974794SBryan Schumaker 		goto out;
72877d974794SBryan Schumaker 	status = decode_sequence(xdr, &res->seq_res, rqstp);
72887d974794SBryan Schumaker 	if (status)
72897d974794SBryan Schumaker 		goto out;
72907d974794SBryan Schumaker 	status = decode_test_stateid(xdr, res);
72917d974794SBryan Schumaker out:
72927d974794SBryan Schumaker 	return status;
72937d974794SBryan Schumaker }
72949aeda35fSBryan Schumaker 
72959aeda35fSBryan Schumaker /*
72969aeda35fSBryan Schumaker  * Decode FREE_STATEID response
72979aeda35fSBryan Schumaker  */
72989aeda35fSBryan Schumaker static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
72999aeda35fSBryan Schumaker 				     struct xdr_stream *xdr,
73009aeda35fSBryan Schumaker 				     struct nfs41_free_stateid_res *res)
73019aeda35fSBryan Schumaker {
73029aeda35fSBryan Schumaker 	struct compound_hdr hdr;
73039aeda35fSBryan Schumaker 	int status;
73049aeda35fSBryan Schumaker 
73059aeda35fSBryan Schumaker 	status = decode_compound_hdr(xdr, &hdr);
73069aeda35fSBryan Schumaker 	if (status)
73079aeda35fSBryan Schumaker 		goto out;
73089aeda35fSBryan Schumaker 	status = decode_sequence(xdr, &res->seq_res, rqstp);
73099aeda35fSBryan Schumaker 	if (status)
73109aeda35fSBryan Schumaker 		goto out;
73119aeda35fSBryan Schumaker 	status = decode_free_stateid(xdr, res);
73129aeda35fSBryan Schumaker out:
73139aeda35fSBryan Schumaker 	return status;
73149aeda35fSBryan Schumaker }
731599fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
731699fe60d0SBenny Halevy 
7317573c4e1eSChuck Lever /**
7318573c4e1eSChuck Lever  * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7319573c4e1eSChuck Lever  *                      the local page cache.
7320573c4e1eSChuck Lever  * @xdr: XDR stream where entry resides
7321573c4e1eSChuck Lever  * @entry: buffer to fill in with entry data
7322573c4e1eSChuck Lever  * @plus: boolean indicating whether this should be a readdirplus entry
7323573c4e1eSChuck Lever  *
7324573c4e1eSChuck Lever  * Returns zero if successful, otherwise a negative errno value is
7325573c4e1eSChuck Lever  * returned.
7326573c4e1eSChuck Lever  *
7327573c4e1eSChuck Lever  * This function is not invoked during READDIR reply decoding, but
7328573c4e1eSChuck Lever  * rather whenever an application invokes the getdents(2) system call
7329573c4e1eSChuck Lever  * on a directory already in our cache.
7330573c4e1eSChuck Lever  */
7331573c4e1eSChuck Lever int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7332573c4e1eSChuck Lever 		       int plus)
73331da177e4SLinus Torvalds {
7334256e48bbSTrond Myklebust 	unsigned int savep;
7335dae100c2SFred Isaman 	uint32_t bitmap[3] = {0};
73361da177e4SLinus Torvalds 	uint32_t len;
7337babddc72SBryan Schumaker 	__be32 *p = xdr_inline_decode(xdr, 4);
7338babddc72SBryan Schumaker 	if (unlikely(!p))
7339babddc72SBryan Schumaker 		goto out_overflow;
7340c08e76d0SChuck Lever 	if (*p == xdr_zero) {
7341babddc72SBryan Schumaker 		p = xdr_inline_decode(xdr, 4);
7342babddc72SBryan Schumaker 		if (unlikely(!p))
7343babddc72SBryan Schumaker 			goto out_overflow;
7344c08e76d0SChuck Lever 		if (*p == xdr_zero)
7345573c4e1eSChuck Lever 			return -EAGAIN;
73461da177e4SLinus Torvalds 		entry->eof = 1;
7347573c4e1eSChuck Lever 		return -EBADCOOKIE;
73481da177e4SLinus Torvalds 	}
73491da177e4SLinus Torvalds 
7350babddc72SBryan Schumaker 	p = xdr_inline_decode(xdr, 12);
7351babddc72SBryan Schumaker 	if (unlikely(!p))
7352babddc72SBryan Schumaker 		goto out_overflow;
73531da177e4SLinus Torvalds 	entry->prev_cookie = entry->cookie;
73541da177e4SLinus Torvalds 	p = xdr_decode_hyper(p, &entry->cookie);
7355c08e76d0SChuck Lever 	entry->len = be32_to_cpup(p);
7356babddc72SBryan Schumaker 
73579af8c222STrond Myklebust 	p = xdr_inline_decode(xdr, entry->len);
7358babddc72SBryan Schumaker 	if (unlikely(!p))
7359babddc72SBryan Schumaker 		goto out_overflow;
73601da177e4SLinus Torvalds 	entry->name = (const char *) p;
73611da177e4SLinus Torvalds 
73621da177e4SLinus Torvalds 	/*
73631da177e4SLinus Torvalds 	 * In case the server doesn't return an inode number,
73641da177e4SLinus Torvalds 	 * we fake one here.  (We don't use inode number 0,
73651da177e4SLinus Torvalds 	 * since glibc seems to choke on it...)
73661da177e4SLinus Torvalds 	 */
73671da177e4SLinus Torvalds 	entry->ino = 1;
73684f082222STrond Myklebust 	entry->fattr->valid = 0;
73691da177e4SLinus Torvalds 
73709af8c222STrond Myklebust 	if (decode_attr_bitmap(xdr, bitmap) < 0)
7371babddc72SBryan Schumaker 		goto out_overflow;
73729af8c222STrond Myklebust 
7373256e48bbSTrond Myklebust 	if (decode_attr_length(xdr, &len, &savep) < 0)
7374babddc72SBryan Schumaker 		goto out_overflow;
73759af8c222STrond Myklebust 
7376573c4e1eSChuck Lever 	if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
7377aa9c2669SDavid Quigley 			NULL, entry->label, entry->server) < 0)
7378babddc72SBryan Schumaker 		goto out_overflow;
737928331a46STrond Myklebust 	if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
738028331a46STrond Myklebust 		entry->ino = entry->fattr->mounted_on_fileid;
738128331a46STrond Myklebust 	else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
738282f2e547SBryan Schumaker 		entry->ino = entry->fattr->fileid;
73839af8c222STrond Myklebust 
73840b26a0bfSTrond Myklebust 	entry->d_type = DT_UNKNOWN;
73850b26a0bfSTrond Myklebust 	if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
73860b26a0bfSTrond Myklebust 		entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
73870b26a0bfSTrond Myklebust 
7388573c4e1eSChuck Lever 	return 0;
7389babddc72SBryan Schumaker 
7390babddc72SBryan Schumaker out_overflow:
7391babddc72SBryan Schumaker 	print_overflow_msg(__func__, xdr);
7392573c4e1eSChuck Lever 	return -EAGAIN;
73931da177e4SLinus Torvalds }
73941da177e4SLinus Torvalds 
73951da177e4SLinus Torvalds /*
73961da177e4SLinus Torvalds  * We need to translate between nfs status return values and
73971da177e4SLinus Torvalds  * the local errno values which may not be the same.
73981da177e4SLinus Torvalds  */
73991da177e4SLinus Torvalds static struct {
74001da177e4SLinus Torvalds 	int stat;
74011da177e4SLinus Torvalds 	int errno;
74021da177e4SLinus Torvalds } nfs_errtbl[] = {
74031da177e4SLinus Torvalds 	{ NFS4_OK,		0		},
7404856dff3dSBenny Halevy 	{ NFS4ERR_PERM,		-EPERM		},
7405856dff3dSBenny Halevy 	{ NFS4ERR_NOENT,	-ENOENT		},
7406856dff3dSBenny Halevy 	{ NFS4ERR_IO,		-errno_NFSERR_IO},
7407856dff3dSBenny Halevy 	{ NFS4ERR_NXIO,		-ENXIO		},
7408856dff3dSBenny Halevy 	{ NFS4ERR_ACCESS,	-EACCES		},
7409856dff3dSBenny Halevy 	{ NFS4ERR_EXIST,	-EEXIST		},
7410856dff3dSBenny Halevy 	{ NFS4ERR_XDEV,		-EXDEV		},
7411856dff3dSBenny Halevy 	{ NFS4ERR_NOTDIR,	-ENOTDIR	},
7412856dff3dSBenny Halevy 	{ NFS4ERR_ISDIR,	-EISDIR		},
7413856dff3dSBenny Halevy 	{ NFS4ERR_INVAL,	-EINVAL		},
7414856dff3dSBenny Halevy 	{ NFS4ERR_FBIG,		-EFBIG		},
7415856dff3dSBenny Halevy 	{ NFS4ERR_NOSPC,	-ENOSPC		},
7416856dff3dSBenny Halevy 	{ NFS4ERR_ROFS,		-EROFS		},
7417856dff3dSBenny Halevy 	{ NFS4ERR_MLINK,	-EMLINK		},
7418856dff3dSBenny Halevy 	{ NFS4ERR_NAMETOOLONG,	-ENAMETOOLONG	},
7419856dff3dSBenny Halevy 	{ NFS4ERR_NOTEMPTY,	-ENOTEMPTY	},
7420856dff3dSBenny Halevy 	{ NFS4ERR_DQUOT,	-EDQUOT		},
7421856dff3dSBenny Halevy 	{ NFS4ERR_STALE,	-ESTALE		},
7422856dff3dSBenny Halevy 	{ NFS4ERR_BADHANDLE,	-EBADHANDLE	},
7423856dff3dSBenny Halevy 	{ NFS4ERR_BAD_COOKIE,	-EBADCOOKIE	},
7424856dff3dSBenny Halevy 	{ NFS4ERR_NOTSUPP,	-ENOTSUPP	},
7425856dff3dSBenny Halevy 	{ NFS4ERR_TOOSMALL,	-ETOOSMALL	},
7426fdcb4577STrond Myklebust 	{ NFS4ERR_SERVERFAULT,	-EREMOTEIO	},
7427856dff3dSBenny Halevy 	{ NFS4ERR_BADTYPE,	-EBADTYPE	},
7428856dff3dSBenny Halevy 	{ NFS4ERR_LOCKED,	-EAGAIN		},
7429856dff3dSBenny Halevy 	{ NFS4ERR_SYMLINK,	-ELOOP		},
7430856dff3dSBenny Halevy 	{ NFS4ERR_OP_ILLEGAL,	-EOPNOTSUPP	},
7431856dff3dSBenny Halevy 	{ NFS4ERR_DEADLOCK,	-EDEADLK	},
7432856dff3dSBenny Halevy 	{ -1,			-EIO		}
74331da177e4SLinus Torvalds };
74341da177e4SLinus Torvalds 
74351da177e4SLinus Torvalds /*
74361da177e4SLinus Torvalds  * Convert an NFS error code to a local one.
74371da177e4SLinus Torvalds  * This one is used jointly by NFSv2 and NFSv3.
74381da177e4SLinus Torvalds  */
74391da177e4SLinus Torvalds static int
74400a8ea437SDavid Howells nfs4_stat_to_errno(int stat)
74411da177e4SLinus Torvalds {
74421da177e4SLinus Torvalds 	int i;
74431da177e4SLinus Torvalds 	for (i = 0; nfs_errtbl[i].stat != -1; i++) {
74441da177e4SLinus Torvalds 		if (nfs_errtbl[i].stat == stat)
74451da177e4SLinus Torvalds 			return nfs_errtbl[i].errno;
74461da177e4SLinus Torvalds 	}
74471da177e4SLinus Torvalds 	if (stat <= 10000 || stat > 10100) {
74481da177e4SLinus Torvalds 		/* The server is looney tunes. */
7449fdcb4577STrond Myklebust 		return -EREMOTEIO;
74501da177e4SLinus Torvalds 	}
74511da177e4SLinus Torvalds 	/* If we cannot translate the error, the recovery routines should
74521da177e4SLinus Torvalds 	 * handle it.
74531da177e4SLinus Torvalds 	 * Note: remaining NFSv4 error codes have values > 10000, so should
74541da177e4SLinus Torvalds 	 * not conflict with native Linux error codes.
74551da177e4SLinus Torvalds 	 */
7456856dff3dSBenny Halevy 	return -stat;
74571da177e4SLinus Torvalds }
74581da177e4SLinus Torvalds 
74591c6dcbe5SAnna Schumaker #ifdef CONFIG_NFS_V4_2
74601c6dcbe5SAnna Schumaker #include "nfs42xdr.c"
74611c6dcbe5SAnna Schumaker #endif /* CONFIG_NFS_V4_2 */
74621c6dcbe5SAnna Schumaker 
74631da177e4SLinus Torvalds #define PROC(proc, argtype, restype)				\
74641da177e4SLinus Torvalds [NFSPROC4_CLNT_##proc] = {					\
74651da177e4SLinus Torvalds 	.p_proc   = NFSPROC4_COMPOUND,				\
74669f06c719SChuck Lever 	.p_encode = (kxdreproc_t)nfs4_xdr_##argtype,		\
7467bf269551SChuck Lever 	.p_decode = (kxdrdproc_t)nfs4_xdr_##restype,		\
74682bea90d4SChuck Lever 	.p_arglen = NFS4_##argtype##_sz,			\
74692bea90d4SChuck Lever 	.p_replen = NFS4_##restype##_sz,			\
7470cc0175c1SChuck Lever 	.p_statidx = NFSPROC4_CLNT_##proc,			\
7471cc0175c1SChuck Lever 	.p_name   = #proc,					\
74721da177e4SLinus Torvalds }
74731da177e4SLinus Torvalds 
74747c61f0d3SAnna Schumaker #define STUB(proc)		\
74757c61f0d3SAnna Schumaker [NFSPROC4_CLNT_##proc] = {	\
74767c61f0d3SAnna Schumaker 	.p_name = #proc,	\
74777c61f0d3SAnna Schumaker }
74787c61f0d3SAnna Schumaker 
74791da177e4SLinus Torvalds struct rpc_procinfo	nfs4_procedures[] = {
74801da177e4SLinus Torvalds 	PROC(READ,		enc_read,		dec_read),
74811da177e4SLinus Torvalds 	PROC(WRITE,		enc_write,		dec_write),
74821da177e4SLinus Torvalds 	PROC(COMMIT,		enc_commit,		dec_commit),
74831da177e4SLinus Torvalds 	PROC(OPEN,		enc_open,		dec_open),
74841da177e4SLinus Torvalds 	PROC(OPEN_CONFIRM,	enc_open_confirm,	dec_open_confirm),
74851da177e4SLinus Torvalds 	PROC(OPEN_NOATTR,	enc_open_noattr,	dec_open_noattr),
74861da177e4SLinus Torvalds 	PROC(OPEN_DOWNGRADE,	enc_open_downgrade,	dec_open_downgrade),
74871da177e4SLinus Torvalds 	PROC(CLOSE,		enc_close,		dec_close),
74881da177e4SLinus Torvalds 	PROC(SETATTR,		enc_setattr,		dec_setattr),
74891da177e4SLinus Torvalds 	PROC(FSINFO,		enc_fsinfo,		dec_fsinfo),
74901da177e4SLinus Torvalds 	PROC(RENEW,		enc_renew,		dec_renew),
74911da177e4SLinus Torvalds 	PROC(SETCLIENTID,	enc_setclientid,	dec_setclientid),
74921da177e4SLinus Torvalds 	PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
74931da177e4SLinus Torvalds 	PROC(LOCK,		enc_lock,		dec_lock),
74941da177e4SLinus Torvalds 	PROC(LOCKT,		enc_lockt,		dec_lockt),
74951da177e4SLinus Torvalds 	PROC(LOCKU,		enc_locku,		dec_locku),
74961da177e4SLinus Torvalds 	PROC(ACCESS,		enc_access,		dec_access),
74971da177e4SLinus Torvalds 	PROC(GETATTR,		enc_getattr,		dec_getattr),
74981da177e4SLinus Torvalds 	PROC(LOOKUP,		enc_lookup,		dec_lookup),
74991da177e4SLinus Torvalds 	PROC(LOOKUP_ROOT,	enc_lookup_root,	dec_lookup_root),
75001da177e4SLinus Torvalds 	PROC(REMOVE,		enc_remove,		dec_remove),
75011da177e4SLinus Torvalds 	PROC(RENAME,		enc_rename,		dec_rename),
75021da177e4SLinus Torvalds 	PROC(LINK,		enc_link,		dec_link),
75031da177e4SLinus Torvalds 	PROC(SYMLINK,		enc_symlink,		dec_symlink),
75041da177e4SLinus Torvalds 	PROC(CREATE,		enc_create,		dec_create),
75051da177e4SLinus Torvalds 	PROC(PATHCONF,		enc_pathconf,		dec_pathconf),
75061da177e4SLinus Torvalds 	PROC(STATFS,		enc_statfs,		dec_statfs),
75071da177e4SLinus Torvalds 	PROC(READLINK,		enc_readlink,		dec_readlink),
75081da177e4SLinus Torvalds 	PROC(READDIR,		enc_readdir,		dec_readdir),
75091da177e4SLinus Torvalds 	PROC(SERVER_CAPS,	enc_server_caps,	dec_server_caps),
75101da177e4SLinus Torvalds 	PROC(DELEGRETURN,	enc_delegreturn,	dec_delegreturn),
7511029d105eSJ. Bruce Fields 	PROC(GETACL,		enc_getacl,		dec_getacl),
751223ec6965SJ. Bruce Fields 	PROC(SETACL,		enc_setacl,		dec_setacl),
7513683b57b4STrond Myklebust 	PROC(FS_LOCATIONS,	enc_fs_locations,	dec_fs_locations),
7514d3c7b7ccSTrond Myklebust 	PROC(RELEASE_LOCKOWNER,	enc_release_lockowner,	dec_release_lockowner),
75155a5ea0d4SBryan Schumaker 	PROC(SECINFO,		enc_secinfo,		dec_secinfo),
751644c99933SChuck Lever 	PROC(FSID_PRESENT,	enc_fsid_present,	dec_fsid_present),
751799fe60d0SBenny Halevy #if defined(CONFIG_NFS_V4_1)
751899fe60d0SBenny Halevy 	PROC(EXCHANGE_ID,	enc_exchange_id,	dec_exchange_id),
7519fc931582SAndy Adamson 	PROC(CREATE_SESSION,	enc_create_session,	dec_create_session),
75200f3e66c6SAndy Adamson 	PROC(DESTROY_SESSION,	enc_destroy_session,	dec_destroy_session),
7521fc01cea9SAndy Adamson 	PROC(SEQUENCE,		enc_sequence,		dec_sequence),
75222050f0ccSAndy Adamson 	PROC(GET_LEASE_TIME,	enc_get_lease_time,	dec_get_lease_time),
752318019753SRicardo Labiaga 	PROC(RECLAIM_COMPLETE,	enc_reclaim_complete,	dec_reclaim_complete),
7524b1f69b75SAndy Adamson 	PROC(GETDEVICEINFO,	enc_getdeviceinfo,	dec_getdeviceinfo),
7525b1f69b75SAndy Adamson 	PROC(LAYOUTGET,		enc_layoutget,		dec_layoutget),
7526863a3c6cSAndy Adamson 	PROC(LAYOUTCOMMIT,	enc_layoutcommit,	dec_layoutcommit),
7527cbe82603SBenny Halevy 	PROC(LAYOUTRETURN,	enc_layoutreturn,	dec_layoutreturn),
7528fca78d6dSBryan Schumaker 	PROC(SECINFO_NO_NAME,	enc_secinfo_no_name,	dec_secinfo_no_name),
75297d974794SBryan Schumaker 	PROC(TEST_STATEID,	enc_test_stateid,	dec_test_stateid),
75309aeda35fSBryan Schumaker 	PROC(FREE_STATEID,	enc_free_stateid,	dec_free_stateid),
75317c61f0d3SAnna Schumaker 	STUB(GETDEVICELIST),
7532ad24ecfbSTrond Myklebust 	PROC(BIND_CONN_TO_SESSION,
7533ad24ecfbSTrond Myklebust 			enc_bind_conn_to_session, dec_bind_conn_to_session),
753466245539STrond Myklebust 	PROC(DESTROY_CLIENTID,	enc_destroy_clientid,	dec_destroy_clientid),
753599fe60d0SBenny Halevy #endif /* CONFIG_NFS_V4_1 */
75361c6dcbe5SAnna Schumaker #ifdef CONFIG_NFS_V4_2
75371c6dcbe5SAnna Schumaker 	PROC(SEEK,		enc_seek,		dec_seek),
7538f4ac1674SAnna Schumaker 	PROC(ALLOCATE,		enc_allocate,		dec_allocate),
7539624bd5b7SAnna Schumaker 	PROC(DEALLOCATE,	enc_deallocate,		dec_deallocate),
7540be3a5d23STrond Myklebust 	PROC(LAYOUTSTATS,	enc_layoutstats,	dec_layoutstats),
754136022770SPeng Tao 	PROC(CLONE,		enc_clone,		dec_clone),
75422e72448bSAnna Schumaker 	PROC(COPY,		enc_copy,		dec_copy),
75431c6dcbe5SAnna Schumaker #endif /* CONFIG_NFS_V4_2 */
75441da177e4SLinus Torvalds };
75451da177e4SLinus Torvalds 
7546a613fa16STrond Myklebust const struct rpc_version nfs_version4 = {
75471da177e4SLinus Torvalds 	.number			= 4,
7548e8c96f8cSTobias Klauser 	.nrprocs		= ARRAY_SIZE(nfs4_procedures),
75491da177e4SLinus Torvalds 	.procs			= nfs4_procedures
75501da177e4SLinus Torvalds };
75511da177e4SLinus Torvalds 
75521da177e4SLinus Torvalds /*
75531da177e4SLinus Torvalds  * Local variables:
75541da177e4SLinus Torvalds  *  c-basic-offset: 8
75551da177e4SLinus Torvalds  * End:
75561da177e4SLinus Torvalds  */
7557