blob: 142aacb924590320adaca695b2152c9585195222 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4xdr.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
Andy Adamson6c0195a2008-12-23 16:06:15 -050011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/param.h>
39#include <linux/time.h>
40#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/in.h>
44#include <linux/pagemap.h>
45#include <linux/proc_fs.h>
46#include <linux/kdev_t.h>
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -050047#include <linux/module.h>
48#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/sunrpc/clnt.h>
Alexandros Batsakis2449ea22009-12-05 13:36:55 -050050#include <linux/sunrpc/msg_prot.h>
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +000051#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/nfs.h>
53#include <linux/nfs4.h>
54#include <linux/nfs_fs.h>
55#include <linux/nfs_idmap.h>
Chuck Leverf0920752012-05-21 22:45:41 -040056
Trond Myklebust4ce79712005-06-22 17:16:21 +000057#include "nfs4_fs.h"
Alexandros Batsakis4882ef72009-12-05 13:30:21 -050058#include "internal.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040059#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040060#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define NFSDBG_FACILITY NFSDBG_XDR
63
64/* Mapping from NFS error code to "errno" error code. */
65#define errno_NFSERR_IO EIO
66
David Howells0a8ea432006-08-22 20:06:08 -040067static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
70#ifdef DEBUG
71#define NFS4_MAXTAGLEN 20
72#else
73#define NFS4_MAXTAGLEN 0
74#endif
75
Andy Adamson6c0195a2008-12-23 16:06:15 -050076/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040077 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Trond Myklebust95b72eb2012-04-20 19:24:51 -040079#define open_owner_id_maxsz (1 + 2 + 1 + 1 + 2)
Trond Myklebustd035c362010-12-21 10:45:27 -050080#define lock_owner_id_maxsz (1 + 1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040081#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
83#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
84#define op_encode_hdr_maxsz (1)
85#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040086#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
87#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
88#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
89#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
91 (NFS4_FHSIZE >> 2))
92#define decode_putfh_maxsz (op_decode_hdr_maxsz)
93#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
94#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
95#define encode_getfh_maxsz (op_encode_hdr_maxsz)
96#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
97 ((3+NFS4_FHSIZE) >> 2))
Andy Adamsone5012d12011-07-11 17:17:42 -040098#define nfs4_fattr_bitmap_maxsz 4
J. Bruce Fields96928202005-06-22 17:16:22 +000099#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
101#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400102#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
103#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Andy Adamson88034c32012-05-23 05:02:34 -0400104/* We support only one layout type per file system */
105#define decode_mdsthreshold_maxsz (1 + 1 + nfs4_fattr_bitmap_maxsz + 1 + 8)
J. Bruce Fields96928202005-06-22 17:16:22 +0000106/* This is based on getfattr, which uses the most attributes: */
107#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Andy Adamson88034c32012-05-23 05:02:34 -0400108 3 + 3 + 3 + nfs4_owner_maxsz + \
109 nfs4_group_maxsz + decode_mdsthreshold_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000110#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
111 nfs4_fattr_value_maxsz)
112#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400113#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
114 1 + 2 + 1 + \
115 nfs4_owner_maxsz + \
116 nfs4_group_maxsz + \
117 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define encode_savefh_maxsz (op_encode_hdr_maxsz)
119#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400120#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
121#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200122#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Fred Isamandae100c2011-07-30 20:52:37 -0400123/* The 5 accounts for the PNFS attributes, and assumes that at most three
124 * layout types will be returned.
125 */
126#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
127 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
129#define decode_renew_maxsz (op_decode_hdr_maxsz)
130#define encode_setclientid_maxsz \
131 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500132 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
133 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
134 1 /* sc_prog */ + \
135 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
136 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
137 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define decode_setclientid_maxsz \
139 (op_decode_hdr_maxsz + \
140 2 + \
141 1024) /* large value for CLID_INUSE */
142#define encode_setclientid_confirm_maxsz \
143 (op_encode_hdr_maxsz + \
144 3 + (NFS4_VERIFIER_SIZE >> 2))
145#define decode_setclientid_confirm_maxsz \
146 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400147#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
148#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400149#define encode_share_access_maxsz \
150 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500151#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400152#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
153#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
154#define encode_open_maxsz (op_encode_hdr_maxsz + \
155 2 + encode_share_access_maxsz + 2 + \
156 open_owner_id_maxsz + \
157 encode_opentype_maxsz + \
158 encode_claim_null_maxsz)
159#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400160#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400161 decode_ace_maxsz)
162#define decode_change_info_maxsz (5)
163#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400164 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400165 decode_change_info_maxsz + 1 + \
166 nfs4_fattr_bitmap_maxsz + \
167 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400168#define encode_open_confirm_maxsz \
169 (op_encode_hdr_maxsz + \
170 encode_stateid_maxsz + 1)
171#define decode_open_confirm_maxsz \
172 (op_decode_hdr_maxsz + \
173 decode_stateid_maxsz)
174#define encode_open_downgrade_maxsz \
175 (op_encode_hdr_maxsz + \
176 encode_stateid_maxsz + 1 + \
177 encode_share_access_maxsz)
178#define decode_open_downgrade_maxsz \
179 (op_decode_hdr_maxsz + \
180 decode_stateid_maxsz)
181#define encode_close_maxsz (op_encode_hdr_maxsz + \
182 1 + encode_stateid_maxsz)
183#define decode_close_maxsz (op_decode_hdr_maxsz + \
184 decode_stateid_maxsz)
185#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
186 encode_stateid_maxsz + \
187 encode_attrs_maxsz)
188#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
189 nfs4_fattr_bitmap_maxsz)
190#define encode_read_maxsz (op_encode_hdr_maxsz + \
191 encode_stateid_maxsz + 3)
192#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
193#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
194 2 + encode_verifier_maxsz + 5)
195#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
196 decode_verifier_maxsz)
197#define encode_readlink_maxsz (op_encode_hdr_maxsz)
198#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
199#define encode_write_maxsz (op_encode_hdr_maxsz + \
200 encode_stateid_maxsz + 4)
201#define decode_write_maxsz (op_decode_hdr_maxsz + \
202 2 + decode_verifier_maxsz)
203#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
204#define decode_commit_maxsz (op_decode_hdr_maxsz + \
205 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define encode_remove_maxsz (op_encode_hdr_maxsz + \
207 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400208#define decode_remove_maxsz (op_decode_hdr_maxsz + \
209 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define encode_rename_maxsz (op_encode_hdr_maxsz + \
211 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400212#define decode_rename_maxsz (op_decode_hdr_maxsz + \
213 decode_change_info_maxsz + \
214 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#define encode_link_maxsz (op_encode_hdr_maxsz + \
216 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400217#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400218#define encode_lockowner_maxsz (7)
Trond Myklebust9104a552007-07-17 21:52:42 -0400219#define encode_lock_maxsz (op_encode_hdr_maxsz + \
220 7 + \
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400221 1 + encode_stateid_maxsz + 1 + \
222 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400223#define decode_lock_denied_maxsz \
224 (8 + decode_lockowner_maxsz)
225#define decode_lock_maxsz (op_decode_hdr_maxsz + \
226 decode_lock_denied_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400227#define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
228 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400229#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
230 decode_lock_denied_maxsz)
231#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
232 encode_stateid_maxsz + \
233 4)
234#define decode_locku_maxsz (op_decode_hdr_maxsz + \
235 decode_stateid_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400236#define encode_release_lockowner_maxsz \
237 (op_encode_hdr_maxsz + \
238 encode_lockowner_maxsz)
239#define decode_release_lockowner_maxsz \
240 (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400241#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
242#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
244 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400245 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000246 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
248#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400249 1 + 2 + nfs4_name_maxsz + \
250 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400251#define decode_create_maxsz (op_decode_hdr_maxsz + \
252 decode_change_info_maxsz + \
253 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400254#define encode_statfs_maxsz (encode_getattr_maxsz)
255#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
257#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400258#define encode_getacl_maxsz (encode_getattr_maxsz)
259#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
260 nfs4_fattr_bitmap_maxsz + 1)
261#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
262 encode_stateid_maxsz + 3)
263#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400264#define encode_fs_locations_maxsz \
265 (encode_getattr_maxsz)
266#define decode_fs_locations_maxsz \
267 (0)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000268#define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
Bryan Schumaker1650add2011-06-02 15:07:35 -0400269#define decode_secinfo_maxsz (op_decode_hdr_maxsz + 1 + ((NFS_MAX_SECFLAVORS * (16 + GSS_OID_MAX_LEN)) / 4))
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400270
271#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400272#define NFS4_MAX_MACHINE_NAME_LEN (64)
Jim Reesd751f742012-11-16 18:12:06 -0500273#define IMPL_NAME_LIMIT (sizeof(utsname()->sysname) + sizeof(utsname()->release) + \
274 sizeof(utsname()->version) + sizeof(utsname()->machine) + 8)
Andy Adamsonfc931582009-04-01 09:22:31 -0400275
Benny Halevy99fe60d2009-04-01 09:22:29 -0400276#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
277 encode_verifier_maxsz + \
278 1 /* co_ownerid.len */ + \
279 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
280 1 /* flags */ + \
281 1 /* spa_how */ + \
282 0 /* SP4_NONE (for now) */ + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500283 1 /* implementation id array of size 1 */ + \
284 1 /* nii_domain */ + \
285 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
286 1 /* nii_name */ + \
Jim Reesd751f742012-11-16 18:12:06 -0500287 XDR_QUADLEN(IMPL_NAME_LIMIT) + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500288 3 /* nii_date */)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400289#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
290 2 /* eir_clientid */ + \
291 1 /* eir_sequenceid */ + \
292 1 /* eir_flags */ + \
293 1 /* spr_how */ + \
294 0 /* SP4_NONE (for now) */ + \
295 2 /* eir_server_owner.so_minor_id */ + \
296 /* eir_server_owner.so_major_id<> */ \
297 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
298 /* eir_server_scope<> */ \
299 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
300 1 /* eir_server_impl_id array length */ + \
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500301 1 /* nii_domain */ + \
302 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
303 1 /* nii_name */ + \
304 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
305 3 /* nii_date */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400306#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
307#define decode_channel_attrs_maxsz (6 + \
308 1 /* ca_rdma_ird.len */ + \
309 1 /* ca_rdma_ird */)
310#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
311 2 /* csa_clientid */ + \
312 1 /* csa_sequence */ + \
313 1 /* csa_flags */ + \
314 encode_channel_attrs_maxsz + \
315 encode_channel_attrs_maxsz + \
316 1 /* csa_cb_program */ + \
317 1 /* csa_sec_parms.len (1) */ + \
318 1 /* cb_secflavor (AUTH_SYS) */ + \
319 1 /* stamp */ + \
320 1 /* machinename.len */ + \
321 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
322 1 /* uid */ + \
323 1 /* gid */ + \
324 1 /* gids.len (0) */)
325#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
326 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
327 1 /* csr_sequence */ + \
328 1 /* csr_flags */ + \
329 decode_channel_attrs_maxsz + \
330 decode_channel_attrs_maxsz)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400331#define encode_bind_conn_to_session_maxsz (op_encode_hdr_maxsz + \
332 /* bctsa_sessid */ \
333 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
334 1 /* bctsa_dir */ + \
335 1 /* bctsa_use_conn_in_rdma_mode */)
336#define decode_bind_conn_to_session_maxsz (op_decode_hdr_maxsz + \
337 /* bctsr_sessid */ \
338 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
339 1 /* bctsr_dir */ + \
340 1 /* bctsr_use_conn_in_rdma_mode */)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400341#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
342#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400343#define encode_destroy_clientid_maxsz (op_encode_hdr_maxsz + 2)
344#define decode_destroy_clientid_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400345#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
346 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
347#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
348 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500349#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
350#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400351#define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
352 encode_verifier_maxsz)
353#define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
354 2 /* nfs_cookie4 gdlr_cookie */ + \
355 decode_verifier_maxsz \
356 /* verifier4 gdlr_verifier */ + \
357 1 /* gdlr_deviceid_list count */ + \
358 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
359 NFS4_DEVICEID4_SIZE) \
360 /* gdlr_deviceid_list */ + \
361 1 /* bool gdlr_eof */)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400362#define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
363 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
364#define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
365 1 /* layout type */ + \
366 1 /* opaque devaddr4 length */ + \
367 /* devaddr4 payload is read into page */ \
368 1 /* notification bitmap length */ + \
369 1 /* notification bitmap */)
370#define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
371 encode_stateid_maxsz)
372#define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
373 decode_stateid_maxsz + \
374 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
Andy Adamson863a3c62011-03-23 13:27:54 +0000375#define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
376 2 /* offset */ + \
377 2 /* length */ + \
378 1 /* reclaim */ + \
379 encode_stateid_maxsz + \
380 1 /* new offset (true) */ + \
381 2 /* last byte written */ + \
382 1 /* nt_timechanged (false) */ + \
383 1 /* layoutupdate4 layout type */ + \
384 1 /* NULL filelayout layoutupdate4 payload */)
385#define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
Benny Halevycbe82602011-05-22 19:52:37 +0300386#define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
387 encode_stateid_maxsz + \
388 1 /* FIXME: opaque lrf_body always empty at the moment */)
389#define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
390 1 + decode_stateid_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400391#define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
392#define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
Bryan Schumaker7d974792011-06-02 14:59:08 -0400393#define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
394 XDR_QUADLEN(NFS4_STATEID_SIZE))
395#define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400396#define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
397 XDR_QUADLEN(NFS4_STATEID_SIZE))
398#define decode_free_stateid_maxsz (op_decode_hdr_maxsz + 1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400399#else /* CONFIG_NFS_V4_1 */
400#define encode_sequence_maxsz 0
401#define decode_sequence_maxsz 0
402#endif /* CONFIG_NFS_V4_1 */
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
405#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
406#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400407 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400409 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400411 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400413 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400415 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400417 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400419 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400421 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400423 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400425 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400427 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400429 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400431 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400433 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400434 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400436 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400438 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400439 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400441 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 encode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400443 encode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400445 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 decode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400447 decode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400449 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400450 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400451 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400452 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400453 encode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400454 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400456 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400457 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400458 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400459 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400460 decode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400461 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400462#define NFS4_enc_open_confirm_sz \
463 (compound_encode_hdr_maxsz + \
464 encode_putfh_maxsz + \
465 encode_open_confirm_maxsz)
466#define NFS4_dec_open_confirm_sz \
467 (compound_decode_hdr_maxsz + \
468 decode_putfh_maxsz + \
469 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400471 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400473 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400474 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400475 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400477 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400479 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400480 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400481 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#define NFS4_enc_open_downgrade_sz \
483 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400484 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400485 encode_putfh_maxsz + \
486 encode_open_downgrade_maxsz + \
487 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#define NFS4_dec_open_downgrade_sz \
489 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400490 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400491 decode_putfh_maxsz + \
492 decode_open_downgrade_maxsz + \
493 decode_getattr_maxsz)
494#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400495 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400496 encode_putfh_maxsz + \
497 encode_close_maxsz + \
498 encode_getattr_maxsz)
499#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400500 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400501 decode_putfh_maxsz + \
502 decode_close_maxsz + \
503 decode_getattr_maxsz)
504#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400505 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400506 encode_putfh_maxsz + \
507 encode_setattr_maxsz + \
508 encode_getattr_maxsz)
509#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400510 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400511 decode_putfh_maxsz + \
512 decode_setattr_maxsz + \
513 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400515 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 encode_putfh_maxsz + \
517 encode_fsinfo_maxsz)
518#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400519 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 decode_putfh_maxsz + \
521 decode_fsinfo_maxsz)
522#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
523 encode_renew_maxsz)
524#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
525 decode_renew_maxsz)
526#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
527 encode_setclientid_maxsz)
528#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
529 decode_setclientid_maxsz)
530#define NFS4_enc_setclientid_confirm_sz \
531 (compound_encode_hdr_maxsz + \
532 encode_setclientid_confirm_maxsz + \
533 encode_putrootfh_maxsz + \
534 encode_fsinfo_maxsz)
535#define NFS4_dec_setclientid_confirm_sz \
536 (compound_decode_hdr_maxsz + \
537 decode_setclientid_confirm_maxsz + \
538 decode_putrootfh_maxsz + \
539 decode_fsinfo_maxsz)
540#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400541 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400543 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400545 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400547 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400549 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400551 encode_lockt_maxsz)
552#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400553 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400554 decode_putfh_maxsz + \
555 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400557 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400559 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400561 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400563 decode_locku_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400564#define NFS4_enc_release_lockowner_sz \
565 (compound_encode_hdr_maxsz + \
566 encode_lockowner_maxsz)
567#define NFS4_dec_release_lockowner_sz \
568 (compound_decode_hdr_maxsz + \
569 decode_lockowner_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400571 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400573 encode_access_maxsz + \
574 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400576 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400578 decode_access_maxsz + \
579 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400581 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 encode_putfh_maxsz + \
583 encode_getattr_maxsz)
584#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400585 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 decode_putfh_maxsz + \
587 decode_getattr_maxsz)
588#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400589 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 encode_putfh_maxsz + \
591 encode_lookup_maxsz + \
592 encode_getattr_maxsz + \
593 encode_getfh_maxsz)
594#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400595 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400597 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 decode_getattr_maxsz + \
599 decode_getfh_maxsz)
600#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400601 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 encode_putrootfh_maxsz + \
603 encode_getattr_maxsz + \
604 encode_getfh_maxsz)
605#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400606 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 decode_putrootfh_maxsz + \
608 decode_getattr_maxsz + \
609 decode_getfh_maxsz)
610#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400611 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400613 encode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400615 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400617 decode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400619 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 encode_putfh_maxsz + \
621 encode_savefh_maxsz + \
622 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400623 encode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400625 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 decode_putfh_maxsz + \
627 decode_savefh_maxsz + \
628 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400629 decode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400631 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 encode_putfh_maxsz + \
633 encode_savefh_maxsz + \
634 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400635 encode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400636 encode_restorefh_maxsz + \
Trond Myklebusta9f69912012-04-27 13:48:17 -0400637 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400639 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 decode_putfh_maxsz + \
641 decode_savefh_maxsz + \
642 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400643 decode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400644 decode_restorefh_maxsz + \
645 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400647 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 encode_putfh_maxsz + \
649 encode_symlink_maxsz + \
650 encode_getattr_maxsz + \
651 encode_getfh_maxsz)
652#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400653 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 decode_putfh_maxsz + \
655 decode_symlink_maxsz + \
656 decode_getattr_maxsz + \
657 decode_getfh_maxsz)
658#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400659 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 encode_putfh_maxsz + \
661 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400662 encode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400663 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400665 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 decode_putfh_maxsz + \
667 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400668 decode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400669 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400671 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 encode_putfh_maxsz + \
673 encode_getattr_maxsz)
674#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400675 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 decode_putfh_maxsz + \
677 decode_getattr_maxsz)
678#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400679 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400681 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400683 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400685 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400687 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800688 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 encode_getattr_maxsz)
690#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400691 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800692 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 decode_getattr_maxsz)
694#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400695 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100697 encode_delegreturn_maxsz + \
698 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400700 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100701 decode_delegreturn_maxsz + \
702 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000703#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400704 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000705 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400706 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000707#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400708 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000709 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400710 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000711#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400712 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000713 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400714 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000715#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400716 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000717 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400718 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400719#define NFS4_enc_fs_locations_sz \
720 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400721 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400722 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400723 encode_lookup_maxsz + \
724 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400725#define NFS4_dec_fs_locations_sz \
726 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400727 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400728 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400729 decode_lookup_maxsz + \
730 decode_fs_locations_maxsz)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000731#define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
732 encode_sequence_maxsz + \
733 encode_putfh_maxsz + \
734 encode_secinfo_maxsz)
735#define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
736 decode_sequence_maxsz + \
737 decode_putfh_maxsz + \
738 decode_secinfo_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400739#if defined(CONFIG_NFS_V4_1)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400740#define NFS4_enc_bind_conn_to_session_sz \
741 (compound_encode_hdr_maxsz + \
742 encode_bind_conn_to_session_maxsz)
743#define NFS4_dec_bind_conn_to_session_sz \
744 (compound_decode_hdr_maxsz + \
745 decode_bind_conn_to_session_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400746#define NFS4_enc_exchange_id_sz \
747 (compound_encode_hdr_maxsz + \
748 encode_exchange_id_maxsz)
749#define NFS4_dec_exchange_id_sz \
750 (compound_decode_hdr_maxsz + \
751 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400752#define NFS4_enc_create_session_sz \
753 (compound_encode_hdr_maxsz + \
754 encode_create_session_maxsz)
755#define NFS4_dec_create_session_sz \
756 (compound_decode_hdr_maxsz + \
757 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400758#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
759 encode_destroy_session_maxsz)
760#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
761 decode_destroy_session_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400762#define NFS4_enc_destroy_clientid_sz (compound_encode_hdr_maxsz + \
763 encode_destroy_clientid_maxsz)
764#define NFS4_dec_destroy_clientid_sz (compound_decode_hdr_maxsz + \
765 decode_destroy_clientid_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400766#define NFS4_enc_sequence_sz \
767 (compound_decode_hdr_maxsz + \
768 encode_sequence_maxsz)
769#define NFS4_dec_sequence_sz \
770 (compound_decode_hdr_maxsz + \
771 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400772#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
773 encode_sequence_maxsz + \
774 encode_putrootfh_maxsz + \
775 encode_fsinfo_maxsz)
776#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
777 decode_sequence_maxsz + \
778 decode_putrootfh_maxsz + \
779 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500780#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
781 encode_sequence_maxsz + \
782 encode_reclaim_complete_maxsz)
783#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
784 decode_sequence_maxsz + \
785 decode_reclaim_complete_maxsz)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400786#define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
787 encode_sequence_maxsz + \
788 encode_putfh_maxsz + \
789 encode_getdevicelist_maxsz)
790#define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
791 decode_sequence_maxsz + \
792 decode_putfh_maxsz + \
793 decode_getdevicelist_maxsz)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400794#define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
795 encode_sequence_maxsz +\
796 encode_getdeviceinfo_maxsz)
797#define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
798 decode_sequence_maxsz + \
799 decode_getdeviceinfo_maxsz)
800#define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
801 encode_sequence_maxsz + \
802 encode_putfh_maxsz + \
803 encode_layoutget_maxsz)
804#define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
805 decode_sequence_maxsz + \
806 decode_putfh_maxsz + \
807 decode_layoutget_maxsz)
Andy Adamson863a3c62011-03-23 13:27:54 +0000808#define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
809 encode_sequence_maxsz +\
810 encode_putfh_maxsz + \
811 encode_layoutcommit_maxsz + \
812 encode_getattr_maxsz)
813#define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
814 decode_sequence_maxsz + \
815 decode_putfh_maxsz + \
816 decode_layoutcommit_maxsz + \
817 decode_getattr_maxsz)
Benny Halevycbe82602011-05-22 19:52:37 +0300818#define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
819 encode_sequence_maxsz + \
820 encode_putfh_maxsz + \
821 encode_layoutreturn_maxsz)
822#define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
823 decode_sequence_maxsz + \
824 decode_putfh_maxsz + \
825 decode_layoutreturn_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400826#define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
827 encode_sequence_maxsz + \
828 encode_putrootfh_maxsz +\
829 encode_secinfo_no_name_maxsz)
830#define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
831 decode_sequence_maxsz + \
832 decode_putrootfh_maxsz + \
833 decode_secinfo_no_name_maxsz)
Bryan Schumaker7d974792011-06-02 14:59:08 -0400834#define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
835 encode_sequence_maxsz + \
836 encode_test_stateid_maxsz)
837#define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
838 decode_sequence_maxsz + \
839 decode_test_stateid_maxsz)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400840#define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
841 encode_sequence_maxsz + \
842 encode_free_stateid_maxsz)
843#define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
844 decode_sequence_maxsz + \
845 decode_free_stateid_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500846
847const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
848 compound_encode_hdr_maxsz +
849 encode_sequence_maxsz +
850 encode_putfh_maxsz +
851 encode_getattr_maxsz) *
852 XDR_UNIT);
853
854const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
855 compound_decode_hdr_maxsz +
856 decode_sequence_maxsz +
857 decode_putfh_maxsz) *
858 XDR_UNIT);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400859#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Trond Myklebustbca79472009-03-11 14:10:26 -0400861static const umode_t nfs_type2fmt[] = {
862 [NF4BAD] = 0,
863 [NF4REG] = S_IFREG,
864 [NF4DIR] = S_IFDIR,
865 [NF4BLK] = S_IFBLK,
866 [NF4CHR] = S_IFCHR,
867 [NF4LNK] = S_IFLNK,
868 [NF4SOCK] = S_IFSOCK,
869 [NF4FIFO] = S_IFIFO,
870 [NF4ATTRDIR] = 0,
871 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872};
873
874struct compound_hdr {
875 int32_t status;
876 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500877 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 uint32_t taglen;
879 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400880 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400881 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882};
883
Benny Halevy13c65ce2009-08-14 17:19:25 +0300884static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
885{
886 __be32 *p = xdr_reserve_space(xdr, nbytes);
887 BUG_ON(!p);
888 return p;
889}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Trond Myklebustcb17e552012-03-04 18:13:56 -0500891static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
892{
893 __be32 *p;
894
895 p = xdr_reserve_space(xdr, len);
896 xdr_encode_opaque_fixed(p, buf, len);
897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
900{
Al Viro8687b632006-10-19 23:28:48 -0700901 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500903 p = reserve_space(xdr, 4 + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 xdr_encode_opaque(p, str, len);
905}
906
Trond Myklebust4ade9822012-03-04 18:13:57 -0500907static void encode_uint32(struct xdr_stream *xdr, u32 n)
908{
909 __be32 *p;
910
911 p = reserve_space(xdr, 4);
912 *p = cpu_to_be32(n);
913}
914
Trond Myklebustff2eb682012-03-05 11:40:12 -0500915static void encode_uint64(struct xdr_stream *xdr, u64 n)
916{
917 __be32 *p;
918
919 p = reserve_space(xdr, 8);
920 xdr_encode_hyper(p, n);
921}
922
Trond Myklebust4ade9822012-03-04 18:13:57 -0500923static void encode_nfs4_seqid(struct xdr_stream *xdr,
924 const struct nfs_seqid *seqid)
925{
926 encode_uint32(xdr, seqid->sequence->counter);
927}
928
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400929static void encode_compound_hdr(struct xdr_stream *xdr,
930 struct rpc_rqst *req,
931 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Al Viro8687b632006-10-19 23:28:48 -0700933 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400934 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400935
936 /* initialize running count of expected bytes in reply.
937 * NOTE: the replied tag SHOULD be the same is the one sent,
938 * but this is not required as a MUST for the server to do so. */
939 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500942 encode_string(xdr, hdr->taglen, hdr->tag);
943 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300944 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500945 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300946 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500947}
948
Trond Myklebustab19b482012-03-04 18:13:57 -0500949static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
950 uint32_t replen,
951 struct compound_hdr *hdr)
952{
953 encode_uint32(xdr, op);
954 hdr->nops++;
955 hdr->replen += replen;
956}
957
Andy Adamsond0179312008-12-23 16:06:17 -0500958static void encode_nops(struct compound_hdr *hdr)
959{
Andy Adamsonfc931582009-04-01 09:22:31 -0400960 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500961 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500964static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
965{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500966 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500967}
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
970{
Trond Myklebustcb17e552012-03-04 18:13:56 -0500971 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500974static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 char owner_name[IDMAP_NAMESZ];
977 char owner_group[IDMAP_NAMESZ];
978 int owner_namelen = 0;
979 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700980 __be32 *p;
981 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 int len;
983 uint32_t bmval0 = 0;
984 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 /*
987 * We reserve enough space to write the entire attribute buffer at once.
988 * In the worst-case, this would be
989 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
990 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000991 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
993 len = 16;
994
995 /* Sigh */
996 if (iap->ia_valid & ATTR_SIZE)
997 len += 8;
998 if (iap->ia_valid & ATTR_MODE)
999 len += 4;
1000 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001001 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001003 dprintk("nfs: couldn't resolve uid %d to string\n",
1004 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /* XXX */
1006 strcpy(owner_name, "nobody");
1007 owner_namelen = sizeof("nobody") - 1;
1008 /* goto out; */
1009 }
1010 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1011 }
1012 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001013 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001015 dprintk("nfs: couldn't resolve gid %d to string\n",
1016 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 strcpy(owner_group, "nobody");
1018 owner_grouplen = sizeof("nobody") - 1;
1019 /* goto out; */
1020 }
1021 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1022 }
1023 if (iap->ia_valid & ATTR_ATIME_SET)
1024 len += 16;
1025 else if (iap->ia_valid & ATTR_ATIME)
1026 len += 4;
1027 if (iap->ia_valid & ATTR_MTIME_SET)
1028 len += 16;
1029 else if (iap->ia_valid & ATTR_MTIME)
1030 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001031 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 /*
1034 * We write the bitmap length now, but leave the bitmap and the attribute
1035 * buffer length to be backfilled at the end of this routine.
1036 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001037 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 q = p;
1039 p += 3;
1040
1041 if (iap->ia_valid & ATTR_SIZE) {
1042 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +03001043 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045 if (iap->ia_valid & ATTR_MODE) {
1046 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001047 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 if (iap->ia_valid & ATTR_UID) {
1050 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +03001051 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053 if (iap->ia_valid & ATTR_GID) {
1054 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +03001055 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 if (iap->ia_valid & ATTR_ATIME_SET) {
1058 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001059 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1060 *p++ = cpu_to_be32(0);
Trond Myklebustd3f6baa2010-06-22 08:52:39 -04001061 *p++ = cpu_to_be32(iap->ia_atime.tv_sec);
1062 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064 else if (iap->ia_valid & ATTR_ATIME) {
1065 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001066 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068 if (iap->ia_valid & ATTR_MTIME_SET) {
1069 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001070 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1071 *p++ = cpu_to_be32(0);
1072 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
1073 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075 else if (iap->ia_valid & ATTR_MTIME) {
1076 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001077 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * Now we backfill the bitmap and the attribute buffer length.
1082 */
1083 if (len != ((char *)p - (char *)q) + 4) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -05001084 printk(KERN_ERR "NFS: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 len, ((char *)p - (char *)q) + 4);
1086 BUG();
1087 }
1088 len = (char *)p - (char *)q - 12;
1089 *q++ = htonl(bmval0);
1090 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +03001091 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001096static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001098 encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1099 encode_uint32(xdr, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001102static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Trond Myklebustab19b482012-03-04 18:13:57 -05001104 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001105 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001106 encode_nfs4_stateid(xdr, arg->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Fred Isaman0b7c0152012-04-20 14:47:39 -04001109static void encode_commit(struct xdr_stream *xdr, const struct nfs_commitargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Al Viro8687b632006-10-19 23:28:48 -07001111 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001112
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001113 encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1114 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001115 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001116 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001119static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Al Viro8687b632006-10-19 23:28:48 -07001121 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001122
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001123 encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1124 encode_uint32(xdr, create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 switch (create->ftype) {
1127 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001128 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001129 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -04001130 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 break;
1132
1133 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001134 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001135 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +03001136 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
1138
1139 default:
1140 break;
1141 }
1142
Benny Halevy811652b2009-08-14 17:19:34 +03001143 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001144 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001147static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Andy Adamson05d564f2008-12-23 16:06:15 -05001149 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001151 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1152 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001153 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001154 *p = cpu_to_be32(bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001157static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Andy Adamson05d564f2008-12-23 16:06:15 -05001159 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001161 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1162 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001163 *p++ = cpu_to_be32(2);
1164 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001165 *p = cpu_to_be32(bm1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Fred Isamandae100c2011-07-30 20:52:37 -04001168static void
1169encode_getattr_three(struct xdr_stream *xdr,
1170 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1171 struct compound_hdr *hdr)
1172{
1173 __be32 *p;
1174
Trond Myklebustab19b482012-03-04 18:13:57 -05001175 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
Fred Isamandae100c2011-07-30 20:52:37 -04001176 if (bm2) {
1177 p = reserve_space(xdr, 16);
1178 *p++ = cpu_to_be32(3);
1179 *p++ = cpu_to_be32(bm0);
1180 *p++ = cpu_to_be32(bm1);
1181 *p = cpu_to_be32(bm2);
1182 } else if (bm1) {
1183 p = reserve_space(xdr, 12);
1184 *p++ = cpu_to_be32(2);
1185 *p++ = cpu_to_be32(bm0);
1186 *p = cpu_to_be32(bm1);
1187 } else {
1188 p = reserve_space(xdr, 8);
1189 *p++ = cpu_to_be32(1);
1190 *p = cpu_to_be32(bm0);
1191 }
Fred Isamandae100c2011-07-30 20:52:37 -04001192}
1193
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001194static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001196 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1197 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
Andy Adamson88034c32012-05-23 05:02:34 -04001200static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001201 const u32 *open_bitmap,
Andy Adamson88034c32012-05-23 05:02:34 -04001202 struct compound_hdr *hdr)
1203{
1204 encode_getattr_three(xdr,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001205 bitmask[0] & open_bitmap[0],
1206 bitmask[1] & open_bitmap[1],
1207 bitmask[2] & open_bitmap[2],
Andy Adamson88034c32012-05-23 05:02:34 -04001208 hdr);
1209}
1210
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001211static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Fred Isamandae100c2011-07-30 20:52:37 -04001213 encode_getattr_three(xdr,
1214 bitmask[0] & nfs4_fsinfo_bitmap[0],
1215 bitmask[1] & nfs4_fsinfo_bitmap[1],
1216 bitmask[2] & nfs4_fsinfo_bitmap[2],
1217 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001220static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001221{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001222 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1223 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001224}
1225
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001226static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Trond Myklebustab19b482012-03-04 18:13:57 -05001228 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001231static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Trond Myklebustab19b482012-03-04 18:13:57 -05001233 encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001234 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001237static inline int nfs4_lock_type(struct file_lock *fl, int block)
1238{
Jeff Laytonf44106e2012-07-23 15:49:56 -04001239 if (fl->fl_type == F_RDLCK)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001240 return block ? NFS4_READW_LT : NFS4_READ_LT;
1241 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1242}
1243
1244static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1245{
1246 if (fl->fl_end == OFFSET_MAX)
1247 return ~(uint64_t)0;
1248 return fl->fl_end - fl->fl_start + 1;
1249}
1250
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001251static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1252{
1253 __be32 *p;
1254
Trond Myklebustd035c362010-12-21 10:45:27 -05001255 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001256 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001257 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001258 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001259 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001260 xdr_encode_hyper(p, lowner->id);
1261}
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/*
1264 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1265 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1266 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001267static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Al Viro8687b632006-10-19 23:28:48 -07001269 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001271 encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1272 p = reserve_space(xdr, 28);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001273 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1274 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001275 p = xdr_encode_hyper(p, args->fl->fl_start);
1276 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001277 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001278 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001279 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001280 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001281 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001282 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001285 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001286 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001290static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Al Viro8687b632006-10-19 23:28:48 -07001292 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001294 encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1295 p = reserve_space(xdr, 20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001296 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001297 p = xdr_encode_hyper(p, args->fl->fl_start);
1298 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001299 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001302static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Al Viro8687b632006-10-19 23:28:48 -07001304 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001306 encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1307 encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
Trond Myklebust4ade9822012-03-04 18:13:57 -05001308 encode_nfs4_seqid(xdr, args->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001309 encode_nfs4_stateid(xdr, args->stateid);
1310 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001311 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001312 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001315static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1316{
Trond Myklebustab19b482012-03-04 18:13:57 -05001317 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001318 encode_lockowner(xdr, lowner);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001319}
1320
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001321static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Trond Myklebustab19b482012-03-04 18:13:57 -05001323 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001324 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001327static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Al Viro8687b632006-10-19 23:28:48 -07001329 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Benny Halevy13c65ce2009-08-14 17:19:25 +03001331 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001332 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001333 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001334 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001335 break;
1336 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001337 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001338 break;
1339 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001340 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001341 break;
1342 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001343 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
Benny Halevy34558512009-08-14 17:19:30 +03001345 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
1348static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1349{
Al Viro8687b632006-10-19 23:28:48 -07001350 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /*
1352 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1353 * owner 4 = 32
1354 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001355 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001356 encode_share_access(xdr, arg->fmode);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001357 p = reserve_space(xdr, 36);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001358 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001359 *p++ = cpu_to_be32(24);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001360 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001361 *p++ = cpu_to_be32(arg->server->s_dev);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001362 *p++ = cpu_to_be32(arg->id.uniquifier);
1363 xdr_encode_hyper(p, arg->id.create_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1367{
Al Viro8687b632006-10-19 23:28:48 -07001368 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001369 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Benny Halevy13c65ce2009-08-14 17:19:25 +03001371 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001373 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001374 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001375 encode_attrs(xdr, arg->u.attrs, arg->server);
1376 break;
1377 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001378 clp = arg->server->nfs_client;
Trond Myklebusta4432342010-06-16 09:52:27 -04001379 if (clp->cl_mvops->minor_version > 0) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001380 if (nfs4_has_persistent_session(clp)) {
1381 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1382 encode_attrs(xdr, arg->u.attrs, arg->server);
1383 } else {
1384 struct iattr dummy;
1385
1386 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1387 encode_nfs4_verifier(xdr, &arg->u.verifier);
1388 dummy.ia_valid = 0;
1389 encode_attrs(xdr, &dummy, arg->server);
1390 }
1391 } else {
1392 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1393 encode_nfs4_verifier(xdr, &arg->u.verifier);
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396}
1397
1398static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1399{
Al Viro8687b632006-10-19 23:28:48 -07001400 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Benny Halevy13c65ce2009-08-14 17:19:25 +03001402 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001404 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001405 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001406 break;
1407 default:
1408 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001409 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001410 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412}
1413
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001414static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Al Viro8687b632006-10-19 23:28:48 -07001416 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Benny Halevy13c65ce2009-08-14 17:19:25 +03001418 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001420 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001421 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001422 break;
1423 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001424 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001425 break;
1426 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001427 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001428 break;
1429 default:
1430 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432}
1433
1434static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1435{
Al Viro8687b632006-10-19 23:28:48 -07001436 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Benny Halevy13c65ce2009-08-14 17:19:25 +03001438 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001439 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 encode_string(xdr, name->len, name->name);
1441}
1442
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001443static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Al Viro8687b632006-10-19 23:28:48 -07001445 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Benny Halevy13c65ce2009-08-14 17:19:25 +03001447 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001448 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 encode_delegation_type(xdr, type);
1450}
1451
1452static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1453{
Al Viro8687b632006-10-19 23:28:48 -07001454 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001456 p = reserve_space(xdr, 4);
1457 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1458 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 encode_string(xdr, name->len, name->name);
1460}
1461
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001462static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Trond Myklebustab19b482012-03-04 18:13:57 -05001464 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 encode_openhdr(xdr, arg);
1466 encode_opentype(xdr, arg);
1467 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001468 case NFS4_OPEN_CLAIM_NULL:
1469 encode_claim_null(xdr, arg->name);
1470 break;
1471 case NFS4_OPEN_CLAIM_PREVIOUS:
1472 encode_claim_previous(xdr, arg->u.delegation_type);
1473 break;
1474 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1475 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1476 break;
1477 default:
1478 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001482static void encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Trond Myklebustab19b482012-03-04 18:13:57 -05001484 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001485 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001486 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001489static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Trond Myklebustab19b482012-03-04 18:13:57 -05001491 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001492 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001493 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001494 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001497static void
Andy Adamsond0179312008-12-23 16:06:17 -05001498encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Trond Myklebustab19b482012-03-04 18:13:57 -05001500 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001501 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001504static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Trond Myklebustab19b482012-03-04 18:13:57 -05001506 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Trond Myklebust4fc87962012-03-08 17:42:01 -05001509static void encode_open_stateid(struct xdr_stream *xdr,
1510 const struct nfs_open_context *ctx,
1511 const struct nfs_lock_context *l_ctx,
1512 fmode_t fmode,
1513 int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (ctx->state != NULL) {
Trond Myklebust2a369152012-08-13 18:54:45 -04001518 const struct nfs_lockowner *lockowner = NULL;
1519
1520 if (l_ctx != NULL)
1521 lockowner = &l_ctx->lockowner;
Trond Myklebust4fc87962012-03-08 17:42:01 -05001522 nfs4_select_rw_stateid(&stateid, ctx->state,
Trond Myklebust2a369152012-08-13 18:54:45 -04001523 fmode, lockowner);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001524 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001525 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001526 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001528 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001531static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Al Viro8687b632006-10-19 23:28:48 -07001533 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Trond Myklebustab19b482012-03-04 18:13:57 -05001535 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001536 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001537 FMODE_READ, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Benny Halevy13c65ce2009-08-14 17:19:25 +03001539 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001540 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001541 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001544static void encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Trond Myklebust28331a42011-04-27 13:47:52 -04001546 uint32_t attrs[2] = {
1547 FATTR4_WORD0_RDATTR_ERROR,
1548 FATTR4_WORD1_MOUNTED_ON_FILEID,
1549 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001550 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001551 __be32 *p, verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001553 if (readdir->plus) {
1554 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001555 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001556 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1557 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1558 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1559 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001560 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001561 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001562 /* Use mounted_on_fileid only if the server supports it */
1563 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1564 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001565
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001566 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001567 encode_uint64(xdr, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001568 encode_nfs4_verifier(xdr, &readdir->verifier);
1569 p = reserve_space(xdr, 20);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001570 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001571 *p++ = cpu_to_be32(readdir->count);
1572 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001573
Benny Halevye75bc1c2009-08-14 17:18:54 +03001574 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001575 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Chuck Levercd937102012-03-02 17:14:31 -05001576 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03001577 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1578 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001579 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001580 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001581 attrs[0] & readdir->bitmask[0],
1582 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001585static void encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Trond Myklebustab19b482012-03-04 18:13:57 -05001587 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001590static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Trond Myklebustab19b482012-03-04 18:13:57 -05001592 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001593 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001596static void encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Trond Myklebustab19b482012-03-04 18:13:57 -05001598 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001599 encode_string(xdr, oldname->len, oldname->name);
1600 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Chuck Leverbb4dae52012-03-01 17:01:48 -05001603static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1604 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001606 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001607 encode_uint64(xdr, clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001610static void
Andy Adamsond0179312008-12-23 16:06:17 -05001611encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001612{
Trond Myklebustab19b482012-03-04 18:13:57 -05001613 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001614}
1615
Chuck Lever9f06c712010-12-14 14:59:18 +00001616static void
Andy Adamsond0179312008-12-23 16:06:17 -05001617encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001618{
Al Viro8687b632006-10-19 23:28:48 -07001619 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001620
Trond Myklebustab19b482012-03-04 18:13:57 -05001621 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001622 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001623 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001624 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001625 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Chuck Lever9f06c712010-12-14 14:59:18 +00001626 BUG_ON(arg->acl_len % 4);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001627 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001628 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001629 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001630}
1631
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001632static void
Andy Adamsond0179312008-12-23 16:06:17 -05001633encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Trond Myklebustab19b482012-03-04 18:13:57 -05001635 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001638static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Trond Myklebustab19b482012-03-04 18:13:57 -05001640 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001641 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001642 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001645static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Al Viro8687b632006-10-19 23:28:48 -07001647 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Trond Myklebust70019512012-03-04 20:49:32 -05001649 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001650 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001653 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001654 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1656 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001657 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001658 *p = cpu_to_be32(setclientid->sc_cb_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001661static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs4_setclientid_res *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001663 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1664 decode_setclientid_confirm_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001665 encode_uint64(xdr, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001666 encode_nfs4_verifier(xdr, &arg->confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001669static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Al Viro8687b632006-10-19 23:28:48 -07001671 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Trond Myklebustab19b482012-03-04 18:13:57 -05001673 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001674 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001675 FMODE_WRITE, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Benny Halevy13c65ce2009-08-14 17:19:25 +03001677 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001678 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001679 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001680 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001685static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Trond Myklebustab19b482012-03-04 18:13:57 -05001687 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001688 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001690
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001691static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1692{
Trond Myklebustab19b482012-03-04 18:13:57 -05001693 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001694 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001695}
1696
Benny Halevy99fe60d2009-04-01 09:22:29 -04001697#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001698/* NFSv4.1 operations */
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04001699static void encode_bind_conn_to_session(struct xdr_stream *xdr,
1700 struct nfs4_session *session,
1701 struct compound_hdr *hdr)
1702{
1703 __be32 *p;
1704
1705 encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
1706 decode_bind_conn_to_session_maxsz, hdr);
1707 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1708 p = xdr_reserve_space(xdr, 8);
1709 *p++ = cpu_to_be32(NFS4_CDFC4_BACK_OR_BOTH);
1710 *p = 0; /* use_conn_in_rdma_mode = False */
1711}
1712
Benny Halevy99fe60d2009-04-01 09:22:29 -04001713static void encode_exchange_id(struct xdr_stream *xdr,
1714 struct nfs41_exchange_id_args *args,
1715 struct compound_hdr *hdr)
1716{
1717 __be32 *p;
Jim Reesd751f742012-11-16 18:12:06 -05001718 char impl_name[IMPL_NAME_LIMIT];
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001719 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001720
Trond Myklebust70019512012-03-04 20:49:32 -05001721 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001722 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001723
1724 encode_string(xdr, args->id_len, args->id);
1725
Benny Halevy13c65ce2009-08-14 17:19:25 +03001726 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001727 *p++ = cpu_to_be32(args->flags);
1728 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001729
1730 if (send_implementation_id &&
1731 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1732 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
Jim Reesd751f742012-11-16 18:12:06 -05001733 <= sizeof(impl_name) + 1)
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001734 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1735 utsname()->sysname, utsname()->release,
1736 utsname()->version, utsname()->machine);
1737
1738 if (len > 0) {
1739 *p = cpu_to_be32(1); /* implementation id array length=1 */
1740
1741 encode_string(xdr,
1742 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1743 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1744 encode_string(xdr, len, impl_name);
1745 /* just send zeros for nii_date - the date is in nii_name */
1746 p = reserve_space(xdr, 12);
1747 p = xdr_encode_hyper(p, 0);
1748 *p = cpu_to_be32(0);
1749 } else
1750 *p = cpu_to_be32(0); /* implementation id array length=0 */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001751}
Andy Adamsonfc931582009-04-01 09:22:31 -04001752
1753static void encode_create_session(struct xdr_stream *xdr,
1754 struct nfs41_create_session_args *args,
1755 struct compound_hdr *hdr)
1756{
1757 __be32 *p;
1758 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1759 uint32_t len;
1760 struct nfs_client *clp = args->client;
Chuck Leverf0920752012-05-21 22:45:41 -04001761 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Mike Sager8e0d46e2009-12-17 12:06:26 -05001762 u32 max_resp_sz_cached;
1763
1764 /*
1765 * Assumes OPEN is the biggest non-idempotent compound.
1766 * 2 is the verifier.
1767 */
1768 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1769 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001770
Andy Adamsonfc931582009-04-01 09:22:31 -04001771 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1772 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001773
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001774 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1775 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
Andy Adamson114f64b2011-03-09 13:13:45 -05001776 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001777 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1778 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001779
Andy Adamsonfc931582009-04-01 09:22:31 -04001780 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001781 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001782 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1783 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001784 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001785 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1786 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1787 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001788
1789 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001790 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001791 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1792 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1793 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1794 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1795 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1796 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001797
Benny Halevye75bc1c2009-08-14 17:18:54 +03001798 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001799 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001800 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001801
1802 /* authsys_parms rfc1831 */
Chuck Leverf0920752012-05-21 22:45:41 -04001803 *p++ = (__be32)nn->boot_time.tv_nsec; /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001804 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001805 *p++ = cpu_to_be32(0); /* UID */
1806 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001807 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001808}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001809
1810static void encode_destroy_session(struct xdr_stream *xdr,
1811 struct nfs4_session *session,
1812 struct compound_hdr *hdr)
1813{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001814 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1815 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001816}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001817
Trond Myklebust66245532012-05-25 17:18:09 -04001818static void encode_destroy_clientid(struct xdr_stream *xdr,
1819 uint64_t clientid,
1820 struct compound_hdr *hdr)
1821{
1822 encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
1823 encode_uint64(xdr, clientid);
1824}
1825
Ricardo Labiaga180197532009-12-05 16:08:40 -05001826static void encode_reclaim_complete(struct xdr_stream *xdr,
1827 struct nfs41_reclaim_complete_args *args,
1828 struct compound_hdr *hdr)
1829{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001830 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1831 encode_uint32(xdr, args->one_fs);
Ricardo Labiaga180197532009-12-05 16:08:40 -05001832}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001833#endif /* CONFIG_NFS_V4_1 */
1834
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001835static void encode_sequence(struct xdr_stream *xdr,
1836 const struct nfs4_sequence_args *args,
1837 struct compound_hdr *hdr)
1838{
1839#if defined(CONFIG_NFS_V4_1)
1840 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001841 struct nfs4_slot_table *tp;
1842 struct nfs4_slot *slot;
1843 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001844
1845 if (!session)
1846 return;
1847
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001848 tp = &session->fc_slot_table;
1849
1850 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1851 slot = tp->slots + args->sa_slotid;
1852
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001853 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001854
1855 /*
1856 * Sessionid + seqid + slotid + max slotid + cache_this
1857 */
1858 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1859 "max_slotid=%d cache_this=%d\n",
1860 __func__,
1861 ((u32 *)session->sess_id.data)[0],
1862 ((u32 *)session->sess_id.data)[1],
1863 ((u32 *)session->sess_id.data)[2],
1864 ((u32 *)session->sess_id.data)[3],
1865 slot->seq_nr, args->sa_slotid,
1866 tp->highest_used_slotid, args->sa_cache_this);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001867 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001868 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001869 *p++ = cpu_to_be32(slot->seq_nr);
1870 *p++ = cpu_to_be32(args->sa_slotid);
1871 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001872 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001873#endif /* CONFIG_NFS_V4_1 */
1874}
1875
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001876#ifdef CONFIG_NFS_V4_1
1877static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001878encode_getdevicelist(struct xdr_stream *xdr,
1879 const struct nfs4_getdevicelist_args *args,
1880 struct compound_hdr *hdr)
1881{
1882 __be32 *p;
1883 nfs4_verifier dummy = {
1884 .data = "dummmmmy",
1885 };
1886
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001887 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1888 p = reserve_space(xdr, 16);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001889 *p++ = cpu_to_be32(args->layoutclass);
1890 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1891 xdr_encode_hyper(p, 0ULL); /* cookie */
1892 encode_nfs4_verifier(xdr, &dummy);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001893}
1894
1895static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001896encode_getdeviceinfo(struct xdr_stream *xdr,
1897 const struct nfs4_getdeviceinfo_args *args,
1898 struct compound_hdr *hdr)
1899{
1900 __be32 *p;
1901
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001902 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1903 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001904 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1905 NFS4_DEVICEID4_SIZE);
1906 *p++ = cpu_to_be32(args->pdev->layout_type);
1907 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
1908 *p++ = cpu_to_be32(0); /* bitmap length 0 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001909}
1910
1911static void
1912encode_layoutget(struct xdr_stream *xdr,
1913 const struct nfs4_layoutget_args *args,
1914 struct compound_hdr *hdr)
1915{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001916 __be32 *p;
1917
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001918 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1919 p = reserve_space(xdr, 36);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001920 *p++ = cpu_to_be32(0); /* Signal layout available */
1921 *p++ = cpu_to_be32(args->type);
1922 *p++ = cpu_to_be32(args->range.iomode);
1923 p = xdr_encode_hyper(p, args->range.offset);
1924 p = xdr_encode_hyper(p, args->range.length);
1925 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001926 encode_nfs4_stateid(xdr, &args->stateid);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001927 encode_uint32(xdr, args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001928
1929 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1930 __func__,
1931 args->type,
1932 args->range.iomode,
1933 (unsigned long)args->range.offset,
1934 (unsigned long)args->range.length,
1935 args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001936}
Andy Adamson863a3c62011-03-23 13:27:54 +00001937
1938static int
1939encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001940 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00001941 const struct nfs4_layoutcommit_args *args,
1942 struct compound_hdr *hdr)
1943{
1944 __be32 *p;
1945
1946 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1947 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1948
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001949 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
1950 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001951 /* Only whole file layouts */
1952 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04001953 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001954 *p = cpu_to_be32(0); /* reclaim */
1955 encode_nfs4_stateid(xdr, &args->stateid);
1956 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001957 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
1958 p = xdr_encode_hyper(p, args->lastbytewritten);
1959 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1960 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03001961
1962 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
1963 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1964 NFS_I(inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001965 else
1966 encode_uint32(xdr, 0); /* no layout-type payload */
Andy Adamson863a3c62011-03-23 13:27:54 +00001967
Andy Adamson863a3c62011-03-23 13:27:54 +00001968 return 0;
1969}
Benny Halevycbe82602011-05-22 19:52:37 +03001970
1971static void
1972encode_layoutreturn(struct xdr_stream *xdr,
1973 const struct nfs4_layoutreturn_args *args,
1974 struct compound_hdr *hdr)
1975{
1976 __be32 *p;
1977
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001978 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
1979 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001980 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
1981 *p++ = cpu_to_be32(args->layout_type);
1982 *p++ = cpu_to_be32(IOMODE_ANY);
1983 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001984 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001985 p = xdr_encode_hyper(p, 0);
1986 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
1987 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001988 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03001989 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03001990 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
1991 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
1992 NFS_I(args->inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001993 } else
1994 encode_uint32(xdr, 0);
Benny Halevycbe82602011-05-22 19:52:37 +03001995}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001996
1997static int
1998encode_secinfo_no_name(struct xdr_stream *xdr,
1999 const struct nfs41_secinfo_no_name_args *args,
2000 struct compound_hdr *hdr)
2001{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002002 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
2003 encode_uint32(xdr, args->style);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002004 return 0;
2005}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002006
2007static void encode_test_stateid(struct xdr_stream *xdr,
2008 struct nfs41_test_stateid_args *args,
2009 struct compound_hdr *hdr)
2010{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002011 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2012 encode_uint32(xdr, 1);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002013 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002014}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002015
2016static void encode_free_stateid(struct xdr_stream *xdr,
2017 struct nfs41_free_stateid_args *args,
2018 struct compound_hdr *hdr)
2019{
Trond Myklebustab19b482012-03-04 18:13:57 -05002020 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002021 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002022}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002023#endif /* CONFIG_NFS_V4_1 */
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025/*
2026 * END OF "GENERIC" ENCODE ROUTINES.
2027 */
2028
Benny Halevy66cc0422009-04-01 09:22:10 -04002029static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2030{
2031#if defined(CONFIG_NFS_V4_1)
2032 if (args->sa_session)
Trond Myklebusta4432342010-06-16 09:52:27 -04002033 return args->sa_session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002034#endif /* CONFIG_NFS_V4_1 */
2035 return 0;
2036}
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038/*
2039 * Encode an ACCESS request
2040 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002041static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2042 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002045 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Chuck Lever9f06c712010-12-14 14:59:18 +00002048 encode_compound_hdr(xdr, req, &hdr);
2049 encode_sequence(xdr, &args->seq_args, &hdr);
2050 encode_putfh(xdr, args->fh, &hdr);
2051 encode_access(xdr, args->access, &hdr);
2052 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002053 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
2056/*
2057 * Encode LOOKUP request
2058 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002059static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2060 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002063 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Chuck Lever9f06c712010-12-14 14:59:18 +00002066 encode_compound_hdr(xdr, req, &hdr);
2067 encode_sequence(xdr, &args->seq_args, &hdr);
2068 encode_putfh(xdr, args->dir_fh, &hdr);
2069 encode_lookup(xdr, args->name, &hdr);
2070 encode_getfh(xdr, &hdr);
2071 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002072 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075/*
2076 * Encode LOOKUP_ROOT request
2077 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002078static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2079 struct xdr_stream *xdr,
2080 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002083 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Chuck Lever9f06c712010-12-14 14:59:18 +00002086 encode_compound_hdr(xdr, req, &hdr);
2087 encode_sequence(xdr, &args->seq_args, &hdr);
2088 encode_putrootfh(xdr, &hdr);
2089 encode_getfh(xdr, &hdr);
2090 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002091 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
2094/*
2095 * Encode REMOVE request
2096 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002097static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2098 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002101 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Chuck Lever9f06c712010-12-14 14:59:18 +00002104 encode_compound_hdr(xdr, req, &hdr);
2105 encode_sequence(xdr, &args->seq_args, &hdr);
2106 encode_putfh(xdr, args->fh, &hdr);
2107 encode_remove(xdr, &args->name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002108 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
2111/*
2112 * Encode RENAME request
2113 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002114static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2115 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002118 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Chuck Lever9f06c712010-12-14 14:59:18 +00002121 encode_compound_hdr(xdr, req, &hdr);
2122 encode_sequence(xdr, &args->seq_args, &hdr);
2123 encode_putfh(xdr, args->old_dir, &hdr);
2124 encode_savefh(xdr, &hdr);
2125 encode_putfh(xdr, args->new_dir, &hdr);
2126 encode_rename(xdr, args->old_name, args->new_name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002127 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130/*
2131 * Encode LINK request
2132 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002133static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2134 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002137 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Chuck Lever9f06c712010-12-14 14:59:18 +00002140 encode_compound_hdr(xdr, req, &hdr);
2141 encode_sequence(xdr, &args->seq_args, &hdr);
2142 encode_putfh(xdr, args->fh, &hdr);
2143 encode_savefh(xdr, &hdr);
2144 encode_putfh(xdr, args->dir_fh, &hdr);
2145 encode_link(xdr, args->name, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002146 encode_restorefh(xdr, &hdr);
2147 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002148 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
2151/*
2152 * Encode CREATE request
2153 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002154static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2155 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002158 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Chuck Lever9f06c712010-12-14 14:59:18 +00002161 encode_compound_hdr(xdr, req, &hdr);
2162 encode_sequence(xdr, &args->seq_args, &hdr);
2163 encode_putfh(xdr, args->dir_fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002164 encode_create(xdr, args, &hdr);
2165 encode_getfh(xdr, &hdr);
2166 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002167 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
2170/*
2171 * Encode SYMLINK request
2172 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002173static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2174 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Chuck Lever9f06c712010-12-14 14:59:18 +00002176 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179/*
2180 * Encode GETATTR request
2181 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002182static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2183 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002186 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Chuck Lever9f06c712010-12-14 14:59:18 +00002189 encode_compound_hdr(xdr, req, &hdr);
2190 encode_sequence(xdr, &args->seq_args, &hdr);
2191 encode_putfh(xdr, args->fh, &hdr);
2192 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002193 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
2196/*
2197 * Encode a CLOSE request
2198 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002199static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2200 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Andy Adamson05d564f2008-12-23 16:06:15 -05002202 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002203 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002204 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Chuck Lever9f06c712010-12-14 14:59:18 +00002206 encode_compound_hdr(xdr, req, &hdr);
2207 encode_sequence(xdr, &args->seq_args, &hdr);
2208 encode_putfh(xdr, args->fh, &hdr);
2209 encode_close(xdr, args, &hdr);
2210 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002211 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212}
2213
2214/*
2215 * Encode an OPEN request
2216 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002217static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2218 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002221 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Chuck Lever9f06c712010-12-14 14:59:18 +00002224 encode_compound_hdr(xdr, req, &hdr);
2225 encode_sequence(xdr, &args->seq_args, &hdr);
2226 encode_putfh(xdr, args->fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002227 encode_open(xdr, args, &hdr);
2228 encode_getfh(xdr, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002229 if (args->access)
2230 encode_access(xdr, args->access, &hdr);
Trond Myklebust1549210f2012-06-05 09:16:47 -04002231 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002232 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
2235/*
2236 * Encode an OPEN_CONFIRM request
2237 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002238static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2239 struct xdr_stream *xdr,
2240 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002243 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Chuck Lever9f06c712010-12-14 14:59:18 +00002246 encode_compound_hdr(xdr, req, &hdr);
2247 encode_putfh(xdr, args->fh, &hdr);
2248 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002249 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
2252/*
2253 * Encode an OPEN request with no attributes.
2254 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002255static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2256 struct xdr_stream *xdr,
2257 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002260 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Chuck Lever9f06c712010-12-14 14:59:18 +00002263 encode_compound_hdr(xdr, req, &hdr);
2264 encode_sequence(xdr, &args->seq_args, &hdr);
2265 encode_putfh(xdr, args->fh, &hdr);
2266 encode_open(xdr, args, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002267 if (args->access)
2268 encode_access(xdr, args->access, &hdr);
Andy Adamsone23008e2012-10-02 21:07:32 -04002269 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002270 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
2273/*
2274 * Encode an OPEN_DOWNGRADE request
2275 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002276static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2277 struct xdr_stream *xdr,
2278 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002281 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Chuck Lever9f06c712010-12-14 14:59:18 +00002284 encode_compound_hdr(xdr, req, &hdr);
2285 encode_sequence(xdr, &args->seq_args, &hdr);
2286 encode_putfh(xdr, args->fh, &hdr);
2287 encode_open_downgrade(xdr, args, &hdr);
2288 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002289 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290}
2291
2292/*
2293 * Encode a LOCK request
2294 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002295static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2296 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002299 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Chuck Lever9f06c712010-12-14 14:59:18 +00002302 encode_compound_hdr(xdr, req, &hdr);
2303 encode_sequence(xdr, &args->seq_args, &hdr);
2304 encode_putfh(xdr, args->fh, &hdr);
2305 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002306 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
2308
2309/*
2310 * Encode a LOCKT request
2311 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002312static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2313 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002316 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Chuck Lever9f06c712010-12-14 14:59:18 +00002319 encode_compound_hdr(xdr, req, &hdr);
2320 encode_sequence(xdr, &args->seq_args, &hdr);
2321 encode_putfh(xdr, args->fh, &hdr);
2322 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002323 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
2326/*
2327 * Encode a LOCKU request
2328 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002329static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2330 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002333 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Chuck Lever9f06c712010-12-14 14:59:18 +00002336 encode_compound_hdr(xdr, req, &hdr);
2337 encode_sequence(xdr, &args->seq_args, &hdr);
2338 encode_putfh(xdr, args->fh, &hdr);
2339 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002340 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
Chuck Lever9f06c712010-12-14 14:59:18 +00002343static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2344 struct xdr_stream *xdr,
2345 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002346{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002347 struct compound_hdr hdr = {
2348 .minorversion = 0,
2349 };
2350
Chuck Lever9f06c712010-12-14 14:59:18 +00002351 encode_compound_hdr(xdr, req, &hdr);
2352 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002353 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356/*
2357 * Encode a READLINK request
2358 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002359static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2360 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002363 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Chuck Lever9f06c712010-12-14 14:59:18 +00002366 encode_compound_hdr(xdr, req, &hdr);
2367 encode_sequence(xdr, &args->seq_args, &hdr);
2368 encode_putfh(xdr, args->fh, &hdr);
2369 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002370
Benny Halevy28f56692009-04-01 09:22:09 -04002371 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002372 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002373 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
2376/*
2377 * Encode a READDIR request
2378 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002379static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2380 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002383 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Chuck Lever9f06c712010-12-14 14:59:18 +00002386 encode_compound_hdr(xdr, req, &hdr);
2387 encode_sequence(xdr, &args->seq_args, &hdr);
2388 encode_putfh(xdr, args->fh, &hdr);
2389 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002390
Benny Halevy28f56692009-04-01 09:22:09 -04002391 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002392 args->pgbase, args->count);
2393 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002394 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002395 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002396 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397}
2398
2399/*
2400 * Encode a READ request
2401 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002402static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2403 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002406 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Chuck Lever9f06c712010-12-14 14:59:18 +00002409 encode_compound_hdr(xdr, req, &hdr);
2410 encode_sequence(xdr, &args->seq_args, &hdr);
2411 encode_putfh(xdr, args->fh, &hdr);
2412 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Benny Halevy28f56692009-04-01 09:22:09 -04002414 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002416 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002417 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
2420/*
2421 * Encode an SETATTR request
2422 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002423static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2424 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425{
Andy Adamson05d564f2008-12-23 16:06:15 -05002426 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002427 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002428 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Chuck Lever9f06c712010-12-14 14:59:18 +00002430 encode_compound_hdr(xdr, req, &hdr);
2431 encode_sequence(xdr, &args->seq_args, &hdr);
2432 encode_putfh(xdr, args->fh, &hdr);
2433 encode_setattr(xdr, args, args->server, &hdr);
2434 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002435 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
2438/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002439 * Encode a GETACL request
2440 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002441static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2442 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002443{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002444 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002445 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002446 };
Benny Halevy28f56692009-04-01 09:22:09 -04002447 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002448
Chuck Lever9f06c712010-12-14 14:59:18 +00002449 encode_compound_hdr(xdr, req, &hdr);
2450 encode_sequence(xdr, &args->seq_args, &hdr);
2451 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002452 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002453 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002454
Benny Halevy28f56692009-04-01 09:22:09 -04002455 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002456 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002457
Andy Adamsond0179312008-12-23 16:06:17 -05002458 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002459}
2460
2461/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 * Encode a WRITE request
2463 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002464static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2465 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002468 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Chuck Lever9f06c712010-12-14 14:59:18 +00002471 encode_compound_hdr(xdr, req, &hdr);
2472 encode_sequence(xdr, &args->seq_args, &hdr);
2473 encode_putfh(xdr, args->fh, &hdr);
2474 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002475 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002476 if (args->bitmask)
2477 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002478 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
2481/*
2482 * a COMMIT request
2483 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002484static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04002485 struct nfs_commitargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002488 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Chuck Lever9f06c712010-12-14 14:59:18 +00002491 encode_compound_hdr(xdr, req, &hdr);
2492 encode_sequence(xdr, &args->seq_args, &hdr);
2493 encode_putfh(xdr, args->fh, &hdr);
2494 encode_commit(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002495 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
2498/*
2499 * FSINFO request
2500 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002501static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2502 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002505 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Chuck Lever9f06c712010-12-14 14:59:18 +00002508 encode_compound_hdr(xdr, req, &hdr);
2509 encode_sequence(xdr, &args->seq_args, &hdr);
2510 encode_putfh(xdr, args->fh, &hdr);
2511 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002512 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
2515/*
2516 * a PATHCONF request
2517 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002518static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2519 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002522 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Chuck Lever9f06c712010-12-14 14:59:18 +00002525 encode_compound_hdr(xdr, req, &hdr);
2526 encode_sequence(xdr, &args->seq_args, &hdr);
2527 encode_putfh(xdr, args->fh, &hdr);
2528 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002529 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002530 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531}
2532
2533/*
2534 * a STATFS request
2535 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002536static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2537 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002540 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Chuck Lever9f06c712010-12-14 14:59:18 +00002543 encode_compound_hdr(xdr, req, &hdr);
2544 encode_sequence(xdr, &args->seq_args, &hdr);
2545 encode_putfh(xdr, args->fh, &hdr);
2546 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002547 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002548 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549}
2550
2551/*
2552 * GETATTR_BITMAP request
2553 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002554static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2555 struct xdr_stream *xdr,
2556 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002559 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Chuck Lever9f06c712010-12-14 14:59:18 +00002562 encode_compound_hdr(xdr, req, &hdr);
2563 encode_sequence(xdr, &args->seq_args, &hdr);
2564 encode_putfh(xdr, args->fhandle, &hdr);
2565 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002566 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002567 FATTR4_WORD0_LINK_SUPPORT|
2568 FATTR4_WORD0_SYMLINK_SUPPORT|
2569 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002570 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571}
2572
2573/*
2574 * a RENEW request
2575 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002576static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2577 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002580 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 };
2582
Chuck Lever9f06c712010-12-14 14:59:18 +00002583 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002584 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002585 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
2588/*
2589 * a SETCLIENTID request
2590 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002591static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2592 struct xdr_stream *xdr,
2593 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002596 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 };
2598
Chuck Lever9f06c712010-12-14 14:59:18 +00002599 encode_compound_hdr(xdr, req, &hdr);
2600 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002601 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602}
2603
2604/*
2605 * a SETCLIENTID_CONFIRM request
2606 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002607static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2608 struct xdr_stream *xdr,
2609 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002612 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 };
Fred Isamandae100c2011-07-30 20:52:37 -04002614 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Chuck Lever9f06c712010-12-14 14:59:18 +00002616 encode_compound_hdr(xdr, req, &hdr);
2617 encode_setclientid_confirm(xdr, arg, &hdr);
2618 encode_putrootfh(xdr, &hdr);
2619 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002620 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
2623/*
2624 * DELEGRETURN request
2625 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002626static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2627 struct xdr_stream *xdr,
2628 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002631 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Chuck Lever9f06c712010-12-14 14:59:18 +00002634 encode_compound_hdr(xdr, req, &hdr);
2635 encode_sequence(xdr, &args->seq_args, &hdr);
2636 encode_putfh(xdr, args->fhandle, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002637 encode_getfattr(xdr, args->bitmask, &hdr);
Trond Myklebuste144cbc2012-04-28 16:05:03 -04002638 encode_delegreturn(xdr, args->stateid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002639 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
2642/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002643 * Encode FS_LOCATIONS request
2644 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002645static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2646 struct xdr_stream *xdr,
2647 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002648{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002649 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002650 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002651 };
Benny Halevy28f56692009-04-01 09:22:09 -04002652 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002653
Chuck Lever9f06c712010-12-14 14:59:18 +00002654 encode_compound_hdr(xdr, req, &hdr);
2655 encode_sequence(xdr, &args->seq_args, &hdr);
2656 encode_putfh(xdr, args->dir_fh, &hdr);
2657 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002658 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002659 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002660
Benny Halevy28f56692009-04-01 09:22:09 -04002661 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002662 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002663 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002664}
2665
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002666/*
2667 * Encode SECINFO request
2668 */
2669static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2670 struct xdr_stream *xdr,
2671 struct nfs4_secinfo_arg *args)
2672{
2673 struct compound_hdr hdr = {
2674 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2675 };
2676
2677 encode_compound_hdr(xdr, req, &hdr);
2678 encode_sequence(xdr, &args->seq_args, &hdr);
2679 encode_putfh(xdr, args->dir_fh, &hdr);
2680 encode_secinfo(xdr, args->name, &hdr);
2681 encode_nops(&hdr);
2682}
2683
Benny Halevy99fe60d2009-04-01 09:22:29 -04002684#if defined(CONFIG_NFS_V4_1)
2685/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04002686 * BIND_CONN_TO_SESSION request
2687 */
2688static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
2689 struct xdr_stream *xdr,
2690 struct nfs_client *clp)
2691{
2692 struct compound_hdr hdr = {
2693 .minorversion = clp->cl_mvops->minor_version,
2694 };
2695
2696 encode_compound_hdr(xdr, req, &hdr);
2697 encode_bind_conn_to_session(xdr, clp->cl_session, &hdr);
2698 encode_nops(&hdr);
2699}
2700
2701/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04002702 * EXCHANGE_ID request
2703 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002704static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2705 struct xdr_stream *xdr,
2706 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002707{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002708 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002709 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002710 };
2711
Chuck Lever9f06c712010-12-14 14:59:18 +00002712 encode_compound_hdr(xdr, req, &hdr);
2713 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002714 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002715}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002716
2717/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002718 * a CREATE_SESSION request
2719 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002720static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2721 struct xdr_stream *xdr,
2722 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002723{
Andy Adamsonfc931582009-04-01 09:22:31 -04002724 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002725 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002726 };
2727
Chuck Lever9f06c712010-12-14 14:59:18 +00002728 encode_compound_hdr(xdr, req, &hdr);
2729 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002730 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002731}
2732
2733/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002734 * a DESTROY_SESSION request
2735 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002736static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2737 struct xdr_stream *xdr,
2738 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002739{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002740 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002741 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002742 };
2743
Chuck Lever9f06c712010-12-14 14:59:18 +00002744 encode_compound_hdr(xdr, req, &hdr);
2745 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002746 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002747}
2748
2749/*
Trond Myklebust66245532012-05-25 17:18:09 -04002750 * a DESTROY_CLIENTID request
2751 */
2752static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
2753 struct xdr_stream *xdr,
2754 struct nfs_client *clp)
2755{
2756 struct compound_hdr hdr = {
2757 .minorversion = clp->cl_mvops->minor_version,
2758 };
2759
2760 encode_compound_hdr(xdr, req, &hdr);
2761 encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
2762 encode_nops(&hdr);
2763}
2764
2765/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002766 * a SEQUENCE request
2767 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002768static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2769 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002770{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002771 struct compound_hdr hdr = {
2772 .minorversion = nfs4_xdr_minorversion(args),
2773 };
2774
Chuck Lever9f06c712010-12-14 14:59:18 +00002775 encode_compound_hdr(xdr, req, &hdr);
2776 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002777 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002778}
2779
2780/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002781 * a GET_LEASE_TIME request
2782 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002783static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2784 struct xdr_stream *xdr,
2785 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002786{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002787 struct compound_hdr hdr = {
2788 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2789 };
Fred Isamandae100c2011-07-30 20:52:37 -04002790 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002791
Chuck Lever9f06c712010-12-14 14:59:18 +00002792 encode_compound_hdr(xdr, req, &hdr);
2793 encode_sequence(xdr, &args->la_seq_args, &hdr);
2794 encode_putrootfh(xdr, &hdr);
2795 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002796 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002797}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002798
2799/*
2800 * a RECLAIM_COMPLETE request
2801 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002802static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2803 struct xdr_stream *xdr,
2804 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002805{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002806 struct compound_hdr hdr = {
2807 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2808 };
2809
Chuck Lever9f06c712010-12-14 14:59:18 +00002810 encode_compound_hdr(xdr, req, &hdr);
2811 encode_sequence(xdr, &args->seq_args, &hdr);
2812 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002813 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002814}
2815
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002816/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002817 * Encode GETDEVICELIST request
2818 */
2819static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2820 struct xdr_stream *xdr,
2821 struct nfs4_getdevicelist_args *args)
2822{
2823 struct compound_hdr hdr = {
2824 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2825 };
2826
2827 encode_compound_hdr(xdr, req, &hdr);
2828 encode_sequence(xdr, &args->seq_args, &hdr);
2829 encode_putfh(xdr, args->fh, &hdr);
2830 encode_getdevicelist(xdr, args, &hdr);
2831 encode_nops(&hdr);
2832}
2833
2834/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002835 * Encode GETDEVICEINFO request
2836 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002837static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2838 struct xdr_stream *xdr,
2839 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002840{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002841 struct compound_hdr hdr = {
2842 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2843 };
2844
Chuck Lever9f06c712010-12-14 14:59:18 +00002845 encode_compound_hdr(xdr, req, &hdr);
2846 encode_sequence(xdr, &args->seq_args, &hdr);
2847 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002848
2849 /* set up reply kvec. Subtract notification bitmap max size (2)
2850 * so that notification bitmap is put in xdr_buf tail */
2851 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2852 args->pdev->pages, args->pdev->pgbase,
2853 args->pdev->pglen);
2854
2855 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002856}
2857
2858/*
2859 * Encode LAYOUTGET request
2860 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002861static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2862 struct xdr_stream *xdr,
2863 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002864{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002865 struct compound_hdr hdr = {
2866 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2867 };
2868
Chuck Lever9f06c712010-12-14 14:59:18 +00002869 encode_compound_hdr(xdr, req, &hdr);
2870 encode_sequence(xdr, &args->seq_args, &hdr);
2871 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2872 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002873
2874 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2875 args->layout.pages, 0, args->layout.pglen);
2876
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002877 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002878}
Andy Adamson863a3c62011-03-23 13:27:54 +00002879
2880/*
2881 * Encode LAYOUTCOMMIT request
2882 */
Benny Halevycbe82602011-05-22 19:52:37 +03002883static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2884 struct xdr_stream *xdr,
2885 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002886{
Benny Halevyac7db722011-05-22 19:53:48 +03002887 struct nfs4_layoutcommit_data *data =
2888 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002889 struct compound_hdr hdr = {
2890 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2891 };
2892
2893 encode_compound_hdr(xdr, req, &hdr);
2894 encode_sequence(xdr, &args->seq_args, &hdr);
2895 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002896 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002897 encode_getfattr(xdr, args->bitmask, &hdr);
2898 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002899}
2900
2901/*
2902 * Encode LAYOUTRETURN request
2903 */
2904static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2905 struct xdr_stream *xdr,
2906 struct nfs4_layoutreturn_args *args)
2907{
2908 struct compound_hdr hdr = {
2909 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2910 };
2911
2912 encode_compound_hdr(xdr, req, &hdr);
2913 encode_sequence(xdr, &args->seq_args, &hdr);
2914 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2915 encode_layoutreturn(xdr, args, &hdr);
2916 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002917}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002918
2919/*
2920 * Encode SECINFO_NO_NAME request
2921 */
2922static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2923 struct xdr_stream *xdr,
2924 struct nfs41_secinfo_no_name_args *args)
2925{
2926 struct compound_hdr hdr = {
2927 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2928 };
2929
2930 encode_compound_hdr(xdr, req, &hdr);
2931 encode_sequence(xdr, &args->seq_args, &hdr);
2932 encode_putrootfh(xdr, &hdr);
2933 encode_secinfo_no_name(xdr, args, &hdr);
2934 encode_nops(&hdr);
2935 return 0;
2936}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002937
2938/*
2939 * Encode TEST_STATEID request
2940 */
2941static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
2942 struct xdr_stream *xdr,
2943 struct nfs41_test_stateid_args *args)
2944{
2945 struct compound_hdr hdr = {
2946 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2947 };
2948
2949 encode_compound_hdr(xdr, req, &hdr);
2950 encode_sequence(xdr, &args->seq_args, &hdr);
2951 encode_test_stateid(xdr, args, &hdr);
2952 encode_nops(&hdr);
2953}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002954
2955/*
2956 * Encode FREE_STATEID request
2957 */
2958static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
2959 struct xdr_stream *xdr,
2960 struct nfs41_free_stateid_args *args)
2961{
2962 struct compound_hdr hdr = {
2963 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2964 };
2965
2966 encode_compound_hdr(xdr, req, &hdr);
2967 encode_sequence(xdr, &args->seq_args, &hdr);
2968 encode_free_stateid(xdr, args, &hdr);
2969 encode_nops(&hdr);
2970}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002971#endif /* CONFIG_NFS_V4_1 */
2972
Benny Halevy686841b2009-08-14 17:19:48 +03002973static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2974{
2975 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2976 "Remaining buffer length is %tu words.\n",
2977 func, xdr->end - xdr->p);
2978}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Trond Myklebust683b57b2006-06-09 09:34:22 -04002980static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Al Viro8687b632006-10-19 23:28:48 -07002982 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Benny Halevyc0eae662009-08-14 17:20:14 +03002984 p = xdr_inline_decode(xdr, 4);
2985 if (unlikely(!p))
2986 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002987 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002988 p = xdr_inline_decode(xdr, *len);
2989 if (unlikely(!p))
2990 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 *string = (char *)p;
2992 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002993out_overflow:
2994 print_overflow_msg(__func__, xdr);
2995 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
2998static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2999{
Al Viro8687b632006-10-19 23:28:48 -07003000 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Benny Halevyc0eae662009-08-14 17:20:14 +03003002 p = xdr_inline_decode(xdr, 8);
3003 if (unlikely(!p))
3004 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003005 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003006 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003007
Benny Halevyc0eae662009-08-14 17:20:14 +03003008 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3009 if (unlikely(!p))
3010 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 hdr->tag = (char *)p;
3012 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003013 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003014 if (unlikely(hdr->nops < 1))
3015 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003017out_overflow:
3018 print_overflow_msg(__func__, xdr);
3019 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020}
3021
3022static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3023{
Al Viro8687b632006-10-19 23:28:48 -07003024 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 uint32_t opnum;
3026 int32_t nfserr;
3027
Benny Halevyc0eae662009-08-14 17:20:14 +03003028 p = xdr_inline_decode(xdr, 8);
3029 if (unlikely(!p))
3030 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003031 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003033 dprintk("nfs: Server returned operation"
3034 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 opnum, expected);
3036 return -EIO;
3037 }
Benny Halevycccddf42009-08-14 17:20:19 +03003038 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03003040 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003042out_overflow:
3043 print_overflow_msg(__func__, xdr);
3044 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045}
3046
3047/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003048static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
Al Viro8687b632006-10-19 23:28:48 -07003050 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003051 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 char *str;
3053
Benny Halevyc0eae662009-08-14 17:20:14 +03003054 p = xdr_inline_decode(xdr, 12);
3055 if (likely(p))
3056 return decode_opaque_inline(xdr, &strlen, &str);
3057 print_overflow_msg(__func__, xdr);
3058 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
3060
3061static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3062{
Al Viro8687b632006-10-19 23:28:48 -07003063 uint32_t bmlen;
3064 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Benny Halevyc0eae662009-08-14 17:20:14 +03003066 p = xdr_inline_decode(xdr, 4);
3067 if (unlikely(!p))
3068 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003069 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Fred Isamandae100c2011-07-30 20:52:37 -04003071 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003072 p = xdr_inline_decode(xdr, (bmlen << 2));
3073 if (unlikely(!p))
3074 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003076 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003077 if (bmlen > 1) {
3078 bitmap[1] = be32_to_cpup(p++);
3079 if (bmlen > 2)
3080 bitmap[2] = be32_to_cpup(p);
3081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003084out_overflow:
3085 print_overflow_msg(__func__, xdr);
3086 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
3088
Trond Myklebust256e48b2012-06-21 11:18:13 -04003089static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
Al Viro8687b632006-10-19 23:28:48 -07003091 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Benny Halevyc0eae662009-08-14 17:20:14 +03003093 p = xdr_inline_decode(xdr, 4);
3094 if (unlikely(!p))
3095 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003096 *attrlen = be32_to_cpup(p);
Trond Myklebust256e48b2012-06-21 11:18:13 -04003097 *savep = xdr_stream_pos(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003099out_overflow:
3100 print_overflow_msg(__func__, xdr);
3101 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
3104static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3105{
3106 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003107 int ret;
3108 ret = decode_attr_bitmap(xdr, bitmask);
3109 if (unlikely(ret < 0))
3110 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3112 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003113 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3114 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3115 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 return 0;
3117}
3118
3119static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3120{
Al Viro8687b632006-10-19 23:28:48 -07003121 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003122 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124 *type = 0;
3125 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3126 return -EIO;
3127 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003128 p = xdr_inline_decode(xdr, 4);
3129 if (unlikely(!p))
3130 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003131 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003133 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return -EIO;
3135 }
3136 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003137 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003139 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003140 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003141out_overflow:
3142 print_overflow_msg(__func__, xdr);
3143 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145
Chuck Lever264e6352012-03-01 17:02:05 -05003146static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3147 uint32_t *bitmap, uint32_t *type)
3148{
3149 __be32 *p;
3150
3151 *type = 0;
3152 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3153 return -EIO;
3154 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3155 p = xdr_inline_decode(xdr, 4);
3156 if (unlikely(!p))
3157 goto out_overflow;
3158 *type = be32_to_cpup(p);
3159 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3160 }
3161 dprintk("%s: expire type=0x%x\n", __func__, *type);
3162 return 0;
3163out_overflow:
3164 print_overflow_msg(__func__, xdr);
3165 return -EIO;
3166}
3167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3169{
Al Viro8687b632006-10-19 23:28:48 -07003170 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003171 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173 *change = 0;
3174 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3175 return -EIO;
3176 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003177 p = xdr_inline_decode(xdr, 8);
3178 if (unlikely(!p))
3179 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003180 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003182 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003184 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003186 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003187out_overflow:
3188 print_overflow_msg(__func__, xdr);
3189 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190}
3191
3192static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3193{
Al Viro8687b632006-10-19 23:28:48 -07003194 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003195 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
3197 *size = 0;
3198 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3199 return -EIO;
3200 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003201 p = xdr_inline_decode(xdr, 8);
3202 if (unlikely(!p))
3203 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003204 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003206 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003208 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003209 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003210out_overflow:
3211 print_overflow_msg(__func__, xdr);
3212 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
3215static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3216{
Al Viro8687b632006-10-19 23:28:48 -07003217 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 *res = 0;
3220 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3221 return -EIO;
3222 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003223 p = xdr_inline_decode(xdr, 4);
3224 if (unlikely(!p))
3225 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003226 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3228 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003229 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003231out_overflow:
3232 print_overflow_msg(__func__, xdr);
3233 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234}
3235
3236static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3237{
Al Viro8687b632006-10-19 23:28:48 -07003238 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240 *res = 0;
3241 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3242 return -EIO;
3243 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003244 p = xdr_inline_decode(xdr, 4);
3245 if (unlikely(!p))
3246 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003247 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3249 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003250 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003252out_overflow:
3253 print_overflow_msg(__func__, xdr);
3254 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003257static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
Al Viro8687b632006-10-19 23:28:48 -07003259 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003260 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
3262 fsid->major = 0;
3263 fsid->minor = 0;
3264 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3265 return -EIO;
3266 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003267 p = xdr_inline_decode(xdr, 16);
3268 if (unlikely(!p))
3269 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003270 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003271 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003273 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003275 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 (unsigned long long)fsid->major,
3277 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003278 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003279out_overflow:
3280 print_overflow_msg(__func__, xdr);
3281 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
3284static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3285{
Al Viro8687b632006-10-19 23:28:48 -07003286 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 *res = 60;
3289 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3290 return -EIO;
3291 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003292 p = xdr_inline_decode(xdr, 4);
3293 if (unlikely(!p))
3294 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003295 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3297 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003298 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003300out_overflow:
3301 print_overflow_msg(__func__, xdr);
3302 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003305static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003306{
3307 __be32 *p;
3308
3309 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3310 return -EIO;
3311 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3312 p = xdr_inline_decode(xdr, 4);
3313 if (unlikely(!p))
3314 goto out_overflow;
3315 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003316 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003317 }
3318 return 0;
3319out_overflow:
3320 print_overflow_msg(__func__, xdr);
3321 return -EIO;
3322}
3323
3324static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3325{
3326 __be32 *p;
3327 int len;
3328
Trond Myklebust7ad07352010-10-23 15:34:20 -04003329 if (fh != NULL)
3330 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003331
3332 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3333 return -EIO;
3334 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3335 p = xdr_inline_decode(xdr, 4);
3336 if (unlikely(!p))
3337 goto out_overflow;
3338 len = be32_to_cpup(p);
3339 if (len > NFS4_FHSIZE)
3340 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003341 p = xdr_inline_decode(xdr, len);
3342 if (unlikely(!p))
3343 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003344 if (fh != NULL) {
3345 memcpy(fh->data, p, len);
3346 fh->size = len;
3347 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003348 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3349 }
3350 return 0;
3351out_overflow:
3352 print_overflow_msg(__func__, xdr);
3353 return -EIO;
3354}
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3357{
Al Viro8687b632006-10-19 23:28:48 -07003358 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
3360 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3361 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3362 return -EIO;
3363 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003364 p = xdr_inline_decode(xdr, 4);
3365 if (unlikely(!p))
3366 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003367 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3369 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003370 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003372out_overflow:
3373 print_overflow_msg(__func__, xdr);
3374 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375}
3376
3377static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3378{
Al Viro8687b632006-10-19 23:28:48 -07003379 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003380 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 *fileid = 0;
3383 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3384 return -EIO;
3385 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003386 p = xdr_inline_decode(xdr, 8);
3387 if (unlikely(!p))
3388 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003389 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003391 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003393 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003394 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003395out_overflow:
3396 print_overflow_msg(__func__, xdr);
3397 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398}
3399
Manoj Naik99baf622006-06-09 09:34:24 -04003400static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3401{
Al Viro8687b632006-10-19 23:28:48 -07003402 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003403 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003404
3405 *fileid = 0;
3406 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3407 return -EIO;
3408 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003409 p = xdr_inline_decode(xdr, 8);
3410 if (unlikely(!p))
3411 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003412 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003413 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003414 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003415 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003416 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003417 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003418out_overflow:
3419 print_overflow_msg(__func__, xdr);
3420 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003421}
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3424{
Al Viro8687b632006-10-19 23:28:48 -07003425 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 int status = 0;
3427
3428 *res = 0;
3429 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3430 return -EIO;
3431 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003432 p = xdr_inline_decode(xdr, 8);
3433 if (unlikely(!p))
3434 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003435 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3437 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003438 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003440out_overflow:
3441 print_overflow_msg(__func__, xdr);
3442 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
3445static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3446{
Al Viro8687b632006-10-19 23:28:48 -07003447 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 int status = 0;
3449
3450 *res = 0;
3451 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3452 return -EIO;
3453 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003454 p = xdr_inline_decode(xdr, 8);
3455 if (unlikely(!p))
3456 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003457 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3459 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003460 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003462out_overflow:
3463 print_overflow_msg(__func__, xdr);
3464 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
3467static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3468{
Al Viro8687b632006-10-19 23:28:48 -07003469 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 int status = 0;
3471
3472 *res = 0;
3473 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3474 return -EIO;
3475 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003476 p = xdr_inline_decode(xdr, 8);
3477 if (unlikely(!p))
3478 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003479 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3481 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003482 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003484out_overflow:
3485 print_overflow_msg(__func__, xdr);
3486 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487}
3488
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003489static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3490{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003491 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003492 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003493 int status = 0;
3494
Benny Halevyc0eae662009-08-14 17:20:14 +03003495 p = xdr_inline_decode(xdr, 4);
3496 if (unlikely(!p))
3497 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003498 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003499 if (n == 0)
3500 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003501 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003502 path->ncomponents = 0;
3503 while (path->ncomponents < n) {
3504 struct nfs4_string *component = &path->components[path->ncomponents];
3505 status = decode_opaque_inline(xdr, &component->len, &component->data);
3506 if (unlikely(status != 0))
3507 goto out_eio;
Trond Myklebust95a13f72012-03-14 21:55:01 -04003508 ifdebug (XDR)
Chuck Lever02a29762012-03-01 17:00:31 -05003509 pr_cont("%s%.*s ",
3510 (path->ncomponents != n ? "/ " : ""),
3511 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003512 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3513 path->ncomponents++;
3514 else {
3515 dprintk("cannot parse %d components in path\n", n);
3516 goto out_eio;
3517 }
3518 }
3519out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003520 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003521root_path:
3522/* a root pathname is sent as a zero component4 */
3523 path->ncomponents = 1;
3524 path->components[0].len=0;
3525 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003526 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003527 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003528out_eio:
3529 dprintk(" status %d", status);
3530 status = -EIO;
3531 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003532out_overflow:
3533 print_overflow_msg(__func__, xdr);
3534 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003535}
3536
3537static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003538{
3539 int n;
Al Viro8687b632006-10-19 23:28:48 -07003540 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003541 int status = -EIO;
3542
3543 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3544 goto out;
3545 status = 0;
3546 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3547 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003548 status = -EIO;
3549 /* Ignore borken servers that return unrequested attrs */
3550 if (unlikely(res == NULL))
3551 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003552 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003553 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003554 if (unlikely(status != 0))
3555 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003556 p = xdr_inline_decode(xdr, 4);
3557 if (unlikely(!p))
3558 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003559 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003560 if (n <= 0)
3561 goto out_eio;
3562 res->nlocations = 0;
3563 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003564 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003565 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003566
Benny Halevyc0eae662009-08-14 17:20:14 +03003567 p = xdr_inline_decode(xdr, 4);
3568 if (unlikely(!p))
3569 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003570 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003571
3572 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003573 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003574 while (loc->nservers < m) {
3575 struct nfs4_string *server = &loc->servers[loc->nservers];
3576 status = decode_opaque_inline(xdr, &server->len, &server->data);
3577 if (unlikely(status != 0))
3578 goto out_eio;
3579 dprintk("%s ", server->data);
3580 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3581 loc->nservers++;
3582 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003583 unsigned int i;
3584 dprintk("%s: using first %u of %u servers "
3585 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003586 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003587 NFS4_FS_LOCATION_MAXSERVERS,
3588 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003589 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003590 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003591 char *data;
3592 status = decode_opaque_inline(xdr, &len, &data);
3593 if (unlikely(status != 0))
3594 goto out_eio;
3595 }
3596 }
3597 }
3598 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003599 if (unlikely(status != 0))
3600 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003601 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003602 res->nlocations++;
3603 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003604 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003605 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003606out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003607 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003608 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003609out_overflow:
3610 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003611out_eio:
3612 status = -EIO;
3613 goto out;
3614}
3615
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3617{
Al Viro8687b632006-10-19 23:28:48 -07003618 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 int status = 0;
3620
3621 *res = 0;
3622 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3623 return -EIO;
3624 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003625 p = xdr_inline_decode(xdr, 8);
3626 if (unlikely(!p))
3627 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003628 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3630 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003631 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003633out_overflow:
3634 print_overflow_msg(__func__, xdr);
3635 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636}
3637
3638static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3639{
Al Viro8687b632006-10-19 23:28:48 -07003640 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 int status = 0;
3642
3643 *maxlink = 1;
3644 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3645 return -EIO;
3646 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003647 p = xdr_inline_decode(xdr, 4);
3648 if (unlikely(!p))
3649 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003650 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3652 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003653 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003655out_overflow:
3656 print_overflow_msg(__func__, xdr);
3657 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658}
3659
3660static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3661{
Al Viro8687b632006-10-19 23:28:48 -07003662 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 int status = 0;
3664
3665 *maxname = 1024;
3666 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3667 return -EIO;
3668 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003669 p = xdr_inline_decode(xdr, 4);
3670 if (unlikely(!p))
3671 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003672 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3674 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003675 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003677out_overflow:
3678 print_overflow_msg(__func__, xdr);
3679 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
3682static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3683{
Al Viro8687b632006-10-19 23:28:48 -07003684 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 int status = 0;
3686
3687 *res = 1024;
3688 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3689 return -EIO;
3690 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3691 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003692 p = xdr_inline_decode(xdr, 8);
3693 if (unlikely(!p))
3694 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003695 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 if (maxread > 0x7FFFFFFF)
3697 maxread = 0x7FFFFFFF;
3698 *res = (uint32_t)maxread;
3699 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3700 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003701 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003703out_overflow:
3704 print_overflow_msg(__func__, xdr);
3705 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
3708static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3709{
Al Viro8687b632006-10-19 23:28:48 -07003710 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 int status = 0;
3712
3713 *res = 1024;
3714 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3715 return -EIO;
3716 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3717 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003718 p = xdr_inline_decode(xdr, 8);
3719 if (unlikely(!p))
3720 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003721 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 if (maxwrite > 0x7FFFFFFF)
3723 maxwrite = 0x7FFFFFFF;
3724 *res = (uint32_t)maxwrite;
3725 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3726 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003727 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003729out_overflow:
3730 print_overflow_msg(__func__, xdr);
3731 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732}
3733
Trond Myklebustbca79472009-03-11 14:10:26 -04003734static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
Trond Myklebustbca79472009-03-11 14:10:26 -04003736 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003737 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003738 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 *mode = 0;
3741 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3742 return -EIO;
3743 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003744 p = xdr_inline_decode(xdr, 4);
3745 if (unlikely(!p))
3746 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003747 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003748 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003750 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003752 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003753 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003754out_overflow:
3755 print_overflow_msg(__func__, xdr);
3756 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757}
3758
3759static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3760{
Al Viro8687b632006-10-19 23:28:48 -07003761 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003762 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
3764 *nlink = 1;
3765 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3766 return -EIO;
3767 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003768 p = xdr_inline_decode(xdr, 4);
3769 if (unlikely(!p))
3770 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003771 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003773 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003775 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003776 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003777out_overflow:
3778 print_overflow_msg(__func__, xdr);
3779 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780}
3781
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003782static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003783 const struct nfs_server *server, uint32_t *uid,
3784 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Al Viro8687b632006-10-19 23:28:48 -07003786 uint32_t len;
3787 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003788 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
3790 *uid = -2;
3791 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3792 return -EIO;
3793 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003794 p = xdr_inline_decode(xdr, 4);
3795 if (unlikely(!p))
3796 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003797 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003798 p = xdr_inline_decode(xdr, len);
3799 if (unlikely(!p))
3800 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003801 if (owner_name != NULL) {
3802 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3803 if (owner_name->data != NULL) {
3804 owner_name->len = len;
3805 ret = NFS_ATTR_FATTR_OWNER_NAME;
3806 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003807 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003808 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003809 ret = NFS_ATTR_FATTR_OWNER;
3810 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003812 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003814 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003815 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3817 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003818 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003819 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003820out_overflow:
3821 print_overflow_msg(__func__, xdr);
3822 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003825static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003826 const struct nfs_server *server, uint32_t *gid,
3827 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Al Viro8687b632006-10-19 23:28:48 -07003829 uint32_t len;
3830 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003831 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832
3833 *gid = -2;
3834 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3835 return -EIO;
3836 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003837 p = xdr_inline_decode(xdr, 4);
3838 if (unlikely(!p))
3839 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003840 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003841 p = xdr_inline_decode(xdr, len);
3842 if (unlikely(!p))
3843 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003844 if (group_name != NULL) {
3845 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3846 if (group_name->data != NULL) {
3847 group_name->len = len;
3848 ret = NFS_ATTR_FATTR_GROUP_NAME;
3849 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003850 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003851 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003852 ret = NFS_ATTR_FATTR_GROUP;
3853 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003855 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003857 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003858 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3860 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003861 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003862 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003863out_overflow:
3864 print_overflow_msg(__func__, xdr);
3865 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866}
3867
3868static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3869{
Al Viro8687b632006-10-19 23:28:48 -07003870 uint32_t major = 0, minor = 0;
3871 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003872 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
3874 *rdev = MKDEV(0,0);
3875 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3876 return -EIO;
3877 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3878 dev_t tmp;
3879
Benny Halevyc0eae662009-08-14 17:20:14 +03003880 p = xdr_inline_decode(xdr, 8);
3881 if (unlikely(!p))
3882 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003883 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003884 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 tmp = MKDEV(major, minor);
3886 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3887 *rdev = tmp;
3888 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003889 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003891 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003892 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003893out_overflow:
3894 print_overflow_msg(__func__, xdr);
3895 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896}
3897
3898static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3899{
Al Viro8687b632006-10-19 23:28:48 -07003900 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 int status = 0;
3902
3903 *res = 0;
3904 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3905 return -EIO;
3906 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003907 p = xdr_inline_decode(xdr, 8);
3908 if (unlikely(!p))
3909 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003910 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3912 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003913 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003915out_overflow:
3916 print_overflow_msg(__func__, xdr);
3917 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
3920static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3921{
Al Viro8687b632006-10-19 23:28:48 -07003922 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 int status = 0;
3924
3925 *res = 0;
3926 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3927 return -EIO;
3928 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003929 p = xdr_inline_decode(xdr, 8);
3930 if (unlikely(!p))
3931 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003932 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3934 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003935 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003937out_overflow:
3938 print_overflow_msg(__func__, xdr);
3939 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
3942static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3943{
Al Viro8687b632006-10-19 23:28:48 -07003944 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 int status = 0;
3946
3947 *res = 0;
3948 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3949 return -EIO;
3950 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003951 p = xdr_inline_decode(xdr, 8);
3952 if (unlikely(!p))
3953 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003954 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3956 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003957 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003959out_overflow:
3960 print_overflow_msg(__func__, xdr);
3961 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962}
3963
3964static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3965{
Al Viro8687b632006-10-19 23:28:48 -07003966 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003967 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
3969 *used = 0;
3970 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3971 return -EIO;
3972 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003973 p = xdr_inline_decode(xdr, 8);
3974 if (unlikely(!p))
3975 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003976 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003978 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003980 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003982 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003983out_overflow:
3984 print_overflow_msg(__func__, xdr);
3985 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986}
3987
3988static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3989{
Al Viro8687b632006-10-19 23:28:48 -07003990 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 uint64_t sec;
3992 uint32_t nsec;
3993
Benny Halevyc0eae662009-08-14 17:20:14 +03003994 p = xdr_inline_decode(xdr, 12);
3995 if (unlikely(!p))
3996 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003997 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003998 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 time->tv_sec = (time_t)sec;
4000 time->tv_nsec = (long)nsec;
4001 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004002out_overflow:
4003 print_overflow_msg(__func__, xdr);
4004 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005}
4006
4007static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4008{
4009 int status = 0;
4010
4011 time->tv_sec = 0;
4012 time->tv_nsec = 0;
4013 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4014 return -EIO;
4015 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4016 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004017 if (status == 0)
4018 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4020 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004021 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 return status;
4023}
4024
4025static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4026{
4027 int status = 0;
4028
4029 time->tv_sec = 0;
4030 time->tv_nsec = 0;
4031 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4032 return -EIO;
4033 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4034 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004035 if (status == 0)
4036 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4038 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004039 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 return status;
4041}
4042
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004043static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4044 struct timespec *time)
4045{
4046 int status = 0;
4047
4048 time->tv_sec = 0;
4049 time->tv_nsec = 0;
4050 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4051 return -EIO;
4052 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4053 status = decode_attr_time(xdr, time);
4054 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4055 }
4056 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4057 (long)time->tv_nsec);
4058 return status;
4059}
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4062{
4063 int status = 0;
4064
4065 time->tv_sec = 0;
4066 time->tv_nsec = 0;
4067 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4068 return -EIO;
4069 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4070 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004071 if (status == 0)
4072 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4074 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004075 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 return status;
4077}
4078
Trond Myklebust256e48b2012-06-21 11:18:13 -04004079static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080{
4081 unsigned int attrwords = XDR_QUADLEN(attrlen);
Trond Myklebust256e48b2012-06-21 11:18:13 -04004082 unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
4084 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004085 dprintk("%s: server returned incorrect attribute length: "
4086 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004087 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 attrwords << 2,
4089 (attrwords < nwords) ? '<' : '>',
4090 nwords << 2);
4091 return -EIO;
4092 }
4093 return 0;
4094}
4095
4096static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4097{
Al Viro8687b632006-10-19 23:28:48 -07004098 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Benny Halevyc0eae662009-08-14 17:20:14 +03004100 p = xdr_inline_decode(xdr, 20);
4101 if (unlikely(!p))
4102 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004103 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004104 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004105 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004107out_overflow:
4108 print_overflow_msg(__func__, xdr);
4109 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110}
4111
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004112static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113{
Al Viro8687b632006-10-19 23:28:48 -07004114 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 uint32_t supp, acc;
4116 int status;
4117
4118 status = decode_op_hdr(xdr, OP_ACCESS);
4119 if (status)
4120 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004121 p = xdr_inline_decode(xdr, 8);
4122 if (unlikely(!p))
4123 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004124 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004125 acc = be32_to_cpup(p);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004126 *supported = supp;
4127 *access = acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004129out_overflow:
4130 print_overflow_msg(__func__, xdr);
4131 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132}
4133
Benny Halevy07d30432009-08-14 17:19:52 +03004134static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
Al Viro8687b632006-10-19 23:28:48 -07004136 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004137
4138 p = xdr_inline_decode(xdr, len);
4139 if (likely(p)) {
4140 memcpy(buf, p, len);
4141 return 0;
4142 }
4143 print_overflow_msg(__func__, xdr);
4144 return -EIO;
4145}
4146
4147static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4148{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004149 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
4152static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4153{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 int status;
4155
4156 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004157 if (status != -EIO)
4158 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004159 if (!status)
4160 status = decode_stateid(xdr, &res->stateid);
4161 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162}
4163
Benny Halevydb942bb2009-08-14 17:19:56 +03004164static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4165{
Chuck Levercd937102012-03-02 17:14:31 -05004166 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167}
4168
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004169static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
4170{
4171 return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
4172}
4173
Fred Isaman0b7c0152012-04-20 14:47:39 -04004174static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 int status;
4177
4178 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004179 if (!status)
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004180 status = decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevydb942bb2009-08-14 17:19:56 +03004181 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182}
4183
4184static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4185{
Al Viro8687b632006-10-19 23:28:48 -07004186 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 uint32_t bmlen;
4188 int status;
4189
4190 status = decode_op_hdr(xdr, OP_CREATE);
4191 if (status)
4192 return status;
4193 if ((status = decode_change_info(xdr, cinfo)))
4194 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004195 p = xdr_inline_decode(xdr, 4);
4196 if (unlikely(!p))
4197 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004198 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004199 p = xdr_inline_decode(xdr, bmlen << 2);
4200 if (likely(p))
4201 return 0;
4202out_overflow:
4203 print_overflow_msg(__func__, xdr);
4204 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205}
4206
4207static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4208{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004209 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004210 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 int status;
4212
4213 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4214 goto xdr_error;
4215 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4216 goto xdr_error;
4217 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4218 goto xdr_error;
4219 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4220 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004221 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4222 &res->fh_expire_type)) != 0)
4223 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4225 goto xdr_error;
4226 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4227 goto xdr_error;
4228 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4229 goto xdr_error;
4230 status = verify_attr_len(xdr, savep, attrlen);
4231xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004232 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 return status;
4234}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004235
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4237{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004238 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004239 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004241
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4243 goto xdr_error;
4244 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4245 goto xdr_error;
4246 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4247 goto xdr_error;
4248
4249 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4250 goto xdr_error;
4251 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4252 goto xdr_error;
4253 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4254 goto xdr_error;
4255 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4256 goto xdr_error;
4257 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4258 goto xdr_error;
4259 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4260 goto xdr_error;
4261
4262 status = verify_attr_len(xdr, savep, attrlen);
4263xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004264 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 return status;
4266}
4267
4268static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4269{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004270 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004271 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4275 goto xdr_error;
4276 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4277 goto xdr_error;
4278 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4279 goto xdr_error;
4280
4281 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4282 goto xdr_error;
4283 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4284 goto xdr_error;
4285
4286 status = verify_attr_len(xdr, savep, attrlen);
4287xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004288 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 return status;
4290}
4291
Andy Adamson88034c32012-05-23 05:02:34 -04004292static int decode_threshold_hint(struct xdr_stream *xdr,
4293 uint32_t *bitmap,
4294 uint64_t *res,
4295 uint32_t hint_bit)
4296{
4297 __be32 *p;
4298
4299 *res = 0;
4300 if (likely(bitmap[0] & hint_bit)) {
4301 p = xdr_inline_decode(xdr, 8);
4302 if (unlikely(!p))
4303 goto out_overflow;
4304 xdr_decode_hyper(p, res);
4305 }
4306 return 0;
4307out_overflow:
4308 print_overflow_msg(__func__, xdr);
4309 return -EIO;
4310}
4311
4312static int decode_first_threshold_item4(struct xdr_stream *xdr,
4313 struct nfs4_threshold *res)
4314{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004315 __be32 *p;
4316 unsigned int savep;
Andy Adamson88034c32012-05-23 05:02:34 -04004317 uint32_t bitmap[3] = {0,}, attrlen;
4318 int status;
4319
4320 /* layout type */
4321 p = xdr_inline_decode(xdr, 4);
4322 if (unlikely(!p)) {
4323 print_overflow_msg(__func__, xdr);
4324 return -EIO;
4325 }
4326 res->l_type = be32_to_cpup(p);
4327
4328 /* thi_hintset bitmap */
4329 status = decode_attr_bitmap(xdr, bitmap);
4330 if (status < 0)
4331 goto xdr_error;
4332
4333 /* thi_hintlist length */
4334 status = decode_attr_length(xdr, &attrlen, &savep);
4335 if (status < 0)
4336 goto xdr_error;
4337 /* thi_hintlist */
4338 status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
4339 if (status < 0)
4340 goto xdr_error;
4341 status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
4342 if (status < 0)
4343 goto xdr_error;
4344 status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
4345 THRESHOLD_RD_IO);
4346 if (status < 0)
4347 goto xdr_error;
4348 status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
4349 THRESHOLD_WR_IO);
4350 if (status < 0)
4351 goto xdr_error;
4352
4353 status = verify_attr_len(xdr, savep, attrlen);
4354 res->bm = bitmap[0];
4355
4356 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
4357 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
4358 res->wr_io_sz);
4359xdr_error:
4360 dprintk("%s ret=%d!\n", __func__, status);
4361 return status;
4362}
4363
4364/*
4365 * Thresholds on pNFS direct I/O vrs MDS I/O
4366 */
4367static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
4368 uint32_t *bitmap,
4369 struct nfs4_threshold *res)
4370{
4371 __be32 *p;
4372 int status = 0;
4373 uint32_t num;
4374
4375 if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
4376 return -EIO;
Trond Myklebust029c5342012-06-05 09:35:44 -04004377 if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
Trond Myklebust1549210f2012-06-05 09:16:47 -04004378 /* Did the server return an unrequested attribute? */
4379 if (unlikely(res == NULL))
4380 return -EREMOTEIO;
Andy Adamson88034c32012-05-23 05:02:34 -04004381 p = xdr_inline_decode(xdr, 4);
4382 if (unlikely(!p))
4383 goto out_overflow;
4384 num = be32_to_cpup(p);
4385 if (num == 0)
4386 return 0;
4387 if (num > 1)
4388 printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
4389 "drivers per filesystem not supported\n",
4390 __func__);
4391
4392 status = decode_first_threshold_item4(xdr, res);
Trond Myklebust029c5342012-06-05 09:35:44 -04004393 bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
Andy Adamson88034c32012-05-23 05:02:34 -04004394 }
4395 return status;
4396out_overflow:
4397 print_overflow_msg(__func__, xdr);
4398 return -EIO;
4399}
4400
Bryan Schumakerae42c702010-10-21 16:33:17 -04004401static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4402 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004403 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004404 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405{
Trond Myklebustbca79472009-03-11 14:10:26 -04004406 int status;
4407 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004408 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004409 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004411 status = decode_attr_type(xdr, bitmap, &type);
4412 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004414 fattr->mode = 0;
4415 if (status != 0) {
4416 fattr->mode |= nfs_type2fmt[type];
4417 fattr->valid |= status;
4418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004420 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4421 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004423 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004424
4425 status = decode_attr_size(xdr, bitmap, &fattr->size);
4426 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004428 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004429
4430 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4431 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004433 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004434
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004435 err = 0;
4436 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004437 if (status < 0)
4438 goto xdr_error;
4439
4440 status = decode_attr_filehandle(xdr, bitmap, fh);
4441 if (status < 0)
4442 goto xdr_error;
4443
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004444 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4445 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004447 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004448
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004449 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004450 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004451 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004452 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004453
4454 status = decode_attr_mode(xdr, bitmap, &fmode);
4455 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004457 if (status != 0) {
4458 fattr->mode |= fmode;
4459 fattr->valid |= status;
4460 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004461
4462 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4463 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004465 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004466
Trond Myklebust6926afd2012-01-07 13:22:46 -05004467 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004468 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004470 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004471
Trond Myklebust6926afd2012-01-07 13:22:46 -05004472 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004473 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004475 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004476
4477 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4478 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004480 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004481
4482 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4483 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004485 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004486
4487 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4488 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004490 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004491
4492 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4493 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004495 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004496
4497 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4498 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004500 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004501
Trond Myklebust28331a42011-04-27 13:47:52 -04004502 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004503 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004504 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004505 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004506
Andy Adamson88034c32012-05-23 05:02:34 -04004507 status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
4508 if (status < 0)
4509 goto xdr_error;
4510
Bryan Schumakerae42c702010-10-21 16:33:17 -04004511xdr_error:
4512 dprintk("%s: xdr returned %d\n", __func__, -status);
4513 return status;
4514}
4515
4516static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004517 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4518 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004519{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004520 unsigned int savep;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004521 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004522 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004523 int status;
4524
4525 status = decode_op_hdr(xdr, OP_GETATTR);
4526 if (status < 0)
4527 goto xdr_error;
4528
4529 status = decode_attr_bitmap(xdr, bitmap);
4530 if (status < 0)
4531 goto xdr_error;
4532
4533 status = decode_attr_length(xdr, &attrlen, &savep);
4534 if (status < 0)
4535 goto xdr_error;
4536
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004537 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004538 if (status < 0)
4539 goto xdr_error;
4540
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004541 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004543 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 return status;
4545}
4546
Bryan Schumakerae42c702010-10-21 16:33:17 -04004547static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004548 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004549{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004550 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004551}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Andy Adamson504913f2010-10-20 00:17:57 -04004553/*
4554 * Decode potentially multiple layout types. Currently we only support
4555 * one layout driver per file system.
4556 */
4557static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4558 uint32_t *layouttype)
4559{
4560 uint32_t *p;
4561 int num;
4562
4563 p = xdr_inline_decode(xdr, 4);
4564 if (unlikely(!p))
4565 goto out_overflow;
4566 num = be32_to_cpup(p);
4567
4568 /* pNFS is not supported by the underlying file system */
4569 if (num == 0) {
4570 *layouttype = 0;
4571 return 0;
4572 }
4573 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004574 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4575 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004576
4577 /* Decode and set first layout type, move xdr->p past unused types */
4578 p = xdr_inline_decode(xdr, num * 4);
4579 if (unlikely(!p))
4580 goto out_overflow;
4581 *layouttype = be32_to_cpup(p);
4582 return 0;
4583out_overflow:
4584 print_overflow_msg(__func__, xdr);
4585 return -EIO;
4586}
4587
4588/*
4589 * The type of file system exported.
4590 * Note we must ensure that layouttype is set in any non-error case.
4591 */
4592static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4593 uint32_t *layouttype)
4594{
4595 int status = 0;
4596
4597 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4598 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4599 return -EIO;
4600 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4601 status = decode_first_pnfs_layout_type(xdr, layouttype);
4602 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4603 } else
4604 *layouttype = 0;
4605 return status;
4606}
4607
Fred Isamandae100c2011-07-30 20:52:37 -04004608/*
4609 * The prefered block size for layout directed io
4610 */
4611static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4612 uint32_t *res)
4613{
4614 __be32 *p;
4615
4616 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4617 *res = 0;
4618 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4619 p = xdr_inline_decode(xdr, 4);
4620 if (unlikely(!p)) {
4621 print_overflow_msg(__func__, xdr);
4622 return -EIO;
4623 }
4624 *res = be32_to_cpup(p);
4625 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4626 }
4627 return 0;
4628}
4629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4631{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004632 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004633 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 int status;
4635
4636 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4637 goto xdr_error;
4638 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4639 goto xdr_error;
4640 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4641 goto xdr_error;
4642
4643 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4644
4645 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4646 goto xdr_error;
4647 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4648 goto xdr_error;
4649 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4650 goto xdr_error;
4651 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4652 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4653 goto xdr_error;
4654 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004655 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4656 if (status != 0)
4657 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004658 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4659 if (status != 0)
4660 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004661 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4662 if (status)
4663 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 status = verify_attr_len(xdr, savep, attrlen);
4666xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004667 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 return status;
4669}
4670
4671static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4672{
Al Viro8687b632006-10-19 23:28:48 -07004673 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 uint32_t len;
4675 int status;
4676
Trond Myklebust99367812007-07-17 21:52:41 -04004677 /* Zero handle first to allow comparisons */
4678 memset(fh, 0, sizeof(*fh));
4679
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 status = decode_op_hdr(xdr, OP_GETFH);
4681 if (status)
4682 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Benny Halevyc0eae662009-08-14 17:20:14 +03004684 p = xdr_inline_decode(xdr, 4);
4685 if (unlikely(!p))
4686 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004687 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 if (len > NFS4_FHSIZE)
4689 return -EIO;
4690 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004691 p = xdr_inline_decode(xdr, len);
4692 if (unlikely(!p))
4693 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004694 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004696out_overflow:
4697 print_overflow_msg(__func__, xdr);
4698 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699}
4700
4701static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4702{
4703 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004704
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 status = decode_op_hdr(xdr, OP_LINK);
4706 if (status)
4707 return status;
4708 return decode_change_info(xdr, cinfo);
4709}
4710
4711/*
4712 * We create the owner, so we know a proper owner.id length is 4.
4713 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004714static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004716 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004717 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004718 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004720 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004721 if (unlikely(!p))
4722 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004723 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004724 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004725 type = be32_to_cpup(p++); /* 4 byte read */
4726 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004727 fl->fl_start = (loff_t)offset;
4728 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4729 if (length == ~(uint64_t)0)
4730 fl->fl_end = OFFSET_MAX;
4731 fl->fl_type = F_WRLCK;
4732 if (type & 1)
4733 fl->fl_type = F_RDLCK;
4734 fl->fl_pid = 0;
4735 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004736 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4737 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4738 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004739 if (likely(p))
4740 return -NFS4ERR_DENIED;
4741out_overflow:
4742 print_overflow_msg(__func__, xdr);
4743 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744}
4745
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004746static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 int status;
4749
4750 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004751 if (status == -EIO)
4752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004754 status = decode_stateid(xdr, &res->stateid);
4755 if (unlikely(status))
4756 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004758 status = decode_lock_denied(xdr, NULL);
4759 if (res->open_seqid != NULL)
4760 nfs_increment_open_seqid(status, res->open_seqid);
4761 nfs_increment_lock_seqid(status, res->lock_seqid);
4762out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 return status;
4764}
4765
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004766static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767{
4768 int status;
4769 status = decode_op_hdr(xdr, OP_LOCKT);
4770 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004771 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 return status;
4773}
4774
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004775static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 int status;
4778
4779 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004780 if (status != -EIO)
4781 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004782 if (status == 0)
4783 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 return status;
4785}
4786
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004787static int decode_release_lockowner(struct xdr_stream *xdr)
4788{
4789 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4790}
4791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792static int decode_lookup(struct xdr_stream *xdr)
4793{
4794 return decode_op_hdr(xdr, OP_LOOKUP);
4795}
4796
4797/* This is too sick! */
4798static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4799{
Andy Adamson05d564f2008-12-23 16:06:15 -05004800 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 uint32_t limit_type, nblocks, blocksize;
4802
Benny Halevyc0eae662009-08-14 17:20:14 +03004803 p = xdr_inline_decode(xdr, 12);
4804 if (unlikely(!p))
4805 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004806 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004808 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004809 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004810 break;
4811 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004812 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004813 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004814 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 }
4816 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004817out_overflow:
4818 print_overflow_msg(__func__, xdr);
4819 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
4821
4822static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4823{
Andy Adamson05d564f2008-12-23 16:06:15 -05004824 __be32 *p;
4825 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004826 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Benny Halevyc0eae662009-08-14 17:20:14 +03004828 p = xdr_inline_decode(xdr, 4);
4829 if (unlikely(!p))
4830 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004831 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4833 res->delegation_type = 0;
4834 return 0;
4835 }
Benny Halevy07d30432009-08-14 17:19:52 +03004836 status = decode_stateid(xdr, &res->delegation);
4837 if (unlikely(status))
4838 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004839 p = xdr_inline_decode(xdr, 4);
4840 if (unlikely(!p))
4841 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004842 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004843
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004845 case NFS4_OPEN_DELEGATE_READ:
4846 res->delegation_type = FMODE_READ;
4847 break;
4848 case NFS4_OPEN_DELEGATE_WRITE:
4849 res->delegation_type = FMODE_WRITE|FMODE_READ;
4850 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 return -EIO;
4852 }
David Howells7539bba2006-08-22 20:06:09 -04004853 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004854out_overflow:
4855 print_overflow_msg(__func__, xdr);
4856 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857}
4858
4859static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4860{
Andy Adamson05d564f2008-12-23 16:06:15 -05004861 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004862 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004863 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
Andy Adamson05d564f2008-12-23 16:06:15 -05004865 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004866 if (status != -EIO)
4867 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004868 if (!status)
4869 status = decode_stateid(xdr, &res->stateid);
4870 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004871 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
Andy Adamson05d564f2008-12-23 16:06:15 -05004873 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
Benny Halevyc0eae662009-08-14 17:20:14 +03004875 p = xdr_inline_decode(xdr, 8);
4876 if (unlikely(!p))
4877 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004878 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004879 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004880 if (bmlen > 10)
4881 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
Benny Halevyc0eae662009-08-14 17:20:14 +03004883 p = xdr_inline_decode(xdr, bmlen << 2);
4884 if (unlikely(!p))
4885 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004886 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4887 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004888 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004889 for (; i < NFS4_BITMAP_SIZE; i++)
4890 res->attrset[i] = 0;
4891
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 return decode_delegation(xdr, res);
4893xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004894 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004896out_overflow:
4897 print_overflow_msg(__func__, xdr);
4898 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899}
4900
4901static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4902{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 int status;
4904
Andy Adamson05d564f2008-12-23 16:06:15 -05004905 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004906 if (status != -EIO)
4907 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004908 if (!status)
4909 status = decode_stateid(xdr, &res->stateid);
4910 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911}
4912
4913static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 int status;
4916
4917 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004918 if (status != -EIO)
4919 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004920 if (!status)
4921 status = decode_stateid(xdr, &res->stateid);
4922 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923}
4924
4925static int decode_putfh(struct xdr_stream *xdr)
4926{
4927 return decode_op_hdr(xdr, OP_PUTFH);
4928}
4929
4930static int decode_putrootfh(struct xdr_stream *xdr)
4931{
4932 return decode_op_hdr(xdr, OP_PUTROOTFH);
4933}
4934
4935static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4936{
Al Viro8687b632006-10-19 23:28:48 -07004937 __be32 *p;
Trond Myklebust64bd5772012-06-20 22:35:05 -04004938 uint32_t count, eof, recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 int status;
4940
4941 status = decode_op_hdr(xdr, OP_READ);
4942 if (status)
4943 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004944 p = xdr_inline_decode(xdr, 8);
4945 if (unlikely(!p))
4946 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004947 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004948 count = be32_to_cpup(p);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004949 recvd = xdr_read_pages(xdr, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004951 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 "count %u > recvd %u\n", count, recvd);
4953 count = recvd;
4954 eof = 0;
4955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 res->eof = eof;
4957 res->count = count;
4958 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004959out_overflow:
4960 print_overflow_msg(__func__, xdr);
4961 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962}
4963
4964static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4965{
Chuck Leverbcecff72007-10-26 13:32:03 -04004966 int status;
Chuck Levercd937102012-03-02 17:14:31 -05004967 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
4969 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004970 if (!status)
4971 status = decode_verifier(xdr, readdir->verifier.data);
4972 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 return status;
Chuck Levercd937102012-03-02 17:14:31 -05004974 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03004975 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05004976 __func__, verf[0], verf[1]);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004977 return xdr_read_pages(xdr, xdr->buf->page_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978}
4979
4980static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4981{
4982 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Chuck Leverbcecff72007-10-26 13:32:03 -04004983 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004984 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 int status;
4986
4987 status = decode_op_hdr(xdr, OP_READLINK);
4988 if (status)
4989 return status;
4990
4991 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004992 p = xdr_inline_decode(xdr, 4);
4993 if (unlikely(!p))
4994 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004995 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004997 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 return -ENAMETOOLONG;
4999 }
Trond Myklebust64bd5772012-06-20 22:35:05 -04005000 recvd = xdr_read_pages(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005002 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 "count %u > recvd %u\n", len, recvd);
5004 return -EIO;
5005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 /*
5007 * The XDR encode routine has set things up so that
5008 * the link text will be copied directly into the
5009 * buffer. We just have to do overflow-checking,
5010 * and and null-terminate the text (the VFS expects
5011 * null-termination).
5012 */
Chuck Leverb4687da2010-09-21 16:55:48 -04005013 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005015out_overflow:
5016 print_overflow_msg(__func__, xdr);
5017 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
5019
5020static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5021{
5022 int status;
5023
5024 status = decode_op_hdr(xdr, OP_REMOVE);
5025 if (status)
5026 goto out;
5027 status = decode_change_info(xdr, cinfo);
5028out:
5029 return status;
5030}
5031
5032static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5033 struct nfs4_change_info *new_cinfo)
5034{
5035 int status;
5036
5037 status = decode_op_hdr(xdr, OP_RENAME);
5038 if (status)
5039 goto out;
5040 if ((status = decode_change_info(xdr, old_cinfo)))
5041 goto out;
5042 status = decode_change_info(xdr, new_cinfo);
5043out:
5044 return status;
5045}
5046
5047static int decode_renew(struct xdr_stream *xdr)
5048{
5049 return decode_op_hdr(xdr, OP_RENEW);
5050}
5051
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005052static int
5053decode_restorefh(struct xdr_stream *xdr)
5054{
5055 return decode_op_hdr(xdr, OP_RESTOREFH);
5056}
5057
J. Bruce Fields029d1052005-06-22 17:16:22 +00005058static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05005059 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005060{
Trond Myklebust256e48b2012-06-21 11:18:13 -04005061 unsigned int savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005062 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04005063 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00005064 int status;
Trond Myklebustcff298c2012-08-14 17:14:17 -04005065 unsigned int pg_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005066
Andy Adamsonbf118a32011-12-07 11:55:27 -05005067 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005068 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5069 goto out;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005070
Trond Myklebust519d3952012-08-14 17:30:10 -04005071 xdr_enter_page(xdr, xdr->buf->page_len);
5072
Trond Myklebustcff298c2012-08-14 17:14:17 -04005073 /* Calculate the offset of the page data */
5074 pg_offset = xdr->buf->head[0].iov_len;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005075
J. Bruce Fields029d1052005-06-22 17:16:22 +00005076 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5077 goto out;
5078 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5079 goto out;
5080
5081 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5082 return -EIO;
5083 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
J. Bruce Fields029d1052005-06-22 17:16:22 +00005084
Andy Adamsonbf118a32011-12-07 11:55:27 -05005085 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5086 * are stored with the acl data to handle the problem of
5087 * variable length bitmaps.*/
Trond Myklebustcff298c2012-08-14 17:14:17 -04005088 res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
Trond Myklebust519d3952012-08-14 17:30:10 -04005089 res->acl_len = attrlen;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005090
5091 /* Check for receive buffer overflow */
5092 if (res->acl_len > (xdr->nwords << 2) ||
5093 res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
5094 res->acl_flags |= NFS4_ACL_TRUNC;
Trond Myklebust519d3952012-08-14 17:30:10 -04005095 dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
Trond Myklebustcff298c2012-08-14 17:14:17 -04005096 attrlen, xdr->nwords << 2);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005097 }
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005098 } else
5099 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005100
5101out:
5102 return status;
5103}
5104
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105static int
5106decode_savefh(struct xdr_stream *xdr)
5107{
5108 return decode_op_hdr(xdr, OP_SAVEFH);
5109}
5110
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005111static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112{
Al Viro8687b632006-10-19 23:28:48 -07005113 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 uint32_t bmlen;
5115 int status;
5116
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 status = decode_op_hdr(xdr, OP_SETATTR);
5118 if (status)
5119 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005120 p = xdr_inline_decode(xdr, 4);
5121 if (unlikely(!p))
5122 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005123 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005124 p = xdr_inline_decode(xdr, bmlen << 2);
5125 if (likely(p))
5126 return 0;
5127out_overflow:
5128 print_overflow_msg(__func__, xdr);
5129 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130}
5131
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005132static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
Al Viro8687b632006-10-19 23:28:48 -07005134 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 uint32_t opnum;
5136 int32_t nfserr;
5137
Benny Halevyc0eae662009-08-14 17:20:14 +03005138 p = xdr_inline_decode(xdr, 8);
5139 if (unlikely(!p))
5140 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005141 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005143 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005144 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 return -EIO;
5146 }
Benny Halevycccddf42009-08-14 17:20:19 +03005147 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005149 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5150 if (unlikely(!p))
5151 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005152 p = xdr_decode_hyper(p, &res->clientid);
5153 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 } else if (nfserr == NFSERR_CLID_INUSE) {
5155 uint32_t len;
5156
5157 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005158 p = xdr_inline_decode(xdr, 4);
5159 if (unlikely(!p))
5160 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005161 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005162 p = xdr_inline_decode(xdr, len);
5163 if (unlikely(!p))
5164 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165
5166 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005167 p = xdr_inline_decode(xdr, 4);
5168 if (unlikely(!p))
5169 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005170 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005171 p = xdr_inline_decode(xdr, len);
5172 if (unlikely(!p))
5173 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 return -NFSERR_CLID_INUSE;
5175 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005176 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
5178 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005179out_overflow:
5180 print_overflow_msg(__func__, xdr);
5181 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182}
5183
5184static int decode_setclientid_confirm(struct xdr_stream *xdr)
5185{
5186 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5187}
5188
5189static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5190{
Al Viro8687b632006-10-19 23:28:48 -07005191 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 int status;
5193
5194 status = decode_op_hdr(xdr, OP_WRITE);
5195 if (status)
5196 return status;
5197
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005198 p = xdr_inline_decode(xdr, 8);
Benny Halevyc0eae662009-08-14 17:20:14 +03005199 if (unlikely(!p))
5200 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005201 res->count = be32_to_cpup(p++);
5202 res->verf->committed = be32_to_cpup(p++);
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005203 return decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevyc0eae662009-08-14 17:20:14 +03005204out_overflow:
5205 print_overflow_msg(__func__, xdr);
5206 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207}
5208
5209static int decode_delegreturn(struct xdr_stream *xdr)
5210{
5211 return decode_op_hdr(xdr, OP_DELEGRETURN);
5212}
5213
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005214static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5215{
5216 __be32 *p;
5217
5218 p = xdr_inline_decode(xdr, 4);
5219 if (unlikely(!p))
5220 goto out_overflow;
5221 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5222 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5223 goto out_err;
5224
5225 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5226 if (unlikely(!p))
5227 goto out_overflow;
5228 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5229
5230 p = xdr_inline_decode(xdr, 8);
5231 if (unlikely(!p))
5232 goto out_overflow;
5233 flavor->gss.qop4 = be32_to_cpup(p++);
5234 flavor->gss.service = be32_to_cpup(p);
5235
5236 return 0;
5237
5238out_overflow:
5239 print_overflow_msg(__func__, xdr);
5240 return -EIO;
5241out_err:
5242 return -EINVAL;
5243}
5244
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005245static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005246{
5247 struct nfs4_secinfo_flavor *sec_flavor;
5248 int status;
5249 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005250 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005251
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005252 p = xdr_inline_decode(xdr, 4);
5253 if (unlikely(!p))
5254 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005255
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005256 res->flavors->num_flavors = 0;
5257 num_flavors = be32_to_cpup(p);
5258
5259 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005260 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005261 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005262 break;
5263
5264 p = xdr_inline_decode(xdr, 4);
5265 if (unlikely(!p))
5266 goto out_overflow;
5267 sec_flavor->flavor = be32_to_cpup(p);
5268
5269 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005270 status = decode_secinfo_gss(xdr, sec_flavor);
5271 if (status)
5272 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005273 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005274 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005275 }
5276
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005277 status = 0;
Bryan Schumaker613e9012011-04-27 15:28:44 -04005278out:
5279 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005280out_overflow:
5281 print_overflow_msg(__func__, xdr);
5282 return -EIO;
5283}
5284
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005285static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5286{
5287 int status = decode_op_hdr(xdr, OP_SECINFO);
5288 if (status)
5289 return status;
5290 return decode_secinfo_common(xdr, res);
5291}
5292
Benny Halevy99fe60d2009-04-01 09:22:29 -04005293#if defined(CONFIG_NFS_V4_1)
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005294static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5295{
5296 int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
5297 if (status)
5298 return status;
5299 return decode_secinfo_common(xdr, res);
5300}
5301
Benny Halevy99fe60d2009-04-01 09:22:29 -04005302static int decode_exchange_id(struct xdr_stream *xdr,
5303 struct nfs41_exchange_id_res *res)
5304{
5305 __be32 *p;
5306 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005307 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005308 int status;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005309 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005310
5311 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5312 if (status)
5313 return status;
5314
Benny Halevyc0eae662009-08-14 17:20:14 +03005315 p = xdr_inline_decode(xdr, 8);
5316 if (unlikely(!p))
5317 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005318 xdr_decode_hyper(p, &res->clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005319 p = xdr_inline_decode(xdr, 12);
5320 if (unlikely(!p))
5321 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005322 res->seqid = be32_to_cpup(p++);
5323 res->flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005324
5325 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005326 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005327 if (dummy != SP4_NONE)
5328 return -EIO;
5329
Chuck Leveracdeb692012-05-21 22:46:16 -04005330 /* server_owner4.so_minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005331 p = xdr_inline_decode(xdr, 8);
5332 if (unlikely(!p))
5333 goto out_overflow;
Chuck Leveracdeb692012-05-21 22:46:16 -04005334 p = xdr_decode_hyper(p, &res->server_owner->minor_id);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005335
Chuck Leveracdeb692012-05-21 22:46:16 -04005336 /* server_owner4.so_major_id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005337 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5338 if (unlikely(status))
5339 return status;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005340 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5341 return -EIO;
Chuck Leveracdeb692012-05-21 22:46:16 -04005342 memcpy(res->server_owner->major_id, dummy_str, dummy);
5343 res->server_owner->major_id_sz = dummy;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005344
Chuck Leveracdeb692012-05-21 22:46:16 -04005345 /* server_scope4 */
5346 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5347 if (unlikely(status))
5348 return status;
5349 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5350 return -EIO;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005351 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5352 res->server_scope->server_scope_sz = dummy;
5353
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005354 /* Implementation Id */
5355 p = xdr_inline_decode(xdr, 4);
5356 if (unlikely(!p))
5357 goto out_overflow;
5358 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005359
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005360 if (impl_id_count) {
5361 /* nii_domain */
5362 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5363 if (unlikely(status))
5364 return status;
5365 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5366 return -EIO;
5367 memcpy(res->impl_id->domain, dummy_str, dummy);
5368
5369 /* nii_name */
5370 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5371 if (unlikely(status))
5372 return status;
5373 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5374 return -EIO;
5375 memcpy(res->impl_id->name, dummy_str, dummy);
5376
5377 /* nii_date */
5378 p = xdr_inline_decode(xdr, 12);
5379 if (unlikely(!p))
5380 goto out_overflow;
5381 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5382 res->impl_id->date.nseconds = be32_to_cpup(p);
5383
5384 /* if there's more than one entry, ignore the rest */
5385 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005386 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005387out_overflow:
5388 print_overflow_msg(__func__, xdr);
5389 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005390}
Andy Adamsonfc931582009-04-01 09:22:31 -04005391
5392static int decode_chan_attrs(struct xdr_stream *xdr,
5393 struct nfs4_channel_attrs *attrs)
5394{
5395 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005396 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005397
Benny Halevyc0eae662009-08-14 17:20:14 +03005398 p = xdr_inline_decode(xdr, 28);
5399 if (unlikely(!p))
5400 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005401 val = be32_to_cpup(p++); /* headerpadsz */
5402 if (val)
5403 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005404 attrs->max_rqst_sz = be32_to_cpup(p++);
5405 attrs->max_resp_sz = be32_to_cpup(p++);
5406 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5407 attrs->max_ops = be32_to_cpup(p++);
5408 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005409 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005410 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005411 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5412 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005413 return -EINVAL;
5414 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005415 if (nr_attrs == 1) {
5416 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5417 if (unlikely(!p))
5418 goto out_overflow;
5419 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005420 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005421out_overflow:
5422 print_overflow_msg(__func__, xdr);
5423 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005424}
5425
Benny Halevye78291e2009-08-14 17:20:00 +03005426static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5427{
5428 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005429}
5430
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005431static int decode_bind_conn_to_session(struct xdr_stream *xdr,
5432 struct nfs41_bind_conn_to_session_res *res)
5433{
5434 __be32 *p;
5435 int status;
5436
5437 status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
5438 if (!status)
5439 status = decode_sessionid(xdr, &res->session->sess_id);
5440 if (unlikely(status))
5441 return status;
5442
5443 /* dir flags, rdma mode bool */
5444 p = xdr_inline_decode(xdr, 8);
5445 if (unlikely(!p))
5446 goto out_overflow;
5447
5448 res->dir = be32_to_cpup(p++);
5449 if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
5450 return -EIO;
5451 if (be32_to_cpup(p) == 0)
5452 res->use_conn_in_rdma_mode = false;
5453 else
5454 res->use_conn_in_rdma_mode = true;
5455
5456 return 0;
5457out_overflow:
5458 print_overflow_msg(__func__, xdr);
5459 return -EIO;
5460}
5461
Andy Adamsonfc931582009-04-01 09:22:31 -04005462static int decode_create_session(struct xdr_stream *xdr,
5463 struct nfs41_create_session_res *res)
5464{
5465 __be32 *p;
5466 int status;
5467 struct nfs_client *clp = res->client;
5468 struct nfs4_session *session = clp->cl_session;
5469
5470 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005471 if (!status)
5472 status = decode_sessionid(xdr, &session->sess_id);
5473 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005474 return status;
5475
Andy Adamsonfc931582009-04-01 09:22:31 -04005476 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005477 p = xdr_inline_decode(xdr, 8);
5478 if (unlikely(!p))
5479 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005480 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005481 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005482
5483 /* Channel attributes */
5484 status = decode_chan_attrs(xdr, &session->fc_attrs);
5485 if (!status)
5486 status = decode_chan_attrs(xdr, &session->bc_attrs);
5487 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005488out_overflow:
5489 print_overflow_msg(__func__, xdr);
5490 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005491}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005492
5493static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5494{
5495 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5496}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005497
Trond Myklebust66245532012-05-25 17:18:09 -04005498static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
5499{
5500 return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
5501}
5502
Ricardo Labiaga180197532009-12-05 16:08:40 -05005503static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5504{
5505 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5506}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005507#endif /* CONFIG_NFS_V4_1 */
5508
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005509static int decode_sequence(struct xdr_stream *xdr,
5510 struct nfs4_sequence_res *res,
5511 struct rpc_rqst *rqstp)
5512{
5513#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005514 struct nfs4_sessionid id;
5515 u32 dummy;
5516 int status;
5517 __be32 *p;
5518
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005519 if (!res->sr_session)
5520 return 0;
5521
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005522 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005523 if (!status)
5524 status = decode_sessionid(xdr, &id);
5525 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005526 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005527
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005528 /*
5529 * If the server returns different values for sessionID, slotID or
5530 * sequence number, the server is looney tunes.
5531 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005532 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005533
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005534 if (memcmp(id.data, res->sr_session->sess_id.data,
5535 NFS4_MAX_SESSIONID_LEN)) {
5536 dprintk("%s Invalid session id\n", __func__);
5537 goto out_err;
5538 }
Benny Halevye78291e2009-08-14 17:20:00 +03005539
Benny Halevyc0eae662009-08-14 17:20:14 +03005540 p = xdr_inline_decode(xdr, 20);
5541 if (unlikely(!p))
5542 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005543
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005544 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005545 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005546 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005547 dprintk("%s Invalid sequence number\n", __func__);
5548 goto out_err;
5549 }
5550 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005551 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005552 if (dummy != res->sr_slot - res->sr_session->fc_slot_table.slots) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005553 dprintk("%s Invalid slot id\n", __func__);
5554 goto out_err;
5555 }
5556 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005557 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005558 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005559 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005560 /* result flags */
5561 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005562 status = 0;
5563out_err:
5564 res->sr_status = status;
5565 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005566out_overflow:
5567 print_overflow_msg(__func__, xdr);
5568 status = -EIO;
5569 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005570#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005571 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005572#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005573}
5574
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005575#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005576/*
5577 * TODO: Need to handle case when EOF != true;
5578 */
5579static int decode_getdevicelist(struct xdr_stream *xdr,
5580 struct pnfs_devicelist *res)
5581{
5582 __be32 *p;
5583 int status, i;
Trond Myklebust98d94522012-06-08 12:01:14 -04005584 nfs4_verifier verftemp;
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005585
5586 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5587 if (status)
5588 return status;
5589
5590 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5591 if (unlikely(!p))
5592 goto out_overflow;
5593
5594 /* TODO: Skip cookie for now */
5595 p += 2;
5596
5597 /* Read verifier */
Trond Myklebust98d94522012-06-08 12:01:14 -04005598 p = xdr_decode_opaque_fixed(p, verftemp.data, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005599
5600 res->num_devs = be32_to_cpup(p);
5601
5602 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5603
5604 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005605 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005606 __func__, res->num_devs);
5607 return -EIO;
5608 }
5609
5610 p = xdr_inline_decode(xdr,
5611 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5612 if (unlikely(!p))
5613 goto out_overflow;
5614 for (i = 0; i < res->num_devs; i++)
5615 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5616 NFS4_DEVICEID4_SIZE);
5617 res->eof = be32_to_cpup(p);
5618 return 0;
5619out_overflow:
5620 print_overflow_msg(__func__, xdr);
5621 return -EIO;
5622}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005623
5624static int decode_getdeviceinfo(struct xdr_stream *xdr,
5625 struct pnfs_device *pdev)
5626{
5627 __be32 *p;
5628 uint32_t len, type;
5629 int status;
5630
5631 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5632 if (status) {
5633 if (status == -ETOOSMALL) {
5634 p = xdr_inline_decode(xdr, 4);
5635 if (unlikely(!p))
5636 goto out_overflow;
5637 pdev->mincount = be32_to_cpup(p);
5638 dprintk("%s: Min count too small. mincnt = %u\n",
5639 __func__, pdev->mincount);
5640 }
5641 return status;
5642 }
5643
5644 p = xdr_inline_decode(xdr, 8);
5645 if (unlikely(!p))
5646 goto out_overflow;
5647 type = be32_to_cpup(p++);
5648 if (type != pdev->layout_type) {
5649 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5650 __func__, pdev->layout_type, type);
5651 return -EINVAL;
5652 }
5653 /*
5654 * Get the length of the opaque device_addr4. xdr_read_pages places
5655 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5656 * and places the remaining xdr data in xdr_buf->tail
5657 */
5658 pdev->mincount = be32_to_cpup(p);
Trond Myklebust13fe4ba2012-08-01 14:21:12 -04005659 if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
5660 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005661
5662 /* Parse notification bitmap, verifying that it is zero. */
5663 p = xdr_inline_decode(xdr, 4);
5664 if (unlikely(!p))
5665 goto out_overflow;
5666 len = be32_to_cpup(p);
5667 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005668 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005669
5670 p = xdr_inline_decode(xdr, 4 * len);
5671 if (unlikely(!p))
5672 goto out_overflow;
5673 for (i = 0; i < len; i++, p++) {
5674 if (be32_to_cpup(p)) {
5675 dprintk("%s: notifications not supported\n",
5676 __func__);
5677 return -EIO;
5678 }
5679 }
5680 }
5681 return 0;
5682out_overflow:
5683 print_overflow_msg(__func__, xdr);
5684 return -EIO;
5685}
5686
5687static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5688 struct nfs4_layoutget_res *res)
5689{
5690 __be32 *p;
5691 int status;
5692 u32 layout_count;
Trond Myklebust64bd5772012-06-20 22:35:05 -04005693 u32 recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005694
5695 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5696 if (status)
5697 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005698 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005699 if (unlikely(!p))
5700 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005701 res->return_on_close = be32_to_cpup(p);
5702 decode_stateid(xdr, &res->stateid);
5703 p = xdr_inline_decode(xdr, 4);
5704 if (unlikely(!p))
5705 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005706 layout_count = be32_to_cpup(p);
5707 if (!layout_count) {
5708 dprintk("%s: server responded with empty layout array\n",
5709 __func__);
5710 return -EINVAL;
5711 }
5712
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005713 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005714 if (unlikely(!p))
5715 goto out_overflow;
5716 p = xdr_decode_hyper(p, &res->range.offset);
5717 p = xdr_decode_hyper(p, &res->range.length);
5718 res->range.iomode = be32_to_cpup(p++);
5719 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005720 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005721
5722 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5723 __func__,
5724 (unsigned long)res->range.offset,
5725 (unsigned long)res->range.length,
5726 res->range.iomode,
5727 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005728 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005729
Trond Myklebust64bd5772012-06-20 22:35:05 -04005730 recvd = xdr_read_pages(xdr, res->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005731 if (res->layoutp->len > recvd) {
5732 dprintk("NFS: server cheating in layoutget reply: "
5733 "layout len %u > recvd %u\n",
5734 res->layoutp->len, recvd);
5735 return -EINVAL;
5736 }
5737
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005738 if (layout_count > 1) {
5739 /* We only handle a length one array at the moment. Any
5740 * further entries are just ignored. Note that this means
5741 * the client may see a response that is less than the
5742 * minimum it requested.
5743 */
5744 dprintk("%s: server responded with %d layouts, dropping tail\n",
5745 __func__, layout_count);
5746 }
5747
5748 return 0;
5749out_overflow:
5750 print_overflow_msg(__func__, xdr);
5751 return -EIO;
5752}
Andy Adamson863a3c62011-03-23 13:27:54 +00005753
Benny Halevycbe82602011-05-22 19:52:37 +03005754static int decode_layoutreturn(struct xdr_stream *xdr,
5755 struct nfs4_layoutreturn_res *res)
5756{
5757 __be32 *p;
5758 int status;
5759
5760 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5761 if (status)
5762 return status;
5763 p = xdr_inline_decode(xdr, 4);
5764 if (unlikely(!p))
5765 goto out_overflow;
5766 res->lrs_present = be32_to_cpup(p);
5767 if (res->lrs_present)
5768 status = decode_stateid(xdr, &res->stateid);
5769 return status;
5770out_overflow:
5771 print_overflow_msg(__func__, xdr);
5772 return -EIO;
5773}
5774
Andy Adamson863a3c62011-03-23 13:27:54 +00005775static int decode_layoutcommit(struct xdr_stream *xdr,
5776 struct rpc_rqst *req,
5777 struct nfs4_layoutcommit_res *res)
5778{
5779 __be32 *p;
5780 __u32 sizechanged;
5781 int status;
5782
5783 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005784 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005785 if (status)
5786 return status;
5787
5788 p = xdr_inline_decode(xdr, 4);
5789 if (unlikely(!p))
5790 goto out_overflow;
5791 sizechanged = be32_to_cpup(p);
5792
5793 if (sizechanged) {
5794 /* throw away new size */
5795 p = xdr_inline_decode(xdr, 8);
5796 if (unlikely(!p))
5797 goto out_overflow;
5798 }
5799 return 0;
5800out_overflow:
5801 print_overflow_msg(__func__, xdr);
5802 return -EIO;
5803}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005804
5805static int decode_test_stateid(struct xdr_stream *xdr,
5806 struct nfs41_test_stateid_res *res)
5807{
5808 __be32 *p;
5809 int status;
5810 int num_res;
5811
5812 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5813 if (status)
5814 return status;
5815
5816 p = xdr_inline_decode(xdr, 4);
5817 if (unlikely(!p))
5818 goto out_overflow;
5819 num_res = be32_to_cpup(p++);
5820 if (num_res != 1)
5821 goto out;
5822
5823 p = xdr_inline_decode(xdr, 4);
5824 if (unlikely(!p))
5825 goto out_overflow;
5826 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005827
5828 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005829out_overflow:
5830 print_overflow_msg(__func__, xdr);
5831out:
5832 return -EIO;
5833}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005834
5835static int decode_free_stateid(struct xdr_stream *xdr,
5836 struct nfs41_free_stateid_res *res)
5837{
5838 __be32 *p;
5839 int status;
5840
5841 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5842 if (status)
5843 return status;
5844
5845 p = xdr_inline_decode(xdr, 4);
5846 if (unlikely(!p))
5847 goto out_overflow;
5848 res->status = be32_to_cpup(p++);
5849 return res->status;
5850out_overflow:
5851 print_overflow_msg(__func__, xdr);
5852 return -EIO;
5853}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005854#endif /* CONFIG_NFS_V4_1 */
5855
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856/*
Benny Halevy49c25592008-12-23 16:06:16 -05005857 * END OF "GENERIC" DECODE ROUTINES.
5858 */
5859
5860/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861 * Decode OPEN_DOWNGRADE response
5862 */
Chuck Leverbf269552010-12-14 14:59:29 +00005863static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5864 struct xdr_stream *xdr,
5865 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866{
Andy Adamson05d564f2008-12-23 16:06:15 -05005867 struct compound_hdr hdr;
5868 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
Chuck Leverbf269552010-12-14 14:59:29 +00005870 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005871 if (status)
5872 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005873 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005874 if (status)
5875 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005876 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005877 if (status)
5878 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005879 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005880 if (status != 0)
5881 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005882 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005884 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885}
5886
5887/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 * Decode ACCESS response
5889 */
Chuck Leverbf269552010-12-14 14:59:29 +00005890static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5891 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 struct compound_hdr hdr;
5894 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005895
Chuck Leverbf269552010-12-14 14:59:29 +00005896 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005897 if (status)
5898 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005899 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005900 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005902 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005903 if (status != 0)
5904 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04005905 status = decode_access(xdr, &res->supported, &res->access);
Trond Myklebust76b32992007-08-10 17:45:11 -04005906 if (status != 0)
5907 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005908 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909out:
5910 return status;
5911}
5912
5913/*
5914 * Decode LOOKUP response
5915 */
Chuck Leverbf269552010-12-14 14:59:29 +00005916static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5917 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 struct compound_hdr hdr;
5920 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005921
Chuck Leverbf269552010-12-14 14:59:29 +00005922 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005923 if (status)
5924 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005925 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005926 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005928 status = decode_putfh(xdr);
5929 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005931 status = decode_lookup(xdr);
5932 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005934 status = decode_getfh(xdr, res->fh);
5935 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005937 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938out:
5939 return status;
5940}
5941
5942/*
5943 * Decode LOOKUP_ROOT response
5944 */
Chuck Leverbf269552010-12-14 14:59:29 +00005945static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5946 struct xdr_stream *xdr,
5947 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 struct compound_hdr hdr;
5950 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005951
Chuck Leverbf269552010-12-14 14:59:29 +00005952 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005953 if (status)
5954 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005955 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005956 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005958 status = decode_putrootfh(xdr);
5959 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005961 status = decode_getfh(xdr, res->fh);
5962 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005963 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964out:
5965 return status;
5966}
5967
5968/*
5969 * Decode REMOVE response
5970 */
Chuck Leverbf269552010-12-14 14:59:29 +00005971static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5972 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 struct compound_hdr hdr;
5975 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005976
Chuck Leverbf269552010-12-14 14:59:29 +00005977 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005978 if (status)
5979 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005980 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005981 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005983 status = decode_putfh(xdr);
5984 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005985 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005986 status = decode_remove(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987out:
5988 return status;
5989}
5990
5991/*
5992 * Decode RENAME response
5993 */
Chuck Leverbf269552010-12-14 14:59:29 +00005994static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5995 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 struct compound_hdr hdr;
5998 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005999
Chuck Leverbf269552010-12-14 14:59:29 +00006000 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006001 if (status)
6002 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006003 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006004 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006006 status = decode_putfh(xdr);
6007 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006009 status = decode_savefh(xdr);
6010 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006012 status = decode_putfh(xdr);
6013 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006015 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016out:
6017 return status;
6018}
6019
6020/*
6021 * Decode LINK response
6022 */
Chuck Leverbf269552010-12-14 14:59:29 +00006023static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6024 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026 struct compound_hdr hdr;
6027 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006028
Chuck Leverbf269552010-12-14 14:59:29 +00006029 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006030 if (status)
6031 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006032 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006033 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006035 status = decode_putfh(xdr);
6036 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006038 status = decode_savefh(xdr);
6039 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006041 status = decode_putfh(xdr);
6042 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006044 status = decode_link(xdr, &res->cinfo);
6045 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006046 goto out;
6047 /*
6048 * Note order: OP_LINK leaves the directory as the current
6049 * filehandle.
6050 */
Chuck Leverbf269552010-12-14 14:59:29 +00006051 status = decode_restorefh(xdr);
6052 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006053 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006054 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055out:
6056 return status;
6057}
6058
6059/*
6060 * Decode CREATE response
6061 */
Chuck Leverbf269552010-12-14 14:59:29 +00006062static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6063 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 struct compound_hdr hdr;
6066 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006067
Chuck Leverbf269552010-12-14 14:59:29 +00006068 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006069 if (status)
6070 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006071 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006072 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006074 status = decode_putfh(xdr);
6075 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006077 status = decode_create(xdr, &res->dir_cinfo);
6078 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006080 status = decode_getfh(xdr, res->fh);
6081 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082 goto out;
Trond Myklebust7c317fc2012-04-27 13:48:18 -04006083 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084out:
6085 return status;
6086}
6087
6088/*
6089 * Decode SYMLINK response
6090 */
Chuck Leverbf269552010-12-14 14:59:29 +00006091static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6092 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093{
Chuck Leverbf269552010-12-14 14:59:29 +00006094 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095}
6096
6097/*
6098 * Decode GETATTR response
6099 */
Chuck Leverbf269552010-12-14 14:59:29 +00006100static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6101 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 struct compound_hdr hdr;
6104 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006105
Chuck Leverbf269552010-12-14 14:59:29 +00006106 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107 if (status)
6108 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006109 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006110 if (status)
6111 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006112 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 if (status)
6114 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006115 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116out:
6117 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118}
6119
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006120/*
6121 * Encode an SETACL request
6122 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006123static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6124 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006125{
Andy Adamson05d564f2008-12-23 16:06:15 -05006126 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006127 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006128 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006129
Chuck Lever9f06c712010-12-14 14:59:18 +00006130 encode_compound_hdr(xdr, req, &hdr);
6131 encode_sequence(xdr, &args->seq_args, &hdr);
6132 encode_putfh(xdr, args->fh, &hdr);
6133 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006134 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006135}
Andy Adamson05d564f2008-12-23 16:06:15 -05006136
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006137/*
6138 * Decode SETACL response
6139 */
6140static int
Chuck Leverbf269552010-12-14 14:59:29 +00006141nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006142 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006143{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006144 struct compound_hdr hdr;
6145 int status;
6146
Chuck Leverbf269552010-12-14 14:59:29 +00006147 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006148 if (status)
6149 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006150 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006151 if (status)
6152 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006153 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006154 if (status)
6155 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006156 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006157out:
6158 return status;
6159}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160
6161/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006162 * Decode GETACL response
6163 */
6164static int
Chuck Leverbf269552010-12-14 14:59:29 +00006165nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006166 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006167{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006168 struct compound_hdr hdr;
6169 int status;
6170
Trond Myklebust331818f2012-02-03 18:30:53 -05006171 if (res->acl_scratch != NULL) {
6172 void *p = page_address(res->acl_scratch);
6173 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6174 }
Chuck Leverbf269552010-12-14 14:59:29 +00006175 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006176 if (status)
6177 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006178 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006179 if (status)
6180 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006181 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006182 if (status)
6183 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006184 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006185
6186out:
6187 return status;
6188}
6189
6190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 * Decode CLOSE response
6192 */
Chuck Leverbf269552010-12-14 14:59:29 +00006193static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6194 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195{
Andy Adamson05d564f2008-12-23 16:06:15 -05006196 struct compound_hdr hdr;
6197 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198
Chuck Leverbf269552010-12-14 14:59:29 +00006199 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006200 if (status)
6201 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006202 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006203 if (status)
6204 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006205 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006206 if (status)
6207 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006208 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006209 if (status != 0)
6210 goto out;
6211 /*
6212 * Note: Server may do delete on close for this file
6213 * in which case the getattr call will fail with
6214 * an ESTALE error. Shouldn't be a problem,
6215 * though, since fattr->valid will remain unset.
6216 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006217 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006219 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220}
6221
6222/*
6223 * Decode OPEN response
6224 */
Chuck Leverbf269552010-12-14 14:59:29 +00006225static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6226 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227{
Andy Adamson05d564f2008-12-23 16:06:15 -05006228 struct compound_hdr hdr;
6229 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
Chuck Leverbf269552010-12-14 14:59:29 +00006231 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006232 if (status)
6233 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006234 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006235 if (status)
6236 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006237 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006238 if (status)
6239 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006240 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006241 if (status)
6242 goto out;
Weston Andros Adamson01913b42012-09-06 15:54:27 -04006243 status = decode_getfh(xdr, &res->fh);
6244 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006246 if (res->access_request)
6247 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust90ff0c52012-04-27 13:48:18 -04006248 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006250 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251}
6252
6253/*
6254 * Decode OPEN_CONFIRM response
6255 */
Chuck Leverbf269552010-12-14 14:59:29 +00006256static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6257 struct xdr_stream *xdr,
6258 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259{
Andy Adamson05d564f2008-12-23 16:06:15 -05006260 struct compound_hdr hdr;
6261 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262
Chuck Leverbf269552010-12-14 14:59:29 +00006263 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006264 if (status)
6265 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006266 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006267 if (status)
6268 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006269 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006271 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272}
6273
6274/*
6275 * Decode OPEN response
6276 */
Chuck Leverbf269552010-12-14 14:59:29 +00006277static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6278 struct xdr_stream *xdr,
6279 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280{
Andy Adamson05d564f2008-12-23 16:06:15 -05006281 struct compound_hdr hdr;
6282 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
Chuck Leverbf269552010-12-14 14:59:29 +00006284 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006285 if (status)
6286 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006287 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006288 if (status)
6289 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006290 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006291 if (status)
6292 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006293 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006294 if (status)
6295 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006296 if (res->access_request)
6297 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust6926afd2012-01-07 13:22:46 -05006298 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006300 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301}
6302
6303/*
6304 * Decode SETATTR response
6305 */
Chuck Leverbf269552010-12-14 14:59:29 +00006306static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6307 struct xdr_stream *xdr,
6308 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309{
Andy Adamson05d564f2008-12-23 16:06:15 -05006310 struct compound_hdr hdr;
6311 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
Chuck Leverbf269552010-12-14 14:59:29 +00006313 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006314 if (status)
6315 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006316 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006317 if (status)
6318 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006319 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006320 if (status)
6321 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006322 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006323 if (status)
6324 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006325 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006327 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328}
6329
6330/*
6331 * Decode LOCK response
6332 */
Chuck Leverbf269552010-12-14 14:59:29 +00006333static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6334 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336 struct compound_hdr hdr;
6337 int status;
6338
Chuck Leverbf269552010-12-14 14:59:29 +00006339 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340 if (status)
6341 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006342 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006343 if (status)
6344 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006345 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346 if (status)
6347 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006348 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349out:
6350 return status;
6351}
6352
6353/*
6354 * Decode LOCKT response
6355 */
Chuck Leverbf269552010-12-14 14:59:29 +00006356static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6357 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359 struct compound_hdr hdr;
6360 int status;
6361
Chuck Leverbf269552010-12-14 14:59:29 +00006362 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363 if (status)
6364 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006365 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006366 if (status)
6367 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006368 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369 if (status)
6370 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006371 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372out:
6373 return status;
6374}
6375
6376/*
6377 * Decode LOCKU response
6378 */
Chuck Leverbf269552010-12-14 14:59:29 +00006379static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6380 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382 struct compound_hdr hdr;
6383 int status;
6384
Chuck Leverbf269552010-12-14 14:59:29 +00006385 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386 if (status)
6387 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006388 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006389 if (status)
6390 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006391 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392 if (status)
6393 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006394 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395out:
6396 return status;
6397}
6398
Chuck Leverbf269552010-12-14 14:59:29 +00006399static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6400 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006401{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006402 struct compound_hdr hdr;
6403 int status;
6404
Chuck Leverbf269552010-12-14 14:59:29 +00006405 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006406 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006407 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006408 return status;
6409}
6410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411/*
6412 * Decode READLINK response
6413 */
Chuck Leverbf269552010-12-14 14:59:29 +00006414static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6415 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006416 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418 struct compound_hdr hdr;
6419 int status;
6420
Chuck Leverbf269552010-12-14 14:59:29 +00006421 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 if (status)
6423 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006424 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006425 if (status)
6426 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006427 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428 if (status)
6429 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006430 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431out:
6432 return status;
6433}
6434
6435/*
6436 * Decode READDIR response
6437 */
Chuck Leverbf269552010-12-14 14:59:29 +00006438static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6439 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 struct compound_hdr hdr;
6442 int status;
6443
Chuck Leverbf269552010-12-14 14:59:29 +00006444 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 if (status)
6446 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006447 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006448 if (status)
6449 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006450 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 if (status)
6452 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006453 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454out:
6455 return status;
6456}
6457
6458/*
6459 * Decode Read response
6460 */
Chuck Leverbf269552010-12-14 14:59:29 +00006461static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6462 struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464 struct compound_hdr hdr;
6465 int status;
6466
Chuck Leverbf269552010-12-14 14:59:29 +00006467 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468 if (status)
6469 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006470 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006471 if (status)
6472 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006473 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 if (status)
6475 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006476 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 if (!status)
6478 status = res->count;
6479out:
6480 return status;
6481}
6482
6483/*
6484 * Decode WRITE response
6485 */
Chuck Leverbf269552010-12-14 14:59:29 +00006486static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6487 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 struct compound_hdr hdr;
6490 int status;
6491
Chuck Leverbf269552010-12-14 14:59:29 +00006492 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 if (status)
6494 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006495 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006496 if (status)
6497 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006498 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499 if (status)
6500 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006501 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006502 if (status)
6503 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006504 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006505 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 if (!status)
6507 status = res->count;
6508out:
6509 return status;
6510}
6511
6512/*
6513 * Decode COMMIT response
6514 */
Chuck Leverbf269552010-12-14 14:59:29 +00006515static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04006516 struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 struct compound_hdr hdr;
6519 int status;
6520
Chuck Leverbf269552010-12-14 14:59:29 +00006521 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 if (status)
6523 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006524 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006525 if (status)
6526 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006527 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528 if (status)
6529 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006530 status = decode_commit(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531out:
6532 return status;
6533}
6534
6535/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006536 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537 */
Chuck Leverbf269552010-12-14 14:59:29 +00006538static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006539 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 struct compound_hdr hdr;
6542 int status;
6543
Chuck Leverbf269552010-12-14 14:59:29 +00006544 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006546 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006547 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006548 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006550 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551 return status;
6552}
6553
6554/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006555 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556 */
Chuck Leverbf269552010-12-14 14:59:29 +00006557static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006558 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560 struct compound_hdr hdr;
6561 int status;
6562
Chuck Leverbf269552010-12-14 14:59:29 +00006563 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006565 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006566 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006567 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006569 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 return status;
6571}
6572
6573/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006574 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575 */
Chuck Leverbf269552010-12-14 14:59:29 +00006576static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006577 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579 struct compound_hdr hdr;
6580 int status;
6581
Chuck Leverbf269552010-12-14 14:59:29 +00006582 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006584 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006585 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006586 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006588 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589 return status;
6590}
6591
6592/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006593 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 */
Chuck Leverbf269552010-12-14 14:59:29 +00006595static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6596 struct xdr_stream *xdr,
6597 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599 struct compound_hdr hdr;
6600 int status;
6601
Chuck Leverbf269552010-12-14 14:59:29 +00006602 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006603 if (status)
6604 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006605 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006606 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006608 status = decode_putfh(xdr);
6609 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006611 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612out:
6613 return status;
6614}
6615
6616/*
6617 * Decode RENEW response
6618 */
Chuck Leverbf269552010-12-14 14:59:29 +00006619static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6620 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 struct compound_hdr hdr;
6623 int status;
6624
Chuck Leverbf269552010-12-14 14:59:29 +00006625 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006627 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 return status;
6629}
6630
6631/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006632 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633 */
Chuck Leverbf269552010-12-14 14:59:29 +00006634static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6635 struct xdr_stream *xdr,
6636 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 struct compound_hdr hdr;
6639 int status;
6640
Chuck Leverbf269552010-12-14 14:59:29 +00006641 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006643 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644 return status;
6645}
6646
6647/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006648 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 */
Chuck Leverbf269552010-12-14 14:59:29 +00006650static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6651 struct xdr_stream *xdr,
6652 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006653{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 struct compound_hdr hdr;
6655 int status;
6656
Chuck Leverbf269552010-12-14 14:59:29 +00006657 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006659 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006661 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006663 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 return status;
6665}
6666
6667/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006668 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669 */
Chuck Leverbf269552010-12-14 14:59:29 +00006670static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6671 struct xdr_stream *xdr,
6672 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674 struct compound_hdr hdr;
6675 int status;
6676
Chuck Leverbf269552010-12-14 14:59:29 +00006677 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006678 if (status)
6679 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006680 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006681 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006682 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006683 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006684 if (status != 0)
6685 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006686 status = decode_getfattr(xdr, res->fattr, res->server);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006687 if (status != 0)
6688 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006689 status = decode_delegreturn(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006690out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691 return status;
6692}
6693
Trond Myklebust683b57b2006-06-09 09:34:22 -04006694/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006695 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006696 */
Chuck Leverbf269552010-12-14 14:59:29 +00006697static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6698 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006699 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006700{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006701 struct compound_hdr hdr;
6702 int status;
6703
Chuck Leverbf269552010-12-14 14:59:29 +00006704 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006705 if (status)
6706 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006707 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006708 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006709 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006710 status = decode_putfh(xdr);
6711 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006712 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006713 status = decode_lookup(xdr);
6714 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006715 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006716 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006717 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6718 NULL, res->fs_locations,
6719 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006720out:
6721 return status;
6722}
6723
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006724/*
6725 * Decode SECINFO response
6726 */
6727static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6728 struct xdr_stream *xdr,
6729 struct nfs4_secinfo_res *res)
6730{
6731 struct compound_hdr hdr;
6732 int status;
6733
6734 status = decode_compound_hdr(xdr, &hdr);
6735 if (status)
6736 goto out;
6737 status = decode_sequence(xdr, &res->seq_res, rqstp);
6738 if (status)
6739 goto out;
6740 status = decode_putfh(xdr);
6741 if (status)
6742 goto out;
6743 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006744out:
6745 return status;
6746}
6747
Benny Halevy99fe60d2009-04-01 09:22:29 -04006748#if defined(CONFIG_NFS_V4_1)
6749/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04006750 * Decode BIND_CONN_TO_SESSION response
6751 */
6752static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
6753 struct xdr_stream *xdr,
6754 void *res)
6755{
6756 struct compound_hdr hdr;
6757 int status;
6758
6759 status = decode_compound_hdr(xdr, &hdr);
6760 if (!status)
6761 status = decode_bind_conn_to_session(xdr, res);
6762 return status;
6763}
6764
6765/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006766 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006767 */
Chuck Leverbf269552010-12-14 14:59:29 +00006768static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6769 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006770 void *res)
6771{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006772 struct compound_hdr hdr;
6773 int status;
6774
Chuck Leverbf269552010-12-14 14:59:29 +00006775 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006776 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006777 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006778 return status;
6779}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006780
6781/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006782 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006783 */
Chuck Leverbf269552010-12-14 14:59:29 +00006784static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6785 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006786 struct nfs41_create_session_res *res)
6787{
Andy Adamsonfc931582009-04-01 09:22:31 -04006788 struct compound_hdr hdr;
6789 int status;
6790
Chuck Leverbf269552010-12-14 14:59:29 +00006791 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006792 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006793 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006794 return status;
6795}
6796
6797/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006798 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006799 */
Chuck Leverbf269552010-12-14 14:59:29 +00006800static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6801 struct xdr_stream *xdr,
6802 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006803{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006804 struct compound_hdr hdr;
6805 int status;
6806
Chuck Leverbf269552010-12-14 14:59:29 +00006807 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006808 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006809 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006810 return status;
6811}
6812
6813/*
Trond Myklebust66245532012-05-25 17:18:09 -04006814 * Decode DESTROY_CLIENTID response
6815 */
6816static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
6817 struct xdr_stream *xdr,
6818 void *res)
6819{
6820 struct compound_hdr hdr;
6821 int status;
6822
6823 status = decode_compound_hdr(xdr, &hdr);
6824 if (!status)
6825 status = decode_destroy_clientid(xdr, res);
6826 return status;
6827}
6828
6829/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006830 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006831 */
Chuck Leverbf269552010-12-14 14:59:29 +00006832static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6833 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006834 struct nfs4_sequence_res *res)
6835{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006836 struct compound_hdr hdr;
6837 int status;
6838
Chuck Leverbf269552010-12-14 14:59:29 +00006839 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006840 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006841 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006842 return status;
6843}
6844
6845/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006846 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006847 */
Chuck Leverbf269552010-12-14 14:59:29 +00006848static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6849 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006850 struct nfs4_get_lease_time_res *res)
6851{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006852 struct compound_hdr hdr;
6853 int status;
6854
Chuck Leverbf269552010-12-14 14:59:29 +00006855 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006856 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006857 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006858 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006859 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006860 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006861 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006862 return status;
6863}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006864
6865/*
6866 * Decode RECLAIM_COMPLETE response
6867 */
Chuck Leverbf269552010-12-14 14:59:29 +00006868static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6869 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006870 struct nfs41_reclaim_complete_res *res)
6871{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006872 struct compound_hdr hdr;
6873 int status;
6874
Chuck Leverbf269552010-12-14 14:59:29 +00006875 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006876 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006877 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006878 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006879 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006880 return status;
6881}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006882
6883/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006884 * Decode GETDEVICELIST response
6885 */
6886static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6887 struct xdr_stream *xdr,
6888 struct nfs4_getdevicelist_res *res)
6889{
6890 struct compound_hdr hdr;
6891 int status;
6892
6893 dprintk("encoding getdevicelist!\n");
6894
6895 status = decode_compound_hdr(xdr, &hdr);
6896 if (status != 0)
6897 goto out;
6898 status = decode_sequence(xdr, &res->seq_res, rqstp);
6899 if (status != 0)
6900 goto out;
6901 status = decode_putfh(xdr);
6902 if (status != 0)
6903 goto out;
6904 status = decode_getdevicelist(xdr, res->devlist);
6905out:
6906 return status;
6907}
6908
6909/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006910 * Decode GETDEVINFO response
6911 */
Chuck Leverbf269552010-12-14 14:59:29 +00006912static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6913 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006914 struct nfs4_getdeviceinfo_res *res)
6915{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006916 struct compound_hdr hdr;
6917 int status;
6918
Chuck Leverbf269552010-12-14 14:59:29 +00006919 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006920 if (status != 0)
6921 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006922 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006923 if (status != 0)
6924 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006925 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006926out:
6927 return status;
6928}
6929
6930/*
6931 * Decode LAYOUTGET response
6932 */
Chuck Leverbf269552010-12-14 14:59:29 +00006933static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6934 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006935 struct nfs4_layoutget_res *res)
6936{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006937 struct compound_hdr hdr;
6938 int status;
6939
Chuck Leverbf269552010-12-14 14:59:29 +00006940 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006941 if (status)
6942 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006943 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006944 if (status)
6945 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006946 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006947 if (status)
6948 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006949 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006950out:
6951 return status;
6952}
Andy Adamson863a3c62011-03-23 13:27:54 +00006953
6954/*
Benny Halevycbe82602011-05-22 19:52:37 +03006955 * Decode LAYOUTRETURN response
6956 */
6957static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6958 struct xdr_stream *xdr,
6959 struct nfs4_layoutreturn_res *res)
6960{
6961 struct compound_hdr hdr;
6962 int status;
6963
6964 status = decode_compound_hdr(xdr, &hdr);
6965 if (status)
6966 goto out;
6967 status = decode_sequence(xdr, &res->seq_res, rqstp);
6968 if (status)
6969 goto out;
6970 status = decode_putfh(xdr);
6971 if (status)
6972 goto out;
6973 status = decode_layoutreturn(xdr, res);
6974out:
6975 return status;
6976}
6977
6978/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006979 * Decode LAYOUTCOMMIT response
6980 */
6981static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6982 struct xdr_stream *xdr,
6983 struct nfs4_layoutcommit_res *res)
6984{
6985 struct compound_hdr hdr;
6986 int status;
6987
6988 status = decode_compound_hdr(xdr, &hdr);
6989 if (status)
6990 goto out;
6991 status = decode_sequence(xdr, &res->seq_res, rqstp);
6992 if (status)
6993 goto out;
6994 status = decode_putfh(xdr);
6995 if (status)
6996 goto out;
6997 status = decode_layoutcommit(xdr, rqstp, res);
6998 if (status)
6999 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05007000 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00007001out:
7002 return status;
7003}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007004
7005/*
7006 * Decode SECINFO_NO_NAME response
7007 */
7008static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7009 struct xdr_stream *xdr,
7010 struct nfs4_secinfo_res *res)
7011{
7012 struct compound_hdr hdr;
7013 int status;
7014
7015 status = decode_compound_hdr(xdr, &hdr);
7016 if (status)
7017 goto out;
7018 status = decode_sequence(xdr, &res->seq_res, rqstp);
7019 if (status)
7020 goto out;
7021 status = decode_putrootfh(xdr);
7022 if (status)
7023 goto out;
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04007024 status = decode_secinfo_no_name(xdr, res);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007025out:
7026 return status;
7027}
Bryan Schumaker7d974792011-06-02 14:59:08 -04007028
7029/*
7030 * Decode TEST_STATEID response
7031 */
7032static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
7033 struct xdr_stream *xdr,
7034 struct nfs41_test_stateid_res *res)
7035{
7036 struct compound_hdr hdr;
7037 int status;
7038
7039 status = decode_compound_hdr(xdr, &hdr);
7040 if (status)
7041 goto out;
7042 status = decode_sequence(xdr, &res->seq_res, rqstp);
7043 if (status)
7044 goto out;
7045 status = decode_test_stateid(xdr, res);
7046out:
7047 return status;
7048}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007049
7050/*
7051 * Decode FREE_STATEID response
7052 */
7053static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7054 struct xdr_stream *xdr,
7055 struct nfs41_free_stateid_res *res)
7056{
7057 struct compound_hdr hdr;
7058 int status;
7059
7060 status = decode_compound_hdr(xdr, &hdr);
7061 if (status)
7062 goto out;
7063 status = decode_sequence(xdr, &res->seq_res, rqstp);
7064 if (status)
7065 goto out;
7066 status = decode_free_stateid(xdr, res);
7067out:
7068 return status;
7069}
Benny Halevy99fe60d2009-04-01 09:22:29 -04007070#endif /* CONFIG_NFS_V4_1 */
7071
Chuck Lever573c4e12010-12-14 14:58:11 +00007072/**
7073 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7074 * the local page cache.
7075 * @xdr: XDR stream where entry resides
7076 * @entry: buffer to fill in with entry data
7077 * @plus: boolean indicating whether this should be a readdirplus entry
7078 *
7079 * Returns zero if successful, otherwise a negative errno value is
7080 * returned.
7081 *
7082 * This function is not invoked during READDIR reply decoding, but
7083 * rather whenever an application invokes the getdents(2) system call
7084 * on a directory already in our cache.
7085 */
7086int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7087 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088{
Trond Myklebust256e48b2012-06-21 11:18:13 -04007089 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04007090 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007092 __be32 *p = xdr_inline_decode(xdr, 4);
7093 if (unlikely(!p))
7094 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007095 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007096 p = xdr_inline_decode(xdr, 4);
7097 if (unlikely(!p))
7098 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007099 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00007100 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00007102 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103 }
7104
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007105 p = xdr_inline_decode(xdr, 12);
7106 if (unlikely(!p))
7107 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108 entry->prev_cookie = entry->cookie;
7109 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05007110 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007111
Trond Myklebust9af8c222010-10-24 11:52:55 -04007112 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007113 if (unlikely(!p))
7114 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
7117 /*
7118 * In case the server doesn't return an inode number,
7119 * we fake one here. (We don't use inode number 0,
7120 * since glibc seems to choke on it...)
7121 */
7122 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04007123 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124
Trond Myklebust9af8c222010-10-24 11:52:55 -04007125 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007126 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04007127
Trond Myklebust256e48b2012-06-21 11:18:13 -04007128 if (decode_attr_length(xdr, &len, &savep) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007129 goto out_overflow;
7130
Chuck Lever573c4e12010-12-14 14:58:11 +00007131 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05007132 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007133 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04007134 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7135 entry->ino = entry->fattr->mounted_on_fileid;
7136 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007137 entry->ino = entry->fattr->fileid;
7138
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05007139 entry->d_type = DT_UNKNOWN;
7140 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7141 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7142
Chuck Lever573c4e12010-12-14 14:58:11 +00007143 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007144
7145out_overflow:
7146 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007147 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148}
7149
7150/*
7151 * We need to translate between nfs status return values and
7152 * the local errno values which may not be the same.
7153 */
7154static struct {
7155 int stat;
7156 int errno;
7157} nfs_errtbl[] = {
7158 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007159 { NFS4ERR_PERM, -EPERM },
7160 { NFS4ERR_NOENT, -ENOENT },
7161 { NFS4ERR_IO, -errno_NFSERR_IO},
7162 { NFS4ERR_NXIO, -ENXIO },
7163 { NFS4ERR_ACCESS, -EACCES },
7164 { NFS4ERR_EXIST, -EEXIST },
7165 { NFS4ERR_XDEV, -EXDEV },
7166 { NFS4ERR_NOTDIR, -ENOTDIR },
7167 { NFS4ERR_ISDIR, -EISDIR },
7168 { NFS4ERR_INVAL, -EINVAL },
7169 { NFS4ERR_FBIG, -EFBIG },
7170 { NFS4ERR_NOSPC, -ENOSPC },
7171 { NFS4ERR_ROFS, -EROFS },
7172 { NFS4ERR_MLINK, -EMLINK },
7173 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7174 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7175 { NFS4ERR_DQUOT, -EDQUOT },
7176 { NFS4ERR_STALE, -ESTALE },
7177 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007178 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7179 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7180 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007181 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007182 { NFS4ERR_BADTYPE, -EBADTYPE },
7183 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007184 { NFS4ERR_SYMLINK, -ELOOP },
7185 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7186 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007187 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188};
7189
7190/*
7191 * Convert an NFS error code to a local one.
7192 * This one is used jointly by NFSv2 and NFSv3.
7193 */
7194static int
David Howells0a8ea432006-08-22 20:06:08 -04007195nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196{
7197 int i;
7198 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7199 if (nfs_errtbl[i].stat == stat)
7200 return nfs_errtbl[i].errno;
7201 }
7202 if (stat <= 10000 || stat > 10100) {
7203 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007204 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205 }
7206 /* If we cannot translate the error, the recovery routines should
7207 * handle it.
7208 * Note: remaining NFSv4 error codes have values > 10000, so should
7209 * not conflict with native Linux error codes.
7210 */
Benny Halevy856dff32008-03-31 17:39:06 +03007211 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212}
7213
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214#define PROC(proc, argtype, restype) \
7215[NFSPROC4_CLNT_##proc] = { \
7216 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007217 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007218 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007219 .p_arglen = NFS4_##argtype##_sz, \
7220 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007221 .p_statidx = NFSPROC4_CLNT_##proc, \
7222 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007223}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224
7225struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007226 PROC(READ, enc_read, dec_read),
7227 PROC(WRITE, enc_write, dec_write),
7228 PROC(COMMIT, enc_commit, dec_commit),
7229 PROC(OPEN, enc_open, dec_open),
7230 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7231 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7232 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7233 PROC(CLOSE, enc_close, dec_close),
7234 PROC(SETATTR, enc_setattr, dec_setattr),
7235 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7236 PROC(RENEW, enc_renew, dec_renew),
7237 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7238 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7239 PROC(LOCK, enc_lock, dec_lock),
7240 PROC(LOCKT, enc_lockt, dec_lockt),
7241 PROC(LOCKU, enc_locku, dec_locku),
7242 PROC(ACCESS, enc_access, dec_access),
7243 PROC(GETATTR, enc_getattr, dec_getattr),
7244 PROC(LOOKUP, enc_lookup, dec_lookup),
7245 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7246 PROC(REMOVE, enc_remove, dec_remove),
7247 PROC(RENAME, enc_rename, dec_rename),
7248 PROC(LINK, enc_link, dec_link),
7249 PROC(SYMLINK, enc_symlink, dec_symlink),
7250 PROC(CREATE, enc_create, dec_create),
7251 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7252 PROC(STATFS, enc_statfs, dec_statfs),
7253 PROC(READLINK, enc_readlink, dec_readlink),
7254 PROC(READDIR, enc_readdir, dec_readdir),
7255 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7256 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7257 PROC(GETACL, enc_getacl, dec_getacl),
7258 PROC(SETACL, enc_setacl, dec_setacl),
7259 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7260 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007261 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007262#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007263 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7264 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7265 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7266 PROC(SEQUENCE, enc_sequence, dec_sequence),
7267 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7268 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7269 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7270 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007271 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007272 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007273 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007274 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007275 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007276 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Trond Myklebustad24ecf2012-05-25 17:11:42 -04007277 PROC(BIND_CONN_TO_SESSION,
7278 enc_bind_conn_to_session, dec_bind_conn_to_session),
Trond Myklebust66245532012-05-25 17:18:09 -04007279 PROC(DESTROY_CLIENTID, enc_destroy_clientid, dec_destroy_clientid),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007280#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281};
7282
Trond Myklebusta613fa12012-01-20 13:53:56 -05007283const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007285 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286 .procs = nfs4_procedures
7287};
7288
7289/*
7290 * Local variables:
7291 * c-basic-offset: 8
7292 * End:
7293 */