blob: f2cd957adb907ecc0e0e0dcad99ac3c60b13e8a9 [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"
Trond Myklebust76e697b2012-11-26 14:20:49 -050059#include "nfs4session.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040060#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040061#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define NFSDBG_FACILITY NFSDBG_XDR
64
65/* Mapping from NFS error code to "errno" error code. */
66#define errno_NFSERR_IO EIO
67
David Howells0a8ea432006-08-22 20:06:08 -040068static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
71#ifdef DEBUG
72#define NFS4_MAXTAGLEN 20
73#else
74#define NFS4_MAXTAGLEN 0
75#endif
76
Andy Adamson6c0195a2008-12-23 16:06:15 -050077/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040078 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
Trond Myklebust95b72eb2012-04-20 19:24:51 -040080#define open_owner_id_maxsz (1 + 2 + 1 + 1 + 2)
Trond Myklebustd035c362010-12-21 10:45:27 -050081#define lock_owner_id_maxsz (1 + 1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040082#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
84#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
85#define op_encode_hdr_maxsz (1)
86#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040087#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
88#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
89#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
90#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
92 (NFS4_FHSIZE >> 2))
93#define decode_putfh_maxsz (op_decode_hdr_maxsz)
94#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
95#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
96#define encode_getfh_maxsz (op_encode_hdr_maxsz)
97#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
98 ((3+NFS4_FHSIZE) >> 2))
Andy Adamsone5012d12011-07-11 17:17:42 -040099#define nfs4_fattr_bitmap_maxsz 4
J. Bruce Fields96928202005-06-22 17:16:22 +0000100#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
102#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400103#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
104#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
David Quigleyaa9c2662013-05-22 12:50:44 -0400105#ifdef CONFIG_NFS_V4_SECURITY_LABEL
106/* PI(4 bytes) + LFS(4 bytes) + 1(for null terminator?) + MAXLABELLEN */
107#define nfs4_label_maxsz (4 + 4 + 1 + XDR_QUADLEN(NFS4_MAXLABELLEN))
David Quigleyaa9c2662013-05-22 12:50:44 -0400108#else
109#define nfs4_label_maxsz 0
David Quigleyaa9c2662013-05-22 12:50:44 -0400110#endif
Andy Adamson88034c32012-05-23 05:02:34 -0400111/* We support only one layout type per file system */
112#define decode_mdsthreshold_maxsz (1 + 1 + nfs4_fattr_bitmap_maxsz + 1 + 8)
J. Bruce Fields96928202005-06-22 17:16:22 +0000113/* This is based on getfattr, which uses the most attributes: */
114#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Andy Adamson88034c32012-05-23 05:02:34 -0400115 3 + 3 + 3 + nfs4_owner_maxsz + \
David Quigleyaa9c2662013-05-22 12:50:44 -0400116 nfs4_group_maxsz + nfs4_label_maxsz + \
117 decode_mdsthreshold_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000118#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
119 nfs4_fattr_value_maxsz)
120#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400121#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
122 1 + 2 + 1 + \
123 nfs4_owner_maxsz + \
124 nfs4_group_maxsz + \
David Quigleyaa9c2662013-05-22 12:50:44 -0400125 nfs4_label_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400126 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define encode_savefh_maxsz (op_encode_hdr_maxsz)
128#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400129#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
130#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200131#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Fred Isamandae100c2011-07-30 20:52:37 -0400132/* The 5 accounts for the PNFS attributes, and assumes that at most three
133 * layout types will be returned.
134 */
135#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
136 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
138#define decode_renew_maxsz (op_decode_hdr_maxsz)
139#define encode_setclientid_maxsz \
140 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500141 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
142 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
143 1 /* sc_prog */ + \
144 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
145 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
146 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#define decode_setclientid_maxsz \
148 (op_decode_hdr_maxsz + \
149 2 + \
150 1024) /* large value for CLID_INUSE */
151#define encode_setclientid_confirm_maxsz \
152 (op_encode_hdr_maxsz + \
153 3 + (NFS4_VERIFIER_SIZE >> 2))
154#define decode_setclientid_confirm_maxsz \
155 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400156#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
157#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400158#define encode_share_access_maxsz \
159 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500160#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400161#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
162#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
163#define encode_open_maxsz (op_encode_hdr_maxsz + \
164 2 + encode_share_access_maxsz + 2 + \
165 open_owner_id_maxsz + \
166 encode_opentype_maxsz + \
167 encode_claim_null_maxsz)
168#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400169#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400170 decode_ace_maxsz)
171#define decode_change_info_maxsz (5)
172#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400173 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400174 decode_change_info_maxsz + 1 + \
175 nfs4_fattr_bitmap_maxsz + \
176 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400177#define encode_open_confirm_maxsz \
178 (op_encode_hdr_maxsz + \
179 encode_stateid_maxsz + 1)
180#define decode_open_confirm_maxsz \
181 (op_decode_hdr_maxsz + \
182 decode_stateid_maxsz)
183#define encode_open_downgrade_maxsz \
184 (op_encode_hdr_maxsz + \
185 encode_stateid_maxsz + 1 + \
186 encode_share_access_maxsz)
187#define decode_open_downgrade_maxsz \
188 (op_decode_hdr_maxsz + \
189 decode_stateid_maxsz)
190#define encode_close_maxsz (op_encode_hdr_maxsz + \
191 1 + encode_stateid_maxsz)
192#define decode_close_maxsz (op_decode_hdr_maxsz + \
193 decode_stateid_maxsz)
194#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
195 encode_stateid_maxsz + \
196 encode_attrs_maxsz)
197#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
198 nfs4_fattr_bitmap_maxsz)
199#define encode_read_maxsz (op_encode_hdr_maxsz + \
200 encode_stateid_maxsz + 3)
201#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
202#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
David Quigleyaa9c2662013-05-22 12:50:44 -0400203 2 + encode_verifier_maxsz + 5 + \
204 nfs4_label_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400205#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
Chuck Levera7697f62014-03-12 12:51:17 -0400206 decode_verifier_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400207#define encode_readlink_maxsz (op_encode_hdr_maxsz)
208#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
209#define encode_write_maxsz (op_encode_hdr_maxsz + \
210 encode_stateid_maxsz + 4)
211#define decode_write_maxsz (op_decode_hdr_maxsz + \
212 2 + decode_verifier_maxsz)
213#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
214#define decode_commit_maxsz (op_decode_hdr_maxsz + \
215 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#define encode_remove_maxsz (op_encode_hdr_maxsz + \
217 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400218#define decode_remove_maxsz (op_decode_hdr_maxsz + \
219 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#define encode_rename_maxsz (op_encode_hdr_maxsz + \
221 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400222#define decode_rename_maxsz (op_decode_hdr_maxsz + \
223 decode_change_info_maxsz + \
224 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#define encode_link_maxsz (op_encode_hdr_maxsz + \
226 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400227#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400228#define encode_lockowner_maxsz (7)
Trond Myklebust9104a552007-07-17 21:52:42 -0400229#define encode_lock_maxsz (op_encode_hdr_maxsz + \
230 7 + \
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400231 1 + encode_stateid_maxsz + 1 + \
232 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400233#define decode_lock_denied_maxsz \
234 (8 + decode_lockowner_maxsz)
235#define decode_lock_maxsz (op_decode_hdr_maxsz + \
236 decode_lock_denied_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400237#define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
238 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400239#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
240 decode_lock_denied_maxsz)
241#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
242 encode_stateid_maxsz + \
243 4)
244#define decode_locku_maxsz (op_decode_hdr_maxsz + \
245 decode_stateid_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400246#define encode_release_lockowner_maxsz \
247 (op_encode_hdr_maxsz + \
248 encode_lockowner_maxsz)
249#define decode_release_lockowner_maxsz \
250 (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400251#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
252#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
254 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400255 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000256 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
258#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400259 1 + 2 + nfs4_name_maxsz + \
260 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400261#define decode_create_maxsz (op_decode_hdr_maxsz + \
262 decode_change_info_maxsz + \
263 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400264#define encode_statfs_maxsz (encode_getattr_maxsz)
265#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
267#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400268#define encode_getacl_maxsz (encode_getattr_maxsz)
269#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
270 nfs4_fattr_bitmap_maxsz + 1)
271#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
272 encode_stateid_maxsz + 3)
273#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400274#define encode_fs_locations_maxsz \
275 (encode_getattr_maxsz)
276#define decode_fs_locations_maxsz \
277 (0)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000278#define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
Bryan Schumaker1650add2011-06-02 15:07:35 -0400279#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 -0400280
281#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400282#define NFS4_MAX_MACHINE_NAME_LEN (64)
Jim Reesd751f742012-11-16 18:12:06 -0500283#define IMPL_NAME_LIMIT (sizeof(utsname()->sysname) + sizeof(utsname()->release) + \
284 sizeof(utsname()->version) + sizeof(utsname()->machine) + 8)
Andy Adamsonfc931582009-04-01 09:22:31 -0400285
Benny Halevy99fe60d2009-04-01 09:22:29 -0400286#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
287 encode_verifier_maxsz + \
288 1 /* co_ownerid.len */ + \
289 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
290 1 /* flags */ + \
291 1 /* spa_how */ + \
Weston Andros Adamson2031cd12013-08-13 16:37:32 -0400292 /* max is SP4_MACH_CRED (for now) */ + \
293 1 + NFS4_OP_MAP_NUM_WORDS + \
294 1 + NFS4_OP_MAP_NUM_WORDS + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500295 1 /* implementation id array of size 1 */ + \
296 1 /* nii_domain */ + \
297 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
298 1 /* nii_name */ + \
Jim Reesd751f742012-11-16 18:12:06 -0500299 XDR_QUADLEN(IMPL_NAME_LIMIT) + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500300 3 /* nii_date */)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400301#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
302 2 /* eir_clientid */ + \
303 1 /* eir_sequenceid */ + \
304 1 /* eir_flags */ + \
305 1 /* spr_how */ + \
Weston Andros Adamson2031cd12013-08-13 16:37:32 -0400306 /* max is SP4_MACH_CRED (for now) */ + \
307 1 + NFS4_OP_MAP_NUM_WORDS + \
308 1 + NFS4_OP_MAP_NUM_WORDS + \
Benny Halevy99fe60d2009-04-01 09:22:29 -0400309 2 /* eir_server_owner.so_minor_id */ + \
310 /* eir_server_owner.so_major_id<> */ \
311 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
312 /* eir_server_scope<> */ \
313 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
314 1 /* eir_server_impl_id array length */ + \
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500315 1 /* nii_domain */ + \
316 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
317 1 /* nii_name */ + \
318 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
319 3 /* nii_date */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400320#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
321#define decode_channel_attrs_maxsz (6 + \
322 1 /* ca_rdma_ird.len */ + \
323 1 /* ca_rdma_ird */)
324#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
325 2 /* csa_clientid */ + \
326 1 /* csa_sequence */ + \
327 1 /* csa_flags */ + \
328 encode_channel_attrs_maxsz + \
329 encode_channel_attrs_maxsz + \
330 1 /* csa_cb_program */ + \
331 1 /* csa_sec_parms.len (1) */ + \
332 1 /* cb_secflavor (AUTH_SYS) */ + \
333 1 /* stamp */ + \
334 1 /* machinename.len */ + \
335 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
336 1 /* uid */ + \
337 1 /* gid */ + \
338 1 /* gids.len (0) */)
339#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
340 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
341 1 /* csr_sequence */ + \
342 1 /* csr_flags */ + \
343 decode_channel_attrs_maxsz + \
344 decode_channel_attrs_maxsz)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400345#define encode_bind_conn_to_session_maxsz (op_encode_hdr_maxsz + \
346 /* bctsa_sessid */ \
347 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
348 1 /* bctsa_dir */ + \
349 1 /* bctsa_use_conn_in_rdma_mode */)
350#define decode_bind_conn_to_session_maxsz (op_decode_hdr_maxsz + \
351 /* bctsr_sessid */ \
352 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
353 1 /* bctsr_dir */ + \
354 1 /* bctsr_use_conn_in_rdma_mode */)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400355#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
356#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400357#define encode_destroy_clientid_maxsz (op_encode_hdr_maxsz + 2)
358#define decode_destroy_clientid_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400359#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
360 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
361#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
362 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500363#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
364#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400365#define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
366 encode_verifier_maxsz)
367#define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
368 2 /* nfs_cookie4 gdlr_cookie */ + \
369 decode_verifier_maxsz \
370 /* verifier4 gdlr_verifier */ + \
371 1 /* gdlr_deviceid_list count */ + \
372 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
373 NFS4_DEVICEID4_SIZE) \
374 /* gdlr_deviceid_list */ + \
375 1 /* bool gdlr_eof */)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400376#define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
377 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
378#define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
379 1 /* layout type */ + \
380 1 /* opaque devaddr4 length */ + \
381 /* devaddr4 payload is read into page */ \
382 1 /* notification bitmap length */ + \
383 1 /* notification bitmap */)
384#define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
385 encode_stateid_maxsz)
386#define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
387 decode_stateid_maxsz + \
388 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
Andy Adamson863a3c62011-03-23 13:27:54 +0000389#define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
390 2 /* offset */ + \
391 2 /* length */ + \
392 1 /* reclaim */ + \
393 encode_stateid_maxsz + \
394 1 /* new offset (true) */ + \
395 2 /* last byte written */ + \
396 1 /* nt_timechanged (false) */ + \
397 1 /* layoutupdate4 layout type */ + \
Christoph Hellwig5f919c92014-08-21 11:09:25 -0500398 1 /* layoutupdate4 opaqueue len */)
399 /* the actual content of layoutupdate4 should
400 be allocated by drivers and spliced in
401 using xdr_write_pages */
Andy Adamson863a3c62011-03-23 13:27:54 +0000402#define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
Benny Halevycbe82602011-05-22 19:52:37 +0300403#define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
404 encode_stateid_maxsz + \
405 1 /* FIXME: opaque lrf_body always empty at the moment */)
406#define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
407 1 + decode_stateid_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400408#define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
409#define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
Bryan Schumaker7d974792011-06-02 14:59:08 -0400410#define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
411 XDR_QUADLEN(NFS4_STATEID_SIZE))
412#define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400413#define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
414 XDR_QUADLEN(NFS4_STATEID_SIZE))
Andy Adamson9f79fb42013-09-10 12:56:29 -0400415#define decode_free_stateid_maxsz (op_decode_hdr_maxsz)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400416#else /* CONFIG_NFS_V4_1 */
417#define encode_sequence_maxsz 0
418#define decode_sequence_maxsz 0
419#endif /* CONFIG_NFS_V4_1 */
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
422#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
423#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400424 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400426 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400428 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400430 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400432 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400434 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#define NFS4_dec_readlink_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_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400440 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400442 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400444 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400446 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400448 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400450 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400451 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400453 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400455 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400456 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400458 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 encode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400460 encode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400462 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 decode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400464 decode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400466 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400467 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400468 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400469 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400470 encode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400471 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400473 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400474 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400475 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400476 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400477 decode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400478 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400479#define NFS4_enc_open_confirm_sz \
480 (compound_encode_hdr_maxsz + \
481 encode_putfh_maxsz + \
482 encode_open_confirm_maxsz)
483#define NFS4_dec_open_confirm_sz \
484 (compound_decode_hdr_maxsz + \
485 decode_putfh_maxsz + \
486 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400488 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400490 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400491 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400492 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400494 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400496 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400497 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400498 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#define NFS4_enc_open_downgrade_sz \
500 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400501 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400502 encode_putfh_maxsz + \
503 encode_open_downgrade_maxsz + \
504 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505#define NFS4_dec_open_downgrade_sz \
506 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400507 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400508 decode_putfh_maxsz + \
509 decode_open_downgrade_maxsz + \
510 decode_getattr_maxsz)
511#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400512 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400513 encode_putfh_maxsz + \
514 encode_close_maxsz + \
515 encode_getattr_maxsz)
516#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400517 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400518 decode_putfh_maxsz + \
519 decode_close_maxsz + \
520 decode_getattr_maxsz)
521#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400522 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400523 encode_putfh_maxsz + \
524 encode_setattr_maxsz + \
525 encode_getattr_maxsz)
526#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400527 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400528 decode_putfh_maxsz + \
529 decode_setattr_maxsz + \
530 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400532 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 encode_putfh_maxsz + \
534 encode_fsinfo_maxsz)
535#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400536 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 decode_putfh_maxsz + \
538 decode_fsinfo_maxsz)
539#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
540 encode_renew_maxsz)
541#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
542 decode_renew_maxsz)
543#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
544 encode_setclientid_maxsz)
545#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
546 decode_setclientid_maxsz)
547#define NFS4_enc_setclientid_confirm_sz \
548 (compound_encode_hdr_maxsz + \
Chuck Lever83ca7f52013-03-16 15:55:53 -0400549 encode_setclientid_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#define NFS4_dec_setclientid_confirm_sz \
551 (compound_decode_hdr_maxsz + \
Chuck Lever83ca7f52013-03-16 15:55:53 -0400552 decode_setclientid_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400554 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400556 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400558 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400560 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400562 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400564 encode_lockt_maxsz)
565#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400566 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400567 decode_putfh_maxsz + \
568 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400570 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400572 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400574 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400576 decode_locku_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400577#define NFS4_enc_release_lockowner_sz \
578 (compound_encode_hdr_maxsz + \
579 encode_lockowner_maxsz)
580#define NFS4_dec_release_lockowner_sz \
581 (compound_decode_hdr_maxsz + \
582 decode_lockowner_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400584 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400586 encode_access_maxsz + \
587 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400589 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400591 decode_access_maxsz + \
592 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400594 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 encode_putfh_maxsz + \
Chuck Lever44c99932013-10-17 14:13:30 -0400596 encode_getattr_maxsz + \
597 encode_renew_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400599 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 decode_putfh_maxsz + \
Chuck Lever44c99932013-10-17 14:13:30 -0400601 decode_getattr_maxsz + \
602 decode_renew_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400604 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 encode_putfh_maxsz + \
606 encode_lookup_maxsz + \
607 encode_getattr_maxsz + \
608 encode_getfh_maxsz)
609#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400610 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400612 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 decode_getattr_maxsz + \
614 decode_getfh_maxsz)
615#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400616 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 encode_putrootfh_maxsz + \
618 encode_getattr_maxsz + \
619 encode_getfh_maxsz)
620#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400621 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 decode_putrootfh_maxsz + \
623 decode_getattr_maxsz + \
624 decode_getfh_maxsz)
625#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400626 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400628 encode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400630 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400632 decode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400634 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 encode_putfh_maxsz + \
636 encode_savefh_maxsz + \
637 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400638 encode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400640 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 decode_putfh_maxsz + \
642 decode_savefh_maxsz + \
643 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400644 decode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400646 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 encode_putfh_maxsz + \
648 encode_savefh_maxsz + \
649 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400650 encode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400651 encode_restorefh_maxsz + \
Trond Myklebusta9f69912012-04-27 13:48:17 -0400652 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400654 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 decode_putfh_maxsz + \
656 decode_savefh_maxsz + \
657 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400658 decode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400659 decode_restorefh_maxsz + \
660 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400662 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 encode_putfh_maxsz + \
664 encode_symlink_maxsz + \
665 encode_getattr_maxsz + \
666 encode_getfh_maxsz)
667#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400668 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 decode_putfh_maxsz + \
670 decode_symlink_maxsz + \
671 decode_getattr_maxsz + \
672 decode_getfh_maxsz)
673#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400674 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 encode_putfh_maxsz + \
676 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400677 encode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400678 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400680 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 decode_putfh_maxsz + \
682 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400683 decode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400684 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400686 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 encode_putfh_maxsz + \
688 encode_getattr_maxsz)
689#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400690 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 decode_putfh_maxsz + \
692 decode_getattr_maxsz)
693#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400694 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400696 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400698 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400700 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400702 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800703 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 encode_getattr_maxsz)
705#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400706 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800707 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 decode_getattr_maxsz)
709#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400710 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100712 encode_delegreturn_maxsz + \
713 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400715 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100716 decode_delegreturn_maxsz + \
717 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000718#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400719 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000720 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400721 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000722#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400723 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000724 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400725 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000726#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400727 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000728 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400729 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000730#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400731 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000732 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400733 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400734#define NFS4_enc_fs_locations_sz \
735 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400736 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400737 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400738 encode_lookup_maxsz + \
Chuck Leverb03d7352013-10-17 14:12:50 -0400739 encode_fs_locations_maxsz + \
740 encode_renew_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400741#define NFS4_dec_fs_locations_sz \
742 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400743 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400744 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400745 decode_lookup_maxsz + \
Chuck Leverb03d7352013-10-17 14:12:50 -0400746 decode_fs_locations_maxsz + \
747 decode_renew_maxsz)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000748#define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
749 encode_sequence_maxsz + \
750 encode_putfh_maxsz + \
751 encode_secinfo_maxsz)
752#define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
753 decode_sequence_maxsz + \
754 decode_putfh_maxsz + \
755 decode_secinfo_maxsz)
Chuck Lever44c99932013-10-17 14:13:30 -0400756#define NFS4_enc_fsid_present_sz \
757 (compound_encode_hdr_maxsz + \
758 encode_sequence_maxsz + \
759 encode_putfh_maxsz + \
760 encode_getfh_maxsz + \
761 encode_renew_maxsz)
762#define NFS4_dec_fsid_present_sz \
763 (compound_decode_hdr_maxsz + \
764 decode_sequence_maxsz + \
765 decode_putfh_maxsz + \
766 decode_getfh_maxsz + \
767 decode_renew_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400768#if defined(CONFIG_NFS_V4_1)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400769#define NFS4_enc_bind_conn_to_session_sz \
770 (compound_encode_hdr_maxsz + \
771 encode_bind_conn_to_session_maxsz)
772#define NFS4_dec_bind_conn_to_session_sz \
773 (compound_decode_hdr_maxsz + \
774 decode_bind_conn_to_session_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400775#define NFS4_enc_exchange_id_sz \
776 (compound_encode_hdr_maxsz + \
777 encode_exchange_id_maxsz)
778#define NFS4_dec_exchange_id_sz \
779 (compound_decode_hdr_maxsz + \
780 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400781#define NFS4_enc_create_session_sz \
782 (compound_encode_hdr_maxsz + \
783 encode_create_session_maxsz)
784#define NFS4_dec_create_session_sz \
785 (compound_decode_hdr_maxsz + \
786 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400787#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
788 encode_destroy_session_maxsz)
789#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
790 decode_destroy_session_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400791#define NFS4_enc_destroy_clientid_sz (compound_encode_hdr_maxsz + \
792 encode_destroy_clientid_maxsz)
793#define NFS4_dec_destroy_clientid_sz (compound_decode_hdr_maxsz + \
794 decode_destroy_clientid_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400795#define NFS4_enc_sequence_sz \
796 (compound_decode_hdr_maxsz + \
797 encode_sequence_maxsz)
798#define NFS4_dec_sequence_sz \
799 (compound_decode_hdr_maxsz + \
800 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400801#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
802 encode_sequence_maxsz + \
803 encode_putrootfh_maxsz + \
804 encode_fsinfo_maxsz)
805#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
806 decode_sequence_maxsz + \
807 decode_putrootfh_maxsz + \
808 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500809#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
810 encode_sequence_maxsz + \
811 encode_reclaim_complete_maxsz)
812#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
813 decode_sequence_maxsz + \
814 decode_reclaim_complete_maxsz)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400815#define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
816 encode_sequence_maxsz + \
817 encode_putfh_maxsz + \
818 encode_getdevicelist_maxsz)
819#define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
820 decode_sequence_maxsz + \
821 decode_putfh_maxsz + \
822 decode_getdevicelist_maxsz)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400823#define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
824 encode_sequence_maxsz +\
825 encode_getdeviceinfo_maxsz)
826#define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
827 decode_sequence_maxsz + \
828 decode_getdeviceinfo_maxsz)
829#define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
830 encode_sequence_maxsz + \
831 encode_putfh_maxsz + \
832 encode_layoutget_maxsz)
833#define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
834 decode_sequence_maxsz + \
835 decode_putfh_maxsz + \
836 decode_layoutget_maxsz)
Andy Adamson863a3c62011-03-23 13:27:54 +0000837#define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
838 encode_sequence_maxsz +\
839 encode_putfh_maxsz + \
840 encode_layoutcommit_maxsz + \
841 encode_getattr_maxsz)
842#define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
843 decode_sequence_maxsz + \
844 decode_putfh_maxsz + \
845 decode_layoutcommit_maxsz + \
846 decode_getattr_maxsz)
Benny Halevycbe82602011-05-22 19:52:37 +0300847#define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
848 encode_sequence_maxsz + \
849 encode_putfh_maxsz + \
850 encode_layoutreturn_maxsz)
851#define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
852 decode_sequence_maxsz + \
853 decode_putfh_maxsz + \
854 decode_layoutreturn_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400855#define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
856 encode_sequence_maxsz + \
857 encode_putrootfh_maxsz +\
858 encode_secinfo_no_name_maxsz)
859#define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
860 decode_sequence_maxsz + \
861 decode_putrootfh_maxsz + \
862 decode_secinfo_no_name_maxsz)
Bryan Schumaker7d974792011-06-02 14:59:08 -0400863#define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
864 encode_sequence_maxsz + \
865 encode_test_stateid_maxsz)
866#define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
867 decode_sequence_maxsz + \
868 decode_test_stateid_maxsz)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400869#define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
870 encode_sequence_maxsz + \
871 encode_free_stateid_maxsz)
872#define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
873 decode_sequence_maxsz + \
874 decode_free_stateid_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500875
876const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
877 compound_encode_hdr_maxsz +
878 encode_sequence_maxsz +
879 encode_putfh_maxsz +
880 encode_getattr_maxsz) *
881 XDR_UNIT);
882
883const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
884 compound_decode_hdr_maxsz +
885 decode_sequence_maxsz +
886 decode_putfh_maxsz) *
887 XDR_UNIT);
Andy Adamsonf1c097b2013-06-25 19:02:53 -0400888
889const u32 nfs41_maxgetdevinfo_overhead = ((RPC_MAX_REPHEADER_WITH_AUTH +
890 compound_decode_hdr_maxsz +
891 decode_sequence_maxsz) *
892 XDR_UNIT);
893EXPORT_SYMBOL_GPL(nfs41_maxgetdevinfo_overhead);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400894#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Trond Myklebustbca79472009-03-11 14:10:26 -0400896static const umode_t nfs_type2fmt[] = {
897 [NF4BAD] = 0,
898 [NF4REG] = S_IFREG,
899 [NF4DIR] = S_IFDIR,
900 [NF4BLK] = S_IFBLK,
901 [NF4CHR] = S_IFCHR,
902 [NF4LNK] = S_IFLNK,
903 [NF4SOCK] = S_IFSOCK,
904 [NF4FIFO] = S_IFIFO,
905 [NF4ATTRDIR] = 0,
906 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907};
908
909struct compound_hdr {
910 int32_t status;
911 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500912 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 uint32_t taglen;
914 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400915 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400916 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917};
918
Benny Halevy13c65ce2009-08-14 17:19:25 +0300919static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
920{
921 __be32 *p = xdr_reserve_space(xdr, nbytes);
922 BUG_ON(!p);
923 return p;
924}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Trond Myklebustcb17e552012-03-04 18:13:56 -0500926static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
927{
928 __be32 *p;
929
930 p = xdr_reserve_space(xdr, len);
931 xdr_encode_opaque_fixed(p, buf, len);
932}
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
935{
Al Viro8687b632006-10-19 23:28:48 -0700936 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500938 p = reserve_space(xdr, 4 + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 xdr_encode_opaque(p, str, len);
940}
941
Trond Myklebust4ade9822012-03-04 18:13:57 -0500942static void encode_uint32(struct xdr_stream *xdr, u32 n)
943{
944 __be32 *p;
945
946 p = reserve_space(xdr, 4);
947 *p = cpu_to_be32(n);
948}
949
Trond Myklebustff2eb682012-03-05 11:40:12 -0500950static void encode_uint64(struct xdr_stream *xdr, u64 n)
951{
952 __be32 *p;
953
954 p = reserve_space(xdr, 8);
955 xdr_encode_hyper(p, n);
956}
957
Trond Myklebust4ade9822012-03-04 18:13:57 -0500958static void encode_nfs4_seqid(struct xdr_stream *xdr,
959 const struct nfs_seqid *seqid)
960{
961 encode_uint32(xdr, seqid->sequence->counter);
962}
963
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400964static void encode_compound_hdr(struct xdr_stream *xdr,
965 struct rpc_rqst *req,
966 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Al Viro8687b632006-10-19 23:28:48 -0700968 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400969 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400970
971 /* initialize running count of expected bytes in reply.
972 * NOTE: the replied tag SHOULD be the same is the one sent,
973 * but this is not required as a MUST for the server to do so. */
974 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Trond Myklebust7fc38842012-10-15 11:51:21 -0400976 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500977 encode_string(xdr, hdr->taglen, hdr->tag);
978 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300979 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500980 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300981 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500982}
983
Trond Myklebustab19b482012-03-04 18:13:57 -0500984static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
985 uint32_t replen,
986 struct compound_hdr *hdr)
987{
988 encode_uint32(xdr, op);
989 hdr->nops++;
990 hdr->replen += replen;
991}
992
Andy Adamsond0179312008-12-23 16:06:17 -0500993static void encode_nops(struct compound_hdr *hdr)
994{
Trond Myklebust7fc38842012-10-15 11:51:21 -0400995 WARN_ON_ONCE(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500996 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500999static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
1000{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001001 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
1005{
Trond Myklebustcb17e552012-03-04 18:13:56 -05001006 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
David Quigleyaa9c2662013-05-22 12:50:44 -04001009static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap,
1010 const struct nfs4_label *label,
1011 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 char owner_name[IDMAP_NAMESZ];
1014 char owner_group[IDMAP_NAMESZ];
1015 int owner_namelen = 0;
1016 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -07001017 __be32 *p;
Trond Myklebustd7067b22013-07-17 17:09:01 -04001018 unsigned i;
1019 uint32_t len = 0;
1020 uint32_t bmval_len;
1021 uint32_t bmval[3] = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /*
1024 * We reserve enough space to write the entire attribute buffer at once.
1025 * In the worst-case, this would be
David Quigleya09df2c2013-05-22 12:50:41 -04001026 * 16(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
1027 * = 40 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001028 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Trond Myklebustd7067b22013-07-17 17:09:01 -04001030 if (iap->ia_valid & ATTR_SIZE) {
1031 bmval[0] |= FATTR4_WORD0_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 len += 8;
Trond Myklebustd7067b22013-07-17 17:09:01 -04001033 }
1034 if (iap->ia_valid & ATTR_MODE) {
1035 bmval[1] |= FATTR4_WORD1_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 len += 4;
Trond Myklebustd7067b22013-07-17 17:09:01 -04001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001039 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001041 dprintk("nfs: couldn't resolve uid %d to string\n",
Eric W. Biedermane5782072013-02-01 14:22:02 -08001042 from_kuid(&init_user_ns, iap->ia_uid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /* XXX */
1044 strcpy(owner_name, "nobody");
1045 owner_namelen = sizeof("nobody") - 1;
1046 /* goto out; */
1047 }
Trond Myklebustd7067b22013-07-17 17:09:01 -04001048 bmval[1] |= FATTR4_WORD1_OWNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1050 }
1051 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001052 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001054 dprintk("nfs: couldn't resolve gid %d to string\n",
Eric W. Biedermane5782072013-02-01 14:22:02 -08001055 from_kgid(&init_user_ns, iap->ia_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 strcpy(owner_group, "nobody");
1057 owner_grouplen = sizeof("nobody") - 1;
1058 /* goto out; */
1059 }
Trond Myklebustd7067b22013-07-17 17:09:01 -04001060 bmval[1] |= FATTR4_WORD1_OWNER_GROUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (iap->ia_valid & ATTR_ATIME_SET) {
Trond Myklebustd7067b22013-07-17 17:09:01 -04001064 bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
1065 len += 16;
1066 } else if (iap->ia_valid & ATTR_ATIME) {
1067 bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
1068 len += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070 if (iap->ia_valid & ATTR_MTIME_SET) {
Trond Myklebustd7067b22013-07-17 17:09:01 -04001071 bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
1072 len += 16;
1073 } else if (iap->ia_valid & ATTR_MTIME) {
1074 bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
1075 len += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
David Quigleyaa9c2662013-05-22 12:50:44 -04001077 if (label) {
Trond Myklebustd7067b22013-07-17 17:09:01 -04001078 len += 4 + 4 + 4 + (XDR_QUADLEN(label->len) << 2);
1079 bmval[2] |= FATTR4_WORD2_SECURITY_LABEL;
1080 }
1081
1082 if (bmval[2] != 0)
1083 bmval_len = 3;
1084 else if (bmval[1] != 0)
1085 bmval_len = 2;
1086 else
1087 bmval_len = 1;
1088
1089 p = reserve_space(xdr, 4 + (bmval_len << 2) + 4 + len);
1090
1091 *p++ = cpu_to_be32(bmval_len);
1092 for (i = 0; i < bmval_len; i++)
1093 *p++ = cpu_to_be32(bmval[i]);
1094 *p++ = cpu_to_be32(len);
1095
1096 if (bmval[0] & FATTR4_WORD0_SIZE)
1097 p = xdr_encode_hyper(p, iap->ia_size);
1098 if (bmval[1] & FATTR4_WORD1_MODE)
1099 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
1100 if (bmval[1] & FATTR4_WORD1_OWNER)
1101 p = xdr_encode_opaque(p, owner_name, owner_namelen);
1102 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP)
1103 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
1104 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
1105 if (iap->ia_valid & ATTR_ATIME_SET) {
1106 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1107 p = xdr_encode_hyper(p, (s64)iap->ia_atime.tv_sec);
1108 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
1109 } else
1110 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
1111 }
1112 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
1113 if (iap->ia_valid & ATTR_MTIME_SET) {
1114 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1115 p = xdr_encode_hyper(p, (s64)iap->ia_mtime.tv_sec);
1116 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
1117 } else
1118 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
1119 }
1120 if (bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
David Quigleyaa9c2662013-05-22 12:50:44 -04001121 *p++ = cpu_to_be32(label->lfs);
1122 *p++ = cpu_to_be32(label->pi);
1123 *p++ = cpu_to_be32(label->len);
1124 p = xdr_encode_opaque_fixed(p, label->label, label->len);
1125 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001130static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001132 encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1133 encode_uint32(xdr, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001136static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Trond Myklebustab19b482012-03-04 18:13:57 -05001138 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001139 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001140 encode_nfs4_stateid(xdr, arg->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Fred Isaman0b7c0152012-04-20 14:47:39 -04001143static void encode_commit(struct xdr_stream *xdr, const struct nfs_commitargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Al Viro8687b632006-10-19 23:28:48 -07001145 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001146
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001147 encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1148 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001149 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001150 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001153static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Al Viro8687b632006-10-19 23:28:48 -07001155 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001156
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001157 encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1158 encode_uint32(xdr, create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 switch (create->ftype) {
1161 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001162 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001163 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -04001164 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 break;
1166
1167 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001168 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001169 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +03001170 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
1172
1173 default:
1174 break;
1175 }
1176
Benny Halevy811652b2009-08-14 17:19:34 +03001177 encode_string(xdr, create->name->len, create->name->name);
David Quigleyaa9c2662013-05-22 12:50:44 -04001178 encode_attrs(xdr, create->attrs, create->label, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001181static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Andy Adamson05d564f2008-12-23 16:06:15 -05001183 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001185 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1186 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001187 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001188 *p = cpu_to_be32(bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001191static 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 -07001192{
Andy Adamson05d564f2008-12-23 16:06:15 -05001193 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001195 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1196 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001197 *p++ = cpu_to_be32(2);
1198 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001199 *p = cpu_to_be32(bm1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Fred Isamandae100c2011-07-30 20:52:37 -04001202static void
1203encode_getattr_three(struct xdr_stream *xdr,
1204 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1205 struct compound_hdr *hdr)
1206{
1207 __be32 *p;
1208
Trond Myklebustab19b482012-03-04 18:13:57 -05001209 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
Fred Isamandae100c2011-07-30 20:52:37 -04001210 if (bm2) {
1211 p = reserve_space(xdr, 16);
1212 *p++ = cpu_to_be32(3);
1213 *p++ = cpu_to_be32(bm0);
1214 *p++ = cpu_to_be32(bm1);
1215 *p = cpu_to_be32(bm2);
1216 } else if (bm1) {
1217 p = reserve_space(xdr, 12);
1218 *p++ = cpu_to_be32(2);
1219 *p++ = cpu_to_be32(bm0);
1220 *p = cpu_to_be32(bm1);
1221 } else {
1222 p = reserve_space(xdr, 8);
1223 *p++ = cpu_to_be32(1);
1224 *p = cpu_to_be32(bm0);
1225 }
Fred Isamandae100c2011-07-30 20:52:37 -04001226}
1227
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001228static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
David Quigleya09df2c2013-05-22 12:50:41 -04001230 encode_getattr_three(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1231 bitmask[1] & nfs4_fattr_bitmap[1],
1232 bitmask[2] & nfs4_fattr_bitmap[2],
1233 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Andy Adamson88034c32012-05-23 05:02:34 -04001236static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001237 const u32 *open_bitmap,
Andy Adamson88034c32012-05-23 05:02:34 -04001238 struct compound_hdr *hdr)
1239{
1240 encode_getattr_three(xdr,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001241 bitmask[0] & open_bitmap[0],
1242 bitmask[1] & open_bitmap[1],
1243 bitmask[2] & open_bitmap[2],
Andy Adamson88034c32012-05-23 05:02:34 -04001244 hdr);
1245}
1246
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001247static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Fred Isamandae100c2011-07-30 20:52:37 -04001249 encode_getattr_three(xdr,
1250 bitmask[0] & nfs4_fsinfo_bitmap[0],
1251 bitmask[1] & nfs4_fsinfo_bitmap[1],
1252 bitmask[2] & nfs4_fsinfo_bitmap[2],
1253 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001256static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001257{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001258 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1259 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001260}
1261
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001262static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Trond Myklebustab19b482012-03-04 18:13:57 -05001264 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001267static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Trond Myklebustab19b482012-03-04 18:13:57 -05001269 encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001270 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001273static inline int nfs4_lock_type(struct file_lock *fl, int block)
1274{
Jeff Laytonf44106e2012-07-23 15:49:56 -04001275 if (fl->fl_type == F_RDLCK)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001276 return block ? NFS4_READW_LT : NFS4_READ_LT;
1277 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1278}
1279
1280static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1281{
1282 if (fl->fl_end == OFFSET_MAX)
1283 return ~(uint64_t)0;
1284 return fl->fl_end - fl->fl_start + 1;
1285}
1286
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001287static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1288{
1289 __be32 *p;
1290
Trond Myklebustd035c362010-12-21 10:45:27 -05001291 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001292 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001293 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001294 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001295 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001296 xdr_encode_hyper(p, lowner->id);
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299/*
1300 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1301 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1302 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001303static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Al Viro8687b632006-10-19 23:28:48 -07001305 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001307 encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1308 p = reserve_space(xdr, 28);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001309 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1310 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001311 p = xdr_encode_hyper(p, args->fl->fl_start);
1312 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001313 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001314 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001315 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001316 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001317 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001318 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001321 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001322 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001326static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Al Viro8687b632006-10-19 23:28:48 -07001328 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001330 encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1331 p = reserve_space(xdr, 20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001332 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001333 p = xdr_encode_hyper(p, args->fl->fl_start);
1334 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001335 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001338static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Al Viro8687b632006-10-19 23:28:48 -07001340 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001342 encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1343 encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
Trond Myklebust4ade9822012-03-04 18:13:57 -05001344 encode_nfs4_seqid(xdr, args->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001345 encode_nfs4_stateid(xdr, args->stateid);
1346 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001347 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001348 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001351static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1352{
Trond Myklebustab19b482012-03-04 18:13:57 -05001353 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001354 encode_lockowner(xdr, lowner);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001355}
1356
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001357static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Trond Myklebustab19b482012-03-04 18:13:57 -05001359 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001360 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001363static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Al Viro8687b632006-10-19 23:28:48 -07001365 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Benny Halevy13c65ce2009-08-14 17:19:25 +03001367 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001368 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001369 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001370 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001371 break;
1372 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001373 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001374 break;
1375 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001376 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001377 break;
1378 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001379 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
Benny Halevy34558512009-08-14 17:19:30 +03001381 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
1384static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1385{
Al Viro8687b632006-10-19 23:28:48 -07001386 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 /*
1388 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1389 * owner 4 = 32
1390 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001391 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001392 encode_share_access(xdr, arg->fmode);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001393 p = reserve_space(xdr, 36);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001394 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001395 *p++ = cpu_to_be32(24);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001396 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001397 *p++ = cpu_to_be32(arg->server->s_dev);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001398 *p++ = cpu_to_be32(arg->id.uniquifier);
1399 xdr_encode_hyper(p, arg->id.create_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1403{
Trond Myklebust549b19c2013-04-16 18:42:34 -04001404 struct iattr dummy;
Al Viro8687b632006-10-19 23:28:48 -07001405 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Benny Halevy13c65ce2009-08-14 17:19:25 +03001407 p = reserve_space(xdr, 4);
Trond Myklebust549b19c2013-04-16 18:42:34 -04001408 switch(arg->createmode) {
1409 case NFS4_CREATE_UNCHECKED:
Benny Halevy34558512009-08-14 17:19:30 +03001410 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
David Quigleyaa9c2662013-05-22 12:50:44 -04001411 encode_attrs(xdr, arg->u.attrs, arg->label, arg->server);
Andy Adamson05d564f2008-12-23 16:06:15 -05001412 break;
Trond Myklebust549b19c2013-04-16 18:42:34 -04001413 case NFS4_CREATE_GUARDED:
1414 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
David Quigleyaa9c2662013-05-22 12:50:44 -04001415 encode_attrs(xdr, arg->u.attrs, arg->label, arg->server);
Trond Myklebust549b19c2013-04-16 18:42:34 -04001416 break;
1417 case NFS4_CREATE_EXCLUSIVE:
1418 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1419 encode_nfs4_verifier(xdr, &arg->u.verifier);
1420 break;
1421 case NFS4_CREATE_EXCLUSIVE4_1:
1422 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1423 encode_nfs4_verifier(xdr, &arg->u.verifier);
1424 dummy.ia_valid = 0;
David Quigleyaa9c2662013-05-22 12:50:44 -04001425 encode_attrs(xdr, &dummy, arg->label, arg->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427}
1428
1429static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1430{
Al Viro8687b632006-10-19 23:28:48 -07001431 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Benny Halevy13c65ce2009-08-14 17:19:25 +03001433 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001435 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001436 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001437 break;
1438 default:
Benny Halevy34558512009-08-14 17:19:30 +03001439 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001440 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442}
1443
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001444static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Al Viro8687b632006-10-19 23:28:48 -07001446 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Benny Halevy13c65ce2009-08-14 17:19:25 +03001448 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001450 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001451 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001452 break;
1453 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001454 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001455 break;
1456 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001457 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001458 break;
1459 default:
1460 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462}
1463
1464static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1465{
Al Viro8687b632006-10-19 23:28:48 -07001466 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Benny Halevy13c65ce2009-08-14 17:19:25 +03001468 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001469 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 encode_string(xdr, name->len, name->name);
1471}
1472
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001473static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Al Viro8687b632006-10-19 23:28:48 -07001475 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Benny Halevy13c65ce2009-08-14 17:19:25 +03001477 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001478 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 encode_delegation_type(xdr, type);
1480}
1481
1482static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1483{
Al Viro8687b632006-10-19 23:28:48 -07001484 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001486 p = reserve_space(xdr, 4);
1487 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1488 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 encode_string(xdr, name->len, name->name);
1490}
1491
Trond Myklebustd9fc6612013-03-15 15:39:06 -04001492static inline void encode_claim_fh(struct xdr_stream *xdr)
1493{
1494 __be32 *p;
1495
1496 p = reserve_space(xdr, 4);
1497 *p = cpu_to_be32(NFS4_OPEN_CLAIM_FH);
1498}
1499
1500static inline void encode_claim_delegate_cur_fh(struct xdr_stream *xdr, const nfs4_stateid *stateid)
1501{
1502 __be32 *p;
1503
1504 p = reserve_space(xdr, 4);
1505 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1506 encode_nfs4_stateid(xdr, stateid);
1507}
1508
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001509static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Trond Myklebustab19b482012-03-04 18:13:57 -05001511 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 encode_openhdr(xdr, arg);
1513 encode_opentype(xdr, arg);
1514 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001515 case NFS4_OPEN_CLAIM_NULL:
1516 encode_claim_null(xdr, arg->name);
1517 break;
1518 case NFS4_OPEN_CLAIM_PREVIOUS:
1519 encode_claim_previous(xdr, arg->u.delegation_type);
1520 break;
1521 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1522 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1523 break;
Trond Myklebustd9fc6612013-03-15 15:39:06 -04001524 case NFS4_OPEN_CLAIM_FH:
1525 encode_claim_fh(xdr);
1526 break;
1527 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1528 encode_claim_delegate_cur_fh(xdr, &arg->u.delegation);
1529 break;
Andy Adamson05d564f2008-12-23 16:06:15 -05001530 default:
1531 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001535static 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 -07001536{
Trond Myklebustab19b482012-03-04 18:13:57 -05001537 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001538 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001539 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001542static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Trond Myklebustab19b482012-03-04 18:13:57 -05001544 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001545 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001546 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001547 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001550static void
Andy Adamsond0179312008-12-23 16:06:17 -05001551encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Trond Myklebustab19b482012-03-04 18:13:57 -05001553 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001554 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001557static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Trond Myklebustab19b482012-03-04 18:13:57 -05001559 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Anna Schumaker3c6b8992014-05-06 09:12:24 -04001562static void encode_read(struct xdr_stream *xdr, const struct nfs_pgio_args *args,
1563 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Al Viro8687b632006-10-19 23:28:48 -07001565 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Trond Myklebustab19b482012-03-04 18:13:57 -05001567 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebust9b206142013-03-17 15:52:00 -04001568 encode_nfs4_stateid(xdr, &args->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Benny Halevy13c65ce2009-08-14 17:19:25 +03001570 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001571 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001572 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001575static 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 -07001576{
David Quigleyaa9c2662013-05-22 12:50:44 -04001577 uint32_t attrs[3] = {
Trond Myklebust28331a42011-04-27 13:47:52 -04001578 FATTR4_WORD0_RDATTR_ERROR,
1579 FATTR4_WORD1_MOUNTED_ON_FILEID,
1580 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001581 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001582 __be32 *p, verf[2];
Trond Myklebustd204c5d2013-11-04 13:23:59 -05001583 uint32_t attrlen = 0;
1584 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001586 if (readdir->plus) {
1587 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001588 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001589 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1590 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1591 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1592 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebustd204c5d2013-11-04 13:23:59 -05001593 attrs[2] |= FATTR4_WORD2_SECURITY_LABEL;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001594 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001595 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001596 /* Use mounted_on_fileid only if the server supports it */
1597 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1598 attrs[0] |= FATTR4_WORD0_FILEID;
Trond Myklebustd204c5d2013-11-04 13:23:59 -05001599 for (i = 0; i < ARRAY_SIZE(attrs); i++) {
1600 attrs[i] &= readdir->bitmask[i];
1601 if (attrs[i] != 0)
1602 attrlen = i+1;
1603 }
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001604
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001605 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001606 encode_uint64(xdr, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001607 encode_nfs4_verifier(xdr, &readdir->verifier);
Trond Myklebustd204c5d2013-11-04 13:23:59 -05001608 p = reserve_space(xdr, 12 + (attrlen << 2));
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001609 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001610 *p++ = cpu_to_be32(readdir->count);
Trond Myklebustd204c5d2013-11-04 13:23:59 -05001611 *p++ = cpu_to_be32(attrlen);
1612 for (i = 0; i < attrlen; i++)
1613 *p++ = cpu_to_be32(attrs[i]);
Chuck Levercd937102012-03-02 17:14:31 -05001614 memcpy(verf, readdir->verifier.data, sizeof(verf));
David Quigleyaa9c2662013-05-22 12:50:44 -04001615
1616 dprintk("%s: cookie = %llu, verifier = %08x:%08x, bitmap = %08x:%08x:%08x\n",
Fred Isaman44109242008-04-02 15:21:15 +03001617 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001618 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001619 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001620 attrs[0] & readdir->bitmask[0],
David Quigleyaa9c2662013-05-22 12:50:44 -04001621 attrs[1] & readdir->bitmask[1],
1622 attrs[2] & readdir->bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001625static 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 -07001626{
Trond Myklebustab19b482012-03-04 18:13:57 -05001627 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001630static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Trond Myklebustab19b482012-03-04 18:13:57 -05001632 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001633 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001636static 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 -07001637{
Trond Myklebustab19b482012-03-04 18:13:57 -05001638 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001639 encode_string(xdr, oldname->len, oldname->name);
1640 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Chuck Leverbb4dae52012-03-01 17:01:48 -05001643static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1644 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001646 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001647 encode_uint64(xdr, clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001650static void
Andy Adamsond0179312008-12-23 16:06:17 -05001651encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001652{
Trond Myklebustab19b482012-03-04 18:13:57 -05001653 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001654}
1655
Chuck Lever9f06c712010-12-14 14:59:18 +00001656static void
Andy Adamsond0179312008-12-23 16:06:17 -05001657encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001658{
Al Viro8687b632006-10-19 23:28:48 -07001659 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001660
Trond Myklebustab19b482012-03-04 18:13:57 -05001661 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001662 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001663 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001664 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001665 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001666 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001667 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001668 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001669}
1670
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001671static void
Andy Adamsond0179312008-12-23 16:06:17 -05001672encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Trond Myklebustab19b482012-03-04 18:13:57 -05001674 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001677static 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 -07001678{
Trond Myklebustab19b482012-03-04 18:13:57 -05001679 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001680 encode_nfs4_stateid(xdr, &arg->stateid);
David Quigleyaa9c2662013-05-22 12:50:44 -04001681 encode_attrs(xdr, arg->iap, arg->label, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001684static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Al Viro8687b632006-10-19 23:28:48 -07001686 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Trond Myklebust70019512012-03-04 20:49:32 -05001688 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001689 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001692 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001693 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1695 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001696 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001697 *p = cpu_to_be32(setclientid->sc_cb_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001700static 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 -07001701{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001702 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1703 decode_setclientid_confirm_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001704 encode_uint64(xdr, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001705 encode_nfs4_verifier(xdr, &arg->confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Anna Schumaker3c6b8992014-05-06 09:12:24 -04001708static void encode_write(struct xdr_stream *xdr, const struct nfs_pgio_args *args,
1709 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Al Viro8687b632006-10-19 23:28:48 -07001711 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Trond Myklebustab19b482012-03-04 18:13:57 -05001713 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebust9b206142013-03-17 15:52:00 -04001714 encode_nfs4_stateid(xdr, &args->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Benny Halevy13c65ce2009-08-14 17:19:25 +03001716 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001717 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001718 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001719 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001724static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Trond Myklebustab19b482012-03-04 18:13:57 -05001726 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001727 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001729
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001730static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1731{
Trond Myklebustab19b482012-03-04 18:13:57 -05001732 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001733 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001734}
1735
Benny Halevy99fe60d2009-04-01 09:22:29 -04001736#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001737/* NFSv4.1 operations */
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04001738static void encode_bind_conn_to_session(struct xdr_stream *xdr,
1739 struct nfs4_session *session,
1740 struct compound_hdr *hdr)
1741{
1742 __be32 *p;
1743
1744 encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
1745 decode_bind_conn_to_session_maxsz, hdr);
1746 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1747 p = xdr_reserve_space(xdr, 8);
1748 *p++ = cpu_to_be32(NFS4_CDFC4_BACK_OR_BOTH);
1749 *p = 0; /* use_conn_in_rdma_mode = False */
1750}
1751
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04001752static void encode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
1753{
1754 unsigned int i;
1755 encode_uint32(xdr, NFS4_OP_MAP_NUM_WORDS);
1756 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++)
1757 encode_uint32(xdr, op_map->u.words[i]);
1758}
1759
Benny Halevy99fe60d2009-04-01 09:22:29 -04001760static void encode_exchange_id(struct xdr_stream *xdr,
1761 struct nfs41_exchange_id_args *args,
1762 struct compound_hdr *hdr)
1763{
1764 __be32 *p;
Jim Reesd751f742012-11-16 18:12:06 -05001765 char impl_name[IMPL_NAME_LIMIT];
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001766 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001767
Trond Myklebust70019512012-03-04 20:49:32 -05001768 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001769 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001770
1771 encode_string(xdr, args->id_len, args->id);
1772
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04001773 encode_uint32(xdr, args->flags);
1774 encode_uint32(xdr, args->state_protect.how);
1775
1776 switch (args->state_protect.how) {
1777 case SP4_NONE:
1778 break;
1779 case SP4_MACH_CRED:
1780 encode_op_map(xdr, &args->state_protect.enforce);
1781 encode_op_map(xdr, &args->state_protect.allow);
1782 break;
1783 default:
1784 WARN_ON_ONCE(1);
1785 break;
1786 }
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001787
1788 if (send_implementation_id &&
1789 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1790 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
Jim Reesd751f742012-11-16 18:12:06 -05001791 <= sizeof(impl_name) + 1)
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001792 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1793 utsname()->sysname, utsname()->release,
1794 utsname()->version, utsname()->machine);
1795
1796 if (len > 0) {
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04001797 encode_uint32(xdr, 1); /* implementation id array length=1 */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001798
1799 encode_string(xdr,
1800 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1801 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1802 encode_string(xdr, len, impl_name);
1803 /* just send zeros for nii_date - the date is in nii_name */
1804 p = reserve_space(xdr, 12);
1805 p = xdr_encode_hyper(p, 0);
1806 *p = cpu_to_be32(0);
1807 } else
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04001808 encode_uint32(xdr, 0); /* implementation id array length=0 */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001809}
Andy Adamsonfc931582009-04-01 09:22:31 -04001810
1811static void encode_create_session(struct xdr_stream *xdr,
1812 struct nfs41_create_session_args *args,
1813 struct compound_hdr *hdr)
1814{
1815 __be32 *p;
1816 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1817 uint32_t len;
1818 struct nfs_client *clp = args->client;
Chuck Leverf0920752012-05-21 22:45:41 -04001819 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Mike Sager8e0d46e2009-12-17 12:06:26 -05001820 u32 max_resp_sz_cached;
1821
1822 /*
1823 * Assumes OPEN is the biggest non-idempotent compound.
1824 * 2 is the verifier.
1825 */
1826 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1827 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001828
Andy Adamsonfc931582009-04-01 09:22:31 -04001829 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1830 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001831
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001832 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1833 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
Andy Adamson114f64b2011-03-09 13:13:45 -05001834 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001835 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1836 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001837
Andy Adamsonfc931582009-04-01 09:22:31 -04001838 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001839 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001840 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1841 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001842 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001843 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1844 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1845 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001846
1847 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001848 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001849 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1850 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1851 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1852 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1853 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1854 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001855
Benny Halevye75bc1c2009-08-14 17:18:54 +03001856 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001857 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001858 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001859
1860 /* authsys_parms rfc1831 */
Trond Myklebust17f26b12013-08-21 15:48:42 -04001861 *p++ = cpu_to_be32(nn->boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001862 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001863 *p++ = cpu_to_be32(0); /* UID */
1864 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001865 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001866}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001867
1868static void encode_destroy_session(struct xdr_stream *xdr,
1869 struct nfs4_session *session,
1870 struct compound_hdr *hdr)
1871{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001872 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1873 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001874}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001875
Trond Myklebust66245532012-05-25 17:18:09 -04001876static void encode_destroy_clientid(struct xdr_stream *xdr,
1877 uint64_t clientid,
1878 struct compound_hdr *hdr)
1879{
1880 encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
1881 encode_uint64(xdr, clientid);
1882}
1883
Ricardo Labiaga180197532009-12-05 16:08:40 -05001884static void encode_reclaim_complete(struct xdr_stream *xdr,
1885 struct nfs41_reclaim_complete_args *args,
1886 struct compound_hdr *hdr)
1887{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001888 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1889 encode_uint32(xdr, args->one_fs);
Ricardo Labiaga180197532009-12-05 16:08:40 -05001890}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001891#endif /* CONFIG_NFS_V4_1 */
1892
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001893static void encode_sequence(struct xdr_stream *xdr,
1894 const struct nfs4_sequence_args *args,
1895 struct compound_hdr *hdr)
1896{
1897#if defined(CONFIG_NFS_V4_1)
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001898 struct nfs4_session *session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001899 struct nfs4_slot_table *tp;
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001900 struct nfs4_slot *slot = args->sa_slot;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001901 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001902
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001903 tp = slot->table;
1904 session = tp->session;
Chuck Lever3bd23842013-08-09 12:49:19 -04001905 if (!session)
1906 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001907
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001908 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001909
1910 /*
1911 * Sessionid + seqid + slotid + max slotid + cache_this
1912 */
1913 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1914 "max_slotid=%d cache_this=%d\n",
1915 __func__,
1916 ((u32 *)session->sess_id.data)[0],
1917 ((u32 *)session->sess_id.data)[1],
1918 ((u32 *)session->sess_id.data)[2],
1919 ((u32 *)session->sess_id.data)[3],
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001920 slot->seq_nr, slot->slot_nr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001921 tp->highest_used_slotid, args->sa_cache_this);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001922 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001923 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001924 *p++ = cpu_to_be32(slot->seq_nr);
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001925 *p++ = cpu_to_be32(slot->slot_nr);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001926 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001927 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001928#endif /* CONFIG_NFS_V4_1 */
1929}
1930
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001931#ifdef CONFIG_NFS_V4_1
1932static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001933encode_getdevicelist(struct xdr_stream *xdr,
1934 const struct nfs4_getdevicelist_args *args,
1935 struct compound_hdr *hdr)
1936{
1937 __be32 *p;
1938 nfs4_verifier dummy = {
1939 .data = "dummmmmy",
1940 };
1941
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001942 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1943 p = reserve_space(xdr, 16);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001944 *p++ = cpu_to_be32(args->layoutclass);
1945 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1946 xdr_encode_hyper(p, 0ULL); /* cookie */
1947 encode_nfs4_verifier(xdr, &dummy);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001948}
1949
1950static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001951encode_getdeviceinfo(struct xdr_stream *xdr,
1952 const struct nfs4_getdeviceinfo_args *args,
1953 struct compound_hdr *hdr)
1954{
1955 __be32 *p;
1956
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001957 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1958 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001959 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1960 NFS4_DEVICEID4_SIZE);
1961 *p++ = cpu_to_be32(args->pdev->layout_type);
Andy Adamsonf1c097b2013-06-25 19:02:53 -04001962 *p++ = cpu_to_be32(args->pdev->maxcount); /* gdia_maxcount */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001963 *p++ = cpu_to_be32(0); /* bitmap length 0 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001964}
1965
1966static void
1967encode_layoutget(struct xdr_stream *xdr,
1968 const struct nfs4_layoutget_args *args,
1969 struct compound_hdr *hdr)
1970{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001971 __be32 *p;
1972
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001973 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1974 p = reserve_space(xdr, 36);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001975 *p++ = cpu_to_be32(0); /* Signal layout available */
1976 *p++ = cpu_to_be32(args->type);
1977 *p++ = cpu_to_be32(args->range.iomode);
1978 p = xdr_encode_hyper(p, args->range.offset);
1979 p = xdr_encode_hyper(p, args->range.length);
1980 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001981 encode_nfs4_stateid(xdr, &args->stateid);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001982 encode_uint32(xdr, args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001983
1984 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1985 __func__,
1986 args->type,
1987 args->range.iomode,
1988 (unsigned long)args->range.offset,
1989 (unsigned long)args->range.length,
1990 args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001991}
Andy Adamson863a3c62011-03-23 13:27:54 +00001992
1993static int
1994encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001995 struct inode *inode,
Christoph Hellwig5f919c92014-08-21 11:09:25 -05001996 struct nfs4_layoutcommit_args *args,
Andy Adamson863a3c62011-03-23 13:27:54 +00001997 struct compound_hdr *hdr)
1998{
1999 __be32 *p;
2000
2001 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
2002 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
2003
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002004 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
2005 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00002006 /* Only whole file layouts */
2007 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04002008 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002009 *p = cpu_to_be32(0); /* reclaim */
2010 encode_nfs4_stateid(xdr, &args->stateid);
2011 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00002012 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
2013 p = xdr_encode_hyper(p, args->lastbytewritten);
2014 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
2015 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03002016
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002017 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit) {
Benny Halevyac7db722011-05-22 19:53:48 +03002018 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
2019 NFS_I(inode)->layout, xdr, args);
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002020 } else {
2021 encode_uint32(xdr, args->layoutupdate_len);
2022 if (args->layoutupdate_pages) {
2023 xdr_write_pages(xdr, args->layoutupdate_pages, 0,
2024 args->layoutupdate_len);
2025 }
2026 }
Andy Adamson863a3c62011-03-23 13:27:54 +00002027
Andy Adamson863a3c62011-03-23 13:27:54 +00002028 return 0;
2029}
Benny Halevycbe82602011-05-22 19:52:37 +03002030
2031static void
2032encode_layoutreturn(struct xdr_stream *xdr,
2033 const struct nfs4_layoutreturn_args *args,
2034 struct compound_hdr *hdr)
2035{
2036 __be32 *p;
2037
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002038 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
2039 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03002040 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
2041 *p++ = cpu_to_be32(args->layout_type);
2042 *p++ = cpu_to_be32(IOMODE_ANY);
2043 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002044 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03002045 p = xdr_encode_hyper(p, 0);
2046 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
2047 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002048 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03002049 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03002050 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
2051 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
2052 NFS_I(args->inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002053 } else
2054 encode_uint32(xdr, 0);
Benny Halevycbe82602011-05-22 19:52:37 +03002055}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002056
2057static int
2058encode_secinfo_no_name(struct xdr_stream *xdr,
2059 const struct nfs41_secinfo_no_name_args *args,
2060 struct compound_hdr *hdr)
2061{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002062 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
2063 encode_uint32(xdr, args->style);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002064 return 0;
2065}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002066
2067static void encode_test_stateid(struct xdr_stream *xdr,
2068 struct nfs41_test_stateid_args *args,
2069 struct compound_hdr *hdr)
2070{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002071 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2072 encode_uint32(xdr, 1);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002073 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002074}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002075
2076static void encode_free_stateid(struct xdr_stream *xdr,
2077 struct nfs41_free_stateid_args *args,
2078 struct compound_hdr *hdr)
2079{
Trond Myklebustab19b482012-03-04 18:13:57 -05002080 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04002081 encode_nfs4_stateid(xdr, &args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002082}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002083#endif /* CONFIG_NFS_V4_1 */
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085/*
2086 * END OF "GENERIC" ENCODE ROUTINES.
2087 */
2088
Benny Halevy66cc0422009-04-01 09:22:10 -04002089static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2090{
2091#if defined(CONFIG_NFS_V4_1)
Chuck Lever3bd23842013-08-09 12:49:19 -04002092 struct nfs4_session *session = args->sa_slot->table->session;
2093 if (session)
2094 return session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002095#endif /* CONFIG_NFS_V4_1 */
2096 return 0;
2097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099/*
2100 * Encode an ACCESS request
2101 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002102static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2103 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002106 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Chuck Lever9f06c712010-12-14 14:59:18 +00002109 encode_compound_hdr(xdr, req, &hdr);
2110 encode_sequence(xdr, &args->seq_args, &hdr);
2111 encode_putfh(xdr, args->fh, &hdr);
2112 encode_access(xdr, args->access, &hdr);
2113 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002114 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
2117/*
2118 * Encode LOOKUP request
2119 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002120static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2121 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002124 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Chuck Lever9f06c712010-12-14 14:59:18 +00002127 encode_compound_hdr(xdr, req, &hdr);
2128 encode_sequence(xdr, &args->seq_args, &hdr);
2129 encode_putfh(xdr, args->dir_fh, &hdr);
2130 encode_lookup(xdr, args->name, &hdr);
2131 encode_getfh(xdr, &hdr);
2132 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002133 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/*
2137 * Encode LOOKUP_ROOT request
2138 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002139static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2140 struct xdr_stream *xdr,
2141 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002144 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Chuck Lever9f06c712010-12-14 14:59:18 +00002147 encode_compound_hdr(xdr, req, &hdr);
2148 encode_sequence(xdr, &args->seq_args, &hdr);
2149 encode_putrootfh(xdr, &hdr);
2150 encode_getfh(xdr, &hdr);
2151 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002152 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * Encode REMOVE request
2157 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002158static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2159 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002162 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Chuck Lever9f06c712010-12-14 14:59:18 +00002165 encode_compound_hdr(xdr, req, &hdr);
2166 encode_sequence(xdr, &args->seq_args, &hdr);
2167 encode_putfh(xdr, args->fh, &hdr);
2168 encode_remove(xdr, &args->name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002169 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
2172/*
2173 * Encode RENAME request
2174 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002175static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2176 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002179 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Chuck Lever9f06c712010-12-14 14:59:18 +00002182 encode_compound_hdr(xdr, req, &hdr);
2183 encode_sequence(xdr, &args->seq_args, &hdr);
2184 encode_putfh(xdr, args->old_dir, &hdr);
2185 encode_savefh(xdr, &hdr);
2186 encode_putfh(xdr, args->new_dir, &hdr);
2187 encode_rename(xdr, args->old_name, args->new_name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002188 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
2191/*
2192 * Encode LINK request
2193 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002194static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2195 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002198 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Chuck Lever9f06c712010-12-14 14:59:18 +00002201 encode_compound_hdr(xdr, req, &hdr);
2202 encode_sequence(xdr, &args->seq_args, &hdr);
2203 encode_putfh(xdr, args->fh, &hdr);
2204 encode_savefh(xdr, &hdr);
2205 encode_putfh(xdr, args->dir_fh, &hdr);
2206 encode_link(xdr, args->name, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002207 encode_restorefh(xdr, &hdr);
2208 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002209 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
2211
2212/*
2213 * Encode CREATE request
2214 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002215static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2216 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002219 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Chuck Lever9f06c712010-12-14 14:59:18 +00002222 encode_compound_hdr(xdr, req, &hdr);
2223 encode_sequence(xdr, &args->seq_args, &hdr);
2224 encode_putfh(xdr, args->dir_fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002225 encode_create(xdr, args, &hdr);
2226 encode_getfh(xdr, &hdr);
2227 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002228 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/*
2232 * Encode SYMLINK request
2233 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002234static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2235 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Chuck Lever9f06c712010-12-14 14:59:18 +00002237 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
2240/*
2241 * Encode GETATTR request
2242 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002243static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2244 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002247 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Chuck Lever9f06c712010-12-14 14:59:18 +00002250 encode_compound_hdr(xdr, req, &hdr);
2251 encode_sequence(xdr, &args->seq_args, &hdr);
2252 encode_putfh(xdr, args->fh, &hdr);
2253 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002254 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257/*
2258 * Encode a CLOSE request
2259 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002260static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2261 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Andy Adamson05d564f2008-12-23 16:06:15 -05002263 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002264 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002265 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Chuck Lever9f06c712010-12-14 14:59:18 +00002267 encode_compound_hdr(xdr, req, &hdr);
2268 encode_sequence(xdr, &args->seq_args, &hdr);
2269 encode_putfh(xdr, args->fh, &hdr);
2270 encode_close(xdr, args, &hdr);
2271 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002272 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275/*
2276 * Encode an OPEN request
2277 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002278static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2279 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002282 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Chuck Lever9f06c712010-12-14 14:59:18 +00002285 encode_compound_hdr(xdr, req, &hdr);
2286 encode_sequence(xdr, &args->seq_args, &hdr);
2287 encode_putfh(xdr, args->fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002288 encode_open(xdr, args, &hdr);
2289 encode_getfh(xdr, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002290 if (args->access)
2291 encode_access(xdr, args->access, &hdr);
Trond Myklebust1549210f2012-06-05 09:16:47 -04002292 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002293 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
2296/*
2297 * Encode an OPEN_CONFIRM request
2298 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002299static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2300 struct xdr_stream *xdr,
2301 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002304 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Chuck Lever9f06c712010-12-14 14:59:18 +00002307 encode_compound_hdr(xdr, req, &hdr);
2308 encode_putfh(xdr, args->fh, &hdr);
2309 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002310 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
2313/*
2314 * Encode an OPEN request with no attributes.
2315 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002316static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2317 struct xdr_stream *xdr,
2318 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002321 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Chuck Lever9f06c712010-12-14 14:59:18 +00002324 encode_compound_hdr(xdr, req, &hdr);
2325 encode_sequence(xdr, &args->seq_args, &hdr);
2326 encode_putfh(xdr, args->fh, &hdr);
2327 encode_open(xdr, args, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002328 if (args->access)
2329 encode_access(xdr, args->access, &hdr);
Andy Adamsone23008e2012-10-02 21:07:32 -04002330 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002331 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
2334/*
2335 * Encode an OPEN_DOWNGRADE request
2336 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002337static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2338 struct xdr_stream *xdr,
2339 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002342 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Chuck Lever9f06c712010-12-14 14:59:18 +00002345 encode_compound_hdr(xdr, req, &hdr);
2346 encode_sequence(xdr, &args->seq_args, &hdr);
2347 encode_putfh(xdr, args->fh, &hdr);
2348 encode_open_downgrade(xdr, args, &hdr);
2349 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002350 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353/*
2354 * Encode a LOCK request
2355 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002356static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2357 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002360 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Chuck Lever9f06c712010-12-14 14:59:18 +00002363 encode_compound_hdr(xdr, req, &hdr);
2364 encode_sequence(xdr, &args->seq_args, &hdr);
2365 encode_putfh(xdr, args->fh, &hdr);
2366 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002367 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
2369
2370/*
2371 * Encode a LOCKT request
2372 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002373static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2374 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002377 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Chuck Lever9f06c712010-12-14 14:59:18 +00002380 encode_compound_hdr(xdr, req, &hdr);
2381 encode_sequence(xdr, &args->seq_args, &hdr);
2382 encode_putfh(xdr, args->fh, &hdr);
2383 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002384 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
2387/*
2388 * Encode a LOCKU request
2389 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002390static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2391 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002394 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Chuck Lever9f06c712010-12-14 14:59:18 +00002397 encode_compound_hdr(xdr, req, &hdr);
2398 encode_sequence(xdr, &args->seq_args, &hdr);
2399 encode_putfh(xdr, args->fh, &hdr);
2400 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002401 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
Chuck Lever9f06c712010-12-14 14:59:18 +00002404static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2405 struct xdr_stream *xdr,
2406 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002407{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002408 struct compound_hdr hdr = {
2409 .minorversion = 0,
2410 };
2411
Chuck Lever9f06c712010-12-14 14:59:18 +00002412 encode_compound_hdr(xdr, req, &hdr);
2413 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002414 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002415}
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417/*
2418 * Encode a READLINK request
2419 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002420static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2421 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002424 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Chuck Lever9f06c712010-12-14 14:59:18 +00002427 encode_compound_hdr(xdr, req, &hdr);
2428 encode_sequence(xdr, &args->seq_args, &hdr);
2429 encode_putfh(xdr, args->fh, &hdr);
2430 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002431
Benny Halevy28f56692009-04-01 09:22:09 -04002432 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002433 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002434 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435}
2436
2437/*
2438 * Encode a READDIR request
2439 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002440static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2441 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002444 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Chuck Lever9f06c712010-12-14 14:59:18 +00002447 encode_compound_hdr(xdr, req, &hdr);
2448 encode_sequence(xdr, &args->seq_args, &hdr);
2449 encode_putfh(xdr, args->fh, &hdr);
2450 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002451
Benny Halevy28f56692009-04-01 09:22:09 -04002452 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002453 args->pgbase, args->count);
2454 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002455 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002456 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002457 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
2460/*
2461 * Encode a READ request
2462 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002463static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04002464 struct nfs_pgio_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002467 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Chuck Lever9f06c712010-12-14 14:59:18 +00002470 encode_compound_hdr(xdr, req, &hdr);
2471 encode_sequence(xdr, &args->seq_args, &hdr);
2472 encode_putfh(xdr, args->fh, &hdr);
2473 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Benny Halevy28f56692009-04-01 09:22:09 -04002475 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002477 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002478 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
2481/*
2482 * Encode an SETATTR request
2483 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002484static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2485 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
Andy Adamson05d564f2008-12-23 16:06:15 -05002487 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002488 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002489 };
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_setattr(xdr, args, args->server, &hdr);
2495 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002496 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
2499/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002500 * Encode a GETACL request
2501 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002502static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2503 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002504{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002505 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002506 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002507 };
Benny Halevy28f56692009-04-01 09:22:09 -04002508 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002509
Chuck Lever9f06c712010-12-14 14:59:18 +00002510 encode_compound_hdr(xdr, req, &hdr);
2511 encode_sequence(xdr, &args->seq_args, &hdr);
2512 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002513 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002514 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002515
Benny Halevy28f56692009-04-01 09:22:09 -04002516 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002517 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002518
Andy Adamsond0179312008-12-23 16:06:17 -05002519 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002520}
2521
2522/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 * Encode a WRITE request
2524 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002525static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04002526 struct nfs_pgio_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002529 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Chuck Lever9f06c712010-12-14 14:59:18 +00002532 encode_compound_hdr(xdr, req, &hdr);
2533 encode_sequence(xdr, &args->seq_args, &hdr);
2534 encode_putfh(xdr, args->fh, &hdr);
2535 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002536 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002537 if (args->bitmask)
2538 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002539 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542/*
2543 * a COMMIT request
2544 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002545static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04002546 struct nfs_commitargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002549 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Chuck Lever9f06c712010-12-14 14:59:18 +00002552 encode_compound_hdr(xdr, req, &hdr);
2553 encode_sequence(xdr, &args->seq_args, &hdr);
2554 encode_putfh(xdr, args->fh, &hdr);
2555 encode_commit(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002556 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557}
2558
2559/*
2560 * FSINFO request
2561 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002562static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2563 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002566 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Chuck Lever9f06c712010-12-14 14:59:18 +00002569 encode_compound_hdr(xdr, req, &hdr);
2570 encode_sequence(xdr, &args->seq_args, &hdr);
2571 encode_putfh(xdr, args->fh, &hdr);
2572 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002573 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
2576/*
2577 * a PATHCONF request
2578 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002579static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2580 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002583 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Chuck Lever9f06c712010-12-14 14:59:18 +00002586 encode_compound_hdr(xdr, req, &hdr);
2587 encode_sequence(xdr, &args->seq_args, &hdr);
2588 encode_putfh(xdr, args->fh, &hdr);
2589 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002590 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002591 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
2594/*
2595 * a STATFS request
2596 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002597static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2598 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002601 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Chuck Lever9f06c712010-12-14 14:59:18 +00002604 encode_compound_hdr(xdr, req, &hdr);
2605 encode_sequence(xdr, &args->seq_args, &hdr);
2606 encode_putfh(xdr, args->fh, &hdr);
2607 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002608 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002609 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610}
2611
2612/*
2613 * GETATTR_BITMAP request
2614 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002615static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2616 struct xdr_stream *xdr,
2617 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002620 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Chuck Lever9f06c712010-12-14 14:59:18 +00002623 encode_compound_hdr(xdr, req, &hdr);
2624 encode_sequence(xdr, &args->seq_args, &hdr);
2625 encode_putfh(xdr, args->fhandle, &hdr);
2626 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002627 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002628 FATTR4_WORD0_LINK_SUPPORT|
2629 FATTR4_WORD0_SYMLINK_SUPPORT|
2630 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002631 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
2633
2634/*
2635 * a RENEW request
2636 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002637static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2638 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002641 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 };
2643
Chuck Lever9f06c712010-12-14 14:59:18 +00002644 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002645 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002646 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
2649/*
2650 * a SETCLIENTID request
2651 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002652static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2653 struct xdr_stream *xdr,
2654 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002657 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 };
2659
Chuck Lever9f06c712010-12-14 14:59:18 +00002660 encode_compound_hdr(xdr, req, &hdr);
2661 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002662 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
2665/*
2666 * a SETCLIENTID_CONFIRM request
2667 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002668static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2669 struct xdr_stream *xdr,
2670 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002673 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Chuck Lever9f06c712010-12-14 14:59:18 +00002676 encode_compound_hdr(xdr, req, &hdr);
2677 encode_setclientid_confirm(xdr, arg, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002678 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
2680
2681/*
2682 * DELEGRETURN request
2683 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002684static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2685 struct xdr_stream *xdr,
2686 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002689 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Chuck Lever9f06c712010-12-14 14:59:18 +00002692 encode_compound_hdr(xdr, req, &hdr);
2693 encode_sequence(xdr, &args->seq_args, &hdr);
2694 encode_putfh(xdr, args->fhandle, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002695 encode_getfattr(xdr, args->bitmask, &hdr);
Trond Myklebuste144cbc2012-04-28 16:05:03 -04002696 encode_delegreturn(xdr, args->stateid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002697 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
2700/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002701 * Encode FS_LOCATIONS request
2702 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002703static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2704 struct xdr_stream *xdr,
2705 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002706{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002707 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002708 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002709 };
Benny Halevy28f56692009-04-01 09:22:09 -04002710 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002711
Chuck Lever9f06c712010-12-14 14:59:18 +00002712 encode_compound_hdr(xdr, req, &hdr);
2713 encode_sequence(xdr, &args->seq_args, &hdr);
Chuck Leverb03d7352013-10-17 14:12:50 -04002714 if (args->migration) {
2715 encode_putfh(xdr, args->fh, &hdr);
2716 replen = hdr.replen;
2717 encode_fs_locations(xdr, args->bitmask, &hdr);
2718 if (args->renew)
2719 encode_renew(xdr, args->clientid, &hdr);
2720 } else {
2721 encode_putfh(xdr, args->dir_fh, &hdr);
2722 encode_lookup(xdr, args->name, &hdr);
2723 replen = hdr.replen;
2724 encode_fs_locations(xdr, args->bitmask, &hdr);
2725 }
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002726
Chuck Leverb03d7352013-10-17 14:12:50 -04002727 /* Set up reply kvec to capture returned fs_locations array. */
Benny Halevy28f56692009-04-01 09:22:09 -04002728 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002729 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002730 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002731}
2732
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002733/*
2734 * Encode SECINFO request
2735 */
2736static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2737 struct xdr_stream *xdr,
2738 struct nfs4_secinfo_arg *args)
2739{
2740 struct compound_hdr hdr = {
2741 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2742 };
2743
2744 encode_compound_hdr(xdr, req, &hdr);
2745 encode_sequence(xdr, &args->seq_args, &hdr);
2746 encode_putfh(xdr, args->dir_fh, &hdr);
2747 encode_secinfo(xdr, args->name, &hdr);
2748 encode_nops(&hdr);
2749}
2750
Chuck Lever44c99932013-10-17 14:13:30 -04002751/*
2752 * Encode FSID_PRESENT request
2753 */
2754static void nfs4_xdr_enc_fsid_present(struct rpc_rqst *req,
2755 struct xdr_stream *xdr,
2756 struct nfs4_fsid_present_arg *args)
2757{
2758 struct compound_hdr hdr = {
2759 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2760 };
2761
2762 encode_compound_hdr(xdr, req, &hdr);
2763 encode_sequence(xdr, &args->seq_args, &hdr);
2764 encode_putfh(xdr, args->fh, &hdr);
2765 encode_getfh(xdr, &hdr);
2766 if (args->renew)
2767 encode_renew(xdr, args->clientid, &hdr);
2768 encode_nops(&hdr);
2769}
2770
Benny Halevy99fe60d2009-04-01 09:22:29 -04002771#if defined(CONFIG_NFS_V4_1)
2772/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04002773 * BIND_CONN_TO_SESSION request
2774 */
2775static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
2776 struct xdr_stream *xdr,
2777 struct nfs_client *clp)
2778{
2779 struct compound_hdr hdr = {
2780 .minorversion = clp->cl_mvops->minor_version,
2781 };
2782
2783 encode_compound_hdr(xdr, req, &hdr);
2784 encode_bind_conn_to_session(xdr, clp->cl_session, &hdr);
2785 encode_nops(&hdr);
2786}
2787
2788/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04002789 * EXCHANGE_ID request
2790 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002791static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2792 struct xdr_stream *xdr,
2793 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002794{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002795 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002796 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002797 };
2798
Chuck Lever9f06c712010-12-14 14:59:18 +00002799 encode_compound_hdr(xdr, req, &hdr);
2800 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002801 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002802}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002803
2804/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002805 * a CREATE_SESSION request
2806 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002807static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2808 struct xdr_stream *xdr,
2809 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002810{
Andy Adamsonfc931582009-04-01 09:22:31 -04002811 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002812 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002813 };
2814
Chuck Lever9f06c712010-12-14 14:59:18 +00002815 encode_compound_hdr(xdr, req, &hdr);
2816 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002817 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002818}
2819
2820/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002821 * a DESTROY_SESSION request
2822 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002823static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2824 struct xdr_stream *xdr,
2825 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002826{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002827 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002828 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002829 };
2830
Chuck Lever9f06c712010-12-14 14:59:18 +00002831 encode_compound_hdr(xdr, req, &hdr);
2832 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002833 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002834}
2835
2836/*
Trond Myklebust66245532012-05-25 17:18:09 -04002837 * a DESTROY_CLIENTID request
2838 */
2839static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
2840 struct xdr_stream *xdr,
2841 struct nfs_client *clp)
2842{
2843 struct compound_hdr hdr = {
2844 .minorversion = clp->cl_mvops->minor_version,
2845 };
2846
2847 encode_compound_hdr(xdr, req, &hdr);
2848 encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
2849 encode_nops(&hdr);
2850}
2851
2852/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002853 * a SEQUENCE request
2854 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002855static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2856 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002857{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002858 struct compound_hdr hdr = {
2859 .minorversion = nfs4_xdr_minorversion(args),
2860 };
2861
Chuck Lever9f06c712010-12-14 14:59:18 +00002862 encode_compound_hdr(xdr, req, &hdr);
2863 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002864 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002865}
2866
2867/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002868 * a GET_LEASE_TIME request
2869 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002870static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2871 struct xdr_stream *xdr,
2872 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002873{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002874 struct compound_hdr hdr = {
2875 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2876 };
Fred Isamandae100c2011-07-30 20:52:37 -04002877 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002878
Chuck Lever9f06c712010-12-14 14:59:18 +00002879 encode_compound_hdr(xdr, req, &hdr);
2880 encode_sequence(xdr, &args->la_seq_args, &hdr);
2881 encode_putrootfh(xdr, &hdr);
2882 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002883 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002884}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002885
2886/*
2887 * a RECLAIM_COMPLETE request
2888 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002889static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2890 struct xdr_stream *xdr,
2891 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002892{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002893 struct compound_hdr hdr = {
2894 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2895 };
2896
Chuck Lever9f06c712010-12-14 14:59:18 +00002897 encode_compound_hdr(xdr, req, &hdr);
2898 encode_sequence(xdr, &args->seq_args, &hdr);
2899 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002900 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002901}
2902
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002903/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002904 * Encode GETDEVICELIST request
2905 */
2906static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2907 struct xdr_stream *xdr,
2908 struct nfs4_getdevicelist_args *args)
2909{
2910 struct compound_hdr hdr = {
2911 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2912 };
2913
2914 encode_compound_hdr(xdr, req, &hdr);
2915 encode_sequence(xdr, &args->seq_args, &hdr);
2916 encode_putfh(xdr, args->fh, &hdr);
2917 encode_getdevicelist(xdr, args, &hdr);
2918 encode_nops(&hdr);
2919}
2920
2921/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002922 * Encode GETDEVICEINFO request
2923 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002924static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2925 struct xdr_stream *xdr,
2926 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002927{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002928 struct compound_hdr hdr = {
2929 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2930 };
2931
Chuck Lever9f06c712010-12-14 14:59:18 +00002932 encode_compound_hdr(xdr, req, &hdr);
2933 encode_sequence(xdr, &args->seq_args, &hdr);
2934 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002935
2936 /* set up reply kvec. Subtract notification bitmap max size (2)
2937 * so that notification bitmap is put in xdr_buf tail */
2938 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2939 args->pdev->pages, args->pdev->pgbase,
2940 args->pdev->pglen);
2941
2942 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002943}
2944
2945/*
2946 * Encode LAYOUTGET request
2947 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002948static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2949 struct xdr_stream *xdr,
2950 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002951{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002952 struct compound_hdr hdr = {
2953 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2954 };
2955
Chuck Lever9f06c712010-12-14 14:59:18 +00002956 encode_compound_hdr(xdr, req, &hdr);
2957 encode_sequence(xdr, &args->seq_args, &hdr);
2958 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2959 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002960
2961 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2962 args->layout.pages, 0, args->layout.pglen);
2963
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002964 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002965}
Andy Adamson863a3c62011-03-23 13:27:54 +00002966
2967/*
2968 * Encode LAYOUTCOMMIT request
2969 */
Benny Halevycbe82602011-05-22 19:52:37 +03002970static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2971 struct xdr_stream *xdr,
2972 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002973{
Benny Halevyac7db722011-05-22 19:53:48 +03002974 struct nfs4_layoutcommit_data *data =
2975 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002976 struct compound_hdr hdr = {
2977 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2978 };
2979
2980 encode_compound_hdr(xdr, req, &hdr);
2981 encode_sequence(xdr, &args->seq_args, &hdr);
2982 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002983 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002984 encode_getfattr(xdr, args->bitmask, &hdr);
2985 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002986}
2987
2988/*
2989 * Encode LAYOUTRETURN request
2990 */
2991static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2992 struct xdr_stream *xdr,
2993 struct nfs4_layoutreturn_args *args)
2994{
2995 struct compound_hdr hdr = {
2996 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2997 };
2998
2999 encode_compound_hdr(xdr, req, &hdr);
3000 encode_sequence(xdr, &args->seq_args, &hdr);
3001 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
3002 encode_layoutreturn(xdr, args, &hdr);
3003 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00003004}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04003005
3006/*
3007 * Encode SECINFO_NO_NAME request
3008 */
3009static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
3010 struct xdr_stream *xdr,
3011 struct nfs41_secinfo_no_name_args *args)
3012{
3013 struct compound_hdr hdr = {
3014 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3015 };
3016
3017 encode_compound_hdr(xdr, req, &hdr);
3018 encode_sequence(xdr, &args->seq_args, &hdr);
3019 encode_putrootfh(xdr, &hdr);
3020 encode_secinfo_no_name(xdr, args, &hdr);
3021 encode_nops(&hdr);
3022 return 0;
3023}
Bryan Schumaker7d974792011-06-02 14:59:08 -04003024
3025/*
3026 * Encode TEST_STATEID request
3027 */
3028static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
3029 struct xdr_stream *xdr,
3030 struct nfs41_test_stateid_args *args)
3031{
3032 struct compound_hdr hdr = {
3033 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3034 };
3035
3036 encode_compound_hdr(xdr, req, &hdr);
3037 encode_sequence(xdr, &args->seq_args, &hdr);
3038 encode_test_stateid(xdr, args, &hdr);
3039 encode_nops(&hdr);
3040}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04003041
3042/*
3043 * Encode FREE_STATEID request
3044 */
3045static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
3046 struct xdr_stream *xdr,
3047 struct nfs41_free_stateid_args *args)
3048{
3049 struct compound_hdr hdr = {
3050 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3051 };
3052
3053 encode_compound_hdr(xdr, req, &hdr);
3054 encode_sequence(xdr, &args->seq_args, &hdr);
3055 encode_free_stateid(xdr, args, &hdr);
3056 encode_nops(&hdr);
3057}
Benny Halevy99fe60d2009-04-01 09:22:29 -04003058#endif /* CONFIG_NFS_V4_1 */
3059
Benny Halevy686841b2009-08-14 17:19:48 +03003060static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
3061{
3062 dprintk("nfs: %s: prematurely hit end of receive buffer. "
3063 "Remaining buffer length is %tu words.\n",
3064 func, xdr->end - xdr->p);
3065}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Trond Myklebust683b57b2006-06-09 09:34:22 -04003067static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Al Viro8687b632006-10-19 23:28:48 -07003069 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Benny Halevyc0eae662009-08-14 17:20:14 +03003071 p = xdr_inline_decode(xdr, 4);
3072 if (unlikely(!p))
3073 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003074 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003075 p = xdr_inline_decode(xdr, *len);
3076 if (unlikely(!p))
3077 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 *string = (char *)p;
3079 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003080out_overflow:
3081 print_overflow_msg(__func__, xdr);
3082 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
3085static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
3086{
Al Viro8687b632006-10-19 23:28:48 -07003087 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Benny Halevyc0eae662009-08-14 17:20:14 +03003089 p = xdr_inline_decode(xdr, 8);
3090 if (unlikely(!p))
3091 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003092 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003093 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003094
Benny Halevyc0eae662009-08-14 17:20:14 +03003095 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3096 if (unlikely(!p))
3097 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 hdr->tag = (char *)p;
3099 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003100 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003101 if (unlikely(hdr->nops < 1))
3102 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003104out_overflow:
3105 print_overflow_msg(__func__, xdr);
3106 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107}
3108
Trond Myklebustc7848f62013-12-04 17:39:23 -05003109static bool __decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected,
3110 int *nfs_retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Al Viro8687b632006-10-19 23:28:48 -07003112 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 uint32_t opnum;
3114 int32_t nfserr;
3115
Benny Halevyc0eae662009-08-14 17:20:14 +03003116 p = xdr_inline_decode(xdr, 8);
3117 if (unlikely(!p))
3118 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003119 opnum = be32_to_cpup(p++);
Trond Myklebustc7848f62013-12-04 17:39:23 -05003120 if (unlikely(opnum != expected))
3121 goto out_bad_operation;
Benny Halevycccddf42009-08-14 17:20:19 +03003122 nfserr = be32_to_cpup(p);
Trond Myklebustc7848f62013-12-04 17:39:23 -05003123 if (nfserr == NFS_OK)
3124 *nfs_retval = 0;
3125 else
3126 *nfs_retval = nfs4_stat_to_errno(nfserr);
3127 return true;
3128out_bad_operation:
3129 dprintk("nfs: Server returned operation"
3130 " %d but we issued a request for %d\n",
3131 opnum, expected);
3132 *nfs_retval = -EREMOTEIO;
3133 return false;
Benny Halevyc0eae662009-08-14 17:20:14 +03003134out_overflow:
3135 print_overflow_msg(__func__, xdr);
Trond Myklebustc7848f62013-12-04 17:39:23 -05003136 *nfs_retval = -EIO;
3137 return false;
3138}
3139
3140static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3141{
3142 int retval;
3143
3144 __decode_op_hdr(xdr, expected, &retval);
3145 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146}
3147
3148/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003149static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150{
Al Viro8687b632006-10-19 23:28:48 -07003151 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003152 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 char *str;
3154
Benny Halevyc0eae662009-08-14 17:20:14 +03003155 p = xdr_inline_decode(xdr, 12);
3156 if (likely(p))
3157 return decode_opaque_inline(xdr, &strlen, &str);
3158 print_overflow_msg(__func__, xdr);
3159 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
3162static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3163{
Al Viro8687b632006-10-19 23:28:48 -07003164 uint32_t bmlen;
3165 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Benny Halevyc0eae662009-08-14 17:20:14 +03003167 p = xdr_inline_decode(xdr, 4);
3168 if (unlikely(!p))
3169 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003170 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Fred Isamandae100c2011-07-30 20:52:37 -04003172 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003173 p = xdr_inline_decode(xdr, (bmlen << 2));
3174 if (unlikely(!p))
3175 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003177 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003178 if (bmlen > 1) {
3179 bitmap[1] = be32_to_cpup(p++);
3180 if (bmlen > 2)
3181 bitmap[2] = be32_to_cpup(p);
3182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003185out_overflow:
3186 print_overflow_msg(__func__, xdr);
3187 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
Trond Myklebust256e48b2012-06-21 11:18:13 -04003190static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191{
Al Viro8687b632006-10-19 23:28:48 -07003192 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Benny Halevyc0eae662009-08-14 17:20:14 +03003194 p = xdr_inline_decode(xdr, 4);
3195 if (unlikely(!p))
3196 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003197 *attrlen = be32_to_cpup(p);
Trond Myklebust256e48b2012-06-21 11:18:13 -04003198 *savep = xdr_stream_pos(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003200out_overflow:
3201 print_overflow_msg(__func__, xdr);
3202 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
3205static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3206{
3207 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003208 int ret;
3209 ret = decode_attr_bitmap(xdr, bitmask);
3210 if (unlikely(ret < 0))
3211 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3213 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003214 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3215 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3216 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return 0;
3218}
3219
3220static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3221{
Al Viro8687b632006-10-19 23:28:48 -07003222 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003223 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225 *type = 0;
3226 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3227 return -EIO;
3228 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003229 p = xdr_inline_decode(xdr, 4);
3230 if (unlikely(!p))
3231 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003232 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003234 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 return -EIO;
3236 }
3237 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003238 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003240 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003241 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003242out_overflow:
3243 print_overflow_msg(__func__, xdr);
3244 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245}
3246
Chuck Lever264e6352012-03-01 17:02:05 -05003247static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3248 uint32_t *bitmap, uint32_t *type)
3249{
3250 __be32 *p;
3251
3252 *type = 0;
3253 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3254 return -EIO;
3255 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3256 p = xdr_inline_decode(xdr, 4);
3257 if (unlikely(!p))
3258 goto out_overflow;
3259 *type = be32_to_cpup(p);
3260 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3261 }
3262 dprintk("%s: expire type=0x%x\n", __func__, *type);
3263 return 0;
3264out_overflow:
3265 print_overflow_msg(__func__, xdr);
3266 return -EIO;
3267}
3268
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3270{
Al Viro8687b632006-10-19 23:28:48 -07003271 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003272 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274 *change = 0;
3275 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3276 return -EIO;
3277 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003278 p = xdr_inline_decode(xdr, 8);
3279 if (unlikely(!p))
3280 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003281 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003283 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003285 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003287 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003288out_overflow:
3289 print_overflow_msg(__func__, xdr);
3290 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291}
3292
3293static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3294{
Al Viro8687b632006-10-19 23:28:48 -07003295 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003296 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298 *size = 0;
3299 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3300 return -EIO;
3301 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003302 p = xdr_inline_decode(xdr, 8);
3303 if (unlikely(!p))
3304 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003305 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003307 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003309 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003310 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003311out_overflow:
3312 print_overflow_msg(__func__, xdr);
3313 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
3316static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3317{
Al Viro8687b632006-10-19 23:28:48 -07003318 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
3320 *res = 0;
3321 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3322 return -EIO;
3323 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003324 p = xdr_inline_decode(xdr, 4);
3325 if (unlikely(!p))
3326 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003327 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3329 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003330 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003332out_overflow:
3333 print_overflow_msg(__func__, xdr);
3334 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335}
3336
3337static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3338{
Al Viro8687b632006-10-19 23:28:48 -07003339 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341 *res = 0;
3342 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3343 return -EIO;
3344 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003345 p = xdr_inline_decode(xdr, 4);
3346 if (unlikely(!p))
3347 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003348 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3350 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003351 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003353out_overflow:
3354 print_overflow_msg(__func__, xdr);
3355 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356}
3357
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003358static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359{
Al Viro8687b632006-10-19 23:28:48 -07003360 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003361 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
3363 fsid->major = 0;
3364 fsid->minor = 0;
3365 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3366 return -EIO;
3367 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003368 p = xdr_inline_decode(xdr, 16);
3369 if (unlikely(!p))
3370 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003371 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003372 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003374 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003376 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 (unsigned long long)fsid->major,
3378 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003379 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003380out_overflow:
3381 print_overflow_msg(__func__, xdr);
3382 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383}
3384
3385static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3386{
Al Viro8687b632006-10-19 23:28:48 -07003387 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
3389 *res = 60;
3390 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3391 return -EIO;
3392 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003393 p = xdr_inline_decode(xdr, 4);
3394 if (unlikely(!p))
3395 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003396 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3398 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003399 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003401out_overflow:
3402 print_overflow_msg(__func__, xdr);
3403 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404}
3405
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003406static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003407{
3408 __be32 *p;
3409
3410 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3411 return -EIO;
3412 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3413 p = xdr_inline_decode(xdr, 4);
3414 if (unlikely(!p))
3415 goto out_overflow;
3416 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003417 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003418 }
3419 return 0;
3420out_overflow:
3421 print_overflow_msg(__func__, xdr);
3422 return -EIO;
3423}
3424
3425static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3426{
3427 __be32 *p;
3428 int len;
3429
Trond Myklebust7ad07352010-10-23 15:34:20 -04003430 if (fh != NULL)
3431 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003432
3433 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3434 return -EIO;
3435 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3436 p = xdr_inline_decode(xdr, 4);
3437 if (unlikely(!p))
3438 goto out_overflow;
3439 len = be32_to_cpup(p);
3440 if (len > NFS4_FHSIZE)
3441 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003442 p = xdr_inline_decode(xdr, len);
3443 if (unlikely(!p))
3444 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003445 if (fh != NULL) {
3446 memcpy(fh->data, p, len);
3447 fh->size = len;
3448 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003449 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3450 }
3451 return 0;
3452out_overflow:
3453 print_overflow_msg(__func__, xdr);
3454 return -EIO;
3455}
3456
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3458{
Al Viro8687b632006-10-19 23:28:48 -07003459 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Malahal Nainenia1800ac2014-01-27 15:31:09 -06003461 *res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3463 return -EIO;
3464 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003465 p = xdr_inline_decode(xdr, 4);
3466 if (unlikely(!p))
3467 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003468 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3470 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003471 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003473out_overflow:
3474 print_overflow_msg(__func__, xdr);
3475 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476}
3477
3478static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3479{
Al Viro8687b632006-10-19 23:28:48 -07003480 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003481 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 *fileid = 0;
3484 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3485 return -EIO;
3486 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003487 p = xdr_inline_decode(xdr, 8);
3488 if (unlikely(!p))
3489 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003490 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003492 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003494 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003495 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003496out_overflow:
3497 print_overflow_msg(__func__, xdr);
3498 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499}
3500
Manoj Naik99baf622006-06-09 09:34:24 -04003501static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3502{
Al Viro8687b632006-10-19 23:28:48 -07003503 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003504 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003505
3506 *fileid = 0;
3507 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3508 return -EIO;
3509 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003510 p = xdr_inline_decode(xdr, 8);
3511 if (unlikely(!p))
3512 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003513 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003514 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003515 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003516 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003517 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003518 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003519out_overflow:
3520 print_overflow_msg(__func__, xdr);
3521 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003522}
3523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3525{
Al Viro8687b632006-10-19 23:28:48 -07003526 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 int status = 0;
3528
3529 *res = 0;
3530 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3531 return -EIO;
3532 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003533 p = xdr_inline_decode(xdr, 8);
3534 if (unlikely(!p))
3535 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003536 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3538 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003539 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003541out_overflow:
3542 print_overflow_msg(__func__, xdr);
3543 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544}
3545
3546static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3547{
Al Viro8687b632006-10-19 23:28:48 -07003548 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 int status = 0;
3550
3551 *res = 0;
3552 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3553 return -EIO;
3554 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003555 p = xdr_inline_decode(xdr, 8);
3556 if (unlikely(!p))
3557 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003558 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3560 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003561 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003563out_overflow:
3564 print_overflow_msg(__func__, xdr);
3565 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566}
3567
3568static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3569{
Al Viro8687b632006-10-19 23:28:48 -07003570 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 int status = 0;
3572
3573 *res = 0;
3574 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3575 return -EIO;
3576 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003577 p = xdr_inline_decode(xdr, 8);
3578 if (unlikely(!p))
3579 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003580 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3582 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003583 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003585out_overflow:
3586 print_overflow_msg(__func__, xdr);
3587 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588}
3589
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003590static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3591{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003592 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003593 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003594 int status = 0;
3595
Benny Halevyc0eae662009-08-14 17:20:14 +03003596 p = xdr_inline_decode(xdr, 4);
3597 if (unlikely(!p))
3598 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003599 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003600 if (n == 0)
3601 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003602 dprintk("pathname4: ");
Trond Myklebust809b4262013-03-27 11:54:45 -04003603 if (n > NFS4_PATHNAME_MAXCOMPONENTS) {
3604 dprintk("cannot parse %d components in path\n", n);
3605 goto out_eio;
3606 }
3607 for (path->ncomponents = 0; path->ncomponents < n; path->ncomponents++) {
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003608 struct nfs4_string *component = &path->components[path->ncomponents];
3609 status = decode_opaque_inline(xdr, &component->len, &component->data);
3610 if (unlikely(status != 0))
3611 goto out_eio;
Trond Myklebust95a13f72012-03-14 21:55:01 -04003612 ifdebug (XDR)
Chuck Lever02a29762012-03-01 17:00:31 -05003613 pr_cont("%s%.*s ",
3614 (path->ncomponents != n ? "/ " : ""),
3615 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003616 }
3617out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003618 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003619root_path:
3620/* a root pathname is sent as a zero component4 */
3621 path->ncomponents = 1;
3622 path->components[0].len=0;
3623 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003624 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003625 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003626out_eio:
3627 dprintk(" status %d", status);
3628 status = -EIO;
3629 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003630out_overflow:
3631 print_overflow_msg(__func__, xdr);
3632 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003633}
3634
3635static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003636{
3637 int n;
Al Viro8687b632006-10-19 23:28:48 -07003638 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003639 int status = -EIO;
3640
3641 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3642 goto out;
3643 status = 0;
3644 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3645 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003646 status = -EIO;
3647 /* Ignore borken servers that return unrequested attrs */
3648 if (unlikely(res == NULL))
3649 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003650 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003651 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003652 if (unlikely(status != 0))
3653 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003654 p = xdr_inline_decode(xdr, 4);
3655 if (unlikely(!p))
3656 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003657 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003658 if (n <= 0)
3659 goto out_eio;
Trond Myklebust809b4262013-03-27 11:54:45 -04003660 for (res->nlocations = 0; res->nlocations < n; res->nlocations++) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003661 u32 m;
Trond Myklebust809b4262013-03-27 11:54:45 -04003662 struct nfs4_fs_location *loc;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003663
Trond Myklebust809b4262013-03-27 11:54:45 -04003664 if (res->nlocations == NFS4_FS_LOCATIONS_MAXENTRIES)
3665 break;
3666 loc = &res->locations[res->nlocations];
Benny Halevyc0eae662009-08-14 17:20:14 +03003667 p = xdr_inline_decode(xdr, 4);
3668 if (unlikely(!p))
3669 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003670 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003671
Chuck Lever02a29762012-03-01 17:00:31 -05003672 dprintk("%s: servers:\n", __func__);
Trond Myklebust809b4262013-03-27 11:54:45 -04003673 for (loc->nservers = 0; loc->nservers < m; loc->nservers++) {
3674 struct nfs4_string *server;
3675
3676 if (loc->nservers == NFS4_FS_LOCATION_MAXSERVERS) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003677 unsigned int i;
3678 dprintk("%s: using first %u of %u servers "
3679 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003680 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003681 NFS4_FS_LOCATION_MAXSERVERS,
3682 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003683 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003684 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003685 char *data;
3686 status = decode_opaque_inline(xdr, &len, &data);
3687 if (unlikely(status != 0))
3688 goto out_eio;
3689 }
Trond Myklebust809b4262013-03-27 11:54:45 -04003690 break;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003691 }
Trond Myklebust809b4262013-03-27 11:54:45 -04003692 server = &loc->servers[loc->nservers];
3693 status = decode_opaque_inline(xdr, &server->len, &server->data);
3694 if (unlikely(status != 0))
3695 goto out_eio;
3696 dprintk("%s ", server->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003697 }
3698 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003699 if (unlikely(status != 0))
3700 goto out_eio;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003701 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003702 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003703 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003704out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003705 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003706 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003707out_overflow:
3708 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003709out_eio:
3710 status = -EIO;
3711 goto out;
3712}
3713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3715{
Al Viro8687b632006-10-19 23:28:48 -07003716 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 int status = 0;
3718
3719 *res = 0;
3720 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3721 return -EIO;
3722 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003723 p = xdr_inline_decode(xdr, 8);
3724 if (unlikely(!p))
3725 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003726 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3728 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003729 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003731out_overflow:
3732 print_overflow_msg(__func__, xdr);
3733 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734}
3735
3736static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3737{
Al Viro8687b632006-10-19 23:28:48 -07003738 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 int status = 0;
3740
3741 *maxlink = 1;
3742 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3743 return -EIO;
3744 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003745 p = xdr_inline_decode(xdr, 4);
3746 if (unlikely(!p))
3747 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003748 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3750 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003751 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003753out_overflow:
3754 print_overflow_msg(__func__, xdr);
3755 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756}
3757
3758static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3759{
Al Viro8687b632006-10-19 23:28:48 -07003760 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 int status = 0;
3762
3763 *maxname = 1024;
3764 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3765 return -EIO;
3766 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003767 p = xdr_inline_decode(xdr, 4);
3768 if (unlikely(!p))
3769 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003770 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3772 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003773 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003775out_overflow:
3776 print_overflow_msg(__func__, xdr);
3777 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778}
3779
3780static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3781{
Al Viro8687b632006-10-19 23:28:48 -07003782 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 int status = 0;
3784
3785 *res = 1024;
3786 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3787 return -EIO;
3788 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3789 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003790 p = xdr_inline_decode(xdr, 8);
3791 if (unlikely(!p))
3792 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003793 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 if (maxread > 0x7FFFFFFF)
3795 maxread = 0x7FFFFFFF;
3796 *res = (uint32_t)maxread;
3797 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3798 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003799 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003801out_overflow:
3802 print_overflow_msg(__func__, xdr);
3803 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
3805
3806static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3807{
Al Viro8687b632006-10-19 23:28:48 -07003808 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 int status = 0;
3810
3811 *res = 1024;
3812 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3813 return -EIO;
3814 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3815 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003816 p = xdr_inline_decode(xdr, 8);
3817 if (unlikely(!p))
3818 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003819 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 if (maxwrite > 0x7FFFFFFF)
3821 maxwrite = 0x7FFFFFFF;
3822 *res = (uint32_t)maxwrite;
3823 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3824 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003825 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003827out_overflow:
3828 print_overflow_msg(__func__, xdr);
3829 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830}
3831
Trond Myklebustbca79472009-03-11 14:10:26 -04003832static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833{
Trond Myklebustbca79472009-03-11 14:10:26 -04003834 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003835 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003836 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838 *mode = 0;
3839 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3840 return -EIO;
3841 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003842 p = xdr_inline_decode(xdr, 4);
3843 if (unlikely(!p))
3844 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003845 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003846 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003848 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003850 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003851 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003852out_overflow:
3853 print_overflow_msg(__func__, xdr);
3854 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855}
3856
3857static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3858{
Al Viro8687b632006-10-19 23:28:48 -07003859 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003860 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
3862 *nlink = 1;
3863 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3864 return -EIO;
3865 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003866 p = xdr_inline_decode(xdr, 4);
3867 if (unlikely(!p))
3868 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003869 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003871 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003873 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003874 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003875out_overflow:
3876 print_overflow_msg(__func__, xdr);
3877 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878}
3879
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003880static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Eric W. Biedermane5782072013-02-01 14:22:02 -08003881 const struct nfs_server *server, kuid_t *uid,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003882 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
Al Viro8687b632006-10-19 23:28:48 -07003884 uint32_t len;
3885 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003886 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Eric W. Biedermane5782072013-02-01 14:22:02 -08003888 *uid = make_kuid(&init_user_ns, -2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3890 return -EIO;
3891 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003892 p = xdr_inline_decode(xdr, 4);
3893 if (unlikely(!p))
3894 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003895 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003896 p = xdr_inline_decode(xdr, len);
3897 if (unlikely(!p))
3898 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003899 if (owner_name != NULL) {
3900 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3901 if (owner_name->data != NULL) {
3902 owner_name->len = len;
3903 ret = NFS_ATTR_FATTR_OWNER_NAME;
3904 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003905 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003906 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003907 ret = NFS_ATTR_FATTR_OWNER;
3908 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003910 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003912 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003913 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3915 }
Eric W. Biedermane5782072013-02-01 14:22:02 -08003916 dprintk("%s: uid=%d\n", __func__, (int)from_kuid(&init_user_ns, *uid));
Trond Myklebust409924e2009-03-11 14:10:27 -04003917 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003918out_overflow:
3919 print_overflow_msg(__func__, xdr);
3920 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003923static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Eric W. Biedermane5782072013-02-01 14:22:02 -08003924 const struct nfs_server *server, kgid_t *gid,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003925 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926{
Al Viro8687b632006-10-19 23:28:48 -07003927 uint32_t len;
3928 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003929 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Eric W. Biedermane5782072013-02-01 14:22:02 -08003931 *gid = make_kgid(&init_user_ns, -2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3933 return -EIO;
3934 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003935 p = xdr_inline_decode(xdr, 4);
3936 if (unlikely(!p))
3937 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003938 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003939 p = xdr_inline_decode(xdr, len);
3940 if (unlikely(!p))
3941 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003942 if (group_name != NULL) {
3943 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3944 if (group_name->data != NULL) {
3945 group_name->len = len;
3946 ret = NFS_ATTR_FATTR_GROUP_NAME;
3947 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003948 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003949 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003950 ret = NFS_ATTR_FATTR_GROUP;
3951 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003953 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003955 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003956 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3958 }
Eric W. Biedermane5782072013-02-01 14:22:02 -08003959 dprintk("%s: gid=%d\n", __func__, (int)from_kgid(&init_user_ns, *gid));
Trond Myklebust409924e2009-03-11 14:10:27 -04003960 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003961out_overflow:
3962 print_overflow_msg(__func__, xdr);
3963 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964}
3965
3966static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3967{
Al Viro8687b632006-10-19 23:28:48 -07003968 uint32_t major = 0, minor = 0;
3969 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003970 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972 *rdev = MKDEV(0,0);
3973 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3974 return -EIO;
3975 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3976 dev_t tmp;
3977
Benny Halevyc0eae662009-08-14 17:20:14 +03003978 p = xdr_inline_decode(xdr, 8);
3979 if (unlikely(!p))
3980 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003981 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003982 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 tmp = MKDEV(major, minor);
3984 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3985 *rdev = tmp;
3986 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003987 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003989 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003990 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003991out_overflow:
3992 print_overflow_msg(__func__, xdr);
3993 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994}
3995
3996static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3997{
Al Viro8687b632006-10-19 23:28:48 -07003998 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 int status = 0;
4000
4001 *res = 0;
4002 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
4003 return -EIO;
4004 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004005 p = xdr_inline_decode(xdr, 8);
4006 if (unlikely(!p))
4007 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004008 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
4010 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004011 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004013out_overflow:
4014 print_overflow_msg(__func__, xdr);
4015 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016}
4017
4018static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4019{
Al Viro8687b632006-10-19 23:28:48 -07004020 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 int status = 0;
4022
4023 *res = 0;
4024 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
4025 return -EIO;
4026 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004027 p = xdr_inline_decode(xdr, 8);
4028 if (unlikely(!p))
4029 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004030 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
4032 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004033 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004035out_overflow:
4036 print_overflow_msg(__func__, xdr);
4037 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038}
4039
4040static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4041{
Al Viro8687b632006-10-19 23:28:48 -07004042 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 int status = 0;
4044
4045 *res = 0;
4046 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
4047 return -EIO;
4048 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004049 p = xdr_inline_decode(xdr, 8);
4050 if (unlikely(!p))
4051 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004052 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
4054 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004055 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004057out_overflow:
4058 print_overflow_msg(__func__, xdr);
4059 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060}
4061
4062static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
4063{
Al Viro8687b632006-10-19 23:28:48 -07004064 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04004065 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
4067 *used = 0;
4068 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
4069 return -EIO;
4070 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004071 p = xdr_inline_decode(xdr, 8);
4072 if (unlikely(!p))
4073 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004074 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04004076 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004078 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04004080 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03004081out_overflow:
4082 print_overflow_msg(__func__, xdr);
4083 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084}
4085
4086static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
4087{
Al Viro8687b632006-10-19 23:28:48 -07004088 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 uint64_t sec;
4090 uint32_t nsec;
4091
Benny Halevyc0eae662009-08-14 17:20:14 +03004092 p = xdr_inline_decode(xdr, 12);
4093 if (unlikely(!p))
4094 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004095 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03004096 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 time->tv_sec = (time_t)sec;
4098 time->tv_nsec = (long)nsec;
4099 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004100out_overflow:
4101 print_overflow_msg(__func__, xdr);
4102 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103}
4104
4105static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4106{
4107 int status = 0;
4108
4109 time->tv_sec = 0;
4110 time->tv_nsec = 0;
4111 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4112 return -EIO;
4113 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4114 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004115 if (status == 0)
4116 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4118 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004119 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 return status;
4121}
4122
4123static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4124{
4125 int status = 0;
4126
4127 time->tv_sec = 0;
4128 time->tv_nsec = 0;
4129 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4130 return -EIO;
4131 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4132 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004133 if (status == 0)
4134 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4136 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004137 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 return status;
4139}
4140
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004141static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4142 struct timespec *time)
4143{
4144 int status = 0;
4145
4146 time->tv_sec = 0;
4147 time->tv_nsec = 0;
4148 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4149 return -EIO;
4150 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4151 status = decode_attr_time(xdr, time);
4152 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4153 }
4154 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4155 (long)time->tv_nsec);
4156 return status;
4157}
4158
David Quigleyaa9c2662013-05-22 12:50:44 -04004159static int decode_attr_security_label(struct xdr_stream *xdr, uint32_t *bitmap,
4160 struct nfs4_label *label)
4161{
4162 uint32_t pi = 0;
4163 uint32_t lfs = 0;
4164 __u32 len;
4165 __be32 *p;
4166 int status = 0;
4167
4168 if (unlikely(bitmap[2] & (FATTR4_WORD2_SECURITY_LABEL - 1U)))
4169 return -EIO;
4170 if (likely(bitmap[2] & FATTR4_WORD2_SECURITY_LABEL)) {
4171 p = xdr_inline_decode(xdr, 4);
4172 if (unlikely(!p))
4173 goto out_overflow;
4174 lfs = be32_to_cpup(p++);
4175 p = xdr_inline_decode(xdr, 4);
4176 if (unlikely(!p))
4177 goto out_overflow;
4178 pi = be32_to_cpup(p++);
4179 p = xdr_inline_decode(xdr, 4);
4180 if (unlikely(!p))
4181 goto out_overflow;
4182 len = be32_to_cpup(p++);
4183 p = xdr_inline_decode(xdr, len);
4184 if (unlikely(!p))
4185 goto out_overflow;
4186 if (len < NFS4_MAXLABELLEN) {
4187 if (label) {
4188 memcpy(label->label, p, len);
4189 label->len = len;
4190 label->pi = pi;
4191 label->lfs = lfs;
4192 status = NFS_ATTR_FATTR_V4_SECURITY_LABEL;
4193 }
4194 bitmap[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
4195 } else
4196 printk(KERN_WARNING "%s: label too long (%u)!\n",
4197 __func__, len);
4198 }
4199 if (label && label->label)
4200 dprintk("%s: label=%s, len=%d, PI=%d, LFS=%d\n", __func__,
4201 (char *)label->label, label->len, label->pi, label->lfs);
4202 return status;
4203
4204out_overflow:
4205 print_overflow_msg(__func__, xdr);
4206 return -EIO;
4207}
4208
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4210{
4211 int status = 0;
4212
4213 time->tv_sec = 0;
4214 time->tv_nsec = 0;
4215 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4216 return -EIO;
4217 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4218 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004219 if (status == 0)
4220 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4222 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004223 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 return status;
4225}
4226
Trond Myklebust256e48b2012-06-21 11:18:13 -04004227static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228{
4229 unsigned int attrwords = XDR_QUADLEN(attrlen);
Trond Myklebust256e48b2012-06-21 11:18:13 -04004230 unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
4232 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004233 dprintk("%s: server returned incorrect attribute length: "
4234 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004235 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 attrwords << 2,
4237 (attrwords < nwords) ? '<' : '>',
4238 nwords << 2);
4239 return -EIO;
4240 }
4241 return 0;
4242}
4243
4244static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4245{
Al Viro8687b632006-10-19 23:28:48 -07004246 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247
Benny Halevyc0eae662009-08-14 17:20:14 +03004248 p = xdr_inline_decode(xdr, 20);
4249 if (unlikely(!p))
4250 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004251 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004252 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004253 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004255out_overflow:
4256 print_overflow_msg(__func__, xdr);
4257 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258}
4259
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004260static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261{
Al Viro8687b632006-10-19 23:28:48 -07004262 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 uint32_t supp, acc;
4264 int status;
4265
4266 status = decode_op_hdr(xdr, OP_ACCESS);
4267 if (status)
4268 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004269 p = xdr_inline_decode(xdr, 8);
4270 if (unlikely(!p))
4271 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004272 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004273 acc = be32_to_cpup(p);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004274 *supported = supp;
4275 *access = acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004277out_overflow:
4278 print_overflow_msg(__func__, xdr);
4279 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280}
4281
Benny Halevy07d30432009-08-14 17:19:52 +03004282static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283{
Al Viro8687b632006-10-19 23:28:48 -07004284 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004285
4286 p = xdr_inline_decode(xdr, len);
4287 if (likely(p)) {
4288 memcpy(buf, p, len);
4289 return 0;
4290 }
4291 print_overflow_msg(__func__, xdr);
4292 return -EIO;
4293}
4294
4295static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4296{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004297 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298}
4299
4300static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4301{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 int status;
4303
4304 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004305 if (status != -EIO)
4306 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004307 if (!status)
4308 status = decode_stateid(xdr, &res->stateid);
4309 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310}
4311
Benny Halevydb942bb2009-08-14 17:19:56 +03004312static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4313{
Chuck Levercd937102012-03-02 17:14:31 -05004314 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315}
4316
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004317static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
4318{
4319 return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
4320}
4321
Fred Isaman0b7c0152012-04-20 14:47:39 -04004322static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 int status;
4325
4326 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004327 if (!status)
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004328 status = decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevydb942bb2009-08-14 17:19:56 +03004329 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330}
4331
4332static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4333{
Al Viro8687b632006-10-19 23:28:48 -07004334 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 uint32_t bmlen;
4336 int status;
4337
4338 status = decode_op_hdr(xdr, OP_CREATE);
4339 if (status)
4340 return status;
4341 if ((status = decode_change_info(xdr, cinfo)))
4342 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004343 p = xdr_inline_decode(xdr, 4);
4344 if (unlikely(!p))
4345 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004346 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004347 p = xdr_inline_decode(xdr, bmlen << 2);
4348 if (likely(p))
4349 return 0;
4350out_overflow:
4351 print_overflow_msg(__func__, xdr);
4352 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353}
4354
4355static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4356{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004357 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004358 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 int status;
4360
4361 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4362 goto xdr_error;
4363 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4364 goto xdr_error;
4365 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4366 goto xdr_error;
4367 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4368 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004369 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4370 &res->fh_expire_type)) != 0)
4371 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4373 goto xdr_error;
4374 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4375 goto xdr_error;
4376 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4377 goto xdr_error;
4378 status = verify_attr_len(xdr, savep, attrlen);
4379xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004380 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 return status;
4382}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4385{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004386 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004387 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004389
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4391 goto xdr_error;
4392 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4393 goto xdr_error;
4394 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4395 goto xdr_error;
4396
4397 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4398 goto xdr_error;
4399 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4400 goto xdr_error;
4401 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4402 goto xdr_error;
4403 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4404 goto xdr_error;
4405 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4406 goto xdr_error;
4407 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4408 goto xdr_error;
4409
4410 status = verify_attr_len(xdr, savep, attrlen);
4411xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004412 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 return status;
4414}
4415
4416static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4417{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004418 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004419 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4423 goto xdr_error;
4424 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4425 goto xdr_error;
4426 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4427 goto xdr_error;
4428
4429 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4430 goto xdr_error;
4431 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4432 goto xdr_error;
4433
4434 status = verify_attr_len(xdr, savep, attrlen);
4435xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004436 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 return status;
4438}
4439
Andy Adamson88034c32012-05-23 05:02:34 -04004440static int decode_threshold_hint(struct xdr_stream *xdr,
4441 uint32_t *bitmap,
4442 uint64_t *res,
4443 uint32_t hint_bit)
4444{
4445 __be32 *p;
4446
4447 *res = 0;
4448 if (likely(bitmap[0] & hint_bit)) {
4449 p = xdr_inline_decode(xdr, 8);
4450 if (unlikely(!p))
4451 goto out_overflow;
4452 xdr_decode_hyper(p, res);
4453 }
4454 return 0;
4455out_overflow:
4456 print_overflow_msg(__func__, xdr);
4457 return -EIO;
4458}
4459
4460static int decode_first_threshold_item4(struct xdr_stream *xdr,
4461 struct nfs4_threshold *res)
4462{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004463 __be32 *p;
4464 unsigned int savep;
Andy Adamson88034c32012-05-23 05:02:34 -04004465 uint32_t bitmap[3] = {0,}, attrlen;
4466 int status;
4467
4468 /* layout type */
4469 p = xdr_inline_decode(xdr, 4);
4470 if (unlikely(!p)) {
4471 print_overflow_msg(__func__, xdr);
4472 return -EIO;
4473 }
4474 res->l_type = be32_to_cpup(p);
4475
4476 /* thi_hintset bitmap */
4477 status = decode_attr_bitmap(xdr, bitmap);
4478 if (status < 0)
4479 goto xdr_error;
4480
4481 /* thi_hintlist length */
4482 status = decode_attr_length(xdr, &attrlen, &savep);
4483 if (status < 0)
4484 goto xdr_error;
4485 /* thi_hintlist */
4486 status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
4487 if (status < 0)
4488 goto xdr_error;
4489 status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
4490 if (status < 0)
4491 goto xdr_error;
4492 status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
4493 THRESHOLD_RD_IO);
4494 if (status < 0)
4495 goto xdr_error;
4496 status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
4497 THRESHOLD_WR_IO);
4498 if (status < 0)
4499 goto xdr_error;
4500
4501 status = verify_attr_len(xdr, savep, attrlen);
4502 res->bm = bitmap[0];
4503
4504 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
4505 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
4506 res->wr_io_sz);
4507xdr_error:
4508 dprintk("%s ret=%d!\n", __func__, status);
4509 return status;
4510}
4511
4512/*
4513 * Thresholds on pNFS direct I/O vrs MDS I/O
4514 */
4515static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
4516 uint32_t *bitmap,
4517 struct nfs4_threshold *res)
4518{
4519 __be32 *p;
4520 int status = 0;
4521 uint32_t num;
4522
4523 if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
4524 return -EIO;
Trond Myklebust029c5342012-06-05 09:35:44 -04004525 if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
Trond Myklebust1549210f2012-06-05 09:16:47 -04004526 /* Did the server return an unrequested attribute? */
4527 if (unlikely(res == NULL))
4528 return -EREMOTEIO;
Andy Adamson88034c32012-05-23 05:02:34 -04004529 p = xdr_inline_decode(xdr, 4);
4530 if (unlikely(!p))
4531 goto out_overflow;
4532 num = be32_to_cpup(p);
4533 if (num == 0)
4534 return 0;
4535 if (num > 1)
4536 printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
4537 "drivers per filesystem not supported\n",
4538 __func__);
4539
4540 status = decode_first_threshold_item4(xdr, res);
Trond Myklebust029c5342012-06-05 09:35:44 -04004541 bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
Andy Adamson88034c32012-05-23 05:02:34 -04004542 }
4543 return status;
4544out_overflow:
4545 print_overflow_msg(__func__, xdr);
4546 return -EIO;
4547}
4548
Bryan Schumakerae42c702010-10-21 16:33:17 -04004549static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4550 struct nfs_fattr *fattr, struct nfs_fh *fh,
David Quigleyaa9c2662013-05-22 12:50:44 -04004551 struct nfs4_fs_locations *fs_loc, struct nfs4_label *label,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004552 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553{
Trond Myklebustbca79472009-03-11 14:10:26 -04004554 int status;
4555 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004556 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004557 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004559 status = decode_attr_type(xdr, bitmap, &type);
4560 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004562 fattr->mode = 0;
4563 if (status != 0) {
4564 fattr->mode |= nfs_type2fmt[type];
4565 fattr->valid |= status;
4566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004568 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4569 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004571 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004572
4573 status = decode_attr_size(xdr, bitmap, &fattr->size);
4574 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004576 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004577
4578 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4579 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004581 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004582
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004583 err = 0;
4584 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004585 if (status < 0)
4586 goto xdr_error;
4587
4588 status = decode_attr_filehandle(xdr, bitmap, fh);
4589 if (status < 0)
4590 goto xdr_error;
4591
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004592 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4593 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004595 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004596
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004597 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004598 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004599 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004600 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004601
4602 status = decode_attr_mode(xdr, bitmap, &fmode);
4603 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004605 if (status != 0) {
4606 fattr->mode |= fmode;
4607 fattr->valid |= status;
4608 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004609
4610 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4611 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004613 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004614
Trond Myklebust6926afd2012-01-07 13:22:46 -05004615 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004616 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004618 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004619
Trond Myklebust6926afd2012-01-07 13:22:46 -05004620 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004621 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004623 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004624
4625 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4626 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004628 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004629
4630 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4631 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004633 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004634
4635 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4636 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004638 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004639
4640 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4641 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004643 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004644
4645 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4646 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004648 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004649
Trond Myklebust28331a42011-04-27 13:47:52 -04004650 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004651 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004652 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004653 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004654
Andy Adamson88034c32012-05-23 05:02:34 -04004655 status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
4656 if (status < 0)
4657 goto xdr_error;
4658
David Quigleyaa9c2662013-05-22 12:50:44 -04004659 if (label) {
4660 status = decode_attr_security_label(xdr, bitmap, label);
4661 if (status < 0)
4662 goto xdr_error;
4663 fattr->valid |= status;
4664 }
4665
Bryan Schumakerae42c702010-10-21 16:33:17 -04004666xdr_error:
4667 dprintk("%s: xdr returned %d\n", __func__, -status);
4668 return status;
4669}
4670
4671static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004672 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
David Quigleyaa9c2662013-05-22 12:50:44 -04004673 struct nfs4_label *label, const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004674{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004675 unsigned int savep;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004676 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004677 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004678 int status;
4679
4680 status = decode_op_hdr(xdr, OP_GETATTR);
4681 if (status < 0)
4682 goto xdr_error;
4683
4684 status = decode_attr_bitmap(xdr, bitmap);
4685 if (status < 0)
4686 goto xdr_error;
4687
4688 status = decode_attr_length(xdr, &attrlen, &savep);
4689 if (status < 0)
4690 goto xdr_error;
4691
David Quigleyaa9c2662013-05-22 12:50:44 -04004692 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc,
4693 label, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004694 if (status < 0)
4695 goto xdr_error;
4696
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004697 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004699 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 return status;
4701}
4702
David Quigleyaa9c2662013-05-22 12:50:44 -04004703static int decode_getfattr_label(struct xdr_stream *xdr, struct nfs_fattr *fattr,
4704 struct nfs4_label *label, const struct nfs_server *server)
4705{
4706 return decode_getfattr_generic(xdr, fattr, NULL, NULL, label, server);
4707}
4708
Bryan Schumakerae42c702010-10-21 16:33:17 -04004709static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004710 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004711{
David Quigleyaa9c2662013-05-22 12:50:44 -04004712 return decode_getfattr_generic(xdr, fattr, NULL, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004713}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Andy Adamson504913f2010-10-20 00:17:57 -04004715/*
4716 * Decode potentially multiple layout types. Currently we only support
4717 * one layout driver per file system.
4718 */
4719static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4720 uint32_t *layouttype)
4721{
Trond Myklebustb8a8a0d2013-08-20 21:08:56 -04004722 __be32 *p;
Andy Adamson504913f2010-10-20 00:17:57 -04004723 int num;
4724
4725 p = xdr_inline_decode(xdr, 4);
4726 if (unlikely(!p))
4727 goto out_overflow;
4728 num = be32_to_cpup(p);
4729
4730 /* pNFS is not supported by the underlying file system */
4731 if (num == 0) {
4732 *layouttype = 0;
4733 return 0;
4734 }
4735 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004736 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4737 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004738
4739 /* Decode and set first layout type, move xdr->p past unused types */
4740 p = xdr_inline_decode(xdr, num * 4);
4741 if (unlikely(!p))
4742 goto out_overflow;
4743 *layouttype = be32_to_cpup(p);
4744 return 0;
4745out_overflow:
4746 print_overflow_msg(__func__, xdr);
4747 return -EIO;
4748}
4749
4750/*
4751 * The type of file system exported.
4752 * Note we must ensure that layouttype is set in any non-error case.
4753 */
4754static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4755 uint32_t *layouttype)
4756{
4757 int status = 0;
4758
4759 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4760 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4761 return -EIO;
4762 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4763 status = decode_first_pnfs_layout_type(xdr, layouttype);
4764 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4765 } else
4766 *layouttype = 0;
4767 return status;
4768}
4769
Fred Isamandae100c2011-07-30 20:52:37 -04004770/*
4771 * The prefered block size for layout directed io
4772 */
4773static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4774 uint32_t *res)
4775{
4776 __be32 *p;
4777
4778 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4779 *res = 0;
4780 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4781 p = xdr_inline_decode(xdr, 4);
4782 if (unlikely(!p)) {
4783 print_overflow_msg(__func__, xdr);
4784 return -EIO;
4785 }
4786 *res = be32_to_cpup(p);
4787 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4788 }
4789 return 0;
4790}
4791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4793{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004794 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004795 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 int status;
4797
4798 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4799 goto xdr_error;
4800 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4801 goto xdr_error;
4802 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4803 goto xdr_error;
4804
4805 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4806
4807 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4808 goto xdr_error;
4809 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4810 goto xdr_error;
4811 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4812 goto xdr_error;
4813 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4814 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4815 goto xdr_error;
4816 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004817 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4818 if (status != 0)
4819 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004820 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4821 if (status != 0)
4822 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004823 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4824 if (status)
4825 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
4827 status = verify_attr_len(xdr, savep, attrlen);
4828xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004829 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 return status;
4831}
4832
4833static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4834{
Al Viro8687b632006-10-19 23:28:48 -07004835 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 uint32_t len;
4837 int status;
4838
Trond Myklebust99367812007-07-17 21:52:41 -04004839 /* Zero handle first to allow comparisons */
4840 memset(fh, 0, sizeof(*fh));
4841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 status = decode_op_hdr(xdr, OP_GETFH);
4843 if (status)
4844 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Benny Halevyc0eae662009-08-14 17:20:14 +03004846 p = xdr_inline_decode(xdr, 4);
4847 if (unlikely(!p))
4848 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004849 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 if (len > NFS4_FHSIZE)
4851 return -EIO;
4852 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004853 p = xdr_inline_decode(xdr, len);
4854 if (unlikely(!p))
4855 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004856 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004858out_overflow:
4859 print_overflow_msg(__func__, xdr);
4860 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861}
4862
4863static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4864{
4865 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 status = decode_op_hdr(xdr, OP_LINK);
4868 if (status)
4869 return status;
4870 return decode_change_info(xdr, cinfo);
4871}
4872
4873/*
4874 * We create the owner, so we know a proper owner.id length is 4.
4875 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004876static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004878 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004879 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004880 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004882 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004883 if (unlikely(!p))
4884 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004885 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004886 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004887 type = be32_to_cpup(p++); /* 4 byte read */
4888 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004889 fl->fl_start = (loff_t)offset;
4890 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4891 if (length == ~(uint64_t)0)
4892 fl->fl_end = OFFSET_MAX;
4893 fl->fl_type = F_WRLCK;
4894 if (type & 1)
4895 fl->fl_type = F_RDLCK;
4896 fl->fl_pid = 0;
4897 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004898 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4899 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4900 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004901 if (likely(p))
4902 return -NFS4ERR_DENIED;
4903out_overflow:
4904 print_overflow_msg(__func__, xdr);
4905 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906}
4907
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004908static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 int status;
4911
4912 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004913 if (status == -EIO)
4914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004916 status = decode_stateid(xdr, &res->stateid);
4917 if (unlikely(status))
4918 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004920 status = decode_lock_denied(xdr, NULL);
4921 if (res->open_seqid != NULL)
4922 nfs_increment_open_seqid(status, res->open_seqid);
4923 nfs_increment_lock_seqid(status, res->lock_seqid);
4924out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 return status;
4926}
4927
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004928static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929{
4930 int status;
4931 status = decode_op_hdr(xdr, OP_LOCKT);
4932 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004933 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 return status;
4935}
4936
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004937static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 int status;
4940
4941 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004942 if (status != -EIO)
4943 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004944 if (status == 0)
4945 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 return status;
4947}
4948
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004949static int decode_release_lockowner(struct xdr_stream *xdr)
4950{
4951 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4952}
4953
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954static int decode_lookup(struct xdr_stream *xdr)
4955{
4956 return decode_op_hdr(xdr, OP_LOOKUP);
4957}
4958
4959/* This is too sick! */
4960static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4961{
Andy Adamson05d564f2008-12-23 16:06:15 -05004962 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 uint32_t limit_type, nblocks, blocksize;
4964
Benny Halevyc0eae662009-08-14 17:20:14 +03004965 p = xdr_inline_decode(xdr, 12);
4966 if (unlikely(!p))
4967 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004968 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004970 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004971 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004972 break;
4973 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004974 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004975 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004976 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 }
4978 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004979out_overflow:
4980 print_overflow_msg(__func__, xdr);
4981 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982}
4983
4984static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4985{
Andy Adamson05d564f2008-12-23 16:06:15 -05004986 __be32 *p;
4987 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004988 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989
Benny Halevyc0eae662009-08-14 17:20:14 +03004990 p = xdr_inline_decode(xdr, 4);
4991 if (unlikely(!p))
4992 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004993 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4995 res->delegation_type = 0;
4996 return 0;
4997 }
Benny Halevy07d30432009-08-14 17:19:52 +03004998 status = decode_stateid(xdr, &res->delegation);
4999 if (unlikely(status))
5000 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005001 p = xdr_inline_decode(xdr, 4);
5002 if (unlikely(!p))
5003 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005004 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05005005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05005007 case NFS4_OPEN_DELEGATE_READ:
5008 res->delegation_type = FMODE_READ;
5009 break;
5010 case NFS4_OPEN_DELEGATE_WRITE:
5011 res->delegation_type = FMODE_WRITE|FMODE_READ;
5012 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 return -EIO;
5014 }
David Howells7539bba2006-08-22 20:06:09 -04005015 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03005016out_overflow:
5017 print_overflow_msg(__func__, xdr);
5018 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019}
5020
5021static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
5022{
Andy Adamson05d564f2008-12-23 16:06:15 -05005023 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04005024 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05005025 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Trond Myklebustc7848f62013-12-04 17:39:23 -05005027 if (!__decode_op_hdr(xdr, OP_OPEN, &status))
5028 return status;
5029 nfs_increment_open_seqid(status, res->seqid);
5030 if (status)
5031 return status;
5032 status = decode_stateid(xdr, &res->stateid);
Benny Halevy07d30432009-08-14 17:19:52 +03005033 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05005034 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Andy Adamson05d564f2008-12-23 16:06:15 -05005036 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Benny Halevyc0eae662009-08-14 17:20:14 +03005038 p = xdr_inline_decode(xdr, 8);
5039 if (unlikely(!p))
5040 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005041 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005042 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05005043 if (bmlen > 10)
5044 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Benny Halevyc0eae662009-08-14 17:20:14 +03005046 p = xdr_inline_decode(xdr, bmlen << 2);
5047 if (unlikely(!p))
5048 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04005049 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
5050 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03005051 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04005052 for (; i < NFS4_BITMAP_SIZE; i++)
5053 res->attrset[i] = 0;
5054
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 return decode_delegation(xdr, res);
5056xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07005057 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03005059out_overflow:
5060 print_overflow_msg(__func__, xdr);
5061 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062}
5063
5064static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
5065{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 int status;
5067
Andy Adamson05d564f2008-12-23 16:06:15 -05005068 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04005069 if (status != -EIO)
5070 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03005071 if (!status)
5072 status = decode_stateid(xdr, &res->stateid);
5073 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074}
5075
5076static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
5077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 int status;
5079
5080 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04005081 if (status != -EIO)
5082 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03005083 if (!status)
5084 status = decode_stateid(xdr, &res->stateid);
5085 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086}
5087
5088static int decode_putfh(struct xdr_stream *xdr)
5089{
5090 return decode_op_hdr(xdr, OP_PUTFH);
5091}
5092
5093static int decode_putrootfh(struct xdr_stream *xdr)
5094{
5095 return decode_op_hdr(xdr, OP_PUTROOTFH);
5096}
5097
Anna Schumaker9137bdf2014-05-06 09:12:25 -04005098static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req,
5099 struct nfs_pgio_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100{
Al Viro8687b632006-10-19 23:28:48 -07005101 __be32 *p;
Trond Myklebust64bd5772012-06-20 22:35:05 -04005102 uint32_t count, eof, recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 int status;
5104
5105 status = decode_op_hdr(xdr, OP_READ);
5106 if (status)
5107 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005108 p = xdr_inline_decode(xdr, 8);
5109 if (unlikely(!p))
5110 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005111 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005112 count = be32_to_cpup(p);
Trond Myklebust64bd5772012-06-20 22:35:05 -04005113 recvd = xdr_read_pages(xdr, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005115 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 "count %u > recvd %u\n", count, recvd);
5117 count = recvd;
5118 eof = 0;
5119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 res->eof = eof;
5121 res->count = count;
5122 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005123out_overflow:
5124 print_overflow_msg(__func__, xdr);
5125 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126}
5127
5128static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
5129{
Chuck Leverbcecff72007-10-26 13:32:03 -04005130 int status;
Chuck Levercd937102012-03-02 17:14:31 -05005131 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
5133 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03005134 if (!status)
5135 status = decode_verifier(xdr, readdir->verifier.data);
5136 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 return status;
Chuck Levercd937102012-03-02 17:14:31 -05005138 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03005139 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05005140 __func__, verf[0], verf[1]);
Trond Myklebust64bd5772012-06-20 22:35:05 -04005141 return xdr_read_pages(xdr, xdr->buf->page_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142}
5143
5144static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
5145{
5146 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Chuck Leverbcecff72007-10-26 13:32:03 -04005147 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07005148 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 int status;
5150
5151 status = decode_op_hdr(xdr, OP_READLINK);
5152 if (status)
5153 return status;
5154
5155 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03005156 p = xdr_inline_decode(xdr, 4);
5157 if (unlikely(!p))
5158 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005159 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005161 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 return -ENAMETOOLONG;
5163 }
Trond Myklebust64bd5772012-06-20 22:35:05 -04005164 recvd = xdr_read_pages(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005166 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 "count %u > recvd %u\n", len, recvd);
5168 return -EIO;
5169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 /*
5171 * The XDR encode routine has set things up so that
5172 * the link text will be copied directly into the
5173 * buffer. We just have to do overflow-checking,
5174 * and and null-terminate the text (the VFS expects
5175 * null-termination).
5176 */
Chuck Leverb4687da2010-09-21 16:55:48 -04005177 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 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_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5185{
5186 int status;
5187
5188 status = decode_op_hdr(xdr, OP_REMOVE);
5189 if (status)
5190 goto out;
5191 status = decode_change_info(xdr, cinfo);
5192out:
5193 return status;
5194}
5195
5196static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5197 struct nfs4_change_info *new_cinfo)
5198{
5199 int status;
5200
5201 status = decode_op_hdr(xdr, OP_RENAME);
5202 if (status)
5203 goto out;
5204 if ((status = decode_change_info(xdr, old_cinfo)))
5205 goto out;
5206 status = decode_change_info(xdr, new_cinfo);
5207out:
5208 return status;
5209}
5210
5211static int decode_renew(struct xdr_stream *xdr)
5212{
5213 return decode_op_hdr(xdr, OP_RENEW);
5214}
5215
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005216static int
5217decode_restorefh(struct xdr_stream *xdr)
5218{
5219 return decode_op_hdr(xdr, OP_RESTOREFH);
5220}
5221
J. Bruce Fields029d1052005-06-22 17:16:22 +00005222static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05005223 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005224{
Trond Myklebust256e48b2012-06-21 11:18:13 -04005225 unsigned int savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005226 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04005227 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00005228 int status;
Trond Myklebustcff298c2012-08-14 17:14:17 -04005229 unsigned int pg_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005230
Andy Adamsonbf118a32011-12-07 11:55:27 -05005231 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005232 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5233 goto out;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005234
Trond Myklebust519d3952012-08-14 17:30:10 -04005235 xdr_enter_page(xdr, xdr->buf->page_len);
5236
Trond Myklebustcff298c2012-08-14 17:14:17 -04005237 /* Calculate the offset of the page data */
5238 pg_offset = xdr->buf->head[0].iov_len;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005239
J. Bruce Fields029d1052005-06-22 17:16:22 +00005240 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5241 goto out;
5242 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5243 goto out;
5244
5245 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5246 return -EIO;
5247 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
J. Bruce Fields029d1052005-06-22 17:16:22 +00005248
Andy Adamsonbf118a32011-12-07 11:55:27 -05005249 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5250 * are stored with the acl data to handle the problem of
5251 * variable length bitmaps.*/
Trond Myklebustcff298c2012-08-14 17:14:17 -04005252 res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
Trond Myklebust519d3952012-08-14 17:30:10 -04005253 res->acl_len = attrlen;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005254
5255 /* Check for receive buffer overflow */
5256 if (res->acl_len > (xdr->nwords << 2) ||
5257 res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
5258 res->acl_flags |= NFS4_ACL_TRUNC;
Trond Myklebust519d3952012-08-14 17:30:10 -04005259 dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
Trond Myklebustcff298c2012-08-14 17:14:17 -04005260 attrlen, xdr->nwords << 2);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005261 }
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005262 } else
5263 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005264
5265out:
5266 return status;
5267}
5268
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269static int
5270decode_savefh(struct xdr_stream *xdr)
5271{
5272 return decode_op_hdr(xdr, OP_SAVEFH);
5273}
5274
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005275static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276{
Al Viro8687b632006-10-19 23:28:48 -07005277 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 uint32_t bmlen;
5279 int status;
5280
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 status = decode_op_hdr(xdr, OP_SETATTR);
5282 if (status)
5283 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005284 p = xdr_inline_decode(xdr, 4);
5285 if (unlikely(!p))
5286 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005287 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005288 p = xdr_inline_decode(xdr, bmlen << 2);
5289 if (likely(p))
5290 return 0;
5291out_overflow:
5292 print_overflow_msg(__func__, xdr);
5293 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294}
5295
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005296static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297{
Al Viro8687b632006-10-19 23:28:48 -07005298 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 uint32_t opnum;
5300 int32_t nfserr;
5301
Benny Halevyc0eae662009-08-14 17:20:14 +03005302 p = xdr_inline_decode(xdr, 8);
5303 if (unlikely(!p))
5304 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005305 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005307 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005308 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 return -EIO;
5310 }
Benny Halevycccddf42009-08-14 17:20:19 +03005311 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005313 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5314 if (unlikely(!p))
5315 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005316 p = xdr_decode_hyper(p, &res->clientid);
5317 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 } else if (nfserr == NFSERR_CLID_INUSE) {
5319 uint32_t len;
5320
5321 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005322 p = xdr_inline_decode(xdr, 4);
5323 if (unlikely(!p))
5324 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005325 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005326 p = xdr_inline_decode(xdr, len);
5327 if (unlikely(!p))
5328 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329
5330 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005331 p = xdr_inline_decode(xdr, 4);
5332 if (unlikely(!p))
5333 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005334 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005335 p = xdr_inline_decode(xdr, len);
5336 if (unlikely(!p))
5337 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 return -NFSERR_CLID_INUSE;
5339 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005340 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
5342 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005343out_overflow:
5344 print_overflow_msg(__func__, xdr);
5345 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346}
5347
5348static int decode_setclientid_confirm(struct xdr_stream *xdr)
5349{
5350 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5351}
5352
Anna Schumaker9137bdf2014-05-06 09:12:25 -04005353static int decode_write(struct xdr_stream *xdr, struct nfs_pgio_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354{
Al Viro8687b632006-10-19 23:28:48 -07005355 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 int status;
5357
5358 status = decode_op_hdr(xdr, OP_WRITE);
5359 if (status)
5360 return status;
5361
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005362 p = xdr_inline_decode(xdr, 8);
Benny Halevyc0eae662009-08-14 17:20:14 +03005363 if (unlikely(!p))
5364 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005365 res->count = be32_to_cpup(p++);
5366 res->verf->committed = be32_to_cpup(p++);
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005367 return decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevyc0eae662009-08-14 17:20:14 +03005368out_overflow:
5369 print_overflow_msg(__func__, xdr);
5370 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371}
5372
5373static int decode_delegreturn(struct xdr_stream *xdr)
5374{
5375 return decode_op_hdr(xdr, OP_DELEGRETURN);
5376}
5377
Chuck Leverfb15b262013-03-16 15:54:34 -04005378static int decode_secinfo_gss(struct xdr_stream *xdr,
5379 struct nfs4_secinfo4 *flavor)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005380{
Chuck Leverfb15b262013-03-16 15:54:34 -04005381 u32 oid_len;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005382 __be32 *p;
5383
5384 p = xdr_inline_decode(xdr, 4);
5385 if (unlikely(!p))
5386 goto out_overflow;
Chuck Leverfb15b262013-03-16 15:54:34 -04005387 oid_len = be32_to_cpup(p);
5388 if (oid_len > GSS_OID_MAX_LEN)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005389 goto out_err;
5390
Chuck Leverfb15b262013-03-16 15:54:34 -04005391 p = xdr_inline_decode(xdr, oid_len);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005392 if (unlikely(!p))
5393 goto out_overflow;
Chuck Leverfb15b262013-03-16 15:54:34 -04005394 memcpy(flavor->flavor_info.oid.data, p, oid_len);
5395 flavor->flavor_info.oid.len = oid_len;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005396
5397 p = xdr_inline_decode(xdr, 8);
5398 if (unlikely(!p))
5399 goto out_overflow;
Chuck Leverfb15b262013-03-16 15:54:34 -04005400 flavor->flavor_info.qop = be32_to_cpup(p++);
5401 flavor->flavor_info.service = be32_to_cpup(p);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005402
5403 return 0;
5404
5405out_overflow:
5406 print_overflow_msg(__func__, xdr);
5407 return -EIO;
5408out_err:
5409 return -EINVAL;
5410}
5411
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005412static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005413{
Chuck Leverfb15b262013-03-16 15:54:34 -04005414 struct nfs4_secinfo4 *sec_flavor;
5415 unsigned int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005416 int status;
5417 __be32 *p;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005418
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005419 p = xdr_inline_decode(xdr, 4);
5420 if (unlikely(!p))
5421 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005422
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005423 res->flavors->num_flavors = 0;
5424 num_flavors = be32_to_cpup(p);
5425
5426 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005427 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005428 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005429 break;
5430
5431 p = xdr_inline_decode(xdr, 4);
5432 if (unlikely(!p))
5433 goto out_overflow;
5434 sec_flavor->flavor = be32_to_cpup(p);
5435
5436 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005437 status = decode_secinfo_gss(xdr, sec_flavor);
5438 if (status)
5439 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005440 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005441 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005442 }
5443
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005444 status = 0;
Bryan Schumaker613e9012011-04-27 15:28:44 -04005445out:
5446 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005447out_overflow:
5448 print_overflow_msg(__func__, xdr);
5449 return -EIO;
5450}
5451
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005452static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5453{
5454 int status = decode_op_hdr(xdr, OP_SECINFO);
5455 if (status)
5456 return status;
5457 return decode_secinfo_common(xdr, res);
5458}
5459
Benny Halevy99fe60d2009-04-01 09:22:29 -04005460#if defined(CONFIG_NFS_V4_1)
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005461static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5462{
5463 int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
5464 if (status)
5465 return status;
5466 return decode_secinfo_common(xdr, res);
5467}
5468
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04005469static int decode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
5470{
5471 __be32 *p;
5472 uint32_t bitmap_words;
5473 unsigned int i;
5474
5475 p = xdr_inline_decode(xdr, 4);
5476 bitmap_words = be32_to_cpup(p++);
5477 if (bitmap_words > NFS4_OP_MAP_NUM_WORDS)
5478 return -EIO;
5479 p = xdr_inline_decode(xdr, 4 * bitmap_words);
5480 for (i = 0; i < bitmap_words; i++)
5481 op_map->u.words[i] = be32_to_cpup(p++);
5482
5483 return 0;
5484}
5485
Benny Halevy99fe60d2009-04-01 09:22:29 -04005486static int decode_exchange_id(struct xdr_stream *xdr,
5487 struct nfs41_exchange_id_res *res)
5488{
5489 __be32 *p;
5490 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005491 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005492 int status;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005493 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005494
5495 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5496 if (status)
5497 return status;
5498
Benny Halevyc0eae662009-08-14 17:20:14 +03005499 p = xdr_inline_decode(xdr, 8);
5500 if (unlikely(!p))
5501 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005502 xdr_decode_hyper(p, &res->clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005503 p = xdr_inline_decode(xdr, 12);
5504 if (unlikely(!p))
5505 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005506 res->seqid = be32_to_cpup(p++);
5507 res->flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005508
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04005509 res->state_protect.how = be32_to_cpup(p);
5510 switch (res->state_protect.how) {
5511 case SP4_NONE:
5512 break;
5513 case SP4_MACH_CRED:
5514 status = decode_op_map(xdr, &res->state_protect.enforce);
5515 if (status)
5516 return status;
5517 status = decode_op_map(xdr, &res->state_protect.allow);
5518 if (status)
5519 return status;
5520 break;
5521 default:
5522 WARN_ON_ONCE(1);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005523 return -EIO;
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04005524 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005525
Chuck Leveracdeb692012-05-21 22:46:16 -04005526 /* server_owner4.so_minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005527 p = xdr_inline_decode(xdr, 8);
5528 if (unlikely(!p))
5529 goto out_overflow;
Chuck Leveracdeb692012-05-21 22:46:16 -04005530 p = xdr_decode_hyper(p, &res->server_owner->minor_id);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005531
Chuck Leveracdeb692012-05-21 22:46:16 -04005532 /* server_owner4.so_major_id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005533 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5534 if (unlikely(status))
5535 return status;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005536 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5537 return -EIO;
Chuck Leveracdeb692012-05-21 22:46:16 -04005538 memcpy(res->server_owner->major_id, dummy_str, dummy);
5539 res->server_owner->major_id_sz = dummy;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005540
Chuck Leveracdeb692012-05-21 22:46:16 -04005541 /* server_scope4 */
5542 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5543 if (unlikely(status))
5544 return status;
5545 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5546 return -EIO;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005547 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5548 res->server_scope->server_scope_sz = dummy;
5549
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005550 /* Implementation Id */
5551 p = xdr_inline_decode(xdr, 4);
5552 if (unlikely(!p))
5553 goto out_overflow;
5554 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005555
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005556 if (impl_id_count) {
5557 /* nii_domain */
5558 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5559 if (unlikely(status))
5560 return status;
5561 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5562 return -EIO;
5563 memcpy(res->impl_id->domain, dummy_str, dummy);
5564
5565 /* nii_name */
5566 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5567 if (unlikely(status))
5568 return status;
5569 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5570 return -EIO;
5571 memcpy(res->impl_id->name, dummy_str, dummy);
5572
5573 /* nii_date */
5574 p = xdr_inline_decode(xdr, 12);
5575 if (unlikely(!p))
5576 goto out_overflow;
5577 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5578 res->impl_id->date.nseconds = be32_to_cpup(p);
5579
5580 /* if there's more than one entry, ignore the rest */
5581 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005582 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005583out_overflow:
5584 print_overflow_msg(__func__, xdr);
5585 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005586}
Andy Adamsonfc931582009-04-01 09:22:31 -04005587
5588static int decode_chan_attrs(struct xdr_stream *xdr,
5589 struct nfs4_channel_attrs *attrs)
5590{
5591 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005592 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005593
Benny Halevyc0eae662009-08-14 17:20:14 +03005594 p = xdr_inline_decode(xdr, 28);
5595 if (unlikely(!p))
5596 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005597 val = be32_to_cpup(p++); /* headerpadsz */
5598 if (val)
5599 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005600 attrs->max_rqst_sz = be32_to_cpup(p++);
5601 attrs->max_resp_sz = be32_to_cpup(p++);
5602 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5603 attrs->max_ops = be32_to_cpup(p++);
5604 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005605 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005606 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005607 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5608 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005609 return -EINVAL;
5610 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005611 if (nr_attrs == 1) {
5612 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5613 if (unlikely(!p))
5614 goto out_overflow;
5615 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005616 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005617out_overflow:
5618 print_overflow_msg(__func__, xdr);
5619 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005620}
5621
Benny Halevye78291e2009-08-14 17:20:00 +03005622static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5623{
5624 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005625}
5626
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005627static int decode_bind_conn_to_session(struct xdr_stream *xdr,
5628 struct nfs41_bind_conn_to_session_res *res)
5629{
5630 __be32 *p;
5631 int status;
5632
5633 status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
5634 if (!status)
5635 status = decode_sessionid(xdr, &res->session->sess_id);
5636 if (unlikely(status))
5637 return status;
5638
5639 /* dir flags, rdma mode bool */
5640 p = xdr_inline_decode(xdr, 8);
5641 if (unlikely(!p))
5642 goto out_overflow;
5643
5644 res->dir = be32_to_cpup(p++);
5645 if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
5646 return -EIO;
5647 if (be32_to_cpup(p) == 0)
5648 res->use_conn_in_rdma_mode = false;
5649 else
5650 res->use_conn_in_rdma_mode = true;
5651
5652 return 0;
5653out_overflow:
5654 print_overflow_msg(__func__, xdr);
5655 return -EIO;
5656}
5657
Andy Adamsonfc931582009-04-01 09:22:31 -04005658static int decode_create_session(struct xdr_stream *xdr,
5659 struct nfs41_create_session_res *res)
5660{
5661 __be32 *p;
5662 int status;
5663 struct nfs_client *clp = res->client;
5664 struct nfs4_session *session = clp->cl_session;
5665
5666 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005667 if (!status)
5668 status = decode_sessionid(xdr, &session->sess_id);
5669 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005670 return status;
5671
Andy Adamsonfc931582009-04-01 09:22:31 -04005672 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005673 p = xdr_inline_decode(xdr, 8);
5674 if (unlikely(!p))
5675 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005676 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005677 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005678
5679 /* Channel attributes */
5680 status = decode_chan_attrs(xdr, &session->fc_attrs);
5681 if (!status)
5682 status = decode_chan_attrs(xdr, &session->bc_attrs);
5683 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005684out_overflow:
5685 print_overflow_msg(__func__, xdr);
5686 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005687}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005688
5689static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5690{
5691 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5692}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005693
Trond Myklebust66245532012-05-25 17:18:09 -04005694static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
5695{
5696 return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
5697}
5698
Ricardo Labiaga180197532009-12-05 16:08:40 -05005699static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5700{
5701 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5702}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005703#endif /* CONFIG_NFS_V4_1 */
5704
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005705static int decode_sequence(struct xdr_stream *xdr,
5706 struct nfs4_sequence_res *res,
5707 struct rpc_rqst *rqstp)
5708{
5709#if defined(CONFIG_NFS_V4_1)
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005710 struct nfs4_session *session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005711 struct nfs4_sessionid id;
5712 u32 dummy;
5713 int status;
5714 __be32 *p;
5715
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005716 if (res->sr_slot == NULL)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005717 return 0;
Chuck Lever3bd23842013-08-09 12:49:19 -04005718 if (!res->sr_slot->table->session)
5719 return 0;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005720
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005721 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005722 if (!status)
5723 status = decode_sessionid(xdr, &id);
5724 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005725 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005726
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005727 /*
5728 * If the server returns different values for sessionID, slotID or
5729 * sequence number, the server is looney tunes.
5730 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005731 status = -EREMOTEIO;
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005732 session = res->sr_slot->table->session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005733
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005734 if (memcmp(id.data, session->sess_id.data,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005735 NFS4_MAX_SESSIONID_LEN)) {
5736 dprintk("%s Invalid session id\n", __func__);
5737 goto out_err;
5738 }
Benny Halevye78291e2009-08-14 17:20:00 +03005739
Benny Halevyc0eae662009-08-14 17:20:14 +03005740 p = xdr_inline_decode(xdr, 20);
5741 if (unlikely(!p))
5742 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005743
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005744 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005745 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005746 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005747 dprintk("%s Invalid sequence number\n", __func__);
5748 goto out_err;
5749 }
5750 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005751 dummy = be32_to_cpup(p++);
Trond Myklebustdf2fabf2012-11-16 12:45:06 -05005752 if (dummy != res->sr_slot->slot_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005753 dprintk("%s Invalid slot id\n", __func__);
5754 goto out_err;
5755 }
Trond Myklebustda0507b2012-11-20 18:10:30 -05005756 /* highest slot id */
5757 res->sr_highest_slotid = be32_to_cpup(p++);
Trond Myklebust464ee9f2012-11-20 12:49:27 -05005758 /* target highest slot id */
5759 res->sr_target_highest_slotid = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005760 /* result flags */
5761 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005762 status = 0;
5763out_err:
5764 res->sr_status = status;
5765 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005766out_overflow:
5767 print_overflow_msg(__func__, xdr);
5768 status = -EIO;
5769 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005770#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005771 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005772#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005773}
5774
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005775#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005776/*
5777 * TODO: Need to handle case when EOF != true;
5778 */
5779static int decode_getdevicelist(struct xdr_stream *xdr,
5780 struct pnfs_devicelist *res)
5781{
5782 __be32 *p;
5783 int status, i;
Trond Myklebust98d94522012-06-08 12:01:14 -04005784 nfs4_verifier verftemp;
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005785
5786 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5787 if (status)
5788 return status;
5789
5790 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5791 if (unlikely(!p))
5792 goto out_overflow;
5793
5794 /* TODO: Skip cookie for now */
5795 p += 2;
5796
5797 /* Read verifier */
Trond Myklebust98d94522012-06-08 12:01:14 -04005798 p = xdr_decode_opaque_fixed(p, verftemp.data, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005799
5800 res->num_devs = be32_to_cpup(p);
5801
5802 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5803
5804 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005805 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005806 __func__, res->num_devs);
5807 return -EIO;
5808 }
5809
5810 p = xdr_inline_decode(xdr,
5811 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5812 if (unlikely(!p))
5813 goto out_overflow;
5814 for (i = 0; i < res->num_devs; i++)
5815 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5816 NFS4_DEVICEID4_SIZE);
5817 res->eof = be32_to_cpup(p);
5818 return 0;
5819out_overflow:
5820 print_overflow_msg(__func__, xdr);
5821 return -EIO;
5822}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005823
5824static int decode_getdeviceinfo(struct xdr_stream *xdr,
5825 struct pnfs_device *pdev)
5826{
5827 __be32 *p;
5828 uint32_t len, type;
5829 int status;
5830
5831 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5832 if (status) {
5833 if (status == -ETOOSMALL) {
5834 p = xdr_inline_decode(xdr, 4);
5835 if (unlikely(!p))
5836 goto out_overflow;
5837 pdev->mincount = be32_to_cpup(p);
5838 dprintk("%s: Min count too small. mincnt = %u\n",
5839 __func__, pdev->mincount);
5840 }
5841 return status;
5842 }
5843
5844 p = xdr_inline_decode(xdr, 8);
5845 if (unlikely(!p))
5846 goto out_overflow;
5847 type = be32_to_cpup(p++);
5848 if (type != pdev->layout_type) {
5849 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5850 __func__, pdev->layout_type, type);
5851 return -EINVAL;
5852 }
5853 /*
5854 * Get the length of the opaque device_addr4. xdr_read_pages places
5855 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5856 * and places the remaining xdr data in xdr_buf->tail
5857 */
5858 pdev->mincount = be32_to_cpup(p);
Trond Myklebust13fe4ba2012-08-01 14:21:12 -04005859 if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
5860 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005861
5862 /* Parse notification bitmap, verifying that it is zero. */
5863 p = xdr_inline_decode(xdr, 4);
5864 if (unlikely(!p))
5865 goto out_overflow;
5866 len = be32_to_cpup(p);
5867 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005868 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005869
5870 p = xdr_inline_decode(xdr, 4 * len);
5871 if (unlikely(!p))
5872 goto out_overflow;
5873 for (i = 0; i < len; i++, p++) {
5874 if (be32_to_cpup(p)) {
5875 dprintk("%s: notifications not supported\n",
5876 __func__);
5877 return -EIO;
5878 }
5879 }
5880 }
5881 return 0;
5882out_overflow:
5883 print_overflow_msg(__func__, xdr);
5884 return -EIO;
5885}
5886
5887static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5888 struct nfs4_layoutget_res *res)
5889{
5890 __be32 *p;
5891 int status;
5892 u32 layout_count;
Trond Myklebust64bd5772012-06-20 22:35:05 -04005893 u32 recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005894
5895 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5896 if (status)
5897 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005898 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005899 if (unlikely(!p))
5900 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005901 res->return_on_close = be32_to_cpup(p);
5902 decode_stateid(xdr, &res->stateid);
5903 p = xdr_inline_decode(xdr, 4);
5904 if (unlikely(!p))
5905 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005906 layout_count = be32_to_cpup(p);
5907 if (!layout_count) {
5908 dprintk("%s: server responded with empty layout array\n",
5909 __func__);
5910 return -EINVAL;
5911 }
5912
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005913 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005914 if (unlikely(!p))
5915 goto out_overflow;
5916 p = xdr_decode_hyper(p, &res->range.offset);
5917 p = xdr_decode_hyper(p, &res->range.length);
5918 res->range.iomode = be32_to_cpup(p++);
5919 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005920 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005921
5922 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5923 __func__,
5924 (unsigned long)res->range.offset,
5925 (unsigned long)res->range.length,
5926 res->range.iomode,
5927 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005928 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005929
Trond Myklebust64bd5772012-06-20 22:35:05 -04005930 recvd = xdr_read_pages(xdr, res->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005931 if (res->layoutp->len > recvd) {
5932 dprintk("NFS: server cheating in layoutget reply: "
5933 "layout len %u > recvd %u\n",
5934 res->layoutp->len, recvd);
5935 return -EINVAL;
5936 }
5937
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005938 if (layout_count > 1) {
5939 /* We only handle a length one array at the moment. Any
5940 * further entries are just ignored. Note that this means
5941 * the client may see a response that is less than the
5942 * minimum it requested.
5943 */
5944 dprintk("%s: server responded with %d layouts, dropping tail\n",
5945 __func__, layout_count);
5946 }
5947
5948 return 0;
5949out_overflow:
5950 print_overflow_msg(__func__, xdr);
5951 return -EIO;
5952}
Andy Adamson863a3c62011-03-23 13:27:54 +00005953
Benny Halevycbe82602011-05-22 19:52:37 +03005954static int decode_layoutreturn(struct xdr_stream *xdr,
5955 struct nfs4_layoutreturn_res *res)
5956{
5957 __be32 *p;
5958 int status;
5959
5960 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5961 if (status)
5962 return status;
5963 p = xdr_inline_decode(xdr, 4);
5964 if (unlikely(!p))
5965 goto out_overflow;
5966 res->lrs_present = be32_to_cpup(p);
5967 if (res->lrs_present)
5968 status = decode_stateid(xdr, &res->stateid);
5969 return status;
5970out_overflow:
5971 print_overflow_msg(__func__, xdr);
5972 return -EIO;
5973}
5974
Andy Adamson863a3c62011-03-23 13:27:54 +00005975static int decode_layoutcommit(struct xdr_stream *xdr,
5976 struct rpc_rqst *req,
5977 struct nfs4_layoutcommit_res *res)
5978{
5979 __be32 *p;
5980 __u32 sizechanged;
5981 int status;
5982
5983 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005984 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005985 if (status)
5986 return status;
5987
5988 p = xdr_inline_decode(xdr, 4);
5989 if (unlikely(!p))
5990 goto out_overflow;
5991 sizechanged = be32_to_cpup(p);
5992
5993 if (sizechanged) {
5994 /* throw away new size */
5995 p = xdr_inline_decode(xdr, 8);
5996 if (unlikely(!p))
5997 goto out_overflow;
5998 }
5999 return 0;
6000out_overflow:
6001 print_overflow_msg(__func__, xdr);
6002 return -EIO;
6003}
Bryan Schumaker7d974792011-06-02 14:59:08 -04006004
6005static int decode_test_stateid(struct xdr_stream *xdr,
6006 struct nfs41_test_stateid_res *res)
6007{
6008 __be32 *p;
6009 int status;
6010 int num_res;
6011
6012 status = decode_op_hdr(xdr, OP_TEST_STATEID);
6013 if (status)
6014 return status;
6015
6016 p = xdr_inline_decode(xdr, 4);
6017 if (unlikely(!p))
6018 goto out_overflow;
6019 num_res = be32_to_cpup(p++);
6020 if (num_res != 1)
6021 goto out;
6022
6023 p = xdr_inline_decode(xdr, 4);
6024 if (unlikely(!p))
6025 goto out_overflow;
6026 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006027
6028 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04006029out_overflow:
6030 print_overflow_msg(__func__, xdr);
6031out:
6032 return -EIO;
6033}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006034
6035static int decode_free_stateid(struct xdr_stream *xdr,
6036 struct nfs41_free_stateid_res *res)
6037{
Andy Adamson9f79fb42013-09-10 12:56:29 -04006038 res->status = decode_op_hdr(xdr, OP_FREE_STATEID);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006039 return res->status;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006040}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006041#endif /* CONFIG_NFS_V4_1 */
6042
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043/*
Benny Halevy49c25592008-12-23 16:06:16 -05006044 * END OF "GENERIC" DECODE ROUTINES.
6045 */
6046
6047/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 * Decode OPEN_DOWNGRADE response
6049 */
Chuck Leverbf269552010-12-14 14:59:29 +00006050static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
6051 struct xdr_stream *xdr,
6052 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053{
Andy Adamson05d564f2008-12-23 16:06:15 -05006054 struct compound_hdr hdr;
6055 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Chuck Leverbf269552010-12-14 14:59:29 +00006057 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006058 if (status)
6059 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006060 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006061 if (status)
6062 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006063 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006064 if (status)
6065 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006066 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006067 if (status != 0)
6068 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006069 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006071 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072}
6073
6074/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075 * Decode ACCESS response
6076 */
Chuck Leverbf269552010-12-14 14:59:29 +00006077static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6078 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 struct compound_hdr hdr;
6081 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006082
Chuck Leverbf269552010-12-14 14:59:29 +00006083 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006084 if (status)
6085 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006086 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006087 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006089 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04006090 if (status != 0)
6091 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04006092 status = decode_access(xdr, &res->supported, &res->access);
Trond Myklebust76b32992007-08-10 17:45:11 -04006093 if (status != 0)
6094 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006095 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096out:
6097 return status;
6098}
6099
6100/*
6101 * Decode LOOKUP response
6102 */
Chuck Leverbf269552010-12-14 14:59:29 +00006103static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6104 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106 struct compound_hdr hdr;
6107 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006108
Chuck Leverbf269552010-12-14 14:59:29 +00006109 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006110 if (status)
6111 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006112 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006113 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006115 status = decode_putfh(xdr);
6116 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006118 status = decode_lookup(xdr);
6119 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006121 status = decode_getfh(xdr, res->fh);
6122 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 goto out;
David Quigleyaa9c2662013-05-22 12:50:44 -04006124 status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125out:
6126 return status;
6127}
6128
6129/*
6130 * Decode LOOKUP_ROOT response
6131 */
Chuck Leverbf269552010-12-14 14:59:29 +00006132static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
6133 struct xdr_stream *xdr,
6134 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 struct compound_hdr hdr;
6137 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006138
Chuck Leverbf269552010-12-14 14:59:29 +00006139 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006140 if (status)
6141 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006142 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006143 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006145 status = decode_putrootfh(xdr);
6146 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006148 status = decode_getfh(xdr, res->fh);
6149 if (status == 0)
David Quigleyaa9c2662013-05-22 12:50:44 -04006150 status = decode_getfattr_label(xdr, res->fattr,
6151 res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152out:
6153 return status;
6154}
6155
6156/*
6157 * Decode REMOVE response
6158 */
Chuck Leverbf269552010-12-14 14:59:29 +00006159static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6160 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162 struct compound_hdr hdr;
6163 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006164
Chuck Leverbf269552010-12-14 14:59:29 +00006165 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006166 if (status)
6167 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006168 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006169 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006171 status = decode_putfh(xdr);
6172 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04006173 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006174 status = decode_remove(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175out:
6176 return status;
6177}
6178
6179/*
6180 * Decode RENAME response
6181 */
Chuck Leverbf269552010-12-14 14:59:29 +00006182static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6183 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185 struct compound_hdr hdr;
6186 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006187
Chuck Leverbf269552010-12-14 14:59:29 +00006188 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006189 if (status)
6190 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006191 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006192 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006194 status = decode_putfh(xdr);
6195 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006197 status = decode_savefh(xdr);
6198 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006200 status = decode_putfh(xdr);
6201 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006203 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204out:
6205 return status;
6206}
6207
6208/*
6209 * Decode LINK response
6210 */
Chuck Leverbf269552010-12-14 14:59:29 +00006211static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6212 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214 struct compound_hdr hdr;
6215 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006216
Chuck Leverbf269552010-12-14 14:59:29 +00006217 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006218 if (status)
6219 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006220 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006221 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006223 status = decode_putfh(xdr);
6224 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006226 status = decode_savefh(xdr);
6227 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006229 status = decode_putfh(xdr);
6230 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006232 status = decode_link(xdr, &res->cinfo);
6233 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006234 goto out;
6235 /*
6236 * Note order: OP_LINK leaves the directory as the current
6237 * filehandle.
6238 */
Chuck Leverbf269552010-12-14 14:59:29 +00006239 status = decode_restorefh(xdr);
6240 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006241 goto out;
David Quigleyaa9c2662013-05-22 12:50:44 -04006242 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243out:
6244 return status;
6245}
6246
6247/*
6248 * Decode CREATE response
6249 */
Chuck Leverbf269552010-12-14 14:59:29 +00006250static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6251 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 struct compound_hdr hdr;
6254 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006255
Chuck Leverbf269552010-12-14 14:59:29 +00006256 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006257 if (status)
6258 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006259 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006260 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006262 status = decode_putfh(xdr);
6263 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006265 status = decode_create(xdr, &res->dir_cinfo);
6266 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006268 status = decode_getfh(xdr, res->fh);
6269 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270 goto out;
David Quigleyaa9c2662013-05-22 12:50:44 -04006271 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272out:
6273 return status;
6274}
6275
6276/*
6277 * Decode SYMLINK response
6278 */
Chuck Leverbf269552010-12-14 14:59:29 +00006279static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6280 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281{
Chuck Leverbf269552010-12-14 14:59:29 +00006282 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283}
6284
6285/*
6286 * Decode GETATTR response
6287 */
Chuck Leverbf269552010-12-14 14:59:29 +00006288static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6289 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291 struct compound_hdr hdr;
6292 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006293
Chuck Leverbf269552010-12-14 14:59:29 +00006294 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 if (status)
6296 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006297 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006298 if (status)
6299 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006300 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301 if (status)
6302 goto out;
David Quigleyaa9c2662013-05-22 12:50:44 -04006303 status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304out:
6305 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306}
6307
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006308/*
6309 * Encode an SETACL request
6310 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006311static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6312 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006313{
Andy Adamson05d564f2008-12-23 16:06:15 -05006314 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006315 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006316 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006317
Chuck Lever9f06c712010-12-14 14:59:18 +00006318 encode_compound_hdr(xdr, req, &hdr);
6319 encode_sequence(xdr, &args->seq_args, &hdr);
6320 encode_putfh(xdr, args->fh, &hdr);
6321 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006322 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006323}
Andy Adamson05d564f2008-12-23 16:06:15 -05006324
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006325/*
6326 * Decode SETACL response
6327 */
6328static int
Chuck Leverbf269552010-12-14 14:59:29 +00006329nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006330 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006331{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006332 struct compound_hdr hdr;
6333 int status;
6334
Chuck Leverbf269552010-12-14 14:59:29 +00006335 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006336 if (status)
6337 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006338 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006339 if (status)
6340 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006341 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006342 if (status)
6343 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006344 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006345out:
6346 return status;
6347}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
6349/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006350 * Decode GETACL response
6351 */
6352static int
Chuck Leverbf269552010-12-14 14:59:29 +00006353nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006354 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006355{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006356 struct compound_hdr hdr;
6357 int status;
6358
Trond Myklebust331818f2012-02-03 18:30:53 -05006359 if (res->acl_scratch != NULL) {
6360 void *p = page_address(res->acl_scratch);
6361 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6362 }
Chuck Leverbf269552010-12-14 14:59:29 +00006363 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006364 if (status)
6365 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006366 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006367 if (status)
6368 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006369 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006370 if (status)
6371 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006372 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006373
6374out:
6375 return status;
6376}
6377
6378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 * Decode CLOSE response
6380 */
Chuck Leverbf269552010-12-14 14:59:29 +00006381static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6382 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383{
Andy Adamson05d564f2008-12-23 16:06:15 -05006384 struct compound_hdr hdr;
6385 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386
Chuck Leverbf269552010-12-14 14:59:29 +00006387 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006388 if (status)
6389 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006390 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006391 if (status)
6392 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006393 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006394 if (status)
6395 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006396 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006397 if (status != 0)
6398 goto out;
6399 /*
6400 * Note: Server may do delete on close for this file
6401 * in which case the getattr call will fail with
6402 * an ESTALE error. Shouldn't be a problem,
6403 * though, since fattr->valid will remain unset.
6404 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006405 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006407 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408}
6409
6410/*
6411 * Decode OPEN response
6412 */
Chuck Leverbf269552010-12-14 14:59:29 +00006413static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6414 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415{
Andy Adamson05d564f2008-12-23 16:06:15 -05006416 struct compound_hdr hdr;
6417 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418
Chuck Leverbf269552010-12-14 14:59:29 +00006419 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006420 if (status)
6421 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006422 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006423 if (status)
6424 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006425 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006426 if (status)
6427 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006428 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006429 if (status)
6430 goto out;
Weston Andros Adamson01913b42012-09-06 15:54:27 -04006431 status = decode_getfh(xdr, &res->fh);
6432 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006434 if (res->access_request)
6435 decode_access(xdr, &res->access_supported, &res->access_result);
David Quigleyaa9c2662013-05-22 12:50:44 -04006436 decode_getfattr_label(xdr, res->f_attr, res->f_label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006438 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439}
6440
6441/*
6442 * Decode OPEN_CONFIRM response
6443 */
Chuck Leverbf269552010-12-14 14:59:29 +00006444static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6445 struct xdr_stream *xdr,
6446 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447{
Andy Adamson05d564f2008-12-23 16:06:15 -05006448 struct compound_hdr hdr;
6449 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Chuck Leverbf269552010-12-14 14:59:29 +00006451 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006452 if (status)
6453 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006454 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006455 if (status)
6456 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006457 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006459 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460}
6461
6462/*
6463 * Decode OPEN response
6464 */
Chuck Leverbf269552010-12-14 14:59:29 +00006465static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6466 struct xdr_stream *xdr,
6467 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468{
Andy Adamson05d564f2008-12-23 16:06:15 -05006469 struct compound_hdr hdr;
6470 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471
Chuck Leverbf269552010-12-14 14:59:29 +00006472 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006473 if (status)
6474 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006475 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006476 if (status)
6477 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006478 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006479 if (status)
6480 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006481 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006482 if (status)
6483 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006484 if (res->access_request)
6485 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust6926afd2012-01-07 13:22:46 -05006486 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006488 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489}
6490
6491/*
6492 * Decode SETATTR response
6493 */
Chuck Leverbf269552010-12-14 14:59:29 +00006494static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6495 struct xdr_stream *xdr,
6496 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497{
Andy Adamson05d564f2008-12-23 16:06:15 -05006498 struct compound_hdr hdr;
6499 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500
Chuck Leverbf269552010-12-14 14:59:29 +00006501 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006502 if (status)
6503 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006504 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006505 if (status)
6506 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006507 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006508 if (status)
6509 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006510 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006511 if (status)
6512 goto out;
David Quigleyaa9c2662013-05-22 12:50:44 -04006513 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006515 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516}
6517
6518/*
6519 * Decode LOCK response
6520 */
Chuck Leverbf269552010-12-14 14:59:29 +00006521static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6522 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524 struct compound_hdr hdr;
6525 int status;
6526
Chuck Leverbf269552010-12-14 14:59:29 +00006527 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528 if (status)
6529 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006530 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006531 if (status)
6532 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006533 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 if (status)
6535 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006536 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537out:
6538 return status;
6539}
6540
6541/*
6542 * Decode LOCKT response
6543 */
Chuck Leverbf269552010-12-14 14:59:29 +00006544static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6545 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547 struct compound_hdr hdr;
6548 int status;
6549
Chuck Leverbf269552010-12-14 14:59:29 +00006550 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551 if (status)
6552 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006553 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006554 if (status)
6555 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006556 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 if (status)
6558 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006559 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560out:
6561 return status;
6562}
6563
6564/*
6565 * Decode LOCKU response
6566 */
Chuck Leverbf269552010-12-14 14:59:29 +00006567static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6568 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 struct compound_hdr hdr;
6571 int status;
6572
Chuck Leverbf269552010-12-14 14:59:29 +00006573 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 if (status)
6575 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006576 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006577 if (status)
6578 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006579 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580 if (status)
6581 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006582 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583out:
6584 return status;
6585}
6586
Chuck Leverbf269552010-12-14 14:59:29 +00006587static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6588 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006589{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006590 struct compound_hdr hdr;
6591 int status;
6592
Chuck Leverbf269552010-12-14 14:59:29 +00006593 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006594 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006595 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006596 return status;
6597}
6598
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599/*
6600 * Decode READLINK response
6601 */
Chuck Leverbf269552010-12-14 14:59:29 +00006602static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6603 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006604 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606 struct compound_hdr hdr;
6607 int status;
6608
Chuck Leverbf269552010-12-14 14:59:29 +00006609 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 if (status)
6611 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006612 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006613 if (status)
6614 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006615 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 if (status)
6617 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006618 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619out:
6620 return status;
6621}
6622
6623/*
6624 * Decode READDIR response
6625 */
Chuck Leverbf269552010-12-14 14:59:29 +00006626static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6627 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 struct compound_hdr hdr;
6630 int status;
6631
Chuck Leverbf269552010-12-14 14:59:29 +00006632 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633 if (status)
6634 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006635 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006636 if (status)
6637 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006638 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 if (status)
6640 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006641 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642out:
6643 return status;
6644}
6645
6646/*
6647 * Decode Read response
6648 */
Chuck Leverbf269552010-12-14 14:59:29 +00006649static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Anna Schumaker9137bdf2014-05-06 09:12:25 -04006650 struct nfs_pgio_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652 struct compound_hdr hdr;
6653 int status;
6654
Chuck Leverbf269552010-12-14 14:59:29 +00006655 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 if (status)
6657 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006658 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006659 if (status)
6660 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006661 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 if (status)
6663 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006664 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665 if (!status)
6666 status = res->count;
6667out:
6668 return status;
6669}
6670
6671/*
6672 * Decode WRITE response
6673 */
Chuck Leverbf269552010-12-14 14:59:29 +00006674static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Anna Schumaker9137bdf2014-05-06 09:12:25 -04006675 struct nfs_pgio_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 struct compound_hdr hdr;
6678 int status;
6679
Chuck Leverbf269552010-12-14 14:59:29 +00006680 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 if (status)
6682 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006683 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006684 if (status)
6685 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006686 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687 if (status)
6688 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006689 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006690 if (status)
6691 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006692 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006693 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694 if (!status)
6695 status = res->count;
6696out:
6697 return status;
6698}
6699
6700/*
6701 * Decode COMMIT response
6702 */
Chuck Leverbf269552010-12-14 14:59:29 +00006703static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04006704 struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 struct compound_hdr hdr;
6707 int status;
6708
Chuck Leverbf269552010-12-14 14:59:29 +00006709 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710 if (status)
6711 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006712 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006713 if (status)
6714 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006715 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 if (status)
6717 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006718 status = decode_commit(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719out:
6720 return status;
6721}
6722
6723/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006724 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 */
Chuck Leverbf269552010-12-14 14:59:29 +00006726static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006727 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729 struct compound_hdr hdr;
6730 int status;
6731
Chuck Leverbf269552010-12-14 14:59:29 +00006732 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006734 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006735 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006736 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006738 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739 return status;
6740}
6741
6742/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006743 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744 */
Chuck Leverbf269552010-12-14 14:59:29 +00006745static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006746 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 struct compound_hdr hdr;
6749 int status;
6750
Chuck Leverbf269552010-12-14 14:59:29 +00006751 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006753 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006754 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006755 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006757 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758 return status;
6759}
6760
6761/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006762 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 */
Chuck Leverbf269552010-12-14 14:59:29 +00006764static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006765 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 struct compound_hdr hdr;
6768 int status;
6769
Chuck Leverbf269552010-12-14 14:59:29 +00006770 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006772 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006773 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006774 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006776 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 return status;
6778}
6779
6780/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006781 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782 */
Chuck Leverbf269552010-12-14 14:59:29 +00006783static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6784 struct xdr_stream *xdr,
6785 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787 struct compound_hdr hdr;
6788 int status;
6789
Chuck Leverbf269552010-12-14 14:59:29 +00006790 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006791 if (status)
6792 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006793 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006794 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006796 status = decode_putfh(xdr);
6797 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006799 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800out:
6801 return status;
6802}
6803
6804/*
6805 * Decode RENEW response
6806 */
Chuck Leverbf269552010-12-14 14:59:29 +00006807static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6808 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810 struct compound_hdr hdr;
6811 int status;
6812
Chuck Leverbf269552010-12-14 14:59:29 +00006813 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006815 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 return status;
6817}
6818
6819/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006820 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821 */
Chuck Leverbf269552010-12-14 14:59:29 +00006822static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6823 struct xdr_stream *xdr,
6824 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826 struct compound_hdr hdr;
6827 int status;
6828
Chuck Leverbf269552010-12-14 14:59:29 +00006829 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006831 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832 return status;
6833}
6834
6835/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006836 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 */
Chuck Leverbf269552010-12-14 14:59:29 +00006838static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
Chuck Lever83ca7f52013-03-16 15:55:53 -04006839 struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841 struct compound_hdr hdr;
6842 int status;
6843
Chuck Leverbf269552010-12-14 14:59:29 +00006844 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006846 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847 return status;
6848}
6849
6850/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006851 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852 */
Chuck Leverbf269552010-12-14 14:59:29 +00006853static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6854 struct xdr_stream *xdr,
6855 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857 struct compound_hdr hdr;
6858 int status;
6859
Chuck Leverbf269552010-12-14 14:59:29 +00006860 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006861 if (status)
6862 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006863 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006864 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006865 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006866 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006867 if (status != 0)
6868 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006869 status = decode_getfattr(xdr, res->fattr, res->server);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006870 if (status != 0)
6871 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006872 status = decode_delegreturn(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006873out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874 return status;
6875}
6876
Trond Myklebust683b57b2006-06-09 09:34:22 -04006877/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006878 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006879 */
Chuck Leverbf269552010-12-14 14:59:29 +00006880static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6881 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006882 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006883{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006884 struct compound_hdr hdr;
6885 int status;
6886
Chuck Leverbf269552010-12-14 14:59:29 +00006887 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006888 if (status)
6889 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006890 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006891 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006892 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006893 status = decode_putfh(xdr);
6894 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006895 goto out;
Chuck Leverb03d7352013-10-17 14:12:50 -04006896 if (res->migration) {
6897 xdr_enter_page(xdr, PAGE_SIZE);
6898 status = decode_getfattr_generic(xdr,
6899 &res->fs_locations->fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006900 NULL, res->fs_locations,
David Quigleyaa9c2662013-05-22 12:50:44 -04006901 NULL, res->fs_locations->server);
Chuck Leverb03d7352013-10-17 14:12:50 -04006902 if (status)
6903 goto out;
6904 if (res->renew)
6905 status = decode_renew(xdr);
6906 } else {
6907 status = decode_lookup(xdr);
6908 if (status)
6909 goto out;
6910 xdr_enter_page(xdr, PAGE_SIZE);
6911 status = decode_getfattr_generic(xdr,
6912 &res->fs_locations->fattr,
6913 NULL, res->fs_locations,
6914 NULL, res->fs_locations->server);
6915 }
Trond Myklebust683b57b2006-06-09 09:34:22 -04006916out:
6917 return status;
6918}
6919
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006920/*
6921 * Decode SECINFO response
6922 */
6923static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6924 struct xdr_stream *xdr,
6925 struct nfs4_secinfo_res *res)
6926{
6927 struct compound_hdr hdr;
6928 int status;
6929
6930 status = decode_compound_hdr(xdr, &hdr);
6931 if (status)
6932 goto out;
6933 status = decode_sequence(xdr, &res->seq_res, rqstp);
6934 if (status)
6935 goto out;
6936 status = decode_putfh(xdr);
6937 if (status)
6938 goto out;
6939 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006940out:
6941 return status;
6942}
6943
Chuck Lever44c99932013-10-17 14:13:30 -04006944/*
6945 * Decode FSID_PRESENT response
6946 */
6947static int nfs4_xdr_dec_fsid_present(struct rpc_rqst *rqstp,
6948 struct xdr_stream *xdr,
6949 struct nfs4_fsid_present_res *res)
6950{
6951 struct compound_hdr hdr;
6952 int status;
6953
6954 status = decode_compound_hdr(xdr, &hdr);
6955 if (status)
6956 goto out;
6957 status = decode_sequence(xdr, &res->seq_res, rqstp);
6958 if (status)
6959 goto out;
6960 status = decode_putfh(xdr);
6961 if (status)
6962 goto out;
6963 status = decode_getfh(xdr, res->fh);
6964 if (status)
6965 goto out;
6966 if (res->renew)
6967 status = decode_renew(xdr);
6968out:
6969 return status;
6970}
6971
Benny Halevy99fe60d2009-04-01 09:22:29 -04006972#if defined(CONFIG_NFS_V4_1)
6973/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04006974 * Decode BIND_CONN_TO_SESSION response
6975 */
6976static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
6977 struct xdr_stream *xdr,
6978 void *res)
6979{
6980 struct compound_hdr hdr;
6981 int status;
6982
6983 status = decode_compound_hdr(xdr, &hdr);
6984 if (!status)
6985 status = decode_bind_conn_to_session(xdr, res);
6986 return status;
6987}
6988
6989/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006990 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006991 */
Chuck Leverbf269552010-12-14 14:59:29 +00006992static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6993 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006994 void *res)
6995{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006996 struct compound_hdr hdr;
6997 int status;
6998
Chuck Leverbf269552010-12-14 14:59:29 +00006999 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007000 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007001 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007002 return status;
7003}
Andy Adamson2050f0c2009-04-01 09:22:30 -04007004
7005/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05007006 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04007007 */
Chuck Leverbf269552010-12-14 14:59:29 +00007008static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
7009 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04007010 struct nfs41_create_session_res *res)
7011{
Andy Adamsonfc931582009-04-01 09:22:31 -04007012 struct compound_hdr hdr;
7013 int status;
7014
Chuck Leverbf269552010-12-14 14:59:29 +00007015 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04007016 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007017 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007018 return status;
7019}
7020
7021/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05007022 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007023 */
Chuck Leverbf269552010-12-14 14:59:29 +00007024static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
7025 struct xdr_stream *xdr,
7026 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007027{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007028 struct compound_hdr hdr;
7029 int status;
7030
Chuck Leverbf269552010-12-14 14:59:29 +00007031 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007032 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007033 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007034 return status;
7035}
7036
7037/*
Trond Myklebust66245532012-05-25 17:18:09 -04007038 * Decode DESTROY_CLIENTID response
7039 */
7040static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
7041 struct xdr_stream *xdr,
7042 void *res)
7043{
7044 struct compound_hdr hdr;
7045 int status;
7046
7047 status = decode_compound_hdr(xdr, &hdr);
7048 if (!status)
7049 status = decode_destroy_clientid(xdr, res);
7050 return status;
7051}
7052
7053/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05007054 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007055 */
Chuck Leverbf269552010-12-14 14:59:29 +00007056static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
7057 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007058 struct nfs4_sequence_res *res)
7059{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007060 struct compound_hdr hdr;
7061 int status;
7062
Chuck Leverbf269552010-12-14 14:59:29 +00007063 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007064 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007065 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007066 return status;
7067}
7068
7069/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05007070 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04007071 */
Chuck Leverbf269552010-12-14 14:59:29 +00007072static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
7073 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04007074 struct nfs4_get_lease_time_res *res)
7075{
Andy Adamson2050f0c2009-04-01 09:22:30 -04007076 struct compound_hdr hdr;
7077 int status;
7078
Chuck Leverbf269552010-12-14 14:59:29 +00007079 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007080 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007081 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007082 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007083 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007084 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007085 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007086 return status;
7087}
Ricardo Labiaga180197532009-12-05 16:08:40 -05007088
7089/*
7090 * Decode RECLAIM_COMPLETE response
7091 */
Chuck Leverbf269552010-12-14 14:59:29 +00007092static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
7093 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05007094 struct nfs41_reclaim_complete_res *res)
7095{
Ricardo Labiaga180197532009-12-05 16:08:40 -05007096 struct compound_hdr hdr;
7097 int status;
7098
Chuck Leverbf269552010-12-14 14:59:29 +00007099 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05007100 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00007101 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05007102 if (!status)
Himangi Saraogi8ee2b782014-06-27 00:09:09 +05307103 status = decode_reclaim_complete(xdr, NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05007104 return status;
7105}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007106
7107/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007108 * Decode GETDEVICELIST response
7109 */
7110static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
7111 struct xdr_stream *xdr,
7112 struct nfs4_getdevicelist_res *res)
7113{
7114 struct compound_hdr hdr;
7115 int status;
7116
7117 dprintk("encoding getdevicelist!\n");
7118
7119 status = decode_compound_hdr(xdr, &hdr);
7120 if (status != 0)
7121 goto out;
7122 status = decode_sequence(xdr, &res->seq_res, rqstp);
7123 if (status != 0)
7124 goto out;
7125 status = decode_putfh(xdr);
7126 if (status != 0)
7127 goto out;
7128 status = decode_getdevicelist(xdr, res->devlist);
7129out:
7130 return status;
7131}
7132
7133/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007134 * Decode GETDEVINFO response
7135 */
Chuck Leverbf269552010-12-14 14:59:29 +00007136static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
7137 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007138 struct nfs4_getdeviceinfo_res *res)
7139{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007140 struct compound_hdr hdr;
7141 int status;
7142
Chuck Leverbf269552010-12-14 14:59:29 +00007143 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007144 if (status != 0)
7145 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00007146 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007147 if (status != 0)
7148 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00007149 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007150out:
7151 return status;
7152}
7153
7154/*
7155 * Decode LAYOUTGET response
7156 */
Chuck Leverbf269552010-12-14 14:59:29 +00007157static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
7158 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007159 struct nfs4_layoutget_res *res)
7160{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007161 struct compound_hdr hdr;
7162 int status;
7163
Chuck Leverbf269552010-12-14 14:59:29 +00007164 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007165 if (status)
7166 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00007167 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007168 if (status)
7169 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00007170 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007171 if (status)
7172 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00007173 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04007174out:
7175 return status;
7176}
Andy Adamson863a3c62011-03-23 13:27:54 +00007177
7178/*
Benny Halevycbe82602011-05-22 19:52:37 +03007179 * Decode LAYOUTRETURN response
7180 */
7181static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
7182 struct xdr_stream *xdr,
7183 struct nfs4_layoutreturn_res *res)
7184{
7185 struct compound_hdr hdr;
7186 int status;
7187
7188 status = decode_compound_hdr(xdr, &hdr);
7189 if (status)
7190 goto out;
7191 status = decode_sequence(xdr, &res->seq_res, rqstp);
7192 if (status)
7193 goto out;
7194 status = decode_putfh(xdr);
7195 if (status)
7196 goto out;
7197 status = decode_layoutreturn(xdr, res);
7198out:
7199 return status;
7200}
7201
7202/*
Andy Adamson863a3c62011-03-23 13:27:54 +00007203 * Decode LAYOUTCOMMIT response
7204 */
7205static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
7206 struct xdr_stream *xdr,
7207 struct nfs4_layoutcommit_res *res)
7208{
7209 struct compound_hdr hdr;
7210 int status;
7211
7212 status = decode_compound_hdr(xdr, &hdr);
7213 if (status)
7214 goto out;
7215 status = decode_sequence(xdr, &res->seq_res, rqstp);
7216 if (status)
7217 goto out;
7218 status = decode_putfh(xdr);
7219 if (status)
7220 goto out;
7221 status = decode_layoutcommit(xdr, rqstp, res);
7222 if (status)
7223 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05007224 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00007225out:
7226 return status;
7227}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007228
7229/*
7230 * Decode SECINFO_NO_NAME response
7231 */
7232static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7233 struct xdr_stream *xdr,
7234 struct nfs4_secinfo_res *res)
7235{
7236 struct compound_hdr hdr;
7237 int status;
7238
7239 status = decode_compound_hdr(xdr, &hdr);
7240 if (status)
7241 goto out;
7242 status = decode_sequence(xdr, &res->seq_res, rqstp);
7243 if (status)
7244 goto out;
7245 status = decode_putrootfh(xdr);
7246 if (status)
7247 goto out;
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04007248 status = decode_secinfo_no_name(xdr, res);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007249out:
7250 return status;
7251}
Bryan Schumaker7d974792011-06-02 14:59:08 -04007252
7253/*
7254 * Decode TEST_STATEID response
7255 */
7256static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
7257 struct xdr_stream *xdr,
7258 struct nfs41_test_stateid_res *res)
7259{
7260 struct compound_hdr hdr;
7261 int status;
7262
7263 status = decode_compound_hdr(xdr, &hdr);
7264 if (status)
7265 goto out;
7266 status = decode_sequence(xdr, &res->seq_res, rqstp);
7267 if (status)
7268 goto out;
7269 status = decode_test_stateid(xdr, res);
7270out:
7271 return status;
7272}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007273
7274/*
7275 * Decode FREE_STATEID response
7276 */
7277static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7278 struct xdr_stream *xdr,
7279 struct nfs41_free_stateid_res *res)
7280{
7281 struct compound_hdr hdr;
7282 int status;
7283
7284 status = decode_compound_hdr(xdr, &hdr);
7285 if (status)
7286 goto out;
7287 status = decode_sequence(xdr, &res->seq_res, rqstp);
7288 if (status)
7289 goto out;
7290 status = decode_free_stateid(xdr, res);
7291out:
7292 return status;
7293}
Benny Halevy99fe60d2009-04-01 09:22:29 -04007294#endif /* CONFIG_NFS_V4_1 */
7295
Chuck Lever573c4e12010-12-14 14:58:11 +00007296/**
7297 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7298 * the local page cache.
7299 * @xdr: XDR stream where entry resides
7300 * @entry: buffer to fill in with entry data
7301 * @plus: boolean indicating whether this should be a readdirplus entry
7302 *
7303 * Returns zero if successful, otherwise a negative errno value is
7304 * returned.
7305 *
7306 * This function is not invoked during READDIR reply decoding, but
7307 * rather whenever an application invokes the getdents(2) system call
7308 * on a directory already in our cache.
7309 */
7310int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7311 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312{
Trond Myklebust256e48b2012-06-21 11:18:13 -04007313 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04007314 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007316 __be32 *p = xdr_inline_decode(xdr, 4);
7317 if (unlikely(!p))
7318 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007319 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007320 p = xdr_inline_decode(xdr, 4);
7321 if (unlikely(!p))
7322 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007323 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00007324 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00007326 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327 }
7328
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007329 p = xdr_inline_decode(xdr, 12);
7330 if (unlikely(!p))
7331 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332 entry->prev_cookie = entry->cookie;
7333 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05007334 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007335
Trond Myklebust9af8c222010-10-24 11:52:55 -04007336 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007337 if (unlikely(!p))
7338 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
7341 /*
7342 * In case the server doesn't return an inode number,
7343 * we fake one here. (We don't use inode number 0,
7344 * since glibc seems to choke on it...)
7345 */
7346 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04007347 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Trond Myklebust9af8c222010-10-24 11:52:55 -04007349 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007350 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04007351
Trond Myklebust256e48b2012-06-21 11:18:13 -04007352 if (decode_attr_length(xdr, &len, &savep) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007353 goto out_overflow;
7354
Chuck Lever573c4e12010-12-14 14:58:11 +00007355 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
David Quigleyaa9c2662013-05-22 12:50:44 -04007356 NULL, entry->label, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007357 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04007358 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7359 entry->ino = entry->fattr->mounted_on_fileid;
7360 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007361 entry->ino = entry->fattr->fileid;
7362
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05007363 entry->d_type = DT_UNKNOWN;
7364 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7365 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7366
Chuck Lever573c4e12010-12-14 14:58:11 +00007367 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007368
7369out_overflow:
7370 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007371 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372}
7373
7374/*
7375 * We need to translate between nfs status return values and
7376 * the local errno values which may not be the same.
7377 */
7378static struct {
7379 int stat;
7380 int errno;
7381} nfs_errtbl[] = {
7382 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007383 { NFS4ERR_PERM, -EPERM },
7384 { NFS4ERR_NOENT, -ENOENT },
7385 { NFS4ERR_IO, -errno_NFSERR_IO},
7386 { NFS4ERR_NXIO, -ENXIO },
7387 { NFS4ERR_ACCESS, -EACCES },
7388 { NFS4ERR_EXIST, -EEXIST },
7389 { NFS4ERR_XDEV, -EXDEV },
7390 { NFS4ERR_NOTDIR, -ENOTDIR },
7391 { NFS4ERR_ISDIR, -EISDIR },
7392 { NFS4ERR_INVAL, -EINVAL },
7393 { NFS4ERR_FBIG, -EFBIG },
7394 { NFS4ERR_NOSPC, -ENOSPC },
7395 { NFS4ERR_ROFS, -EROFS },
7396 { NFS4ERR_MLINK, -EMLINK },
7397 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7398 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7399 { NFS4ERR_DQUOT, -EDQUOT },
7400 { NFS4ERR_STALE, -ESTALE },
7401 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007402 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7403 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7404 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007405 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007406 { NFS4ERR_BADTYPE, -EBADTYPE },
7407 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007408 { NFS4ERR_SYMLINK, -ELOOP },
7409 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7410 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007411 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412};
7413
7414/*
7415 * Convert an NFS error code to a local one.
7416 * This one is used jointly by NFSv2 and NFSv3.
7417 */
7418static int
David Howells0a8ea432006-08-22 20:06:08 -04007419nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420{
7421 int i;
7422 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7423 if (nfs_errtbl[i].stat == stat)
7424 return nfs_errtbl[i].errno;
7425 }
7426 if (stat <= 10000 || stat > 10100) {
7427 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007428 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 }
7430 /* If we cannot translate the error, the recovery routines should
7431 * handle it.
7432 * Note: remaining NFSv4 error codes have values > 10000, so should
7433 * not conflict with native Linux error codes.
7434 */
Benny Halevy856dff32008-03-31 17:39:06 +03007435 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436}
7437
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438#define PROC(proc, argtype, restype) \
7439[NFSPROC4_CLNT_##proc] = { \
7440 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007441 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007442 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007443 .p_arglen = NFS4_##argtype##_sz, \
7444 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007445 .p_statidx = NFSPROC4_CLNT_##proc, \
7446 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448
7449struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007450 PROC(READ, enc_read, dec_read),
7451 PROC(WRITE, enc_write, dec_write),
7452 PROC(COMMIT, enc_commit, dec_commit),
7453 PROC(OPEN, enc_open, dec_open),
7454 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7455 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7456 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7457 PROC(CLOSE, enc_close, dec_close),
7458 PROC(SETATTR, enc_setattr, dec_setattr),
7459 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7460 PROC(RENEW, enc_renew, dec_renew),
7461 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7462 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7463 PROC(LOCK, enc_lock, dec_lock),
7464 PROC(LOCKT, enc_lockt, dec_lockt),
7465 PROC(LOCKU, enc_locku, dec_locku),
7466 PROC(ACCESS, enc_access, dec_access),
7467 PROC(GETATTR, enc_getattr, dec_getattr),
7468 PROC(LOOKUP, enc_lookup, dec_lookup),
7469 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7470 PROC(REMOVE, enc_remove, dec_remove),
7471 PROC(RENAME, enc_rename, dec_rename),
7472 PROC(LINK, enc_link, dec_link),
7473 PROC(SYMLINK, enc_symlink, dec_symlink),
7474 PROC(CREATE, enc_create, dec_create),
7475 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7476 PROC(STATFS, enc_statfs, dec_statfs),
7477 PROC(READLINK, enc_readlink, dec_readlink),
7478 PROC(READDIR, enc_readdir, dec_readdir),
7479 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7480 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7481 PROC(GETACL, enc_getacl, dec_getacl),
7482 PROC(SETACL, enc_setacl, dec_setacl),
7483 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7484 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007485 PROC(SECINFO, enc_secinfo, dec_secinfo),
Chuck Lever44c99932013-10-17 14:13:30 -04007486 PROC(FSID_PRESENT, enc_fsid_present, dec_fsid_present),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007487#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007488 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7489 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7490 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7491 PROC(SEQUENCE, enc_sequence, dec_sequence),
7492 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7493 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7494 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7495 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007496 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007497 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007498 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007499 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007500 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007501 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Trond Myklebustad24ecf2012-05-25 17:11:42 -04007502 PROC(BIND_CONN_TO_SESSION,
7503 enc_bind_conn_to_session, dec_bind_conn_to_session),
Trond Myklebust66245532012-05-25 17:18:09 -04007504 PROC(DESTROY_CLIENTID, enc_destroy_clientid, dec_destroy_clientid),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007505#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506};
7507
Trond Myklebusta613fa12012-01-20 13:53:56 -05007508const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007510 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511 .procs = nfs4_procedures
7512};
7513
7514/*
7515 * Local variables:
7516 * c-basic-offset: 8
7517 * End:
7518 */