blob: 657483c34e2867c5c8dd3e1eda4046bfc61a0bbc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4xdr.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
Andy Adamson6c0195a2008-12-23 16:06:15 -050011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/param.h>
39#include <linux/time.h>
40#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/in.h>
44#include <linux/pagemap.h>
45#include <linux/proc_fs.h>
46#include <linux/kdev_t.h>
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -050047#include <linux/module.h>
48#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/sunrpc/clnt.h>
Alexandros Batsakis2449ea22009-12-05 13:36:55 -050050#include <linux/sunrpc/msg_prot.h>
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +000051#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/nfs.h>
53#include <linux/nfs4.h>
54#include <linux/nfs_fs.h>
55#include <linux/nfs_idmap.h>
Chuck Leverf0920752012-05-21 22:45:41 -040056
Trond Myklebust4ce79712005-06-22 17:16:21 +000057#include "nfs4_fs.h"
Alexandros Batsakis4882ef72009-12-05 13:30:21 -050058#include "internal.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040059#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040060#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define NFSDBG_FACILITY NFSDBG_XDR
63
64/* Mapping from NFS error code to "errno" error code. */
65#define errno_NFSERR_IO EIO
66
David Howells0a8ea432006-08-22 20:06:08 -040067static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
70#ifdef DEBUG
71#define NFS4_MAXTAGLEN 20
72#else
73#define NFS4_MAXTAGLEN 0
74#endif
75
Andy Adamson6c0195a2008-12-23 16:06:15 -050076/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040077 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Trond Myklebust95b72eb2012-04-20 19:24:51 -040079#define open_owner_id_maxsz (1 + 2 + 1 + 1 + 2)
Trond Myklebustd035c362010-12-21 10:45:27 -050080#define lock_owner_id_maxsz (1 + 1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040081#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
83#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
84#define op_encode_hdr_maxsz (1)
85#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040086#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
87#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
88#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
89#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
91 (NFS4_FHSIZE >> 2))
92#define decode_putfh_maxsz (op_decode_hdr_maxsz)
93#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
94#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
95#define encode_getfh_maxsz (op_encode_hdr_maxsz)
96#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
97 ((3+NFS4_FHSIZE) >> 2))
Andy Adamsone5012d12011-07-11 17:17:42 -040098#define nfs4_fattr_bitmap_maxsz 4
J. Bruce Fields96928202005-06-22 17:16:22 +000099#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
101#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400102#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
103#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Andy Adamson88034c32012-05-23 05:02:34 -0400104/* We support only one layout type per file system */
105#define decode_mdsthreshold_maxsz (1 + 1 + nfs4_fattr_bitmap_maxsz + 1 + 8)
J. Bruce Fields96928202005-06-22 17:16:22 +0000106/* This is based on getfattr, which uses the most attributes: */
107#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Andy Adamson88034c32012-05-23 05:02:34 -0400108 3 + 3 + 3 + nfs4_owner_maxsz + \
109 nfs4_group_maxsz + decode_mdsthreshold_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000110#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
111 nfs4_fattr_value_maxsz)
112#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400113#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
114 1 + 2 + 1 + \
115 nfs4_owner_maxsz + \
116 nfs4_group_maxsz + \
117 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define encode_savefh_maxsz (op_encode_hdr_maxsz)
119#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400120#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
121#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200122#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Fred Isamandae100c2011-07-30 20:52:37 -0400123/* The 5 accounts for the PNFS attributes, and assumes that at most three
124 * layout types will be returned.
125 */
126#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
127 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
129#define decode_renew_maxsz (op_decode_hdr_maxsz)
130#define encode_setclientid_maxsz \
131 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500132 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
133 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
134 1 /* sc_prog */ + \
135 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
136 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
137 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define decode_setclientid_maxsz \
139 (op_decode_hdr_maxsz + \
140 2 + \
141 1024) /* large value for CLID_INUSE */
142#define encode_setclientid_confirm_maxsz \
143 (op_encode_hdr_maxsz + \
144 3 + (NFS4_VERIFIER_SIZE >> 2))
145#define decode_setclientid_confirm_maxsz \
146 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400147#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
148#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400149#define encode_share_access_maxsz \
150 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500151#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400152#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
153#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
154#define encode_open_maxsz (op_encode_hdr_maxsz + \
155 2 + encode_share_access_maxsz + 2 + \
156 open_owner_id_maxsz + \
157 encode_opentype_maxsz + \
158 encode_claim_null_maxsz)
159#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400160#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400161 decode_ace_maxsz)
162#define decode_change_info_maxsz (5)
163#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400164 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400165 decode_change_info_maxsz + 1 + \
166 nfs4_fattr_bitmap_maxsz + \
167 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400168#define encode_open_confirm_maxsz \
169 (op_encode_hdr_maxsz + \
170 encode_stateid_maxsz + 1)
171#define decode_open_confirm_maxsz \
172 (op_decode_hdr_maxsz + \
173 decode_stateid_maxsz)
174#define encode_open_downgrade_maxsz \
175 (op_encode_hdr_maxsz + \
176 encode_stateid_maxsz + 1 + \
177 encode_share_access_maxsz)
178#define decode_open_downgrade_maxsz \
179 (op_decode_hdr_maxsz + \
180 decode_stateid_maxsz)
181#define encode_close_maxsz (op_encode_hdr_maxsz + \
182 1 + encode_stateid_maxsz)
183#define decode_close_maxsz (op_decode_hdr_maxsz + \
184 decode_stateid_maxsz)
185#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
186 encode_stateid_maxsz + \
187 encode_attrs_maxsz)
188#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
189 nfs4_fattr_bitmap_maxsz)
190#define encode_read_maxsz (op_encode_hdr_maxsz + \
191 encode_stateid_maxsz + 3)
192#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
193#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
194 2 + encode_verifier_maxsz + 5)
195#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
196 decode_verifier_maxsz)
197#define encode_readlink_maxsz (op_encode_hdr_maxsz)
198#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
199#define encode_write_maxsz (op_encode_hdr_maxsz + \
200 encode_stateid_maxsz + 4)
201#define decode_write_maxsz (op_decode_hdr_maxsz + \
202 2 + decode_verifier_maxsz)
203#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
204#define decode_commit_maxsz (op_decode_hdr_maxsz + \
205 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define encode_remove_maxsz (op_encode_hdr_maxsz + \
207 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400208#define decode_remove_maxsz (op_decode_hdr_maxsz + \
209 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define encode_rename_maxsz (op_encode_hdr_maxsz + \
211 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400212#define decode_rename_maxsz (op_decode_hdr_maxsz + \
213 decode_change_info_maxsz + \
214 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#define encode_link_maxsz (op_encode_hdr_maxsz + \
216 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400217#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400218#define encode_lockowner_maxsz (7)
Trond Myklebust9104a552007-07-17 21:52:42 -0400219#define encode_lock_maxsz (op_encode_hdr_maxsz + \
220 7 + \
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400221 1 + encode_stateid_maxsz + 1 + \
222 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400223#define decode_lock_denied_maxsz \
224 (8 + decode_lockowner_maxsz)
225#define decode_lock_maxsz (op_decode_hdr_maxsz + \
226 decode_lock_denied_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400227#define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
228 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400229#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
230 decode_lock_denied_maxsz)
231#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
232 encode_stateid_maxsz + \
233 4)
234#define decode_locku_maxsz (op_decode_hdr_maxsz + \
235 decode_stateid_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400236#define encode_release_lockowner_maxsz \
237 (op_encode_hdr_maxsz + \
238 encode_lockowner_maxsz)
239#define decode_release_lockowner_maxsz \
240 (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400241#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
242#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
244 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400245 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000246 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
248#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400249 1 + 2 + nfs4_name_maxsz + \
250 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400251#define decode_create_maxsz (op_decode_hdr_maxsz + \
252 decode_change_info_maxsz + \
253 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400254#define encode_statfs_maxsz (encode_getattr_maxsz)
255#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
257#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400258#define encode_getacl_maxsz (encode_getattr_maxsz)
259#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
260 nfs4_fattr_bitmap_maxsz + 1)
261#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
262 encode_stateid_maxsz + 3)
263#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400264#define encode_fs_locations_maxsz \
265 (encode_getattr_maxsz)
266#define decode_fs_locations_maxsz \
267 (0)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000268#define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
Bryan Schumaker1650add2011-06-02 15:07:35 -0400269#define decode_secinfo_maxsz (op_decode_hdr_maxsz + 1 + ((NFS_MAX_SECFLAVORS * (16 + GSS_OID_MAX_LEN)) / 4))
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400270
271#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400272#define NFS4_MAX_MACHINE_NAME_LEN (64)
273
Benny Halevy99fe60d2009-04-01 09:22:29 -0400274#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
275 encode_verifier_maxsz + \
276 1 /* co_ownerid.len */ + \
277 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
278 1 /* flags */ + \
279 1 /* spa_how */ + \
280 0 /* SP4_NONE (for now) */ + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500281 1 /* implementation id array of size 1 */ + \
282 1 /* nii_domain */ + \
283 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
284 1 /* nii_name */ + \
285 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
286 3 /* nii_date */)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400287#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
288 2 /* eir_clientid */ + \
289 1 /* eir_sequenceid */ + \
290 1 /* eir_flags */ + \
291 1 /* spr_how */ + \
292 0 /* SP4_NONE (for now) */ + \
293 2 /* eir_server_owner.so_minor_id */ + \
294 /* eir_server_owner.so_major_id<> */ \
295 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
296 /* eir_server_scope<> */ \
297 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
298 1 /* eir_server_impl_id array length */ + \
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500299 1 /* nii_domain */ + \
300 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
301 1 /* nii_name */ + \
302 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
303 3 /* nii_date */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400304#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
305#define decode_channel_attrs_maxsz (6 + \
306 1 /* ca_rdma_ird.len */ + \
307 1 /* ca_rdma_ird */)
308#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
309 2 /* csa_clientid */ + \
310 1 /* csa_sequence */ + \
311 1 /* csa_flags */ + \
312 encode_channel_attrs_maxsz + \
313 encode_channel_attrs_maxsz + \
314 1 /* csa_cb_program */ + \
315 1 /* csa_sec_parms.len (1) */ + \
316 1 /* cb_secflavor (AUTH_SYS) */ + \
317 1 /* stamp */ + \
318 1 /* machinename.len */ + \
319 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
320 1 /* uid */ + \
321 1 /* gid */ + \
322 1 /* gids.len (0) */)
323#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
324 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
325 1 /* csr_sequence */ + \
326 1 /* csr_flags */ + \
327 decode_channel_attrs_maxsz + \
328 decode_channel_attrs_maxsz)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400329#define encode_bind_conn_to_session_maxsz (op_encode_hdr_maxsz + \
330 /* bctsa_sessid */ \
331 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
332 1 /* bctsa_dir */ + \
333 1 /* bctsa_use_conn_in_rdma_mode */)
334#define decode_bind_conn_to_session_maxsz (op_decode_hdr_maxsz + \
335 /* bctsr_sessid */ \
336 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
337 1 /* bctsr_dir */ + \
338 1 /* bctsr_use_conn_in_rdma_mode */)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400339#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
340#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400341#define encode_destroy_clientid_maxsz (op_encode_hdr_maxsz + 2)
342#define decode_destroy_clientid_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400343#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
344 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
345#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
346 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500347#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
348#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400349#define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
350 encode_verifier_maxsz)
351#define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
352 2 /* nfs_cookie4 gdlr_cookie */ + \
353 decode_verifier_maxsz \
354 /* verifier4 gdlr_verifier */ + \
355 1 /* gdlr_deviceid_list count */ + \
356 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
357 NFS4_DEVICEID4_SIZE) \
358 /* gdlr_deviceid_list */ + \
359 1 /* bool gdlr_eof */)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400360#define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
361 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
362#define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
363 1 /* layout type */ + \
364 1 /* opaque devaddr4 length */ + \
365 /* devaddr4 payload is read into page */ \
366 1 /* notification bitmap length */ + \
367 1 /* notification bitmap */)
368#define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
369 encode_stateid_maxsz)
370#define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
371 decode_stateid_maxsz + \
372 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
Andy Adamson863a3c62011-03-23 13:27:54 +0000373#define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
374 2 /* offset */ + \
375 2 /* length */ + \
376 1 /* reclaim */ + \
377 encode_stateid_maxsz + \
378 1 /* new offset (true) */ + \
379 2 /* last byte written */ + \
380 1 /* nt_timechanged (false) */ + \
381 1 /* layoutupdate4 layout type */ + \
382 1 /* NULL filelayout layoutupdate4 payload */)
383#define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
Benny Halevycbe82602011-05-22 19:52:37 +0300384#define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
385 encode_stateid_maxsz + \
386 1 /* FIXME: opaque lrf_body always empty at the moment */)
387#define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
388 1 + decode_stateid_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400389#define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
390#define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
Bryan Schumaker7d974792011-06-02 14:59:08 -0400391#define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
392 XDR_QUADLEN(NFS4_STATEID_SIZE))
393#define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400394#define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
395 XDR_QUADLEN(NFS4_STATEID_SIZE))
396#define decode_free_stateid_maxsz (op_decode_hdr_maxsz + 1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400397#else /* CONFIG_NFS_V4_1 */
398#define encode_sequence_maxsz 0
399#define decode_sequence_maxsz 0
400#endif /* CONFIG_NFS_V4_1 */
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
403#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
404#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400405 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400407 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400409 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400411 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400413 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400415 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400417 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400419 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400421 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400423 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400425 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400427 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400429 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400431 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400432 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400434 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400436 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400437 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400439 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 encode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400441 encode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400443 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 decode_putfh_maxsz + \
Trond Myklebust85827152012-04-29 10:44:42 -0400445 decode_commit_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400447 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400448 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400449 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400450 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400451 encode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400452 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400454 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400455 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400456 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400457 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400458 decode_getfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400459 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400460#define NFS4_enc_open_confirm_sz \
461 (compound_encode_hdr_maxsz + \
462 encode_putfh_maxsz + \
463 encode_open_confirm_maxsz)
464#define NFS4_dec_open_confirm_sz \
465 (compound_decode_hdr_maxsz + \
466 decode_putfh_maxsz + \
467 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400469 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400471 encode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400472 encode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400473 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400475 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400477 decode_open_maxsz + \
Weston Andros Adamson6168f622012-09-10 14:00:46 -0400478 decode_access_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400479 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#define NFS4_enc_open_downgrade_sz \
481 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400482 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400483 encode_putfh_maxsz + \
484 encode_open_downgrade_maxsz + \
485 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#define NFS4_dec_open_downgrade_sz \
487 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400488 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400489 decode_putfh_maxsz + \
490 decode_open_downgrade_maxsz + \
491 decode_getattr_maxsz)
492#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400493 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400494 encode_putfh_maxsz + \
495 encode_close_maxsz + \
496 encode_getattr_maxsz)
497#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400498 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400499 decode_putfh_maxsz + \
500 decode_close_maxsz + \
501 decode_getattr_maxsz)
502#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400503 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400504 encode_putfh_maxsz + \
505 encode_setattr_maxsz + \
506 encode_getattr_maxsz)
507#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400508 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400509 decode_putfh_maxsz + \
510 decode_setattr_maxsz + \
511 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400513 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 encode_putfh_maxsz + \
515 encode_fsinfo_maxsz)
516#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400517 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 decode_putfh_maxsz + \
519 decode_fsinfo_maxsz)
520#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
521 encode_renew_maxsz)
522#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
523 decode_renew_maxsz)
524#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
525 encode_setclientid_maxsz)
526#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
527 decode_setclientid_maxsz)
528#define NFS4_enc_setclientid_confirm_sz \
529 (compound_encode_hdr_maxsz + \
530 encode_setclientid_confirm_maxsz + \
531 encode_putrootfh_maxsz + \
532 encode_fsinfo_maxsz)
533#define NFS4_dec_setclientid_confirm_sz \
534 (compound_decode_hdr_maxsz + \
535 decode_setclientid_confirm_maxsz + \
536 decode_putrootfh_maxsz + \
537 decode_fsinfo_maxsz)
538#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400539 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400541 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400543 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400545 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400547 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400549 encode_lockt_maxsz)
550#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400551 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400552 decode_putfh_maxsz + \
553 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400555 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400557 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400559 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400561 decode_locku_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400562#define NFS4_enc_release_lockowner_sz \
563 (compound_encode_hdr_maxsz + \
564 encode_lockowner_maxsz)
565#define NFS4_dec_release_lockowner_sz \
566 (compound_decode_hdr_maxsz + \
567 decode_lockowner_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400569 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400571 encode_access_maxsz + \
572 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#define NFS4_dec_access_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 Myklebust76b32992007-08-10 17:45:11 -0400576 decode_access_maxsz + \
577 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400579 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 encode_putfh_maxsz + \
581 encode_getattr_maxsz)
582#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400583 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 decode_putfh_maxsz + \
585 decode_getattr_maxsz)
586#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400587 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 encode_putfh_maxsz + \
589 encode_lookup_maxsz + \
590 encode_getattr_maxsz + \
591 encode_getfh_maxsz)
592#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400593 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400595 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 decode_getattr_maxsz + \
597 decode_getfh_maxsz)
598#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400599 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 encode_putrootfh_maxsz + \
601 encode_getattr_maxsz + \
602 encode_getfh_maxsz)
603#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400604 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 decode_putrootfh_maxsz + \
606 decode_getattr_maxsz + \
607 decode_getfh_maxsz)
608#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400609 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400611 encode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400613 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400615 decode_remove_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400617 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 encode_putfh_maxsz + \
619 encode_savefh_maxsz + \
620 encode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400621 encode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400623 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 decode_putfh_maxsz + \
625 decode_savefh_maxsz + \
626 decode_putfh_maxsz + \
Trond Myklebust778d2812012-04-27 13:48:19 -0400627 decode_rename_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400629 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 encode_putfh_maxsz + \
631 encode_savefh_maxsz + \
632 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400633 encode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400634 encode_restorefh_maxsz + \
Trond Myklebusta9f69912012-04-27 13:48:17 -0400635 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400637 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 decode_putfh_maxsz + \
639 decode_savefh_maxsz + \
640 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400641 decode_link_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400642 decode_restorefh_maxsz + \
643 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400645 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 encode_putfh_maxsz + \
647 encode_symlink_maxsz + \
648 encode_getattr_maxsz + \
649 encode_getfh_maxsz)
650#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400651 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 decode_putfh_maxsz + \
653 decode_symlink_maxsz + \
654 decode_getattr_maxsz + \
655 decode_getfh_maxsz)
656#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400657 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 encode_putfh_maxsz + \
659 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400660 encode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400661 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400663 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 decode_putfh_maxsz + \
665 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400666 decode_getfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400667 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400669 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 encode_putfh_maxsz + \
671 encode_getattr_maxsz)
672#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400673 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 decode_putfh_maxsz + \
675 decode_getattr_maxsz)
676#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400677 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400679 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400681 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400683 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400685 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800686 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 encode_getattr_maxsz)
688#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400689 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800690 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 decode_getattr_maxsz)
692#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400693 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100695 encode_delegreturn_maxsz + \
696 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400698 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100699 decode_delegreturn_maxsz + \
700 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000701#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400702 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000703 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400704 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000705#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400706 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000707 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400708 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000709#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400710 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000711 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400712 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000713#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400714 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000715 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400716 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400717#define NFS4_enc_fs_locations_sz \
718 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400719 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400720 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400721 encode_lookup_maxsz + \
722 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400723#define NFS4_dec_fs_locations_sz \
724 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400725 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400726 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400727 decode_lookup_maxsz + \
728 decode_fs_locations_maxsz)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000729#define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
730 encode_sequence_maxsz + \
731 encode_putfh_maxsz + \
732 encode_secinfo_maxsz)
733#define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
734 decode_sequence_maxsz + \
735 decode_putfh_maxsz + \
736 decode_secinfo_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400737#if defined(CONFIG_NFS_V4_1)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -0400738#define NFS4_enc_bind_conn_to_session_sz \
739 (compound_encode_hdr_maxsz + \
740 encode_bind_conn_to_session_maxsz)
741#define NFS4_dec_bind_conn_to_session_sz \
742 (compound_decode_hdr_maxsz + \
743 decode_bind_conn_to_session_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400744#define NFS4_enc_exchange_id_sz \
745 (compound_encode_hdr_maxsz + \
746 encode_exchange_id_maxsz)
747#define NFS4_dec_exchange_id_sz \
748 (compound_decode_hdr_maxsz + \
749 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400750#define NFS4_enc_create_session_sz \
751 (compound_encode_hdr_maxsz + \
752 encode_create_session_maxsz)
753#define NFS4_dec_create_session_sz \
754 (compound_decode_hdr_maxsz + \
755 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400756#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
757 encode_destroy_session_maxsz)
758#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
759 decode_destroy_session_maxsz)
Trond Myklebust66245532012-05-25 17:18:09 -0400760#define NFS4_enc_destroy_clientid_sz (compound_encode_hdr_maxsz + \
761 encode_destroy_clientid_maxsz)
762#define NFS4_dec_destroy_clientid_sz (compound_decode_hdr_maxsz + \
763 decode_destroy_clientid_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400764#define NFS4_enc_sequence_sz \
765 (compound_decode_hdr_maxsz + \
766 encode_sequence_maxsz)
767#define NFS4_dec_sequence_sz \
768 (compound_decode_hdr_maxsz + \
769 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400770#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
771 encode_sequence_maxsz + \
772 encode_putrootfh_maxsz + \
773 encode_fsinfo_maxsz)
774#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
775 decode_sequence_maxsz + \
776 decode_putrootfh_maxsz + \
777 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500778#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
779 encode_sequence_maxsz + \
780 encode_reclaim_complete_maxsz)
781#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
782 decode_sequence_maxsz + \
783 decode_reclaim_complete_maxsz)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400784#define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
785 encode_sequence_maxsz + \
786 encode_putfh_maxsz + \
787 encode_getdevicelist_maxsz)
788#define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
789 decode_sequence_maxsz + \
790 decode_putfh_maxsz + \
791 decode_getdevicelist_maxsz)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400792#define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
793 encode_sequence_maxsz +\
794 encode_getdeviceinfo_maxsz)
795#define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
796 decode_sequence_maxsz + \
797 decode_getdeviceinfo_maxsz)
798#define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
799 encode_sequence_maxsz + \
800 encode_putfh_maxsz + \
801 encode_layoutget_maxsz)
802#define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
803 decode_sequence_maxsz + \
804 decode_putfh_maxsz + \
805 decode_layoutget_maxsz)
Andy Adamson863a3c62011-03-23 13:27:54 +0000806#define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
807 encode_sequence_maxsz +\
808 encode_putfh_maxsz + \
809 encode_layoutcommit_maxsz + \
810 encode_getattr_maxsz)
811#define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
812 decode_sequence_maxsz + \
813 decode_putfh_maxsz + \
814 decode_layoutcommit_maxsz + \
815 decode_getattr_maxsz)
Benny Halevycbe82602011-05-22 19:52:37 +0300816#define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
817 encode_sequence_maxsz + \
818 encode_putfh_maxsz + \
819 encode_layoutreturn_maxsz)
820#define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
821 decode_sequence_maxsz + \
822 decode_putfh_maxsz + \
823 decode_layoutreturn_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400824#define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
825 encode_sequence_maxsz + \
826 encode_putrootfh_maxsz +\
827 encode_secinfo_no_name_maxsz)
828#define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
829 decode_sequence_maxsz + \
830 decode_putrootfh_maxsz + \
831 decode_secinfo_no_name_maxsz)
Bryan Schumaker7d974792011-06-02 14:59:08 -0400832#define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
833 encode_sequence_maxsz + \
834 encode_test_stateid_maxsz)
835#define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
836 decode_sequence_maxsz + \
837 decode_test_stateid_maxsz)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400838#define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
839 encode_sequence_maxsz + \
840 encode_free_stateid_maxsz)
841#define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
842 decode_sequence_maxsz + \
843 decode_free_stateid_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500844
845const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
846 compound_encode_hdr_maxsz +
847 encode_sequence_maxsz +
848 encode_putfh_maxsz +
849 encode_getattr_maxsz) *
850 XDR_UNIT);
851
852const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
853 compound_decode_hdr_maxsz +
854 decode_sequence_maxsz +
855 decode_putfh_maxsz) *
856 XDR_UNIT);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400857#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Trond Myklebustbca79472009-03-11 14:10:26 -0400859static const umode_t nfs_type2fmt[] = {
860 [NF4BAD] = 0,
861 [NF4REG] = S_IFREG,
862 [NF4DIR] = S_IFDIR,
863 [NF4BLK] = S_IFBLK,
864 [NF4CHR] = S_IFCHR,
865 [NF4LNK] = S_IFLNK,
866 [NF4SOCK] = S_IFSOCK,
867 [NF4FIFO] = S_IFIFO,
868 [NF4ATTRDIR] = 0,
869 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870};
871
872struct compound_hdr {
873 int32_t status;
874 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500875 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 uint32_t taglen;
877 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400878 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400879 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880};
881
Benny Halevy13c65ce2009-08-14 17:19:25 +0300882static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
883{
884 __be32 *p = xdr_reserve_space(xdr, nbytes);
885 BUG_ON(!p);
886 return p;
887}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Trond Myklebustcb17e552012-03-04 18:13:56 -0500889static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
890{
891 __be32 *p;
892
893 p = xdr_reserve_space(xdr, len);
894 xdr_encode_opaque_fixed(p, buf, len);
895}
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
898{
Al Viro8687b632006-10-19 23:28:48 -0700899 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500901 p = reserve_space(xdr, 4 + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 xdr_encode_opaque(p, str, len);
903}
904
Trond Myklebust4ade9822012-03-04 18:13:57 -0500905static void encode_uint32(struct xdr_stream *xdr, u32 n)
906{
907 __be32 *p;
908
909 p = reserve_space(xdr, 4);
910 *p = cpu_to_be32(n);
911}
912
Trond Myklebustff2eb682012-03-05 11:40:12 -0500913static void encode_uint64(struct xdr_stream *xdr, u64 n)
914{
915 __be32 *p;
916
917 p = reserve_space(xdr, 8);
918 xdr_encode_hyper(p, n);
919}
920
Trond Myklebust4ade9822012-03-04 18:13:57 -0500921static void encode_nfs4_seqid(struct xdr_stream *xdr,
922 const struct nfs_seqid *seqid)
923{
924 encode_uint32(xdr, seqid->sequence->counter);
925}
926
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400927static void encode_compound_hdr(struct xdr_stream *xdr,
928 struct rpc_rqst *req,
929 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Al Viro8687b632006-10-19 23:28:48 -0700931 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400932 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400933
934 /* initialize running count of expected bytes in reply.
935 * NOTE: the replied tag SHOULD be the same is the one sent,
936 * but this is not required as a MUST for the server to do so. */
937 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500940 encode_string(xdr, hdr->taglen, hdr->tag);
941 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300942 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500943 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300944 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500945}
946
Trond Myklebustab19b482012-03-04 18:13:57 -0500947static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
948 uint32_t replen,
949 struct compound_hdr *hdr)
950{
951 encode_uint32(xdr, op);
952 hdr->nops++;
953 hdr->replen += replen;
954}
955
Andy Adamsond0179312008-12-23 16:06:17 -0500956static void encode_nops(struct compound_hdr *hdr)
957{
Andy Adamsonfc931582009-04-01 09:22:31 -0400958 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500959 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500962static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
963{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500964 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
968{
Trond Myklebustcb17e552012-03-04 18:13:56 -0500969 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500972static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
974 char owner_name[IDMAP_NAMESZ];
975 char owner_group[IDMAP_NAMESZ];
976 int owner_namelen = 0;
977 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700978 __be32 *p;
979 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int len;
981 uint32_t bmval0 = 0;
982 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 /*
985 * We reserve enough space to write the entire attribute buffer at once.
986 * In the worst-case, this would be
987 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
988 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000989 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 */
991 len = 16;
992
993 /* Sigh */
994 if (iap->ia_valid & ATTR_SIZE)
995 len += 8;
996 if (iap->ia_valid & ATTR_MODE)
997 len += 4;
998 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800999 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001001 dprintk("nfs: couldn't resolve uid %d to string\n",
1002 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /* XXX */
1004 strcpy(owner_name, "nobody");
1005 owner_namelen = sizeof("nobody") - 1;
1006 /* goto out; */
1007 }
1008 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1009 }
1010 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001011 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001013 dprintk("nfs: couldn't resolve gid %d to string\n",
1014 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 strcpy(owner_group, "nobody");
1016 owner_grouplen = sizeof("nobody") - 1;
1017 /* goto out; */
1018 }
1019 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1020 }
1021 if (iap->ia_valid & ATTR_ATIME_SET)
1022 len += 16;
1023 else if (iap->ia_valid & ATTR_ATIME)
1024 len += 4;
1025 if (iap->ia_valid & ATTR_MTIME_SET)
1026 len += 16;
1027 else if (iap->ia_valid & ATTR_MTIME)
1028 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001029 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /*
1032 * We write the bitmap length now, but leave the bitmap and the attribute
1033 * buffer length to be backfilled at the end of this routine.
1034 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001035 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 q = p;
1037 p += 3;
1038
1039 if (iap->ia_valid & ATTR_SIZE) {
1040 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +03001041 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 if (iap->ia_valid & ATTR_MODE) {
1044 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001045 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047 if (iap->ia_valid & ATTR_UID) {
1048 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +03001049 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 if (iap->ia_valid & ATTR_GID) {
1052 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +03001053 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 if (iap->ia_valid & ATTR_ATIME_SET) {
1056 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001057 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1058 *p++ = cpu_to_be32(0);
Trond Myklebustd3f6baa2010-06-22 08:52:39 -04001059 *p++ = cpu_to_be32(iap->ia_atime.tv_sec);
1060 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062 else if (iap->ia_valid & ATTR_ATIME) {
1063 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001064 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 if (iap->ia_valid & ATTR_MTIME_SET) {
1067 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001068 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1069 *p++ = cpu_to_be32(0);
1070 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
1071 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 else if (iap->ia_valid & ATTR_MTIME) {
1074 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001075 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /*
1079 * Now we backfill the bitmap and the attribute buffer length.
1080 */
1081 if (len != ((char *)p - (char *)q) + 4) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -05001082 printk(KERN_ERR "NFS: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 len, ((char *)p - (char *)q) + 4);
1084 BUG();
1085 }
1086 len = (char *)p - (char *)q - 12;
1087 *q++ = htonl(bmval0);
1088 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +03001089 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001094static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001096 encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1097 encode_uint32(xdr, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001100static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Trond Myklebustab19b482012-03-04 18:13:57 -05001102 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001103 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001104 encode_nfs4_stateid(xdr, arg->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Fred Isaman0b7c0152012-04-20 14:47:39 -04001107static void encode_commit(struct xdr_stream *xdr, const struct nfs_commitargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Al Viro8687b632006-10-19 23:28:48 -07001109 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001110
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001111 encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1112 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001113 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001114 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001117static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Al Viro8687b632006-10-19 23:28:48 -07001119 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001120
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001121 encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1122 encode_uint32(xdr, create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 switch (create->ftype) {
1125 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001126 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001127 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -04001128 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
1130
1131 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001132 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001133 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +03001134 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136
1137 default:
1138 break;
1139 }
1140
Benny Halevy811652b2009-08-14 17:19:34 +03001141 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001142 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001145static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Andy Adamson05d564f2008-12-23 16:06:15 -05001147 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001149 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1150 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001151 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001152 *p = cpu_to_be32(bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001155static 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 -07001156{
Andy Adamson05d564f2008-12-23 16:06:15 -05001157 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001159 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1160 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001161 *p++ = cpu_to_be32(2);
1162 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001163 *p = cpu_to_be32(bm1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Fred Isamandae100c2011-07-30 20:52:37 -04001166static void
1167encode_getattr_three(struct xdr_stream *xdr,
1168 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1169 struct compound_hdr *hdr)
1170{
1171 __be32 *p;
1172
Trond Myklebustab19b482012-03-04 18:13:57 -05001173 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
Fred Isamandae100c2011-07-30 20:52:37 -04001174 if (bm2) {
1175 p = reserve_space(xdr, 16);
1176 *p++ = cpu_to_be32(3);
1177 *p++ = cpu_to_be32(bm0);
1178 *p++ = cpu_to_be32(bm1);
1179 *p = cpu_to_be32(bm2);
1180 } else if (bm1) {
1181 p = reserve_space(xdr, 12);
1182 *p++ = cpu_to_be32(2);
1183 *p++ = cpu_to_be32(bm0);
1184 *p = cpu_to_be32(bm1);
1185 } else {
1186 p = reserve_space(xdr, 8);
1187 *p++ = cpu_to_be32(1);
1188 *p = cpu_to_be32(bm0);
1189 }
Fred Isamandae100c2011-07-30 20:52:37 -04001190}
1191
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001192static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001194 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1195 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Andy Adamson88034c32012-05-23 05:02:34 -04001198static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001199 const u32 *open_bitmap,
Andy Adamson88034c32012-05-23 05:02:34 -04001200 struct compound_hdr *hdr)
1201{
1202 encode_getattr_three(xdr,
Trond Myklebust1549210f2012-06-05 09:16:47 -04001203 bitmask[0] & open_bitmap[0],
1204 bitmask[1] & open_bitmap[1],
1205 bitmask[2] & open_bitmap[2],
Andy Adamson88034c32012-05-23 05:02:34 -04001206 hdr);
1207}
1208
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001209static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Fred Isamandae100c2011-07-30 20:52:37 -04001211 encode_getattr_three(xdr,
1212 bitmask[0] & nfs4_fsinfo_bitmap[0],
1213 bitmask[1] & nfs4_fsinfo_bitmap[1],
1214 bitmask[2] & nfs4_fsinfo_bitmap[2],
1215 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001218static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001219{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001220 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1221 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001222}
1223
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001224static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Trond Myklebustab19b482012-03-04 18:13:57 -05001226 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001229static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Trond Myklebustab19b482012-03-04 18:13:57 -05001231 encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001232 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001235static inline int nfs4_lock_type(struct file_lock *fl, int block)
1236{
Jeff Laytonf44106e2012-07-23 15:49:56 -04001237 if (fl->fl_type == F_RDLCK)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001238 return block ? NFS4_READW_LT : NFS4_READ_LT;
1239 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1240}
1241
1242static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1243{
1244 if (fl->fl_end == OFFSET_MAX)
1245 return ~(uint64_t)0;
1246 return fl->fl_end - fl->fl_start + 1;
1247}
1248
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001249static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1250{
1251 __be32 *p;
1252
Trond Myklebustd035c362010-12-21 10:45:27 -05001253 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001254 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001255 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001256 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001257 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001258 xdr_encode_hyper(p, lowner->id);
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/*
1262 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1263 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1264 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001265static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Al Viro8687b632006-10-19 23:28:48 -07001267 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001269 encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1270 p = reserve_space(xdr, 28);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001271 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1272 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001273 p = xdr_encode_hyper(p, args->fl->fl_start);
1274 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001275 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001276 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001277 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001278 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001279 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001280 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001283 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001284 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001288static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Al Viro8687b632006-10-19 23:28:48 -07001290 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001292 encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1293 p = reserve_space(xdr, 20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001294 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001295 p = xdr_encode_hyper(p, args->fl->fl_start);
1296 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001297 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001300static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Al Viro8687b632006-10-19 23:28:48 -07001302 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001304 encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1305 encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
Trond Myklebust4ade9822012-03-04 18:13:57 -05001306 encode_nfs4_seqid(xdr, args->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001307 encode_nfs4_stateid(xdr, args->stateid);
1308 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001309 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001310 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001313static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1314{
Trond Myklebustab19b482012-03-04 18:13:57 -05001315 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001316 encode_lockowner(xdr, lowner);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001317}
1318
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001319static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Trond Myklebustab19b482012-03-04 18:13:57 -05001321 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001322 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001325static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Al Viro8687b632006-10-19 23:28:48 -07001327 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Benny Halevy13c65ce2009-08-14 17:19:25 +03001329 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001330 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001331 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001332 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001333 break;
1334 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001335 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001336 break;
1337 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001338 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001339 break;
1340 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001341 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Benny Halevy34558512009-08-14 17:19:30 +03001343 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
1346static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1347{
Al Viro8687b632006-10-19 23:28:48 -07001348 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /*
1350 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1351 * owner 4 = 32
1352 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001353 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001354 encode_share_access(xdr, arg->fmode);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001355 p = reserve_space(xdr, 36);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001356 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001357 *p++ = cpu_to_be32(24);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001358 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001359 *p++ = cpu_to_be32(arg->server->s_dev);
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001360 *p++ = cpu_to_be32(arg->id.uniquifier);
1361 xdr_encode_hyper(p, arg->id.create_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
1364static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1365{
Al Viro8687b632006-10-19 23:28:48 -07001366 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001367 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Benny Halevy13c65ce2009-08-14 17:19:25 +03001369 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001371 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001372 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001373 encode_attrs(xdr, arg->u.attrs, arg->server);
1374 break;
1375 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001376 clp = arg->server->nfs_client;
Trond Myklebusta4432342010-06-16 09:52:27 -04001377 if (clp->cl_mvops->minor_version > 0) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001378 if (nfs4_has_persistent_session(clp)) {
1379 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1380 encode_attrs(xdr, arg->u.attrs, arg->server);
1381 } else {
1382 struct iattr dummy;
1383
1384 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1385 encode_nfs4_verifier(xdr, &arg->u.verifier);
1386 dummy.ia_valid = 0;
1387 encode_attrs(xdr, &dummy, arg->server);
1388 }
1389 } else {
1390 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1391 encode_nfs4_verifier(xdr, &arg->u.verifier);
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394}
1395
1396static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1397{
Al Viro8687b632006-10-19 23:28:48 -07001398 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Benny Halevy13c65ce2009-08-14 17:19:25 +03001400 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001402 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001403 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001404 break;
1405 default:
1406 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001407 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001408 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410}
1411
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001412static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Al Viro8687b632006-10-19 23:28:48 -07001414 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Benny Halevy13c65ce2009-08-14 17:19:25 +03001416 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001418 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001419 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001420 break;
1421 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001422 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001423 break;
1424 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001425 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001426 break;
1427 default:
1428 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430}
1431
1432static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1433{
Al Viro8687b632006-10-19 23:28:48 -07001434 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Benny Halevy13c65ce2009-08-14 17:19:25 +03001436 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001437 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 encode_string(xdr, name->len, name->name);
1439}
1440
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001441static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Al Viro8687b632006-10-19 23:28:48 -07001443 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Benny Halevy13c65ce2009-08-14 17:19:25 +03001445 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001446 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 encode_delegation_type(xdr, type);
1448}
1449
1450static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1451{
Al Viro8687b632006-10-19 23:28:48 -07001452 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001454 p = reserve_space(xdr, 4);
1455 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1456 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 encode_string(xdr, name->len, name->name);
1458}
1459
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001460static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Trond Myklebustab19b482012-03-04 18:13:57 -05001462 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 encode_openhdr(xdr, arg);
1464 encode_opentype(xdr, arg);
1465 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001466 case NFS4_OPEN_CLAIM_NULL:
1467 encode_claim_null(xdr, arg->name);
1468 break;
1469 case NFS4_OPEN_CLAIM_PREVIOUS:
1470 encode_claim_previous(xdr, arg->u.delegation_type);
1471 break;
1472 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1473 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1474 break;
1475 default:
1476 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001480static 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 -07001481{
Trond Myklebustab19b482012-03-04 18:13:57 -05001482 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001483 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001484 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001487static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Trond Myklebustab19b482012-03-04 18:13:57 -05001489 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001490 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001491 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001492 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001495static void
Andy Adamsond0179312008-12-23 16:06:17 -05001496encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Trond Myklebustab19b482012-03-04 18:13:57 -05001498 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001499 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001502static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Trond Myklebustab19b482012-03-04 18:13:57 -05001504 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Trond Myklebust4fc87962012-03-08 17:42:01 -05001507static void encode_open_stateid(struct xdr_stream *xdr,
1508 const struct nfs_open_context *ctx,
1509 const struct nfs_lock_context *l_ctx,
1510 fmode_t fmode,
1511 int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (ctx->state != NULL) {
Trond Myklebust2a369152012-08-13 18:54:45 -04001516 const struct nfs_lockowner *lockowner = NULL;
1517
1518 if (l_ctx != NULL)
1519 lockowner = &l_ctx->lockowner;
Trond Myklebust4fc87962012-03-08 17:42:01 -05001520 nfs4_select_rw_stateid(&stateid, ctx->state,
Trond Myklebust2a369152012-08-13 18:54:45 -04001521 fmode, lockowner);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001522 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001523 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001524 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001526 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001529static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Al Viro8687b632006-10-19 23:28:48 -07001531 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Trond Myklebustab19b482012-03-04 18:13:57 -05001533 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001534 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001535 FMODE_READ, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Benny Halevy13c65ce2009-08-14 17:19:25 +03001537 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001538 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001539 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001542static 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 -07001543{
Trond Myklebust28331a42011-04-27 13:47:52 -04001544 uint32_t attrs[2] = {
1545 FATTR4_WORD0_RDATTR_ERROR,
1546 FATTR4_WORD1_MOUNTED_ON_FILEID,
1547 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001548 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001549 __be32 *p, verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001551 if (readdir->plus) {
1552 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001553 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001554 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1555 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1556 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1557 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001558 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001559 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001560 /* Use mounted_on_fileid only if the server supports it */
1561 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1562 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001563
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001564 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001565 encode_uint64(xdr, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001566 encode_nfs4_verifier(xdr, &readdir->verifier);
1567 p = reserve_space(xdr, 20);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001568 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001569 *p++ = cpu_to_be32(readdir->count);
1570 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001571
Benny Halevye75bc1c2009-08-14 17:18:54 +03001572 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001573 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Chuck Levercd937102012-03-02 17:14:31 -05001574 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03001575 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1576 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001577 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001578 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001579 attrs[0] & readdir->bitmask[0],
1580 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001583static 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 -07001584{
Trond Myklebustab19b482012-03-04 18:13:57 -05001585 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001588static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Trond Myklebustab19b482012-03-04 18:13:57 -05001590 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001591 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001594static 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 -07001595{
Trond Myklebustab19b482012-03-04 18:13:57 -05001596 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001597 encode_string(xdr, oldname->len, oldname->name);
1598 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
Chuck Leverbb4dae52012-03-01 17:01:48 -05001601static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1602 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001604 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001605 encode_uint64(xdr, clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001608static void
Andy Adamsond0179312008-12-23 16:06:17 -05001609encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001610{
Trond Myklebustab19b482012-03-04 18:13:57 -05001611 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001612}
1613
Chuck Lever9f06c712010-12-14 14:59:18 +00001614static void
Andy Adamsond0179312008-12-23 16:06:17 -05001615encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001616{
Al Viro8687b632006-10-19 23:28:48 -07001617 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001618
Trond Myklebustab19b482012-03-04 18:13:57 -05001619 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001620 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001621 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001622 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001623 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Chuck Lever9f06c712010-12-14 14:59:18 +00001624 BUG_ON(arg->acl_len % 4);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001625 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001626 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001627 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001628}
1629
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001630static void
Andy Adamsond0179312008-12-23 16:06:17 -05001631encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Trond Myklebustab19b482012-03-04 18:13:57 -05001633 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001636static 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 -07001637{
Trond Myklebustab19b482012-03-04 18:13:57 -05001638 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001639 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001640 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001643static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Al Viro8687b632006-10-19 23:28:48 -07001645 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Trond Myklebust70019512012-03-04 20:49:32 -05001647 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001648 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001651 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001652 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1654 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001655 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001656 *p = cpu_to_be32(setclientid->sc_cb_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001659static 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 -07001660{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001661 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1662 decode_setclientid_confirm_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001663 encode_uint64(xdr, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001664 encode_nfs4_verifier(xdr, &arg->confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001667static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Al Viro8687b632006-10-19 23:28:48 -07001669 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Trond Myklebustab19b482012-03-04 18:13:57 -05001671 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001672 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001673 FMODE_WRITE, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Benny Halevy13c65ce2009-08-14 17:19:25 +03001675 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001676 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001677 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001678 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001683static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Trond Myklebustab19b482012-03-04 18:13:57 -05001685 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001686 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001688
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001689static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1690{
Trond Myklebustab19b482012-03-04 18:13:57 -05001691 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001692 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001693}
1694
Benny Halevy99fe60d2009-04-01 09:22:29 -04001695#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001696/* NFSv4.1 operations */
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04001697static void encode_bind_conn_to_session(struct xdr_stream *xdr,
1698 struct nfs4_session *session,
1699 struct compound_hdr *hdr)
1700{
1701 __be32 *p;
1702
1703 encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
1704 decode_bind_conn_to_session_maxsz, hdr);
1705 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1706 p = xdr_reserve_space(xdr, 8);
1707 *p++ = cpu_to_be32(NFS4_CDFC4_BACK_OR_BOTH);
1708 *p = 0; /* use_conn_in_rdma_mode = False */
1709}
1710
Benny Halevy99fe60d2009-04-01 09:22:29 -04001711static void encode_exchange_id(struct xdr_stream *xdr,
1712 struct nfs41_exchange_id_args *args,
1713 struct compound_hdr *hdr)
1714{
1715 __be32 *p;
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001716 char impl_name[NFS4_OPAQUE_LIMIT];
1717 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001718
Trond Myklebust70019512012-03-04 20:49:32 -05001719 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001720 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001721
1722 encode_string(xdr, args->id_len, args->id);
1723
Benny Halevy13c65ce2009-08-14 17:19:25 +03001724 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001725 *p++ = cpu_to_be32(args->flags);
1726 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001727
1728 if (send_implementation_id &&
1729 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1730 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1731 <= NFS4_OPAQUE_LIMIT + 1)
1732 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1733 utsname()->sysname, utsname()->release,
1734 utsname()->version, utsname()->machine);
1735
1736 if (len > 0) {
1737 *p = cpu_to_be32(1); /* implementation id array length=1 */
1738
1739 encode_string(xdr,
1740 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1741 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1742 encode_string(xdr, len, impl_name);
1743 /* just send zeros for nii_date - the date is in nii_name */
1744 p = reserve_space(xdr, 12);
1745 p = xdr_encode_hyper(p, 0);
1746 *p = cpu_to_be32(0);
1747 } else
1748 *p = cpu_to_be32(0); /* implementation id array length=0 */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001749}
Andy Adamsonfc931582009-04-01 09:22:31 -04001750
1751static void encode_create_session(struct xdr_stream *xdr,
1752 struct nfs41_create_session_args *args,
1753 struct compound_hdr *hdr)
1754{
1755 __be32 *p;
1756 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1757 uint32_t len;
1758 struct nfs_client *clp = args->client;
Chuck Leverf0920752012-05-21 22:45:41 -04001759 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Mike Sager8e0d46e2009-12-17 12:06:26 -05001760 u32 max_resp_sz_cached;
1761
1762 /*
1763 * Assumes OPEN is the biggest non-idempotent compound.
1764 * 2 is the verifier.
1765 */
1766 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1767 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001768
Andy Adamsonfc931582009-04-01 09:22:31 -04001769 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1770 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001771
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001772 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1773 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
Andy Adamson114f64b2011-03-09 13:13:45 -05001774 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001775 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1776 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001777
Andy Adamsonfc931582009-04-01 09:22:31 -04001778 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001779 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001780 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1781 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001782 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001783 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1784 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1785 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001786
1787 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001788 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001789 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1790 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1791 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1792 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1793 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1794 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001795
Benny Halevye75bc1c2009-08-14 17:18:54 +03001796 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001797 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001798 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001799
1800 /* authsys_parms rfc1831 */
Chuck Leverf0920752012-05-21 22:45:41 -04001801 *p++ = (__be32)nn->boot_time.tv_nsec; /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001802 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001803 *p++ = cpu_to_be32(0); /* UID */
1804 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001805 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001806}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001807
1808static void encode_destroy_session(struct xdr_stream *xdr,
1809 struct nfs4_session *session,
1810 struct compound_hdr *hdr)
1811{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001812 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1813 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001814}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001815
Trond Myklebust66245532012-05-25 17:18:09 -04001816static void encode_destroy_clientid(struct xdr_stream *xdr,
1817 uint64_t clientid,
1818 struct compound_hdr *hdr)
1819{
1820 encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
1821 encode_uint64(xdr, clientid);
1822}
1823
Ricardo Labiaga180197532009-12-05 16:08:40 -05001824static void encode_reclaim_complete(struct xdr_stream *xdr,
1825 struct nfs41_reclaim_complete_args *args,
1826 struct compound_hdr *hdr)
1827{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001828 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1829 encode_uint32(xdr, args->one_fs);
Ricardo Labiaga180197532009-12-05 16:08:40 -05001830}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001831#endif /* CONFIG_NFS_V4_1 */
1832
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001833static void encode_sequence(struct xdr_stream *xdr,
1834 const struct nfs4_sequence_args *args,
1835 struct compound_hdr *hdr)
1836{
1837#if defined(CONFIG_NFS_V4_1)
1838 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001839 struct nfs4_slot_table *tp;
1840 struct nfs4_slot *slot;
1841 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001842
1843 if (!session)
1844 return;
1845
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001846 tp = &session->fc_slot_table;
1847
1848 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1849 slot = tp->slots + args->sa_slotid;
1850
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001851 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001852
1853 /*
1854 * Sessionid + seqid + slotid + max slotid + cache_this
1855 */
1856 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1857 "max_slotid=%d cache_this=%d\n",
1858 __func__,
1859 ((u32 *)session->sess_id.data)[0],
1860 ((u32 *)session->sess_id.data)[1],
1861 ((u32 *)session->sess_id.data)[2],
1862 ((u32 *)session->sess_id.data)[3],
1863 slot->seq_nr, args->sa_slotid,
1864 tp->highest_used_slotid, args->sa_cache_this);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001865 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001866 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001867 *p++ = cpu_to_be32(slot->seq_nr);
1868 *p++ = cpu_to_be32(args->sa_slotid);
1869 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001870 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001871#endif /* CONFIG_NFS_V4_1 */
1872}
1873
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001874#ifdef CONFIG_NFS_V4_1
1875static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001876encode_getdevicelist(struct xdr_stream *xdr,
1877 const struct nfs4_getdevicelist_args *args,
1878 struct compound_hdr *hdr)
1879{
1880 __be32 *p;
1881 nfs4_verifier dummy = {
1882 .data = "dummmmmy",
1883 };
1884
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001885 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1886 p = reserve_space(xdr, 16);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001887 *p++ = cpu_to_be32(args->layoutclass);
1888 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1889 xdr_encode_hyper(p, 0ULL); /* cookie */
1890 encode_nfs4_verifier(xdr, &dummy);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001891}
1892
1893static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001894encode_getdeviceinfo(struct xdr_stream *xdr,
1895 const struct nfs4_getdeviceinfo_args *args,
1896 struct compound_hdr *hdr)
1897{
1898 __be32 *p;
1899
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001900 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1901 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001902 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1903 NFS4_DEVICEID4_SIZE);
1904 *p++ = cpu_to_be32(args->pdev->layout_type);
1905 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
1906 *p++ = cpu_to_be32(0); /* bitmap length 0 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001907}
1908
1909static void
1910encode_layoutget(struct xdr_stream *xdr,
1911 const struct nfs4_layoutget_args *args,
1912 struct compound_hdr *hdr)
1913{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001914 __be32 *p;
1915
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001916 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1917 p = reserve_space(xdr, 36);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001918 *p++ = cpu_to_be32(0); /* Signal layout available */
1919 *p++ = cpu_to_be32(args->type);
1920 *p++ = cpu_to_be32(args->range.iomode);
1921 p = xdr_encode_hyper(p, args->range.offset);
1922 p = xdr_encode_hyper(p, args->range.length);
1923 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001924 encode_nfs4_stateid(xdr, &args->stateid);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001925 encode_uint32(xdr, args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001926
1927 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1928 __func__,
1929 args->type,
1930 args->range.iomode,
1931 (unsigned long)args->range.offset,
1932 (unsigned long)args->range.length,
1933 args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001934}
Andy Adamson863a3c62011-03-23 13:27:54 +00001935
1936static int
1937encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001938 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00001939 const struct nfs4_layoutcommit_args *args,
1940 struct compound_hdr *hdr)
1941{
1942 __be32 *p;
1943
1944 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1945 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1946
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001947 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
1948 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001949 /* Only whole file layouts */
1950 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04001951 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001952 *p = cpu_to_be32(0); /* reclaim */
1953 encode_nfs4_stateid(xdr, &args->stateid);
1954 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001955 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
1956 p = xdr_encode_hyper(p, args->lastbytewritten);
1957 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1958 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03001959
1960 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
1961 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1962 NFS_I(inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001963 else
1964 encode_uint32(xdr, 0); /* no layout-type payload */
Andy Adamson863a3c62011-03-23 13:27:54 +00001965
Andy Adamson863a3c62011-03-23 13:27:54 +00001966 return 0;
1967}
Benny Halevycbe82602011-05-22 19:52:37 +03001968
1969static void
1970encode_layoutreturn(struct xdr_stream *xdr,
1971 const struct nfs4_layoutreturn_args *args,
1972 struct compound_hdr *hdr)
1973{
1974 __be32 *p;
1975
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001976 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
1977 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001978 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
1979 *p++ = cpu_to_be32(args->layout_type);
1980 *p++ = cpu_to_be32(IOMODE_ANY);
1981 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001982 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001983 p = xdr_encode_hyper(p, 0);
1984 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
1985 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001986 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03001987 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03001988 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
1989 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
1990 NFS_I(args->inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001991 } else
1992 encode_uint32(xdr, 0);
Benny Halevycbe82602011-05-22 19:52:37 +03001993}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001994
1995static int
1996encode_secinfo_no_name(struct xdr_stream *xdr,
1997 const struct nfs41_secinfo_no_name_args *args,
1998 struct compound_hdr *hdr)
1999{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002000 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
2001 encode_uint32(xdr, args->style);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002002 return 0;
2003}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002004
2005static void encode_test_stateid(struct xdr_stream *xdr,
2006 struct nfs41_test_stateid_args *args,
2007 struct compound_hdr *hdr)
2008{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002009 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2010 encode_uint32(xdr, 1);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002011 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002012}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002013
2014static void encode_free_stateid(struct xdr_stream *xdr,
2015 struct nfs41_free_stateid_args *args,
2016 struct compound_hdr *hdr)
2017{
Trond Myklebustab19b482012-03-04 18:13:57 -05002018 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002019 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002020}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002021#endif /* CONFIG_NFS_V4_1 */
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023/*
2024 * END OF "GENERIC" ENCODE ROUTINES.
2025 */
2026
Benny Halevy66cc0422009-04-01 09:22:10 -04002027static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2028{
2029#if defined(CONFIG_NFS_V4_1)
2030 if (args->sa_session)
Trond Myklebusta4432342010-06-16 09:52:27 -04002031 return args->sa_session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002032#endif /* CONFIG_NFS_V4_1 */
2033 return 0;
2034}
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036/*
2037 * Encode an ACCESS request
2038 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002039static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2040 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002043 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Chuck Lever9f06c712010-12-14 14:59:18 +00002046 encode_compound_hdr(xdr, req, &hdr);
2047 encode_sequence(xdr, &args->seq_args, &hdr);
2048 encode_putfh(xdr, args->fh, &hdr);
2049 encode_access(xdr, args->access, &hdr);
2050 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002051 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
2054/*
2055 * Encode LOOKUP request
2056 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002057static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2058 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002061 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Chuck Lever9f06c712010-12-14 14:59:18 +00002064 encode_compound_hdr(xdr, req, &hdr);
2065 encode_sequence(xdr, &args->seq_args, &hdr);
2066 encode_putfh(xdr, args->dir_fh, &hdr);
2067 encode_lookup(xdr, args->name, &hdr);
2068 encode_getfh(xdr, &hdr);
2069 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002070 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
2073/*
2074 * Encode LOOKUP_ROOT request
2075 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002076static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2077 struct xdr_stream *xdr,
2078 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002081 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Chuck Lever9f06c712010-12-14 14:59:18 +00002084 encode_compound_hdr(xdr, req, &hdr);
2085 encode_sequence(xdr, &args->seq_args, &hdr);
2086 encode_putrootfh(xdr, &hdr);
2087 encode_getfh(xdr, &hdr);
2088 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002089 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
2092/*
2093 * Encode REMOVE request
2094 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002095static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2096 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002099 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Chuck Lever9f06c712010-12-14 14:59:18 +00002102 encode_compound_hdr(xdr, req, &hdr);
2103 encode_sequence(xdr, &args->seq_args, &hdr);
2104 encode_putfh(xdr, args->fh, &hdr);
2105 encode_remove(xdr, &args->name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002106 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
2109/*
2110 * Encode RENAME request
2111 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002112static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2113 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002116 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Chuck Lever9f06c712010-12-14 14:59:18 +00002119 encode_compound_hdr(xdr, req, &hdr);
2120 encode_sequence(xdr, &args->seq_args, &hdr);
2121 encode_putfh(xdr, args->old_dir, &hdr);
2122 encode_savefh(xdr, &hdr);
2123 encode_putfh(xdr, args->new_dir, &hdr);
2124 encode_rename(xdr, args->old_name, args->new_name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002125 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
2128/*
2129 * Encode LINK request
2130 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002131static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2132 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002135 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Chuck Lever9f06c712010-12-14 14:59:18 +00002138 encode_compound_hdr(xdr, req, &hdr);
2139 encode_sequence(xdr, &args->seq_args, &hdr);
2140 encode_putfh(xdr, args->fh, &hdr);
2141 encode_savefh(xdr, &hdr);
2142 encode_putfh(xdr, args->dir_fh, &hdr);
2143 encode_link(xdr, args->name, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002144 encode_restorefh(xdr, &hdr);
2145 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002146 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
2149/*
2150 * Encode CREATE request
2151 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002152static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2153 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002156 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Chuck Lever9f06c712010-12-14 14:59:18 +00002159 encode_compound_hdr(xdr, req, &hdr);
2160 encode_sequence(xdr, &args->seq_args, &hdr);
2161 encode_putfh(xdr, args->dir_fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002162 encode_create(xdr, args, &hdr);
2163 encode_getfh(xdr, &hdr);
2164 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002165 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
2168/*
2169 * Encode SYMLINK request
2170 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002171static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2172 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
Chuck Lever9f06c712010-12-14 14:59:18 +00002174 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
2177/*
2178 * Encode GETATTR request
2179 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002180static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2181 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002184 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Chuck Lever9f06c712010-12-14 14:59:18 +00002187 encode_compound_hdr(xdr, req, &hdr);
2188 encode_sequence(xdr, &args->seq_args, &hdr);
2189 encode_putfh(xdr, args->fh, &hdr);
2190 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002191 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
2194/*
2195 * Encode a CLOSE request
2196 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002197static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2198 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
Andy Adamson05d564f2008-12-23 16:06:15 -05002200 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002201 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002202 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Chuck Lever9f06c712010-12-14 14:59:18 +00002204 encode_compound_hdr(xdr, req, &hdr);
2205 encode_sequence(xdr, &args->seq_args, &hdr);
2206 encode_putfh(xdr, args->fh, &hdr);
2207 encode_close(xdr, args, &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 an OPEN request
2214 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002215static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2216 struct nfs_openargs *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->fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002225 encode_open(xdr, args, &hdr);
2226 encode_getfh(xdr, &hdr);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002227 encode_access(xdr, args->access, &hdr);
Trond Myklebust1549210f2012-06-05 09:16:47 -04002228 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002229 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
2232/*
2233 * Encode an OPEN_CONFIRM request
2234 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002235static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2236 struct xdr_stream *xdr,
2237 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002240 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Chuck Lever9f06c712010-12-14 14:59:18 +00002243 encode_compound_hdr(xdr, req, &hdr);
2244 encode_putfh(xdr, args->fh, &hdr);
2245 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002246 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
2249/*
2250 * Encode an OPEN request with no attributes.
2251 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002252static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2253 struct xdr_stream *xdr,
2254 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002257 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Chuck Lever9f06c712010-12-14 14:59:18 +00002260 encode_compound_hdr(xdr, req, &hdr);
2261 encode_sequence(xdr, &args->seq_args, &hdr);
2262 encode_putfh(xdr, args->fh, &hdr);
2263 encode_open(xdr, args, &hdr);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002264 encode_access(xdr, args->access, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002265 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002266 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267}
2268
2269/*
2270 * Encode an OPEN_DOWNGRADE request
2271 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002272static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2273 struct xdr_stream *xdr,
2274 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002277 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Chuck Lever9f06c712010-12-14 14:59:18 +00002280 encode_compound_hdr(xdr, req, &hdr);
2281 encode_sequence(xdr, &args->seq_args, &hdr);
2282 encode_putfh(xdr, args->fh, &hdr);
2283 encode_open_downgrade(xdr, args, &hdr);
2284 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002285 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
2288/*
2289 * Encode a LOCK request
2290 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002291static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2292 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002295 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Chuck Lever9f06c712010-12-14 14:59:18 +00002298 encode_compound_hdr(xdr, req, &hdr);
2299 encode_sequence(xdr, &args->seq_args, &hdr);
2300 encode_putfh(xdr, args->fh, &hdr);
2301 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002302 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
2305/*
2306 * Encode a LOCKT request
2307 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002308static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2309 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002312 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Chuck Lever9f06c712010-12-14 14:59:18 +00002315 encode_compound_hdr(xdr, req, &hdr);
2316 encode_sequence(xdr, &args->seq_args, &hdr);
2317 encode_putfh(xdr, args->fh, &hdr);
2318 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002319 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320}
2321
2322/*
2323 * Encode a LOCKU request
2324 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002325static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2326 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002329 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Chuck Lever9f06c712010-12-14 14:59:18 +00002332 encode_compound_hdr(xdr, req, &hdr);
2333 encode_sequence(xdr, &args->seq_args, &hdr);
2334 encode_putfh(xdr, args->fh, &hdr);
2335 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002336 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Chuck Lever9f06c712010-12-14 14:59:18 +00002339static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2340 struct xdr_stream *xdr,
2341 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002342{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002343 struct compound_hdr hdr = {
2344 .minorversion = 0,
2345 };
2346
Chuck Lever9f06c712010-12-14 14:59:18 +00002347 encode_compound_hdr(xdr, req, &hdr);
2348 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002349 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002350}
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352/*
2353 * Encode a READLINK request
2354 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002355static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2356 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002359 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Chuck Lever9f06c712010-12-14 14:59:18 +00002362 encode_compound_hdr(xdr, req, &hdr);
2363 encode_sequence(xdr, &args->seq_args, &hdr);
2364 encode_putfh(xdr, args->fh, &hdr);
2365 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002366
Benny Halevy28f56692009-04-01 09:22:09 -04002367 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002368 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002369 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
2372/*
2373 * Encode a READDIR request
2374 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002375static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2376 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002379 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Chuck Lever9f06c712010-12-14 14:59:18 +00002382 encode_compound_hdr(xdr, req, &hdr);
2383 encode_sequence(xdr, &args->seq_args, &hdr);
2384 encode_putfh(xdr, args->fh, &hdr);
2385 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002386
Benny Halevy28f56692009-04-01 09:22:09 -04002387 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002388 args->pgbase, args->count);
2389 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002390 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002391 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002392 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395/*
2396 * Encode a READ request
2397 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002398static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2399 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002402 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Chuck Lever9f06c712010-12-14 14:59:18 +00002405 encode_compound_hdr(xdr, req, &hdr);
2406 encode_sequence(xdr, &args->seq_args, &hdr);
2407 encode_putfh(xdr, args->fh, &hdr);
2408 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Benny Halevy28f56692009-04-01 09:22:09 -04002410 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002412 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002413 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
2416/*
2417 * Encode an SETATTR request
2418 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002419static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2420 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Andy Adamson05d564f2008-12-23 16:06:15 -05002422 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002423 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002424 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Chuck Lever9f06c712010-12-14 14:59:18 +00002426 encode_compound_hdr(xdr, req, &hdr);
2427 encode_sequence(xdr, &args->seq_args, &hdr);
2428 encode_putfh(xdr, args->fh, &hdr);
2429 encode_setattr(xdr, args, args->server, &hdr);
2430 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002431 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
2434/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002435 * Encode a GETACL request
2436 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002437static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2438 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002439{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002440 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002441 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002442 };
Benny Halevy28f56692009-04-01 09:22:09 -04002443 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002444
Chuck Lever9f06c712010-12-14 14:59:18 +00002445 encode_compound_hdr(xdr, req, &hdr);
2446 encode_sequence(xdr, &args->seq_args, &hdr);
2447 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002448 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002449 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002450
Benny Halevy28f56692009-04-01 09:22:09 -04002451 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002452 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002453
Andy Adamsond0179312008-12-23 16:06:17 -05002454 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002455}
2456
2457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 * Encode a WRITE request
2459 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002460static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2461 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002464 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Chuck Lever9f06c712010-12-14 14:59:18 +00002467 encode_compound_hdr(xdr, req, &hdr);
2468 encode_sequence(xdr, &args->seq_args, &hdr);
2469 encode_putfh(xdr, args->fh, &hdr);
2470 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002471 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002472 if (args->bitmask)
2473 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002474 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
2477/*
2478 * a COMMIT request
2479 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002480static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04002481 struct nfs_commitargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002484 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Chuck Lever9f06c712010-12-14 14:59:18 +00002487 encode_compound_hdr(xdr, req, &hdr);
2488 encode_sequence(xdr, &args->seq_args, &hdr);
2489 encode_putfh(xdr, args->fh, &hdr);
2490 encode_commit(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002491 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
2494/*
2495 * FSINFO request
2496 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002497static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2498 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002501 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Chuck Lever9f06c712010-12-14 14:59:18 +00002504 encode_compound_hdr(xdr, req, &hdr);
2505 encode_sequence(xdr, &args->seq_args, &hdr);
2506 encode_putfh(xdr, args->fh, &hdr);
2507 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002508 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
2511/*
2512 * a PATHCONF request
2513 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002514static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2515 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002518 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Chuck Lever9f06c712010-12-14 14:59:18 +00002521 encode_compound_hdr(xdr, req, &hdr);
2522 encode_sequence(xdr, &args->seq_args, &hdr);
2523 encode_putfh(xdr, args->fh, &hdr);
2524 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002525 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002526 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
2529/*
2530 * a STATFS request
2531 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002532static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2533 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002536 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Chuck Lever9f06c712010-12-14 14:59:18 +00002539 encode_compound_hdr(xdr, req, &hdr);
2540 encode_sequence(xdr, &args->seq_args, &hdr);
2541 encode_putfh(xdr, args->fh, &hdr);
2542 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002543 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002544 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
2547/*
2548 * GETATTR_BITMAP request
2549 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002550static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2551 struct xdr_stream *xdr,
2552 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002555 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Chuck Lever9f06c712010-12-14 14:59:18 +00002558 encode_compound_hdr(xdr, req, &hdr);
2559 encode_sequence(xdr, &args->seq_args, &hdr);
2560 encode_putfh(xdr, args->fhandle, &hdr);
2561 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002562 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002563 FATTR4_WORD0_LINK_SUPPORT|
2564 FATTR4_WORD0_SYMLINK_SUPPORT|
2565 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002566 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
2568
2569/*
2570 * a RENEW request
2571 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002572static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2573 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002576 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 };
2578
Chuck Lever9f06c712010-12-14 14:59:18 +00002579 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002580 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002581 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582}
2583
2584/*
2585 * a SETCLIENTID request
2586 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002587static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2588 struct xdr_stream *xdr,
2589 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002592 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 };
2594
Chuck Lever9f06c712010-12-14 14:59:18 +00002595 encode_compound_hdr(xdr, req, &hdr);
2596 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002597 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598}
2599
2600/*
2601 * a SETCLIENTID_CONFIRM request
2602 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002603static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2604 struct xdr_stream *xdr,
2605 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002608 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 };
Fred Isamandae100c2011-07-30 20:52:37 -04002610 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Chuck Lever9f06c712010-12-14 14:59:18 +00002612 encode_compound_hdr(xdr, req, &hdr);
2613 encode_setclientid_confirm(xdr, arg, &hdr);
2614 encode_putrootfh(xdr, &hdr);
2615 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002616 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
2618
2619/*
2620 * DELEGRETURN request
2621 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002622static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2623 struct xdr_stream *xdr,
2624 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002627 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Chuck Lever9f06c712010-12-14 14:59:18 +00002630 encode_compound_hdr(xdr, req, &hdr);
2631 encode_sequence(xdr, &args->seq_args, &hdr);
2632 encode_putfh(xdr, args->fhandle, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002633 encode_getfattr(xdr, args->bitmask, &hdr);
Trond Myklebuste144cbc2012-04-28 16:05:03 -04002634 encode_delegreturn(xdr, args->stateid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002635 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636}
2637
2638/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002639 * Encode FS_LOCATIONS request
2640 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002641static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2642 struct xdr_stream *xdr,
2643 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002644{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002645 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002646 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002647 };
Benny Halevy28f56692009-04-01 09:22:09 -04002648 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002649
Chuck Lever9f06c712010-12-14 14:59:18 +00002650 encode_compound_hdr(xdr, req, &hdr);
2651 encode_sequence(xdr, &args->seq_args, &hdr);
2652 encode_putfh(xdr, args->dir_fh, &hdr);
2653 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002654 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002655 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002656
Benny Halevy28f56692009-04-01 09:22:09 -04002657 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002658 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002659 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002660}
2661
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002662/*
2663 * Encode SECINFO request
2664 */
2665static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2666 struct xdr_stream *xdr,
2667 struct nfs4_secinfo_arg *args)
2668{
2669 struct compound_hdr hdr = {
2670 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2671 };
2672
2673 encode_compound_hdr(xdr, req, &hdr);
2674 encode_sequence(xdr, &args->seq_args, &hdr);
2675 encode_putfh(xdr, args->dir_fh, &hdr);
2676 encode_secinfo(xdr, args->name, &hdr);
2677 encode_nops(&hdr);
2678}
2679
Benny Halevy99fe60d2009-04-01 09:22:29 -04002680#if defined(CONFIG_NFS_V4_1)
2681/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04002682 * BIND_CONN_TO_SESSION request
2683 */
2684static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
2685 struct xdr_stream *xdr,
2686 struct nfs_client *clp)
2687{
2688 struct compound_hdr hdr = {
2689 .minorversion = clp->cl_mvops->minor_version,
2690 };
2691
2692 encode_compound_hdr(xdr, req, &hdr);
2693 encode_bind_conn_to_session(xdr, clp->cl_session, &hdr);
2694 encode_nops(&hdr);
2695}
2696
2697/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04002698 * EXCHANGE_ID request
2699 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002700static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2701 struct xdr_stream *xdr,
2702 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002703{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002704 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002705 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002706 };
2707
Chuck Lever9f06c712010-12-14 14:59:18 +00002708 encode_compound_hdr(xdr, req, &hdr);
2709 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002710 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002711}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002712
2713/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002714 * a CREATE_SESSION request
2715 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002716static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2717 struct xdr_stream *xdr,
2718 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002719{
Andy Adamsonfc931582009-04-01 09:22:31 -04002720 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002721 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002722 };
2723
Chuck Lever9f06c712010-12-14 14:59:18 +00002724 encode_compound_hdr(xdr, req, &hdr);
2725 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002726 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002727}
2728
2729/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002730 * a DESTROY_SESSION request
2731 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002732static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2733 struct xdr_stream *xdr,
2734 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002735{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002736 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002737 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002738 };
2739
Chuck Lever9f06c712010-12-14 14:59:18 +00002740 encode_compound_hdr(xdr, req, &hdr);
2741 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002742 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002743}
2744
2745/*
Trond Myklebust66245532012-05-25 17:18:09 -04002746 * a DESTROY_CLIENTID request
2747 */
2748static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
2749 struct xdr_stream *xdr,
2750 struct nfs_client *clp)
2751{
2752 struct compound_hdr hdr = {
2753 .minorversion = clp->cl_mvops->minor_version,
2754 };
2755
2756 encode_compound_hdr(xdr, req, &hdr);
2757 encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
2758 encode_nops(&hdr);
2759}
2760
2761/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002762 * a SEQUENCE request
2763 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002764static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2765 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002766{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002767 struct compound_hdr hdr = {
2768 .minorversion = nfs4_xdr_minorversion(args),
2769 };
2770
Chuck Lever9f06c712010-12-14 14:59:18 +00002771 encode_compound_hdr(xdr, req, &hdr);
2772 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002773 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002774}
2775
2776/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002777 * a GET_LEASE_TIME request
2778 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002779static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2780 struct xdr_stream *xdr,
2781 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002782{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002783 struct compound_hdr hdr = {
2784 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2785 };
Fred Isamandae100c2011-07-30 20:52:37 -04002786 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002787
Chuck Lever9f06c712010-12-14 14:59:18 +00002788 encode_compound_hdr(xdr, req, &hdr);
2789 encode_sequence(xdr, &args->la_seq_args, &hdr);
2790 encode_putrootfh(xdr, &hdr);
2791 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002792 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002793}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002794
2795/*
2796 * a RECLAIM_COMPLETE request
2797 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002798static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2799 struct xdr_stream *xdr,
2800 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002801{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002802 struct compound_hdr hdr = {
2803 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2804 };
2805
Chuck Lever9f06c712010-12-14 14:59:18 +00002806 encode_compound_hdr(xdr, req, &hdr);
2807 encode_sequence(xdr, &args->seq_args, &hdr);
2808 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002809 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002810}
2811
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002812/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002813 * Encode GETDEVICELIST request
2814 */
2815static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2816 struct xdr_stream *xdr,
2817 struct nfs4_getdevicelist_args *args)
2818{
2819 struct compound_hdr hdr = {
2820 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2821 };
2822
2823 encode_compound_hdr(xdr, req, &hdr);
2824 encode_sequence(xdr, &args->seq_args, &hdr);
2825 encode_putfh(xdr, args->fh, &hdr);
2826 encode_getdevicelist(xdr, args, &hdr);
2827 encode_nops(&hdr);
2828}
2829
2830/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002831 * Encode GETDEVICEINFO request
2832 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002833static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2834 struct xdr_stream *xdr,
2835 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002836{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002837 struct compound_hdr hdr = {
2838 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2839 };
2840
Chuck Lever9f06c712010-12-14 14:59:18 +00002841 encode_compound_hdr(xdr, req, &hdr);
2842 encode_sequence(xdr, &args->seq_args, &hdr);
2843 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002844
2845 /* set up reply kvec. Subtract notification bitmap max size (2)
2846 * so that notification bitmap is put in xdr_buf tail */
2847 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2848 args->pdev->pages, args->pdev->pgbase,
2849 args->pdev->pglen);
2850
2851 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002852}
2853
2854/*
2855 * Encode LAYOUTGET request
2856 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002857static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2858 struct xdr_stream *xdr,
2859 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002860{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002861 struct compound_hdr hdr = {
2862 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2863 };
2864
Chuck Lever9f06c712010-12-14 14:59:18 +00002865 encode_compound_hdr(xdr, req, &hdr);
2866 encode_sequence(xdr, &args->seq_args, &hdr);
2867 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2868 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002869
2870 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2871 args->layout.pages, 0, args->layout.pglen);
2872
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002873 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002874}
Andy Adamson863a3c62011-03-23 13:27:54 +00002875
2876/*
2877 * Encode LAYOUTCOMMIT request
2878 */
Benny Halevycbe82602011-05-22 19:52:37 +03002879static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2880 struct xdr_stream *xdr,
2881 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002882{
Benny Halevyac7db722011-05-22 19:53:48 +03002883 struct nfs4_layoutcommit_data *data =
2884 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002885 struct compound_hdr hdr = {
2886 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2887 };
2888
2889 encode_compound_hdr(xdr, req, &hdr);
2890 encode_sequence(xdr, &args->seq_args, &hdr);
2891 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002892 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002893 encode_getfattr(xdr, args->bitmask, &hdr);
2894 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002895}
2896
2897/*
2898 * Encode LAYOUTRETURN request
2899 */
2900static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2901 struct xdr_stream *xdr,
2902 struct nfs4_layoutreturn_args *args)
2903{
2904 struct compound_hdr hdr = {
2905 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2906 };
2907
2908 encode_compound_hdr(xdr, req, &hdr);
2909 encode_sequence(xdr, &args->seq_args, &hdr);
2910 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2911 encode_layoutreturn(xdr, args, &hdr);
2912 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002913}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002914
2915/*
2916 * Encode SECINFO_NO_NAME request
2917 */
2918static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2919 struct xdr_stream *xdr,
2920 struct nfs41_secinfo_no_name_args *args)
2921{
2922 struct compound_hdr hdr = {
2923 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2924 };
2925
2926 encode_compound_hdr(xdr, req, &hdr);
2927 encode_sequence(xdr, &args->seq_args, &hdr);
2928 encode_putrootfh(xdr, &hdr);
2929 encode_secinfo_no_name(xdr, args, &hdr);
2930 encode_nops(&hdr);
2931 return 0;
2932}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002933
2934/*
2935 * Encode TEST_STATEID request
2936 */
2937static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
2938 struct xdr_stream *xdr,
2939 struct nfs41_test_stateid_args *args)
2940{
2941 struct compound_hdr hdr = {
2942 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2943 };
2944
2945 encode_compound_hdr(xdr, req, &hdr);
2946 encode_sequence(xdr, &args->seq_args, &hdr);
2947 encode_test_stateid(xdr, args, &hdr);
2948 encode_nops(&hdr);
2949}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002950
2951/*
2952 * Encode FREE_STATEID request
2953 */
2954static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
2955 struct xdr_stream *xdr,
2956 struct nfs41_free_stateid_args *args)
2957{
2958 struct compound_hdr hdr = {
2959 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2960 };
2961
2962 encode_compound_hdr(xdr, req, &hdr);
2963 encode_sequence(xdr, &args->seq_args, &hdr);
2964 encode_free_stateid(xdr, args, &hdr);
2965 encode_nops(&hdr);
2966}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002967#endif /* CONFIG_NFS_V4_1 */
2968
Benny Halevy686841b2009-08-14 17:19:48 +03002969static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2970{
2971 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2972 "Remaining buffer length is %tu words.\n",
2973 func, xdr->end - xdr->p);
2974}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Trond Myklebust683b57b2006-06-09 09:34:22 -04002976static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Al Viro8687b632006-10-19 23:28:48 -07002978 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Benny Halevyc0eae662009-08-14 17:20:14 +03002980 p = xdr_inline_decode(xdr, 4);
2981 if (unlikely(!p))
2982 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002983 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002984 p = xdr_inline_decode(xdr, *len);
2985 if (unlikely(!p))
2986 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 *string = (char *)p;
2988 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002989out_overflow:
2990 print_overflow_msg(__func__, xdr);
2991 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
2994static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2995{
Al Viro8687b632006-10-19 23:28:48 -07002996 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Benny Halevyc0eae662009-08-14 17:20:14 +03002998 p = xdr_inline_decode(xdr, 8);
2999 if (unlikely(!p))
3000 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003001 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003002 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003003
Benny Halevyc0eae662009-08-14 17:20:14 +03003004 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3005 if (unlikely(!p))
3006 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 hdr->tag = (char *)p;
3008 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003009 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003010 if (unlikely(hdr->nops < 1))
3011 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003013out_overflow:
3014 print_overflow_msg(__func__, xdr);
3015 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
3017
3018static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3019{
Al Viro8687b632006-10-19 23:28:48 -07003020 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 uint32_t opnum;
3022 int32_t nfserr;
3023
Benny Halevyc0eae662009-08-14 17:20:14 +03003024 p = xdr_inline_decode(xdr, 8);
3025 if (unlikely(!p))
3026 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003027 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003029 dprintk("nfs: Server returned operation"
3030 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 opnum, expected);
3032 return -EIO;
3033 }
Benny Halevycccddf42009-08-14 17:20:19 +03003034 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03003036 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003038out_overflow:
3039 print_overflow_msg(__func__, xdr);
3040 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041}
3042
3043/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003044static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
Al Viro8687b632006-10-19 23:28:48 -07003046 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003047 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 char *str;
3049
Benny Halevyc0eae662009-08-14 17:20:14 +03003050 p = xdr_inline_decode(xdr, 12);
3051 if (likely(p))
3052 return decode_opaque_inline(xdr, &strlen, &str);
3053 print_overflow_msg(__func__, xdr);
3054 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
3057static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3058{
Al Viro8687b632006-10-19 23:28:48 -07003059 uint32_t bmlen;
3060 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Benny Halevyc0eae662009-08-14 17:20:14 +03003062 p = xdr_inline_decode(xdr, 4);
3063 if (unlikely(!p))
3064 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003065 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Fred Isamandae100c2011-07-30 20:52:37 -04003067 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003068 p = xdr_inline_decode(xdr, (bmlen << 2));
3069 if (unlikely(!p))
3070 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003072 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003073 if (bmlen > 1) {
3074 bitmap[1] = be32_to_cpup(p++);
3075 if (bmlen > 2)
3076 bitmap[2] = be32_to_cpup(p);
3077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
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
Trond Myklebust256e48b2012-06-21 11:18:13 -04003085static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
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, 4);
3090 if (unlikely(!p))
3091 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003092 *attrlen = be32_to_cpup(p);
Trond Myklebust256e48b2012-06-21 11:18:13 -04003093 *savep = xdr_stream_pos(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003095out_overflow:
3096 print_overflow_msg(__func__, xdr);
3097 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098}
3099
3100static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3101{
3102 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003103 int ret;
3104 ret = decode_attr_bitmap(xdr, bitmask);
3105 if (unlikely(ret < 0))
3106 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3108 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003109 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3110 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3111 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return 0;
3113}
3114
3115static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3116{
Al Viro8687b632006-10-19 23:28:48 -07003117 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003118 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 *type = 0;
3121 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3122 return -EIO;
3123 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003124 p = xdr_inline_decode(xdr, 4);
3125 if (unlikely(!p))
3126 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003127 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003129 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return -EIO;
3131 }
3132 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003133 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003135 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003136 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003137out_overflow:
3138 print_overflow_msg(__func__, xdr);
3139 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140}
3141
Chuck Lever264e6352012-03-01 17:02:05 -05003142static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3143 uint32_t *bitmap, uint32_t *type)
3144{
3145 __be32 *p;
3146
3147 *type = 0;
3148 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3149 return -EIO;
3150 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3151 p = xdr_inline_decode(xdr, 4);
3152 if (unlikely(!p))
3153 goto out_overflow;
3154 *type = be32_to_cpup(p);
3155 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3156 }
3157 dprintk("%s: expire type=0x%x\n", __func__, *type);
3158 return 0;
3159out_overflow:
3160 print_overflow_msg(__func__, xdr);
3161 return -EIO;
3162}
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3165{
Al Viro8687b632006-10-19 23:28:48 -07003166 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003167 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 *change = 0;
3170 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3171 return -EIO;
3172 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003173 p = xdr_inline_decode(xdr, 8);
3174 if (unlikely(!p))
3175 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003176 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003178 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003180 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003182 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003183out_overflow:
3184 print_overflow_msg(__func__, xdr);
3185 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186}
3187
3188static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3189{
Al Viro8687b632006-10-19 23:28:48 -07003190 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003191 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 *size = 0;
3194 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3195 return -EIO;
3196 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003197 p = xdr_inline_decode(xdr, 8);
3198 if (unlikely(!p))
3199 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003200 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003202 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003204 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003205 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003206out_overflow:
3207 print_overflow_msg(__func__, xdr);
3208 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209}
3210
3211static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3212{
Al Viro8687b632006-10-19 23:28:48 -07003213 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215 *res = 0;
3216 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3217 return -EIO;
3218 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003219 p = xdr_inline_decode(xdr, 4);
3220 if (unlikely(!p))
3221 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003222 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3224 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003225 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003227out_overflow:
3228 print_overflow_msg(__func__, xdr);
3229 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
3232static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3233{
Al Viro8687b632006-10-19 23:28:48 -07003234 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236 *res = 0;
3237 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3238 return -EIO;
3239 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003240 p = xdr_inline_decode(xdr, 4);
3241 if (unlikely(!p))
3242 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003243 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3245 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003246 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003248out_overflow:
3249 print_overflow_msg(__func__, xdr);
3250 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
3252
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003253static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Al Viro8687b632006-10-19 23:28:48 -07003255 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003256 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 fsid->major = 0;
3259 fsid->minor = 0;
3260 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3261 return -EIO;
3262 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003263 p = xdr_inline_decode(xdr, 16);
3264 if (unlikely(!p))
3265 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003266 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003267 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003269 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003271 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 (unsigned long long)fsid->major,
3273 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003274 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003275out_overflow:
3276 print_overflow_msg(__func__, xdr);
3277 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279
3280static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3281{
Al Viro8687b632006-10-19 23:28:48 -07003282 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
3284 *res = 60;
3285 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3286 return -EIO;
3287 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003288 p = xdr_inline_decode(xdr, 4);
3289 if (unlikely(!p))
3290 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003291 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3293 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003294 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003296out_overflow:
3297 print_overflow_msg(__func__, xdr);
3298 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299}
3300
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003301static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003302{
3303 __be32 *p;
3304
3305 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3306 return -EIO;
3307 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3308 p = xdr_inline_decode(xdr, 4);
3309 if (unlikely(!p))
3310 goto out_overflow;
3311 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003312 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003313 }
3314 return 0;
3315out_overflow:
3316 print_overflow_msg(__func__, xdr);
3317 return -EIO;
3318}
3319
3320static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3321{
3322 __be32 *p;
3323 int len;
3324
Trond Myklebust7ad07352010-10-23 15:34:20 -04003325 if (fh != NULL)
3326 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003327
3328 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3329 return -EIO;
3330 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3331 p = xdr_inline_decode(xdr, 4);
3332 if (unlikely(!p))
3333 goto out_overflow;
3334 len = be32_to_cpup(p);
3335 if (len > NFS4_FHSIZE)
3336 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003337 p = xdr_inline_decode(xdr, len);
3338 if (unlikely(!p))
3339 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003340 if (fh != NULL) {
3341 memcpy(fh->data, p, len);
3342 fh->size = len;
3343 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003344 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3345 }
3346 return 0;
3347out_overflow:
3348 print_overflow_msg(__func__, xdr);
3349 return -EIO;
3350}
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3353{
Al Viro8687b632006-10-19 23:28:48 -07003354 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3357 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3358 return -EIO;
3359 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003360 p = xdr_inline_decode(xdr, 4);
3361 if (unlikely(!p))
3362 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003363 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3365 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003366 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003368out_overflow:
3369 print_overflow_msg(__func__, xdr);
3370 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
3373static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3374{
Al Viro8687b632006-10-19 23:28:48 -07003375 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003376 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
3378 *fileid = 0;
3379 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3380 return -EIO;
3381 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003382 p = xdr_inline_decode(xdr, 8);
3383 if (unlikely(!p))
3384 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003385 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003387 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003389 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003390 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003391out_overflow:
3392 print_overflow_msg(__func__, xdr);
3393 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394}
3395
Manoj Naik99baf622006-06-09 09:34:24 -04003396static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3397{
Al Viro8687b632006-10-19 23:28:48 -07003398 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003399 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003400
3401 *fileid = 0;
3402 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3403 return -EIO;
3404 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003405 p = xdr_inline_decode(xdr, 8);
3406 if (unlikely(!p))
3407 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003408 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003409 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003410 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003411 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003412 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003413 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003414out_overflow:
3415 print_overflow_msg(__func__, xdr);
3416 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003417}
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3420{
Al Viro8687b632006-10-19 23:28:48 -07003421 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 int status = 0;
3423
3424 *res = 0;
3425 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3426 return -EIO;
3427 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003428 p = xdr_inline_decode(xdr, 8);
3429 if (unlikely(!p))
3430 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003431 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3433 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003434 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003436out_overflow:
3437 print_overflow_msg(__func__, xdr);
3438 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439}
3440
3441static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3442{
Al Viro8687b632006-10-19 23:28:48 -07003443 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 int status = 0;
3445
3446 *res = 0;
3447 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3448 return -EIO;
3449 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003450 p = xdr_inline_decode(xdr, 8);
3451 if (unlikely(!p))
3452 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003453 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3455 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003456 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003458out_overflow:
3459 print_overflow_msg(__func__, xdr);
3460 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461}
3462
3463static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3464{
Al Viro8687b632006-10-19 23:28:48 -07003465 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 int status = 0;
3467
3468 *res = 0;
3469 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3470 return -EIO;
3471 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003472 p = xdr_inline_decode(xdr, 8);
3473 if (unlikely(!p))
3474 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003475 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3477 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003478 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003480out_overflow:
3481 print_overflow_msg(__func__, xdr);
3482 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483}
3484
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003485static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3486{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003487 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003488 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003489 int status = 0;
3490
Benny Halevyc0eae662009-08-14 17:20:14 +03003491 p = xdr_inline_decode(xdr, 4);
3492 if (unlikely(!p))
3493 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003494 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003495 if (n == 0)
3496 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003497 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003498 path->ncomponents = 0;
3499 while (path->ncomponents < n) {
3500 struct nfs4_string *component = &path->components[path->ncomponents];
3501 status = decode_opaque_inline(xdr, &component->len, &component->data);
3502 if (unlikely(status != 0))
3503 goto out_eio;
Trond Myklebust95a13f72012-03-14 21:55:01 -04003504 ifdebug (XDR)
Chuck Lever02a29762012-03-01 17:00:31 -05003505 pr_cont("%s%.*s ",
3506 (path->ncomponents != n ? "/ " : ""),
3507 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003508 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3509 path->ncomponents++;
3510 else {
3511 dprintk("cannot parse %d components in path\n", n);
3512 goto out_eio;
3513 }
3514 }
3515out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003516 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003517root_path:
3518/* a root pathname is sent as a zero component4 */
3519 path->ncomponents = 1;
3520 path->components[0].len=0;
3521 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003522 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003523 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003524out_eio:
3525 dprintk(" status %d", status);
3526 status = -EIO;
3527 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003528out_overflow:
3529 print_overflow_msg(__func__, xdr);
3530 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003531}
3532
3533static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003534{
3535 int n;
Al Viro8687b632006-10-19 23:28:48 -07003536 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003537 int status = -EIO;
3538
3539 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3540 goto out;
3541 status = 0;
3542 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3543 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003544 status = -EIO;
3545 /* Ignore borken servers that return unrequested attrs */
3546 if (unlikely(res == NULL))
3547 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003548 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003549 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003550 if (unlikely(status != 0))
3551 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003552 p = xdr_inline_decode(xdr, 4);
3553 if (unlikely(!p))
3554 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003555 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003556 if (n <= 0)
3557 goto out_eio;
3558 res->nlocations = 0;
3559 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003560 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003561 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003562
Benny Halevyc0eae662009-08-14 17:20:14 +03003563 p = xdr_inline_decode(xdr, 4);
3564 if (unlikely(!p))
3565 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003566 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003567
3568 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003569 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003570 while (loc->nservers < m) {
3571 struct nfs4_string *server = &loc->servers[loc->nservers];
3572 status = decode_opaque_inline(xdr, &server->len, &server->data);
3573 if (unlikely(status != 0))
3574 goto out_eio;
3575 dprintk("%s ", server->data);
3576 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3577 loc->nservers++;
3578 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003579 unsigned int i;
3580 dprintk("%s: using first %u of %u servers "
3581 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003582 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003583 NFS4_FS_LOCATION_MAXSERVERS,
3584 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003585 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003586 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003587 char *data;
3588 status = decode_opaque_inline(xdr, &len, &data);
3589 if (unlikely(status != 0))
3590 goto out_eio;
3591 }
3592 }
3593 }
3594 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003595 if (unlikely(status != 0))
3596 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003597 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003598 res->nlocations++;
3599 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003600 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003601 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003602out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003603 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003604 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003605out_overflow:
3606 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003607out_eio:
3608 status = -EIO;
3609 goto out;
3610}
3611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3613{
Al Viro8687b632006-10-19 23:28:48 -07003614 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 int status = 0;
3616
3617 *res = 0;
3618 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3619 return -EIO;
3620 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003621 p = xdr_inline_decode(xdr, 8);
3622 if (unlikely(!p))
3623 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003624 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3626 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003627 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003629out_overflow:
3630 print_overflow_msg(__func__, xdr);
3631 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632}
3633
3634static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3635{
Al Viro8687b632006-10-19 23:28:48 -07003636 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 int status = 0;
3638
3639 *maxlink = 1;
3640 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3641 return -EIO;
3642 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003643 p = xdr_inline_decode(xdr, 4);
3644 if (unlikely(!p))
3645 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003646 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3648 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003649 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003651out_overflow:
3652 print_overflow_msg(__func__, xdr);
3653 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654}
3655
3656static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3657{
Al Viro8687b632006-10-19 23:28:48 -07003658 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 int status = 0;
3660
3661 *maxname = 1024;
3662 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3663 return -EIO;
3664 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003665 p = xdr_inline_decode(xdr, 4);
3666 if (unlikely(!p))
3667 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003668 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3670 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003671 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003673out_overflow:
3674 print_overflow_msg(__func__, xdr);
3675 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676}
3677
3678static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3679{
Al Viro8687b632006-10-19 23:28:48 -07003680 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 int status = 0;
3682
3683 *res = 1024;
3684 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3685 return -EIO;
3686 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3687 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003688 p = xdr_inline_decode(xdr, 8);
3689 if (unlikely(!p))
3690 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003691 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 if (maxread > 0x7FFFFFFF)
3693 maxread = 0x7FFFFFFF;
3694 *res = (uint32_t)maxread;
3695 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3696 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003697 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003699out_overflow:
3700 print_overflow_msg(__func__, xdr);
3701 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702}
3703
3704static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3705{
Al Viro8687b632006-10-19 23:28:48 -07003706 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 int status = 0;
3708
3709 *res = 1024;
3710 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3711 return -EIO;
3712 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3713 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003714 p = xdr_inline_decode(xdr, 8);
3715 if (unlikely(!p))
3716 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003717 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 if (maxwrite > 0x7FFFFFFF)
3719 maxwrite = 0x7FFFFFFF;
3720 *res = (uint32_t)maxwrite;
3721 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3722 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003723 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003725out_overflow:
3726 print_overflow_msg(__func__, xdr);
3727 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728}
3729
Trond Myklebustbca79472009-03-11 14:10:26 -04003730static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731{
Trond Myklebustbca79472009-03-11 14:10:26 -04003732 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003733 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003734 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
3736 *mode = 0;
3737 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3738 return -EIO;
3739 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003740 p = xdr_inline_decode(xdr, 4);
3741 if (unlikely(!p))
3742 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003743 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003744 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003746 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003748 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003749 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003750out_overflow:
3751 print_overflow_msg(__func__, xdr);
3752 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753}
3754
3755static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3756{
Al Viro8687b632006-10-19 23:28:48 -07003757 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003758 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760 *nlink = 1;
3761 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3762 return -EIO;
3763 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003764 p = xdr_inline_decode(xdr, 4);
3765 if (unlikely(!p))
3766 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003767 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003769 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003771 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003772 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003773out_overflow:
3774 print_overflow_msg(__func__, xdr);
3775 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776}
3777
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003778static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003779 const struct nfs_server *server, uint32_t *uid,
3780 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Al Viro8687b632006-10-19 23:28:48 -07003782 uint32_t len;
3783 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003784 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785
3786 *uid = -2;
3787 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3788 return -EIO;
3789 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003790 p = xdr_inline_decode(xdr, 4);
3791 if (unlikely(!p))
3792 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003793 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003794 p = xdr_inline_decode(xdr, len);
3795 if (unlikely(!p))
3796 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003797 if (owner_name != NULL) {
3798 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3799 if (owner_name->data != NULL) {
3800 owner_name->len = len;
3801 ret = NFS_ATTR_FATTR_OWNER_NAME;
3802 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003803 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003804 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003805 ret = NFS_ATTR_FATTR_OWNER;
3806 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003808 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003810 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003811 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3813 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003814 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003815 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003816out_overflow:
3817 print_overflow_msg(__func__, xdr);
3818 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819}
3820
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003821static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003822 const struct nfs_server *server, uint32_t *gid,
3823 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824{
Al Viro8687b632006-10-19 23:28:48 -07003825 uint32_t len;
3826 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003827 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829 *gid = -2;
3830 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3831 return -EIO;
3832 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003833 p = xdr_inline_decode(xdr, 4);
3834 if (unlikely(!p))
3835 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003836 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003837 p = xdr_inline_decode(xdr, len);
3838 if (unlikely(!p))
3839 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003840 if (group_name != NULL) {
3841 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3842 if (group_name->data != NULL) {
3843 group_name->len = len;
3844 ret = NFS_ATTR_FATTR_GROUP_NAME;
3845 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003846 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003847 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003848 ret = NFS_ATTR_FATTR_GROUP;
3849 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003851 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003853 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003854 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3856 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003857 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003858 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003859out_overflow:
3860 print_overflow_msg(__func__, xdr);
3861 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862}
3863
3864static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3865{
Al Viro8687b632006-10-19 23:28:48 -07003866 uint32_t major = 0, minor = 0;
3867 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003868 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869
3870 *rdev = MKDEV(0,0);
3871 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3872 return -EIO;
3873 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3874 dev_t tmp;
3875
Benny Halevyc0eae662009-08-14 17:20:14 +03003876 p = xdr_inline_decode(xdr, 8);
3877 if (unlikely(!p))
3878 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003879 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003880 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 tmp = MKDEV(major, minor);
3882 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3883 *rdev = tmp;
3884 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003885 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003887 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003888 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003889out_overflow:
3890 print_overflow_msg(__func__, xdr);
3891 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892}
3893
3894static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3895{
Al Viro8687b632006-10-19 23:28:48 -07003896 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 int status = 0;
3898
3899 *res = 0;
3900 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3901 return -EIO;
3902 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003903 p = xdr_inline_decode(xdr, 8);
3904 if (unlikely(!p))
3905 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003906 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3908 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003909 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003911out_overflow:
3912 print_overflow_msg(__func__, xdr);
3913 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914}
3915
3916static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3917{
Al Viro8687b632006-10-19 23:28:48 -07003918 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 int status = 0;
3920
3921 *res = 0;
3922 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3923 return -EIO;
3924 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003925 p = xdr_inline_decode(xdr, 8);
3926 if (unlikely(!p))
3927 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003928 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3930 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003931 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003933out_overflow:
3934 print_overflow_msg(__func__, xdr);
3935 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936}
3937
3938static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3939{
Al Viro8687b632006-10-19 23:28:48 -07003940 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 int status = 0;
3942
3943 *res = 0;
3944 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3945 return -EIO;
3946 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003947 p = xdr_inline_decode(xdr, 8);
3948 if (unlikely(!p))
3949 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003950 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3952 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003953 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003955out_overflow:
3956 print_overflow_msg(__func__, xdr);
3957 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958}
3959
3960static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3961{
Al Viro8687b632006-10-19 23:28:48 -07003962 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003963 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
3965 *used = 0;
3966 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3967 return -EIO;
3968 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003969 p = xdr_inline_decode(xdr, 8);
3970 if (unlikely(!p))
3971 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003972 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003974 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003976 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003978 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003979out_overflow:
3980 print_overflow_msg(__func__, xdr);
3981 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982}
3983
3984static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3985{
Al Viro8687b632006-10-19 23:28:48 -07003986 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 uint64_t sec;
3988 uint32_t nsec;
3989
Benny Halevyc0eae662009-08-14 17:20:14 +03003990 p = xdr_inline_decode(xdr, 12);
3991 if (unlikely(!p))
3992 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003993 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003994 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 time->tv_sec = (time_t)sec;
3996 time->tv_nsec = (long)nsec;
3997 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003998out_overflow:
3999 print_overflow_msg(__func__, xdr);
4000 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001}
4002
4003static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4004{
4005 int status = 0;
4006
4007 time->tv_sec = 0;
4008 time->tv_nsec = 0;
4009 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4010 return -EIO;
4011 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4012 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004013 if (status == 0)
4014 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4016 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004017 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 return status;
4019}
4020
4021static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4022{
4023 int status = 0;
4024
4025 time->tv_sec = 0;
4026 time->tv_nsec = 0;
4027 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4028 return -EIO;
4029 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4030 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004031 if (status == 0)
4032 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4034 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004035 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 return status;
4037}
4038
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004039static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4040 struct timespec *time)
4041{
4042 int status = 0;
4043
4044 time->tv_sec = 0;
4045 time->tv_nsec = 0;
4046 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4047 return -EIO;
4048 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4049 status = decode_attr_time(xdr, time);
4050 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4051 }
4052 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4053 (long)time->tv_nsec);
4054 return status;
4055}
4056
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4058{
4059 int status = 0;
4060
4061 time->tv_sec = 0;
4062 time->tv_nsec = 0;
4063 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4064 return -EIO;
4065 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4066 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004067 if (status == 0)
4068 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4070 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004071 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 return status;
4073}
4074
Trond Myklebust256e48b2012-06-21 11:18:13 -04004075static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076{
4077 unsigned int attrwords = XDR_QUADLEN(attrlen);
Trond Myklebust256e48b2012-06-21 11:18:13 -04004078 unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
4080 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004081 dprintk("%s: server returned incorrect attribute length: "
4082 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004083 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 attrwords << 2,
4085 (attrwords < nwords) ? '<' : '>',
4086 nwords << 2);
4087 return -EIO;
4088 }
4089 return 0;
4090}
4091
4092static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4093{
Al Viro8687b632006-10-19 23:28:48 -07004094 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
Benny Halevyc0eae662009-08-14 17:20:14 +03004096 p = xdr_inline_decode(xdr, 20);
4097 if (unlikely(!p))
4098 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004099 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004100 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004101 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004103out_overflow:
4104 print_overflow_msg(__func__, xdr);
4105 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106}
4107
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004108static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109{
Al Viro8687b632006-10-19 23:28:48 -07004110 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 uint32_t supp, acc;
4112 int status;
4113
4114 status = decode_op_hdr(xdr, OP_ACCESS);
4115 if (status)
4116 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004117 p = xdr_inline_decode(xdr, 8);
4118 if (unlikely(!p))
4119 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004120 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004121 acc = be32_to_cpup(p);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004122 *supported = supp;
4123 *access = acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004125out_overflow:
4126 print_overflow_msg(__func__, xdr);
4127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
Benny Halevy07d30432009-08-14 17:19:52 +03004130static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131{
Al Viro8687b632006-10-19 23:28:48 -07004132 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004133
4134 p = xdr_inline_decode(xdr, len);
4135 if (likely(p)) {
4136 memcpy(buf, p, len);
4137 return 0;
4138 }
4139 print_overflow_msg(__func__, xdr);
4140 return -EIO;
4141}
4142
4143static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4144{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004145 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146}
4147
4148static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4149{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 int status;
4151
4152 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004153 if (status != -EIO)
4154 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004155 if (!status)
4156 status = decode_stateid(xdr, &res->stateid);
4157 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158}
4159
Benny Halevydb942bb2009-08-14 17:19:56 +03004160static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4161{
Chuck Levercd937102012-03-02 17:14:31 -05004162 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163}
4164
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004165static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
4166{
4167 return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
4168}
4169
Fred Isaman0b7c0152012-04-20 14:47:39 -04004170static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 int status;
4173
4174 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004175 if (!status)
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004176 status = decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevydb942bb2009-08-14 17:19:56 +03004177 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178}
4179
4180static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4181{
Al Viro8687b632006-10-19 23:28:48 -07004182 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 uint32_t bmlen;
4184 int status;
4185
4186 status = decode_op_hdr(xdr, OP_CREATE);
4187 if (status)
4188 return status;
4189 if ((status = decode_change_info(xdr, cinfo)))
4190 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004191 p = xdr_inline_decode(xdr, 4);
4192 if (unlikely(!p))
4193 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004194 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004195 p = xdr_inline_decode(xdr, bmlen << 2);
4196 if (likely(p))
4197 return 0;
4198out_overflow:
4199 print_overflow_msg(__func__, xdr);
4200 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201}
4202
4203static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4204{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004205 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004206 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 int status;
4208
4209 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4210 goto xdr_error;
4211 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4212 goto xdr_error;
4213 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4214 goto xdr_error;
4215 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4216 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004217 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4218 &res->fh_expire_type)) != 0)
4219 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4221 goto xdr_error;
4222 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4223 goto xdr_error;
4224 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4225 goto xdr_error;
4226 status = verify_attr_len(xdr, savep, attrlen);
4227xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004228 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 return status;
4230}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004231
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4233{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004234 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004235 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004237
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4239 goto xdr_error;
4240 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4241 goto xdr_error;
4242 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4243 goto xdr_error;
4244
4245 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4246 goto xdr_error;
4247 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4248 goto xdr_error;
4249 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4250 goto xdr_error;
4251 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4252 goto xdr_error;
4253 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4254 goto xdr_error;
4255 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4256 goto xdr_error;
4257
4258 status = verify_attr_len(xdr, savep, attrlen);
4259xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004260 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 return status;
4262}
4263
4264static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4265{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004266 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004267 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4271 goto xdr_error;
4272 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4273 goto xdr_error;
4274 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4275 goto xdr_error;
4276
4277 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4278 goto xdr_error;
4279 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4280 goto xdr_error;
4281
4282 status = verify_attr_len(xdr, savep, attrlen);
4283xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004284 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 return status;
4286}
4287
Andy Adamson88034c32012-05-23 05:02:34 -04004288static int decode_threshold_hint(struct xdr_stream *xdr,
4289 uint32_t *bitmap,
4290 uint64_t *res,
4291 uint32_t hint_bit)
4292{
4293 __be32 *p;
4294
4295 *res = 0;
4296 if (likely(bitmap[0] & hint_bit)) {
4297 p = xdr_inline_decode(xdr, 8);
4298 if (unlikely(!p))
4299 goto out_overflow;
4300 xdr_decode_hyper(p, res);
4301 }
4302 return 0;
4303out_overflow:
4304 print_overflow_msg(__func__, xdr);
4305 return -EIO;
4306}
4307
4308static int decode_first_threshold_item4(struct xdr_stream *xdr,
4309 struct nfs4_threshold *res)
4310{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004311 __be32 *p;
4312 unsigned int savep;
Andy Adamson88034c32012-05-23 05:02:34 -04004313 uint32_t bitmap[3] = {0,}, attrlen;
4314 int status;
4315
4316 /* layout type */
4317 p = xdr_inline_decode(xdr, 4);
4318 if (unlikely(!p)) {
4319 print_overflow_msg(__func__, xdr);
4320 return -EIO;
4321 }
4322 res->l_type = be32_to_cpup(p);
4323
4324 /* thi_hintset bitmap */
4325 status = decode_attr_bitmap(xdr, bitmap);
4326 if (status < 0)
4327 goto xdr_error;
4328
4329 /* thi_hintlist length */
4330 status = decode_attr_length(xdr, &attrlen, &savep);
4331 if (status < 0)
4332 goto xdr_error;
4333 /* thi_hintlist */
4334 status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
4335 if (status < 0)
4336 goto xdr_error;
4337 status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
4338 if (status < 0)
4339 goto xdr_error;
4340 status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
4341 THRESHOLD_RD_IO);
4342 if (status < 0)
4343 goto xdr_error;
4344 status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
4345 THRESHOLD_WR_IO);
4346 if (status < 0)
4347 goto xdr_error;
4348
4349 status = verify_attr_len(xdr, savep, attrlen);
4350 res->bm = bitmap[0];
4351
4352 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
4353 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
4354 res->wr_io_sz);
4355xdr_error:
4356 dprintk("%s ret=%d!\n", __func__, status);
4357 return status;
4358}
4359
4360/*
4361 * Thresholds on pNFS direct I/O vrs MDS I/O
4362 */
4363static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
4364 uint32_t *bitmap,
4365 struct nfs4_threshold *res)
4366{
4367 __be32 *p;
4368 int status = 0;
4369 uint32_t num;
4370
4371 if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
4372 return -EIO;
Trond Myklebust029c5342012-06-05 09:35:44 -04004373 if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
Trond Myklebust1549210f2012-06-05 09:16:47 -04004374 /* Did the server return an unrequested attribute? */
4375 if (unlikely(res == NULL))
4376 return -EREMOTEIO;
Andy Adamson88034c32012-05-23 05:02:34 -04004377 p = xdr_inline_decode(xdr, 4);
4378 if (unlikely(!p))
4379 goto out_overflow;
4380 num = be32_to_cpup(p);
4381 if (num == 0)
4382 return 0;
4383 if (num > 1)
4384 printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
4385 "drivers per filesystem not supported\n",
4386 __func__);
4387
4388 status = decode_first_threshold_item4(xdr, res);
Trond Myklebust029c5342012-06-05 09:35:44 -04004389 bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
Andy Adamson88034c32012-05-23 05:02:34 -04004390 }
4391 return status;
4392out_overflow:
4393 print_overflow_msg(__func__, xdr);
4394 return -EIO;
4395}
4396
Bryan Schumakerae42c702010-10-21 16:33:17 -04004397static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4398 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004399 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004400 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401{
Trond Myklebustbca79472009-03-11 14:10:26 -04004402 int status;
4403 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004404 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004405 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004407 status = decode_attr_type(xdr, bitmap, &type);
4408 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004410 fattr->mode = 0;
4411 if (status != 0) {
4412 fattr->mode |= nfs_type2fmt[type];
4413 fattr->valid |= status;
4414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004416 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4417 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004419 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004420
4421 status = decode_attr_size(xdr, bitmap, &fattr->size);
4422 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004424 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004425
4426 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4427 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004429 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004430
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004431 err = 0;
4432 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004433 if (status < 0)
4434 goto xdr_error;
4435
4436 status = decode_attr_filehandle(xdr, bitmap, fh);
4437 if (status < 0)
4438 goto xdr_error;
4439
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004440 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4441 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004443 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004444
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004445 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004446 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004447 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004448 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004449
4450 status = decode_attr_mode(xdr, bitmap, &fmode);
4451 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004453 if (status != 0) {
4454 fattr->mode |= fmode;
4455 fattr->valid |= status;
4456 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004457
4458 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4459 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004461 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004462
Trond Myklebust6926afd2012-01-07 13:22:46 -05004463 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004464 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004466 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004467
Trond Myklebust6926afd2012-01-07 13:22:46 -05004468 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004469 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004471 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004472
4473 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4474 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004476 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004477
4478 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4479 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004481 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004482
4483 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4484 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004486 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004487
4488 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4489 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004491 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004492
4493 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4494 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004496 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004497
Trond Myklebust28331a42011-04-27 13:47:52 -04004498 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004499 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004500 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004501 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004502
Andy Adamson88034c32012-05-23 05:02:34 -04004503 status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
4504 if (status < 0)
4505 goto xdr_error;
4506
Bryan Schumakerae42c702010-10-21 16:33:17 -04004507xdr_error:
4508 dprintk("%s: xdr returned %d\n", __func__, -status);
4509 return status;
4510}
4511
4512static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004513 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4514 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004515{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004516 unsigned int savep;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004517 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004518 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004519 int status;
4520
4521 status = decode_op_hdr(xdr, OP_GETATTR);
4522 if (status < 0)
4523 goto xdr_error;
4524
4525 status = decode_attr_bitmap(xdr, bitmap);
4526 if (status < 0)
4527 goto xdr_error;
4528
4529 status = decode_attr_length(xdr, &attrlen, &savep);
4530 if (status < 0)
4531 goto xdr_error;
4532
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004533 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004534 if (status < 0)
4535 goto xdr_error;
4536
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004537 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004539 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 return status;
4541}
4542
Bryan Schumakerae42c702010-10-21 16:33:17 -04004543static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004544 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004545{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004546 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Andy Adamson504913f2010-10-20 00:17:57 -04004549/*
4550 * Decode potentially multiple layout types. Currently we only support
4551 * one layout driver per file system.
4552 */
4553static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4554 uint32_t *layouttype)
4555{
4556 uint32_t *p;
4557 int num;
4558
4559 p = xdr_inline_decode(xdr, 4);
4560 if (unlikely(!p))
4561 goto out_overflow;
4562 num = be32_to_cpup(p);
4563
4564 /* pNFS is not supported by the underlying file system */
4565 if (num == 0) {
4566 *layouttype = 0;
4567 return 0;
4568 }
4569 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004570 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4571 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004572
4573 /* Decode and set first layout type, move xdr->p past unused types */
4574 p = xdr_inline_decode(xdr, num * 4);
4575 if (unlikely(!p))
4576 goto out_overflow;
4577 *layouttype = be32_to_cpup(p);
4578 return 0;
4579out_overflow:
4580 print_overflow_msg(__func__, xdr);
4581 return -EIO;
4582}
4583
4584/*
4585 * The type of file system exported.
4586 * Note we must ensure that layouttype is set in any non-error case.
4587 */
4588static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4589 uint32_t *layouttype)
4590{
4591 int status = 0;
4592
4593 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4594 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4595 return -EIO;
4596 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4597 status = decode_first_pnfs_layout_type(xdr, layouttype);
4598 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4599 } else
4600 *layouttype = 0;
4601 return status;
4602}
4603
Fred Isamandae100c2011-07-30 20:52:37 -04004604/*
4605 * The prefered block size for layout directed io
4606 */
4607static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4608 uint32_t *res)
4609{
4610 __be32 *p;
4611
4612 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4613 *res = 0;
4614 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4615 p = xdr_inline_decode(xdr, 4);
4616 if (unlikely(!p)) {
4617 print_overflow_msg(__func__, xdr);
4618 return -EIO;
4619 }
4620 *res = be32_to_cpup(p);
4621 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4622 }
4623 return 0;
4624}
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4627{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004628 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004629 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 int status;
4631
4632 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4633 goto xdr_error;
4634 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4635 goto xdr_error;
4636 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4637 goto xdr_error;
4638
4639 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4640
4641 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4642 goto xdr_error;
4643 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4644 goto xdr_error;
4645 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4646 goto xdr_error;
4647 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4648 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4649 goto xdr_error;
4650 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004651 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4652 if (status != 0)
4653 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004654 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4655 if (status != 0)
4656 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004657 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4658 if (status)
4659 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
4661 status = verify_attr_len(xdr, savep, attrlen);
4662xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004663 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 return status;
4665}
4666
4667static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4668{
Al Viro8687b632006-10-19 23:28:48 -07004669 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 uint32_t len;
4671 int status;
4672
Trond Myklebust99367812007-07-17 21:52:41 -04004673 /* Zero handle first to allow comparisons */
4674 memset(fh, 0, sizeof(*fh));
4675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 status = decode_op_hdr(xdr, OP_GETFH);
4677 if (status)
4678 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
Benny Halevyc0eae662009-08-14 17:20:14 +03004680 p = xdr_inline_decode(xdr, 4);
4681 if (unlikely(!p))
4682 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004683 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 if (len > NFS4_FHSIZE)
4685 return -EIO;
4686 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004687 p = xdr_inline_decode(xdr, len);
4688 if (unlikely(!p))
4689 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004690 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004692out_overflow:
4693 print_overflow_msg(__func__, xdr);
4694 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695}
4696
4697static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4698{
4699 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004700
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 status = decode_op_hdr(xdr, OP_LINK);
4702 if (status)
4703 return status;
4704 return decode_change_info(xdr, cinfo);
4705}
4706
4707/*
4708 * We create the owner, so we know a proper owner.id length is 4.
4709 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004710static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004712 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004713 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004714 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004716 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004717 if (unlikely(!p))
4718 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004719 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004720 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004721 type = be32_to_cpup(p++); /* 4 byte read */
4722 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004723 fl->fl_start = (loff_t)offset;
4724 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4725 if (length == ~(uint64_t)0)
4726 fl->fl_end = OFFSET_MAX;
4727 fl->fl_type = F_WRLCK;
4728 if (type & 1)
4729 fl->fl_type = F_RDLCK;
4730 fl->fl_pid = 0;
4731 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004732 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4733 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4734 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004735 if (likely(p))
4736 return -NFS4ERR_DENIED;
4737out_overflow:
4738 print_overflow_msg(__func__, xdr);
4739 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740}
4741
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004742static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 int status;
4745
4746 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004747 if (status == -EIO)
4748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004750 status = decode_stateid(xdr, &res->stateid);
4751 if (unlikely(status))
4752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004754 status = decode_lock_denied(xdr, NULL);
4755 if (res->open_seqid != NULL)
4756 nfs_increment_open_seqid(status, res->open_seqid);
4757 nfs_increment_lock_seqid(status, res->lock_seqid);
4758out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 return status;
4760}
4761
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004762static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763{
4764 int status;
4765 status = decode_op_hdr(xdr, OP_LOCKT);
4766 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004767 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 return status;
4769}
4770
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004771static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 int status;
4774
4775 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004776 if (status != -EIO)
4777 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004778 if (status == 0)
4779 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 return status;
4781}
4782
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004783static int decode_release_lockowner(struct xdr_stream *xdr)
4784{
4785 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4786}
4787
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788static int decode_lookup(struct xdr_stream *xdr)
4789{
4790 return decode_op_hdr(xdr, OP_LOOKUP);
4791}
4792
4793/* This is too sick! */
4794static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4795{
Andy Adamson05d564f2008-12-23 16:06:15 -05004796 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 uint32_t limit_type, nblocks, blocksize;
4798
Benny Halevyc0eae662009-08-14 17:20:14 +03004799 p = xdr_inline_decode(xdr, 12);
4800 if (unlikely(!p))
4801 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004802 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004804 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004805 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004806 break;
4807 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004808 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004809 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004810 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 }
4812 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004813out_overflow:
4814 print_overflow_msg(__func__, xdr);
4815 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816}
4817
4818static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4819{
Andy Adamson05d564f2008-12-23 16:06:15 -05004820 __be32 *p;
4821 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004822 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Benny Halevyc0eae662009-08-14 17:20:14 +03004824 p = xdr_inline_decode(xdr, 4);
4825 if (unlikely(!p))
4826 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004827 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4829 res->delegation_type = 0;
4830 return 0;
4831 }
Benny Halevy07d30432009-08-14 17:19:52 +03004832 status = decode_stateid(xdr, &res->delegation);
4833 if (unlikely(status))
4834 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004835 p = xdr_inline_decode(xdr, 4);
4836 if (unlikely(!p))
4837 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004838 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004839
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004841 case NFS4_OPEN_DELEGATE_READ:
4842 res->delegation_type = FMODE_READ;
4843 break;
4844 case NFS4_OPEN_DELEGATE_WRITE:
4845 res->delegation_type = FMODE_WRITE|FMODE_READ;
4846 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 return -EIO;
4848 }
David Howells7539bba2006-08-22 20:06:09 -04004849 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004850out_overflow:
4851 print_overflow_msg(__func__, xdr);
4852 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853}
4854
4855static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4856{
Andy Adamson05d564f2008-12-23 16:06:15 -05004857 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004858 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004859 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
Andy Adamson05d564f2008-12-23 16:06:15 -05004861 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004862 if (status != -EIO)
4863 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004864 if (!status)
4865 status = decode_stateid(xdr, &res->stateid);
4866 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004867 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Andy Adamson05d564f2008-12-23 16:06:15 -05004869 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Benny Halevyc0eae662009-08-14 17:20:14 +03004871 p = xdr_inline_decode(xdr, 8);
4872 if (unlikely(!p))
4873 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004874 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004875 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004876 if (bmlen > 10)
4877 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
Benny Halevyc0eae662009-08-14 17:20:14 +03004879 p = xdr_inline_decode(xdr, bmlen << 2);
4880 if (unlikely(!p))
4881 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004882 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4883 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004884 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004885 for (; i < NFS4_BITMAP_SIZE; i++)
4886 res->attrset[i] = 0;
4887
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 return decode_delegation(xdr, res);
4889xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004890 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004892out_overflow:
4893 print_overflow_msg(__func__, xdr);
4894 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895}
4896
4897static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4898{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 int status;
4900
Andy Adamson05d564f2008-12-23 16:06:15 -05004901 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004902 if (status != -EIO)
4903 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004904 if (!status)
4905 status = decode_stateid(xdr, &res->stateid);
4906 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907}
4908
4909static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4910{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 int status;
4912
4913 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004914 if (status != -EIO)
4915 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004916 if (!status)
4917 status = decode_stateid(xdr, &res->stateid);
4918 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919}
4920
4921static int decode_putfh(struct xdr_stream *xdr)
4922{
4923 return decode_op_hdr(xdr, OP_PUTFH);
4924}
4925
4926static int decode_putrootfh(struct xdr_stream *xdr)
4927{
4928 return decode_op_hdr(xdr, OP_PUTROOTFH);
4929}
4930
4931static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4932{
Al Viro8687b632006-10-19 23:28:48 -07004933 __be32 *p;
Trond Myklebust64bd5772012-06-20 22:35:05 -04004934 uint32_t count, eof, recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 int status;
4936
4937 status = decode_op_hdr(xdr, OP_READ);
4938 if (status)
4939 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004940 p = xdr_inline_decode(xdr, 8);
4941 if (unlikely(!p))
4942 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004943 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004944 count = be32_to_cpup(p);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004945 recvd = xdr_read_pages(xdr, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004947 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 "count %u > recvd %u\n", count, recvd);
4949 count = recvd;
4950 eof = 0;
4951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 res->eof = eof;
4953 res->count = count;
4954 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004955out_overflow:
4956 print_overflow_msg(__func__, xdr);
4957 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958}
4959
4960static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4961{
Chuck Leverbcecff72007-10-26 13:32:03 -04004962 int status;
Chuck Levercd937102012-03-02 17:14:31 -05004963 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
4965 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004966 if (!status)
4967 status = decode_verifier(xdr, readdir->verifier.data);
4968 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 return status;
Chuck Levercd937102012-03-02 17:14:31 -05004970 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03004971 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05004972 __func__, verf[0], verf[1]);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004973 return xdr_read_pages(xdr, xdr->buf->page_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974}
4975
4976static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4977{
4978 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Chuck Leverbcecff72007-10-26 13:32:03 -04004979 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004980 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 int status;
4982
4983 status = decode_op_hdr(xdr, OP_READLINK);
4984 if (status)
4985 return status;
4986
4987 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004988 p = xdr_inline_decode(xdr, 4);
4989 if (unlikely(!p))
4990 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004991 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004993 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 return -ENAMETOOLONG;
4995 }
Trond Myklebust64bd5772012-06-20 22:35:05 -04004996 recvd = xdr_read_pages(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004998 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 "count %u > recvd %u\n", len, recvd);
5000 return -EIO;
5001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 /*
5003 * The XDR encode routine has set things up so that
5004 * the link text will be copied directly into the
5005 * buffer. We just have to do overflow-checking,
5006 * and and null-terminate the text (the VFS expects
5007 * null-termination).
5008 */
Chuck Leverb4687da2010-09-21 16:55:48 -04005009 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005011out_overflow:
5012 print_overflow_msg(__func__, xdr);
5013 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014}
5015
5016static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5017{
5018 int status;
5019
5020 status = decode_op_hdr(xdr, OP_REMOVE);
5021 if (status)
5022 goto out;
5023 status = decode_change_info(xdr, cinfo);
5024out:
5025 return status;
5026}
5027
5028static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5029 struct nfs4_change_info *new_cinfo)
5030{
5031 int status;
5032
5033 status = decode_op_hdr(xdr, OP_RENAME);
5034 if (status)
5035 goto out;
5036 if ((status = decode_change_info(xdr, old_cinfo)))
5037 goto out;
5038 status = decode_change_info(xdr, new_cinfo);
5039out:
5040 return status;
5041}
5042
5043static int decode_renew(struct xdr_stream *xdr)
5044{
5045 return decode_op_hdr(xdr, OP_RENEW);
5046}
5047
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005048static int
5049decode_restorefh(struct xdr_stream *xdr)
5050{
5051 return decode_op_hdr(xdr, OP_RESTOREFH);
5052}
5053
J. Bruce Fields029d1052005-06-22 17:16:22 +00005054static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05005055 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005056{
Trond Myklebust256e48b2012-06-21 11:18:13 -04005057 unsigned int savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005058 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04005059 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00005060 int status;
Trond Myklebustcff298c2012-08-14 17:14:17 -04005061 unsigned int pg_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005062
Andy Adamsonbf118a32011-12-07 11:55:27 -05005063 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005064 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5065 goto out;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005066
Trond Myklebust519d3952012-08-14 17:30:10 -04005067 xdr_enter_page(xdr, xdr->buf->page_len);
5068
Trond Myklebustcff298c2012-08-14 17:14:17 -04005069 /* Calculate the offset of the page data */
5070 pg_offset = xdr->buf->head[0].iov_len;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005071
J. Bruce Fields029d1052005-06-22 17:16:22 +00005072 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5073 goto out;
5074 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5075 goto out;
5076
5077 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5078 return -EIO;
5079 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
J. Bruce Fields029d1052005-06-22 17:16:22 +00005080
Andy Adamsonbf118a32011-12-07 11:55:27 -05005081 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5082 * are stored with the acl data to handle the problem of
5083 * variable length bitmaps.*/
Trond Myklebustcff298c2012-08-14 17:14:17 -04005084 res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
Trond Myklebust519d3952012-08-14 17:30:10 -04005085 res->acl_len = attrlen;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005086
5087 /* Check for receive buffer overflow */
5088 if (res->acl_len > (xdr->nwords << 2) ||
5089 res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
5090 res->acl_flags |= NFS4_ACL_TRUNC;
Trond Myklebust519d3952012-08-14 17:30:10 -04005091 dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
Trond Myklebustcff298c2012-08-14 17:14:17 -04005092 attrlen, xdr->nwords << 2);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005093 }
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005094 } else
5095 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005096
5097out:
5098 return status;
5099}
5100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101static int
5102decode_savefh(struct xdr_stream *xdr)
5103{
5104 return decode_op_hdr(xdr, OP_SAVEFH);
5105}
5106
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005107static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108{
Al Viro8687b632006-10-19 23:28:48 -07005109 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 uint32_t bmlen;
5111 int status;
5112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 status = decode_op_hdr(xdr, OP_SETATTR);
5114 if (status)
5115 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005116 p = xdr_inline_decode(xdr, 4);
5117 if (unlikely(!p))
5118 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005119 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005120 p = xdr_inline_decode(xdr, bmlen << 2);
5121 if (likely(p))
5122 return 0;
5123out_overflow:
5124 print_overflow_msg(__func__, xdr);
5125 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126}
5127
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005128static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129{
Al Viro8687b632006-10-19 23:28:48 -07005130 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 uint32_t opnum;
5132 int32_t nfserr;
5133
Benny Halevyc0eae662009-08-14 17:20:14 +03005134 p = xdr_inline_decode(xdr, 8);
5135 if (unlikely(!p))
5136 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005137 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005139 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005140 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 return -EIO;
5142 }
Benny Halevycccddf42009-08-14 17:20:19 +03005143 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005145 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5146 if (unlikely(!p))
5147 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005148 p = xdr_decode_hyper(p, &res->clientid);
5149 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 } else if (nfserr == NFSERR_CLID_INUSE) {
5151 uint32_t len;
5152
5153 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005154 p = xdr_inline_decode(xdr, 4);
5155 if (unlikely(!p))
5156 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005157 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005158 p = xdr_inline_decode(xdr, len);
5159 if (unlikely(!p))
5160 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
5162 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005163 p = xdr_inline_decode(xdr, 4);
5164 if (unlikely(!p))
5165 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005166 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005167 p = xdr_inline_decode(xdr, len);
5168 if (unlikely(!p))
5169 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 return -NFSERR_CLID_INUSE;
5171 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005172 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
5174 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005175out_overflow:
5176 print_overflow_msg(__func__, xdr);
5177 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178}
5179
5180static int decode_setclientid_confirm(struct xdr_stream *xdr)
5181{
5182 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5183}
5184
5185static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5186{
Al Viro8687b632006-10-19 23:28:48 -07005187 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 int status;
5189
5190 status = decode_op_hdr(xdr, OP_WRITE);
5191 if (status)
5192 return status;
5193
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005194 p = xdr_inline_decode(xdr, 8);
Benny Halevyc0eae662009-08-14 17:20:14 +03005195 if (unlikely(!p))
5196 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005197 res->count = be32_to_cpup(p++);
5198 res->verf->committed = be32_to_cpup(p++);
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005199 return decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevyc0eae662009-08-14 17:20:14 +03005200out_overflow:
5201 print_overflow_msg(__func__, xdr);
5202 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203}
5204
5205static int decode_delegreturn(struct xdr_stream *xdr)
5206{
5207 return decode_op_hdr(xdr, OP_DELEGRETURN);
5208}
5209
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005210static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5211{
5212 __be32 *p;
5213
5214 p = xdr_inline_decode(xdr, 4);
5215 if (unlikely(!p))
5216 goto out_overflow;
5217 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5218 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5219 goto out_err;
5220
5221 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5222 if (unlikely(!p))
5223 goto out_overflow;
5224 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5225
5226 p = xdr_inline_decode(xdr, 8);
5227 if (unlikely(!p))
5228 goto out_overflow;
5229 flavor->gss.qop4 = be32_to_cpup(p++);
5230 flavor->gss.service = be32_to_cpup(p);
5231
5232 return 0;
5233
5234out_overflow:
5235 print_overflow_msg(__func__, xdr);
5236 return -EIO;
5237out_err:
5238 return -EINVAL;
5239}
5240
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005241static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005242{
5243 struct nfs4_secinfo_flavor *sec_flavor;
5244 int status;
5245 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005246 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005247
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005248 p = xdr_inline_decode(xdr, 4);
5249 if (unlikely(!p))
5250 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005251
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005252 res->flavors->num_flavors = 0;
5253 num_flavors = be32_to_cpup(p);
5254
5255 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005256 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005257 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005258 break;
5259
5260 p = xdr_inline_decode(xdr, 4);
5261 if (unlikely(!p))
5262 goto out_overflow;
5263 sec_flavor->flavor = be32_to_cpup(p);
5264
5265 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005266 status = decode_secinfo_gss(xdr, sec_flavor);
5267 if (status)
5268 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005269 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005270 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005271 }
5272
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005273 status = 0;
Bryan Schumaker613e9012011-04-27 15:28:44 -04005274out:
5275 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005276out_overflow:
5277 print_overflow_msg(__func__, xdr);
5278 return -EIO;
5279}
5280
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005281static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5282{
5283 int status = decode_op_hdr(xdr, OP_SECINFO);
5284 if (status)
5285 return status;
5286 return decode_secinfo_common(xdr, res);
5287}
5288
Benny Halevy99fe60d2009-04-01 09:22:29 -04005289#if defined(CONFIG_NFS_V4_1)
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005290static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5291{
5292 int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
5293 if (status)
5294 return status;
5295 return decode_secinfo_common(xdr, res);
5296}
5297
Benny Halevy99fe60d2009-04-01 09:22:29 -04005298static int decode_exchange_id(struct xdr_stream *xdr,
5299 struct nfs41_exchange_id_res *res)
5300{
5301 __be32 *p;
5302 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005303 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005304 int status;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005305 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005306
5307 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5308 if (status)
5309 return status;
5310
Benny Halevyc0eae662009-08-14 17:20:14 +03005311 p = xdr_inline_decode(xdr, 8);
5312 if (unlikely(!p))
5313 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005314 xdr_decode_hyper(p, &res->clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005315 p = xdr_inline_decode(xdr, 12);
5316 if (unlikely(!p))
5317 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005318 res->seqid = be32_to_cpup(p++);
5319 res->flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005320
5321 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005322 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005323 if (dummy != SP4_NONE)
5324 return -EIO;
5325
Chuck Leveracdeb692012-05-21 22:46:16 -04005326 /* server_owner4.so_minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005327 p = xdr_inline_decode(xdr, 8);
5328 if (unlikely(!p))
5329 goto out_overflow;
Chuck Leveracdeb692012-05-21 22:46:16 -04005330 p = xdr_decode_hyper(p, &res->server_owner->minor_id);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005331
Chuck Leveracdeb692012-05-21 22:46:16 -04005332 /* server_owner4.so_major_id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005333 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5334 if (unlikely(status))
5335 return status;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005336 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5337 return -EIO;
Chuck Leveracdeb692012-05-21 22:46:16 -04005338 memcpy(res->server_owner->major_id, dummy_str, dummy);
5339 res->server_owner->major_id_sz = dummy;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005340
Chuck Leveracdeb692012-05-21 22:46:16 -04005341 /* server_scope4 */
5342 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5343 if (unlikely(status))
5344 return status;
5345 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5346 return -EIO;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005347 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5348 res->server_scope->server_scope_sz = dummy;
5349
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005350 /* Implementation Id */
5351 p = xdr_inline_decode(xdr, 4);
5352 if (unlikely(!p))
5353 goto out_overflow;
5354 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005355
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005356 if (impl_id_count) {
5357 /* nii_domain */
5358 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5359 if (unlikely(status))
5360 return status;
5361 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5362 return -EIO;
5363 memcpy(res->impl_id->domain, dummy_str, dummy);
5364
5365 /* nii_name */
5366 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5367 if (unlikely(status))
5368 return status;
5369 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5370 return -EIO;
5371 memcpy(res->impl_id->name, dummy_str, dummy);
5372
5373 /* nii_date */
5374 p = xdr_inline_decode(xdr, 12);
5375 if (unlikely(!p))
5376 goto out_overflow;
5377 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5378 res->impl_id->date.nseconds = be32_to_cpup(p);
5379
5380 /* if there's more than one entry, ignore the rest */
5381 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005382 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005383out_overflow:
5384 print_overflow_msg(__func__, xdr);
5385 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005386}
Andy Adamsonfc931582009-04-01 09:22:31 -04005387
5388static int decode_chan_attrs(struct xdr_stream *xdr,
5389 struct nfs4_channel_attrs *attrs)
5390{
5391 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005392 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005393
Benny Halevyc0eae662009-08-14 17:20:14 +03005394 p = xdr_inline_decode(xdr, 28);
5395 if (unlikely(!p))
5396 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005397 val = be32_to_cpup(p++); /* headerpadsz */
5398 if (val)
5399 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005400 attrs->max_rqst_sz = be32_to_cpup(p++);
5401 attrs->max_resp_sz = be32_to_cpup(p++);
5402 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5403 attrs->max_ops = be32_to_cpup(p++);
5404 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005405 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005406 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005407 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5408 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005409 return -EINVAL;
5410 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005411 if (nr_attrs == 1) {
5412 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5413 if (unlikely(!p))
5414 goto out_overflow;
5415 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005416 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005417out_overflow:
5418 print_overflow_msg(__func__, xdr);
5419 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005420}
5421
Benny Halevye78291e2009-08-14 17:20:00 +03005422static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5423{
5424 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005425}
5426
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005427static int decode_bind_conn_to_session(struct xdr_stream *xdr,
5428 struct nfs41_bind_conn_to_session_res *res)
5429{
5430 __be32 *p;
5431 int status;
5432
5433 status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
5434 if (!status)
5435 status = decode_sessionid(xdr, &res->session->sess_id);
5436 if (unlikely(status))
5437 return status;
5438
5439 /* dir flags, rdma mode bool */
5440 p = xdr_inline_decode(xdr, 8);
5441 if (unlikely(!p))
5442 goto out_overflow;
5443
5444 res->dir = be32_to_cpup(p++);
5445 if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
5446 return -EIO;
5447 if (be32_to_cpup(p) == 0)
5448 res->use_conn_in_rdma_mode = false;
5449 else
5450 res->use_conn_in_rdma_mode = true;
5451
5452 return 0;
5453out_overflow:
5454 print_overflow_msg(__func__, xdr);
5455 return -EIO;
5456}
5457
Andy Adamsonfc931582009-04-01 09:22:31 -04005458static int decode_create_session(struct xdr_stream *xdr,
5459 struct nfs41_create_session_res *res)
5460{
5461 __be32 *p;
5462 int status;
5463 struct nfs_client *clp = res->client;
5464 struct nfs4_session *session = clp->cl_session;
5465
5466 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005467 if (!status)
5468 status = decode_sessionid(xdr, &session->sess_id);
5469 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005470 return status;
5471
Andy Adamsonfc931582009-04-01 09:22:31 -04005472 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005473 p = xdr_inline_decode(xdr, 8);
5474 if (unlikely(!p))
5475 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005476 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005477 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005478
5479 /* Channel attributes */
5480 status = decode_chan_attrs(xdr, &session->fc_attrs);
5481 if (!status)
5482 status = decode_chan_attrs(xdr, &session->bc_attrs);
5483 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005484out_overflow:
5485 print_overflow_msg(__func__, xdr);
5486 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005487}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005488
5489static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5490{
5491 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5492}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005493
Trond Myklebust66245532012-05-25 17:18:09 -04005494static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
5495{
5496 return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
5497}
5498
Ricardo Labiaga180197532009-12-05 16:08:40 -05005499static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5500{
5501 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5502}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005503#endif /* CONFIG_NFS_V4_1 */
5504
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005505static int decode_sequence(struct xdr_stream *xdr,
5506 struct nfs4_sequence_res *res,
5507 struct rpc_rqst *rqstp)
5508{
5509#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005510 struct nfs4_sessionid id;
5511 u32 dummy;
5512 int status;
5513 __be32 *p;
5514
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005515 if (!res->sr_session)
5516 return 0;
5517
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005518 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005519 if (!status)
5520 status = decode_sessionid(xdr, &id);
5521 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005522 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005523
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005524 /*
5525 * If the server returns different values for sessionID, slotID or
5526 * sequence number, the server is looney tunes.
5527 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005528 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005529
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005530 if (memcmp(id.data, res->sr_session->sess_id.data,
5531 NFS4_MAX_SESSIONID_LEN)) {
5532 dprintk("%s Invalid session id\n", __func__);
5533 goto out_err;
5534 }
Benny Halevye78291e2009-08-14 17:20:00 +03005535
Benny Halevyc0eae662009-08-14 17:20:14 +03005536 p = xdr_inline_decode(xdr, 20);
5537 if (unlikely(!p))
5538 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005539
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005540 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005541 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005542 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005543 dprintk("%s Invalid sequence number\n", __func__);
5544 goto out_err;
5545 }
5546 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005547 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005548 if (dummy != res->sr_slot - res->sr_session->fc_slot_table.slots) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005549 dprintk("%s Invalid slot id\n", __func__);
5550 goto out_err;
5551 }
5552 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005553 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005554 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005555 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005556 /* result flags */
5557 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005558 status = 0;
5559out_err:
5560 res->sr_status = status;
5561 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005562out_overflow:
5563 print_overflow_msg(__func__, xdr);
5564 status = -EIO;
5565 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005566#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005567 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005568#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005569}
5570
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005571#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005572/*
5573 * TODO: Need to handle case when EOF != true;
5574 */
5575static int decode_getdevicelist(struct xdr_stream *xdr,
5576 struct pnfs_devicelist *res)
5577{
5578 __be32 *p;
5579 int status, i;
Trond Myklebust98d94522012-06-08 12:01:14 -04005580 nfs4_verifier verftemp;
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005581
5582 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5583 if (status)
5584 return status;
5585
5586 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5587 if (unlikely(!p))
5588 goto out_overflow;
5589
5590 /* TODO: Skip cookie for now */
5591 p += 2;
5592
5593 /* Read verifier */
Trond Myklebust98d94522012-06-08 12:01:14 -04005594 p = xdr_decode_opaque_fixed(p, verftemp.data, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005595
5596 res->num_devs = be32_to_cpup(p);
5597
5598 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5599
5600 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005601 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005602 __func__, res->num_devs);
5603 return -EIO;
5604 }
5605
5606 p = xdr_inline_decode(xdr,
5607 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5608 if (unlikely(!p))
5609 goto out_overflow;
5610 for (i = 0; i < res->num_devs; i++)
5611 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5612 NFS4_DEVICEID4_SIZE);
5613 res->eof = be32_to_cpup(p);
5614 return 0;
5615out_overflow:
5616 print_overflow_msg(__func__, xdr);
5617 return -EIO;
5618}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005619
5620static int decode_getdeviceinfo(struct xdr_stream *xdr,
5621 struct pnfs_device *pdev)
5622{
5623 __be32 *p;
5624 uint32_t len, type;
5625 int status;
5626
5627 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5628 if (status) {
5629 if (status == -ETOOSMALL) {
5630 p = xdr_inline_decode(xdr, 4);
5631 if (unlikely(!p))
5632 goto out_overflow;
5633 pdev->mincount = be32_to_cpup(p);
5634 dprintk("%s: Min count too small. mincnt = %u\n",
5635 __func__, pdev->mincount);
5636 }
5637 return status;
5638 }
5639
5640 p = xdr_inline_decode(xdr, 8);
5641 if (unlikely(!p))
5642 goto out_overflow;
5643 type = be32_to_cpup(p++);
5644 if (type != pdev->layout_type) {
5645 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5646 __func__, pdev->layout_type, type);
5647 return -EINVAL;
5648 }
5649 /*
5650 * Get the length of the opaque device_addr4. xdr_read_pages places
5651 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5652 * and places the remaining xdr data in xdr_buf->tail
5653 */
5654 pdev->mincount = be32_to_cpup(p);
Trond Myklebust13fe4ba2012-08-01 14:21:12 -04005655 if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
5656 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005657
5658 /* Parse notification bitmap, verifying that it is zero. */
5659 p = xdr_inline_decode(xdr, 4);
5660 if (unlikely(!p))
5661 goto out_overflow;
5662 len = be32_to_cpup(p);
5663 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005664 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005665
5666 p = xdr_inline_decode(xdr, 4 * len);
5667 if (unlikely(!p))
5668 goto out_overflow;
5669 for (i = 0; i < len; i++, p++) {
5670 if (be32_to_cpup(p)) {
5671 dprintk("%s: notifications not supported\n",
5672 __func__);
5673 return -EIO;
5674 }
5675 }
5676 }
5677 return 0;
5678out_overflow:
5679 print_overflow_msg(__func__, xdr);
5680 return -EIO;
5681}
5682
5683static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5684 struct nfs4_layoutget_res *res)
5685{
5686 __be32 *p;
5687 int status;
5688 u32 layout_count;
Trond Myklebust64bd5772012-06-20 22:35:05 -04005689 u32 recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005690
5691 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5692 if (status)
5693 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005694 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005695 if (unlikely(!p))
5696 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005697 res->return_on_close = be32_to_cpup(p);
5698 decode_stateid(xdr, &res->stateid);
5699 p = xdr_inline_decode(xdr, 4);
5700 if (unlikely(!p))
5701 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005702 layout_count = be32_to_cpup(p);
5703 if (!layout_count) {
5704 dprintk("%s: server responded with empty layout array\n",
5705 __func__);
5706 return -EINVAL;
5707 }
5708
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005709 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005710 if (unlikely(!p))
5711 goto out_overflow;
5712 p = xdr_decode_hyper(p, &res->range.offset);
5713 p = xdr_decode_hyper(p, &res->range.length);
5714 res->range.iomode = be32_to_cpup(p++);
5715 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005716 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005717
5718 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5719 __func__,
5720 (unsigned long)res->range.offset,
5721 (unsigned long)res->range.length,
5722 res->range.iomode,
5723 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005724 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005725
Trond Myklebust64bd5772012-06-20 22:35:05 -04005726 recvd = xdr_read_pages(xdr, res->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005727 if (res->layoutp->len > recvd) {
5728 dprintk("NFS: server cheating in layoutget reply: "
5729 "layout len %u > recvd %u\n",
5730 res->layoutp->len, recvd);
5731 return -EINVAL;
5732 }
5733
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005734 if (layout_count > 1) {
5735 /* We only handle a length one array at the moment. Any
5736 * further entries are just ignored. Note that this means
5737 * the client may see a response that is less than the
5738 * minimum it requested.
5739 */
5740 dprintk("%s: server responded with %d layouts, dropping tail\n",
5741 __func__, layout_count);
5742 }
5743
5744 return 0;
5745out_overflow:
5746 print_overflow_msg(__func__, xdr);
5747 return -EIO;
5748}
Andy Adamson863a3c62011-03-23 13:27:54 +00005749
Benny Halevycbe82602011-05-22 19:52:37 +03005750static int decode_layoutreturn(struct xdr_stream *xdr,
5751 struct nfs4_layoutreturn_res *res)
5752{
5753 __be32 *p;
5754 int status;
5755
5756 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5757 if (status)
5758 return status;
5759 p = xdr_inline_decode(xdr, 4);
5760 if (unlikely(!p))
5761 goto out_overflow;
5762 res->lrs_present = be32_to_cpup(p);
5763 if (res->lrs_present)
5764 status = decode_stateid(xdr, &res->stateid);
5765 return status;
5766out_overflow:
5767 print_overflow_msg(__func__, xdr);
5768 return -EIO;
5769}
5770
Andy Adamson863a3c62011-03-23 13:27:54 +00005771static int decode_layoutcommit(struct xdr_stream *xdr,
5772 struct rpc_rqst *req,
5773 struct nfs4_layoutcommit_res *res)
5774{
5775 __be32 *p;
5776 __u32 sizechanged;
5777 int status;
5778
5779 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005780 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005781 if (status)
5782 return status;
5783
5784 p = xdr_inline_decode(xdr, 4);
5785 if (unlikely(!p))
5786 goto out_overflow;
5787 sizechanged = be32_to_cpup(p);
5788
5789 if (sizechanged) {
5790 /* throw away new size */
5791 p = xdr_inline_decode(xdr, 8);
5792 if (unlikely(!p))
5793 goto out_overflow;
5794 }
5795 return 0;
5796out_overflow:
5797 print_overflow_msg(__func__, xdr);
5798 return -EIO;
5799}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005800
5801static int decode_test_stateid(struct xdr_stream *xdr,
5802 struct nfs41_test_stateid_res *res)
5803{
5804 __be32 *p;
5805 int status;
5806 int num_res;
5807
5808 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5809 if (status)
5810 return status;
5811
5812 p = xdr_inline_decode(xdr, 4);
5813 if (unlikely(!p))
5814 goto out_overflow;
5815 num_res = be32_to_cpup(p++);
5816 if (num_res != 1)
5817 goto out;
5818
5819 p = xdr_inline_decode(xdr, 4);
5820 if (unlikely(!p))
5821 goto out_overflow;
5822 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005823
5824 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005825out_overflow:
5826 print_overflow_msg(__func__, xdr);
5827out:
5828 return -EIO;
5829}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005830
5831static int decode_free_stateid(struct xdr_stream *xdr,
5832 struct nfs41_free_stateid_res *res)
5833{
5834 __be32 *p;
5835 int status;
5836
5837 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5838 if (status)
5839 return status;
5840
5841 p = xdr_inline_decode(xdr, 4);
5842 if (unlikely(!p))
5843 goto out_overflow;
5844 res->status = be32_to_cpup(p++);
5845 return res->status;
5846out_overflow:
5847 print_overflow_msg(__func__, xdr);
5848 return -EIO;
5849}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005850#endif /* CONFIG_NFS_V4_1 */
5851
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852/*
Benny Halevy49c25592008-12-23 16:06:16 -05005853 * END OF "GENERIC" DECODE ROUTINES.
5854 */
5855
5856/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857 * Decode OPEN_DOWNGRADE response
5858 */
Chuck Leverbf269552010-12-14 14:59:29 +00005859static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5860 struct xdr_stream *xdr,
5861 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862{
Andy Adamson05d564f2008-12-23 16:06:15 -05005863 struct compound_hdr hdr;
5864 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Chuck Leverbf269552010-12-14 14:59:29 +00005866 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005867 if (status)
5868 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005869 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005870 if (status)
5871 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005872 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005873 if (status)
5874 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005875 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005876 if (status != 0)
5877 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005878 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005880 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881}
5882
5883/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884 * Decode ACCESS response
5885 */
Chuck Leverbf269552010-12-14 14:59:29 +00005886static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5887 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889 struct compound_hdr hdr;
5890 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005891
Chuck Leverbf269552010-12-14 14:59:29 +00005892 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005893 if (status)
5894 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005895 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005896 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005898 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005899 if (status != 0)
5900 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04005901 status = decode_access(xdr, &res->supported, &res->access);
Trond Myklebust76b32992007-08-10 17:45:11 -04005902 if (status != 0)
5903 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005904 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905out:
5906 return status;
5907}
5908
5909/*
5910 * Decode LOOKUP response
5911 */
Chuck Leverbf269552010-12-14 14:59:29 +00005912static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5913 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915 struct compound_hdr hdr;
5916 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005917
Chuck Leverbf269552010-12-14 14:59:29 +00005918 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005919 if (status)
5920 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005921 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005922 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005924 status = decode_putfh(xdr);
5925 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005927 status = decode_lookup(xdr);
5928 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005930 status = decode_getfh(xdr, res->fh);
5931 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005933 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934out:
5935 return status;
5936}
5937
5938/*
5939 * Decode LOOKUP_ROOT response
5940 */
Chuck Leverbf269552010-12-14 14:59:29 +00005941static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5942 struct xdr_stream *xdr,
5943 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 struct compound_hdr hdr;
5946 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005947
Chuck Leverbf269552010-12-14 14:59:29 +00005948 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005949 if (status)
5950 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005951 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005952 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005954 status = decode_putrootfh(xdr);
5955 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005957 status = decode_getfh(xdr, res->fh);
5958 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005959 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960out:
5961 return status;
5962}
5963
5964/*
5965 * Decode REMOVE response
5966 */
Chuck Leverbf269552010-12-14 14:59:29 +00005967static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5968 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 struct compound_hdr hdr;
5971 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005972
Chuck Leverbf269552010-12-14 14:59:29 +00005973 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005974 if (status)
5975 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005976 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005977 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005979 status = decode_putfh(xdr);
5980 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005981 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005982 status = decode_remove(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983out:
5984 return status;
5985}
5986
5987/*
5988 * Decode RENAME response
5989 */
Chuck Leverbf269552010-12-14 14:59:29 +00005990static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5991 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 struct compound_hdr hdr;
5994 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005995
Chuck Leverbf269552010-12-14 14:59:29 +00005996 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005997 if (status)
5998 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005999 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006000 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006002 status = decode_putfh(xdr);
6003 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006005 status = decode_savefh(xdr);
6006 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006008 status = decode_putfh(xdr);
6009 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006011 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012out:
6013 return status;
6014}
6015
6016/*
6017 * Decode LINK response
6018 */
Chuck Leverbf269552010-12-14 14:59:29 +00006019static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6020 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 struct compound_hdr hdr;
6023 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006024
Chuck Leverbf269552010-12-14 14:59:29 +00006025 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006026 if (status)
6027 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006028 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006029 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006031 status = decode_putfh(xdr);
6032 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006034 status = decode_savefh(xdr);
6035 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006037 status = decode_putfh(xdr);
6038 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006040 status = decode_link(xdr, &res->cinfo);
6041 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006042 goto out;
6043 /*
6044 * Note order: OP_LINK leaves the directory as the current
6045 * filehandle.
6046 */
Chuck Leverbf269552010-12-14 14:59:29 +00006047 status = decode_restorefh(xdr);
6048 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006049 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006050 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051out:
6052 return status;
6053}
6054
6055/*
6056 * Decode CREATE response
6057 */
Chuck Leverbf269552010-12-14 14:59:29 +00006058static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6059 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 struct compound_hdr hdr;
6062 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006063
Chuck Leverbf269552010-12-14 14:59:29 +00006064 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006065 if (status)
6066 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006067 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006068 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006070 status = decode_putfh(xdr);
6071 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006073 status = decode_create(xdr, &res->dir_cinfo);
6074 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006076 status = decode_getfh(xdr, res->fh);
6077 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 goto out;
Trond Myklebust7c317fc2012-04-27 13:48:18 -04006079 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080out:
6081 return status;
6082}
6083
6084/*
6085 * Decode SYMLINK response
6086 */
Chuck Leverbf269552010-12-14 14:59:29 +00006087static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6088 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089{
Chuck Leverbf269552010-12-14 14:59:29 +00006090 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091}
6092
6093/*
6094 * Decode GETATTR response
6095 */
Chuck Leverbf269552010-12-14 14:59:29 +00006096static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6097 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 struct compound_hdr hdr;
6100 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006101
Chuck Leverbf269552010-12-14 14:59:29 +00006102 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 if (status)
6104 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006105 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006106 if (status)
6107 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006108 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 if (status)
6110 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006111 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112out:
6113 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114}
6115
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006116/*
6117 * Encode an SETACL request
6118 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006119static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6120 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006121{
Andy Adamson05d564f2008-12-23 16:06:15 -05006122 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006123 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006124 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006125
Chuck Lever9f06c712010-12-14 14:59:18 +00006126 encode_compound_hdr(xdr, req, &hdr);
6127 encode_sequence(xdr, &args->seq_args, &hdr);
6128 encode_putfh(xdr, args->fh, &hdr);
6129 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006130 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006131}
Andy Adamson05d564f2008-12-23 16:06:15 -05006132
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006133/*
6134 * Decode SETACL response
6135 */
6136static int
Chuck Leverbf269552010-12-14 14:59:29 +00006137nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006138 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006139{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006140 struct compound_hdr hdr;
6141 int status;
6142
Chuck Leverbf269552010-12-14 14:59:29 +00006143 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006144 if (status)
6145 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006146 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006147 if (status)
6148 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006149 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006150 if (status)
6151 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006152 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006153out:
6154 return status;
6155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156
6157/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006158 * Decode GETACL response
6159 */
6160static int
Chuck Leverbf269552010-12-14 14:59:29 +00006161nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006162 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006163{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006164 struct compound_hdr hdr;
6165 int status;
6166
Trond Myklebust331818f2012-02-03 18:30:53 -05006167 if (res->acl_scratch != NULL) {
6168 void *p = page_address(res->acl_scratch);
6169 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6170 }
Chuck Leverbf269552010-12-14 14:59:29 +00006171 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006172 if (status)
6173 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006174 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006175 if (status)
6176 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006177 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006178 if (status)
6179 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006180 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006181
6182out:
6183 return status;
6184}
6185
6186/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187 * Decode CLOSE response
6188 */
Chuck Leverbf269552010-12-14 14:59:29 +00006189static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6190 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191{
Andy Adamson05d564f2008-12-23 16:06:15 -05006192 struct compound_hdr hdr;
6193 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194
Chuck Leverbf269552010-12-14 14:59:29 +00006195 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006196 if (status)
6197 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006198 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006199 if (status)
6200 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006201 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006202 if (status)
6203 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006204 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006205 if (status != 0)
6206 goto out;
6207 /*
6208 * Note: Server may do delete on close for this file
6209 * in which case the getattr call will fail with
6210 * an ESTALE error. Shouldn't be a problem,
6211 * though, since fattr->valid will remain unset.
6212 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006213 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006215 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216}
6217
6218/*
6219 * Decode OPEN response
6220 */
Chuck Leverbf269552010-12-14 14:59:29 +00006221static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6222 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223{
Andy Adamson05d564f2008-12-23 16:06:15 -05006224 struct compound_hdr hdr;
6225 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226
Chuck Leverbf269552010-12-14 14:59:29 +00006227 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006228 if (status)
6229 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006230 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006231 if (status)
6232 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006233 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006234 if (status)
6235 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006236 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006237 if (status)
6238 goto out;
Weston Andros Adamson01913b42012-09-06 15:54:27 -04006239 status = decode_getfh(xdr, &res->fh);
6240 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04006242 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust90ff0c52012-04-27 13:48:18 -04006243 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006245 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246}
6247
6248/*
6249 * Decode OPEN_CONFIRM response
6250 */
Chuck Leverbf269552010-12-14 14:59:29 +00006251static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6252 struct xdr_stream *xdr,
6253 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254{
Andy Adamson05d564f2008-12-23 16:06:15 -05006255 struct compound_hdr hdr;
6256 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Chuck Leverbf269552010-12-14 14:59:29 +00006258 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006259 if (status)
6260 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006261 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006262 if (status)
6263 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006264 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006266 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267}
6268
6269/*
6270 * Decode OPEN response
6271 */
Chuck Leverbf269552010-12-14 14:59:29 +00006272static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6273 struct xdr_stream *xdr,
6274 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275{
Andy Adamson05d564f2008-12-23 16:06:15 -05006276 struct compound_hdr hdr;
6277 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Chuck Leverbf269552010-12-14 14:59:29 +00006279 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006280 if (status)
6281 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006282 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006283 if (status)
6284 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006285 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006286 if (status)
6287 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006288 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006289 if (status)
6290 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04006291 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust6926afd2012-01-07 13:22:46 -05006292 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006294 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295}
6296
6297/*
6298 * Decode SETATTR response
6299 */
Chuck Leverbf269552010-12-14 14:59:29 +00006300static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6301 struct xdr_stream *xdr,
6302 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303{
Andy Adamson05d564f2008-12-23 16:06:15 -05006304 struct compound_hdr hdr;
6305 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
Chuck Leverbf269552010-12-14 14:59:29 +00006307 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006308 if (status)
6309 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006310 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006311 if (status)
6312 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006313 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006314 if (status)
6315 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006316 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006317 if (status)
6318 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006319 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006321 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322}
6323
6324/*
6325 * Decode LOCK response
6326 */
Chuck Leverbf269552010-12-14 14:59:29 +00006327static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6328 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330 struct compound_hdr hdr;
6331 int status;
6332
Chuck Leverbf269552010-12-14 14:59:29 +00006333 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334 if (status)
6335 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006336 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006337 if (status)
6338 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006339 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340 if (status)
6341 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006342 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343out:
6344 return status;
6345}
6346
6347/*
6348 * Decode LOCKT response
6349 */
Chuck Leverbf269552010-12-14 14:59:29 +00006350static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6351 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353 struct compound_hdr hdr;
6354 int status;
6355
Chuck Leverbf269552010-12-14 14:59:29 +00006356 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357 if (status)
6358 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006359 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006360 if (status)
6361 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006362 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363 if (status)
6364 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006365 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366out:
6367 return status;
6368}
6369
6370/*
6371 * Decode LOCKU response
6372 */
Chuck Leverbf269552010-12-14 14:59:29 +00006373static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6374 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376 struct compound_hdr hdr;
6377 int status;
6378
Chuck Leverbf269552010-12-14 14:59:29 +00006379 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380 if (status)
6381 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006382 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006383 if (status)
6384 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006385 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386 if (status)
6387 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006388 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389out:
6390 return status;
6391}
6392
Chuck Leverbf269552010-12-14 14:59:29 +00006393static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6394 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006395{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006396 struct compound_hdr hdr;
6397 int status;
6398
Chuck Leverbf269552010-12-14 14:59:29 +00006399 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006400 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006401 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006402 return status;
6403}
6404
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405/*
6406 * Decode READLINK response
6407 */
Chuck Leverbf269552010-12-14 14:59:29 +00006408static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6409 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006410 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 struct compound_hdr hdr;
6413 int status;
6414
Chuck Leverbf269552010-12-14 14:59:29 +00006415 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 if (status)
6417 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006418 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006419 if (status)
6420 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006421 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 if (status)
6423 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006424 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425out:
6426 return status;
6427}
6428
6429/*
6430 * Decode READDIR response
6431 */
Chuck Leverbf269552010-12-14 14:59:29 +00006432static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6433 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435 struct compound_hdr hdr;
6436 int status;
6437
Chuck Leverbf269552010-12-14 14:59:29 +00006438 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 if (status)
6440 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006441 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006442 if (status)
6443 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006444 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 if (status)
6446 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006447 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448out:
6449 return status;
6450}
6451
6452/*
6453 * Decode Read response
6454 */
Chuck Leverbf269552010-12-14 14:59:29 +00006455static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6456 struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458 struct compound_hdr hdr;
6459 int status;
6460
Chuck Leverbf269552010-12-14 14:59:29 +00006461 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 if (status)
6463 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006464 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006465 if (status)
6466 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006467 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468 if (status)
6469 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006470 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 if (!status)
6472 status = res->count;
6473out:
6474 return status;
6475}
6476
6477/*
6478 * Decode WRITE response
6479 */
Chuck Leverbf269552010-12-14 14:59:29 +00006480static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6481 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 struct compound_hdr hdr;
6484 int status;
6485
Chuck Leverbf269552010-12-14 14:59:29 +00006486 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 if (status)
6488 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006489 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006490 if (status)
6491 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006492 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 if (status)
6494 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006495 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006496 if (status)
6497 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006498 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006499 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 if (!status)
6501 status = res->count;
6502out:
6503 return status;
6504}
6505
6506/*
6507 * Decode COMMIT response
6508 */
Chuck Leverbf269552010-12-14 14:59:29 +00006509static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04006510 struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512 struct compound_hdr hdr;
6513 int status;
6514
Chuck Leverbf269552010-12-14 14:59:29 +00006515 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 if (status)
6517 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006518 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006519 if (status)
6520 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006521 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 if (status)
6523 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006524 status = decode_commit(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525out:
6526 return status;
6527}
6528
6529/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006530 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 */
Chuck Leverbf269552010-12-14 14:59:29 +00006532static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006533 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 struct compound_hdr hdr;
6536 int status;
6537
Chuck Leverbf269552010-12-14 14:59:29 +00006538 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006540 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006541 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006542 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006544 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 return status;
6546}
6547
6548/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006549 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550 */
Chuck Leverbf269552010-12-14 14:59:29 +00006551static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006552 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 struct compound_hdr hdr;
6555 int status;
6556
Chuck Leverbf269552010-12-14 14:59:29 +00006557 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006559 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006560 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006561 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006563 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564 return status;
6565}
6566
6567/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006568 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569 */
Chuck Leverbf269552010-12-14 14:59:29 +00006570static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006571 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573 struct compound_hdr hdr;
6574 int status;
6575
Chuck Leverbf269552010-12-14 14:59:29 +00006576 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006578 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006579 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006580 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006582 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 return status;
6584}
6585
6586/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006587 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 */
Chuck Leverbf269552010-12-14 14:59:29 +00006589static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6590 struct xdr_stream *xdr,
6591 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 struct compound_hdr hdr;
6594 int status;
6595
Chuck Leverbf269552010-12-14 14:59:29 +00006596 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006597 if (status)
6598 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006599 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006600 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006602 status = decode_putfh(xdr);
6603 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006605 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606out:
6607 return status;
6608}
6609
6610/*
6611 * Decode RENEW response
6612 */
Chuck Leverbf269552010-12-14 14:59:29 +00006613static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6614 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 struct compound_hdr hdr;
6617 int status;
6618
Chuck Leverbf269552010-12-14 14:59:29 +00006619 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006621 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 return status;
6623}
6624
6625/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006626 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 */
Chuck Leverbf269552010-12-14 14:59:29 +00006628static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6629 struct xdr_stream *xdr,
6630 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 struct compound_hdr hdr;
6633 int status;
6634
Chuck Leverbf269552010-12-14 14:59:29 +00006635 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006637 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 return status;
6639}
6640
6641/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006642 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 */
Chuck Leverbf269552010-12-14 14:59:29 +00006644static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6645 struct xdr_stream *xdr,
6646 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 struct compound_hdr hdr;
6649 int status;
6650
Chuck Leverbf269552010-12-14 14:59:29 +00006651 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006653 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006655 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006657 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658 return status;
6659}
6660
6661/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006662 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 */
Chuck Leverbf269552010-12-14 14:59:29 +00006664static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6665 struct xdr_stream *xdr,
6666 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 struct compound_hdr hdr;
6669 int status;
6670
Chuck Leverbf269552010-12-14 14:59:29 +00006671 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006672 if (status)
6673 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006674 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006675 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006676 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006677 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006678 if (status != 0)
6679 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006680 status = decode_getfattr(xdr, res->fattr, res->server);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006681 if (status != 0)
6682 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006683 status = decode_delegreturn(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006684out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685 return status;
6686}
6687
Trond Myklebust683b57b2006-06-09 09:34:22 -04006688/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006689 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006690 */
Chuck Leverbf269552010-12-14 14:59:29 +00006691static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6692 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006693 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006694{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006695 struct compound_hdr hdr;
6696 int status;
6697
Chuck Leverbf269552010-12-14 14:59:29 +00006698 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006699 if (status)
6700 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006701 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006702 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006703 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006704 status = decode_putfh(xdr);
6705 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006706 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006707 status = decode_lookup(xdr);
6708 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006709 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006710 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006711 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6712 NULL, res->fs_locations,
6713 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006714out:
6715 return status;
6716}
6717
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006718/*
6719 * Decode SECINFO response
6720 */
6721static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6722 struct xdr_stream *xdr,
6723 struct nfs4_secinfo_res *res)
6724{
6725 struct compound_hdr hdr;
6726 int status;
6727
6728 status = decode_compound_hdr(xdr, &hdr);
6729 if (status)
6730 goto out;
6731 status = decode_sequence(xdr, &res->seq_res, rqstp);
6732 if (status)
6733 goto out;
6734 status = decode_putfh(xdr);
6735 if (status)
6736 goto out;
6737 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006738out:
6739 return status;
6740}
6741
Benny Halevy99fe60d2009-04-01 09:22:29 -04006742#if defined(CONFIG_NFS_V4_1)
6743/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04006744 * Decode BIND_CONN_TO_SESSION response
6745 */
6746static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
6747 struct xdr_stream *xdr,
6748 void *res)
6749{
6750 struct compound_hdr hdr;
6751 int status;
6752
6753 status = decode_compound_hdr(xdr, &hdr);
6754 if (!status)
6755 status = decode_bind_conn_to_session(xdr, res);
6756 return status;
6757}
6758
6759/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006760 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006761 */
Chuck Leverbf269552010-12-14 14:59:29 +00006762static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6763 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006764 void *res)
6765{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006766 struct compound_hdr hdr;
6767 int status;
6768
Chuck Leverbf269552010-12-14 14:59:29 +00006769 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006770 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006771 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006772 return status;
6773}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006774
6775/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006776 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006777 */
Chuck Leverbf269552010-12-14 14:59:29 +00006778static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6779 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006780 struct nfs41_create_session_res *res)
6781{
Andy Adamsonfc931582009-04-01 09:22:31 -04006782 struct compound_hdr hdr;
6783 int status;
6784
Chuck Leverbf269552010-12-14 14:59:29 +00006785 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006786 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006787 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006788 return status;
6789}
6790
6791/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006792 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006793 */
Chuck Leverbf269552010-12-14 14:59:29 +00006794static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6795 struct xdr_stream *xdr,
6796 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006797{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006798 struct compound_hdr hdr;
6799 int status;
6800
Chuck Leverbf269552010-12-14 14:59:29 +00006801 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006802 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006803 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006804 return status;
6805}
6806
6807/*
Trond Myklebust66245532012-05-25 17:18:09 -04006808 * Decode DESTROY_CLIENTID response
6809 */
6810static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
6811 struct xdr_stream *xdr,
6812 void *res)
6813{
6814 struct compound_hdr hdr;
6815 int status;
6816
6817 status = decode_compound_hdr(xdr, &hdr);
6818 if (!status)
6819 status = decode_destroy_clientid(xdr, res);
6820 return status;
6821}
6822
6823/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006824 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006825 */
Chuck Leverbf269552010-12-14 14:59:29 +00006826static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6827 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006828 struct nfs4_sequence_res *res)
6829{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006830 struct compound_hdr hdr;
6831 int status;
6832
Chuck Leverbf269552010-12-14 14:59:29 +00006833 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006834 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006835 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006836 return status;
6837}
6838
6839/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006840 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006841 */
Chuck Leverbf269552010-12-14 14:59:29 +00006842static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6843 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006844 struct nfs4_get_lease_time_res *res)
6845{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006846 struct compound_hdr hdr;
6847 int status;
6848
Chuck Leverbf269552010-12-14 14:59:29 +00006849 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006850 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006851 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006852 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006853 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006854 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006855 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006856 return status;
6857}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006858
6859/*
6860 * Decode RECLAIM_COMPLETE response
6861 */
Chuck Leverbf269552010-12-14 14:59:29 +00006862static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6863 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006864 struct nfs41_reclaim_complete_res *res)
6865{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006866 struct compound_hdr hdr;
6867 int status;
6868
Chuck Leverbf269552010-12-14 14:59:29 +00006869 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006870 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006871 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006872 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006873 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006874 return status;
6875}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006876
6877/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006878 * Decode GETDEVICELIST response
6879 */
6880static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6881 struct xdr_stream *xdr,
6882 struct nfs4_getdevicelist_res *res)
6883{
6884 struct compound_hdr hdr;
6885 int status;
6886
6887 dprintk("encoding getdevicelist!\n");
6888
6889 status = decode_compound_hdr(xdr, &hdr);
6890 if (status != 0)
6891 goto out;
6892 status = decode_sequence(xdr, &res->seq_res, rqstp);
6893 if (status != 0)
6894 goto out;
6895 status = decode_putfh(xdr);
6896 if (status != 0)
6897 goto out;
6898 status = decode_getdevicelist(xdr, res->devlist);
6899out:
6900 return status;
6901}
6902
6903/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006904 * Decode GETDEVINFO response
6905 */
Chuck Leverbf269552010-12-14 14:59:29 +00006906static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6907 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006908 struct nfs4_getdeviceinfo_res *res)
6909{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006910 struct compound_hdr hdr;
6911 int status;
6912
Chuck Leverbf269552010-12-14 14:59:29 +00006913 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006914 if (status != 0)
6915 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006916 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006917 if (status != 0)
6918 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006919 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006920out:
6921 return status;
6922}
6923
6924/*
6925 * Decode LAYOUTGET response
6926 */
Chuck Leverbf269552010-12-14 14:59:29 +00006927static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6928 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006929 struct nfs4_layoutget_res *res)
6930{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006931 struct compound_hdr hdr;
6932 int status;
6933
Chuck Leverbf269552010-12-14 14:59:29 +00006934 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006935 if (status)
6936 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006937 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006938 if (status)
6939 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006940 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006941 if (status)
6942 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006943 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006944out:
6945 return status;
6946}
Andy Adamson863a3c62011-03-23 13:27:54 +00006947
6948/*
Benny Halevycbe82602011-05-22 19:52:37 +03006949 * Decode LAYOUTRETURN response
6950 */
6951static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6952 struct xdr_stream *xdr,
6953 struct nfs4_layoutreturn_res *res)
6954{
6955 struct compound_hdr hdr;
6956 int status;
6957
6958 status = decode_compound_hdr(xdr, &hdr);
6959 if (status)
6960 goto out;
6961 status = decode_sequence(xdr, &res->seq_res, rqstp);
6962 if (status)
6963 goto out;
6964 status = decode_putfh(xdr);
6965 if (status)
6966 goto out;
6967 status = decode_layoutreturn(xdr, res);
6968out:
6969 return status;
6970}
6971
6972/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006973 * Decode LAYOUTCOMMIT response
6974 */
6975static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6976 struct xdr_stream *xdr,
6977 struct nfs4_layoutcommit_res *res)
6978{
6979 struct compound_hdr hdr;
6980 int status;
6981
6982 status = decode_compound_hdr(xdr, &hdr);
6983 if (status)
6984 goto out;
6985 status = decode_sequence(xdr, &res->seq_res, rqstp);
6986 if (status)
6987 goto out;
6988 status = decode_putfh(xdr);
6989 if (status)
6990 goto out;
6991 status = decode_layoutcommit(xdr, rqstp, res);
6992 if (status)
6993 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006994 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00006995out:
6996 return status;
6997}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006998
6999/*
7000 * Decode SECINFO_NO_NAME response
7001 */
7002static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7003 struct xdr_stream *xdr,
7004 struct nfs4_secinfo_res *res)
7005{
7006 struct compound_hdr hdr;
7007 int status;
7008
7009 status = decode_compound_hdr(xdr, &hdr);
7010 if (status)
7011 goto out;
7012 status = decode_sequence(xdr, &res->seq_res, rqstp);
7013 if (status)
7014 goto out;
7015 status = decode_putrootfh(xdr);
7016 if (status)
7017 goto out;
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04007018 status = decode_secinfo_no_name(xdr, res);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007019out:
7020 return status;
7021}
Bryan Schumaker7d974792011-06-02 14:59:08 -04007022
7023/*
7024 * Decode TEST_STATEID response
7025 */
7026static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
7027 struct xdr_stream *xdr,
7028 struct nfs41_test_stateid_res *res)
7029{
7030 struct compound_hdr hdr;
7031 int status;
7032
7033 status = decode_compound_hdr(xdr, &hdr);
7034 if (status)
7035 goto out;
7036 status = decode_sequence(xdr, &res->seq_res, rqstp);
7037 if (status)
7038 goto out;
7039 status = decode_test_stateid(xdr, res);
7040out:
7041 return status;
7042}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007043
7044/*
7045 * Decode FREE_STATEID response
7046 */
7047static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7048 struct xdr_stream *xdr,
7049 struct nfs41_free_stateid_res *res)
7050{
7051 struct compound_hdr hdr;
7052 int status;
7053
7054 status = decode_compound_hdr(xdr, &hdr);
7055 if (status)
7056 goto out;
7057 status = decode_sequence(xdr, &res->seq_res, rqstp);
7058 if (status)
7059 goto out;
7060 status = decode_free_stateid(xdr, res);
7061out:
7062 return status;
7063}
Benny Halevy99fe60d2009-04-01 09:22:29 -04007064#endif /* CONFIG_NFS_V4_1 */
7065
Chuck Lever573c4e12010-12-14 14:58:11 +00007066/**
7067 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7068 * the local page cache.
7069 * @xdr: XDR stream where entry resides
7070 * @entry: buffer to fill in with entry data
7071 * @plus: boolean indicating whether this should be a readdirplus entry
7072 *
7073 * Returns zero if successful, otherwise a negative errno value is
7074 * returned.
7075 *
7076 * This function is not invoked during READDIR reply decoding, but
7077 * rather whenever an application invokes the getdents(2) system call
7078 * on a directory already in our cache.
7079 */
7080int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7081 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082{
Trond Myklebust256e48b2012-06-21 11:18:13 -04007083 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04007084 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007086 __be32 *p = xdr_inline_decode(xdr, 4);
7087 if (unlikely(!p))
7088 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007089 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007090 p = xdr_inline_decode(xdr, 4);
7091 if (unlikely(!p))
7092 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007093 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00007094 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00007096 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097 }
7098
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007099 p = xdr_inline_decode(xdr, 12);
7100 if (unlikely(!p))
7101 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102 entry->prev_cookie = entry->cookie;
7103 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05007104 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007105
Trond Myklebust9af8c222010-10-24 11:52:55 -04007106 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007107 if (unlikely(!p))
7108 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
7111 /*
7112 * In case the server doesn't return an inode number,
7113 * we fake one here. (We don't use inode number 0,
7114 * since glibc seems to choke on it...)
7115 */
7116 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04007117 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118
Trond Myklebust9af8c222010-10-24 11:52:55 -04007119 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007120 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04007121
Trond Myklebust256e48b2012-06-21 11:18:13 -04007122 if (decode_attr_length(xdr, &len, &savep) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007123 goto out_overflow;
7124
Chuck Lever573c4e12010-12-14 14:58:11 +00007125 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05007126 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007127 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04007128 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7129 entry->ino = entry->fattr->mounted_on_fileid;
7130 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007131 entry->ino = entry->fattr->fileid;
7132
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05007133 entry->d_type = DT_UNKNOWN;
7134 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7135 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7136
Chuck Lever573c4e12010-12-14 14:58:11 +00007137 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007138
7139out_overflow:
7140 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007141 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142}
7143
7144/*
7145 * We need to translate between nfs status return values and
7146 * the local errno values which may not be the same.
7147 */
7148static struct {
7149 int stat;
7150 int errno;
7151} nfs_errtbl[] = {
7152 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007153 { NFS4ERR_PERM, -EPERM },
7154 { NFS4ERR_NOENT, -ENOENT },
7155 { NFS4ERR_IO, -errno_NFSERR_IO},
7156 { NFS4ERR_NXIO, -ENXIO },
7157 { NFS4ERR_ACCESS, -EACCES },
7158 { NFS4ERR_EXIST, -EEXIST },
7159 { NFS4ERR_XDEV, -EXDEV },
7160 { NFS4ERR_NOTDIR, -ENOTDIR },
7161 { NFS4ERR_ISDIR, -EISDIR },
7162 { NFS4ERR_INVAL, -EINVAL },
7163 { NFS4ERR_FBIG, -EFBIG },
7164 { NFS4ERR_NOSPC, -ENOSPC },
7165 { NFS4ERR_ROFS, -EROFS },
7166 { NFS4ERR_MLINK, -EMLINK },
7167 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7168 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7169 { NFS4ERR_DQUOT, -EDQUOT },
7170 { NFS4ERR_STALE, -ESTALE },
7171 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007172 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7173 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7174 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007175 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007176 { NFS4ERR_BADTYPE, -EBADTYPE },
7177 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007178 { NFS4ERR_SYMLINK, -ELOOP },
7179 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7180 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007181 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182};
7183
7184/*
7185 * Convert an NFS error code to a local one.
7186 * This one is used jointly by NFSv2 and NFSv3.
7187 */
7188static int
David Howells0a8ea432006-08-22 20:06:08 -04007189nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190{
7191 int i;
7192 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7193 if (nfs_errtbl[i].stat == stat)
7194 return nfs_errtbl[i].errno;
7195 }
7196 if (stat <= 10000 || stat > 10100) {
7197 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007198 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 }
7200 /* If we cannot translate the error, the recovery routines should
7201 * handle it.
7202 * Note: remaining NFSv4 error codes have values > 10000, so should
7203 * not conflict with native Linux error codes.
7204 */
Benny Halevy856dff32008-03-31 17:39:06 +03007205 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206}
7207
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208#define PROC(proc, argtype, restype) \
7209[NFSPROC4_CLNT_##proc] = { \
7210 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007211 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007212 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007213 .p_arglen = NFS4_##argtype##_sz, \
7214 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007215 .p_statidx = NFSPROC4_CLNT_##proc, \
7216 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218
7219struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007220 PROC(READ, enc_read, dec_read),
7221 PROC(WRITE, enc_write, dec_write),
7222 PROC(COMMIT, enc_commit, dec_commit),
7223 PROC(OPEN, enc_open, dec_open),
7224 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7225 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7226 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7227 PROC(CLOSE, enc_close, dec_close),
7228 PROC(SETATTR, enc_setattr, dec_setattr),
7229 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7230 PROC(RENEW, enc_renew, dec_renew),
7231 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7232 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7233 PROC(LOCK, enc_lock, dec_lock),
7234 PROC(LOCKT, enc_lockt, dec_lockt),
7235 PROC(LOCKU, enc_locku, dec_locku),
7236 PROC(ACCESS, enc_access, dec_access),
7237 PROC(GETATTR, enc_getattr, dec_getattr),
7238 PROC(LOOKUP, enc_lookup, dec_lookup),
7239 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7240 PROC(REMOVE, enc_remove, dec_remove),
7241 PROC(RENAME, enc_rename, dec_rename),
7242 PROC(LINK, enc_link, dec_link),
7243 PROC(SYMLINK, enc_symlink, dec_symlink),
7244 PROC(CREATE, enc_create, dec_create),
7245 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7246 PROC(STATFS, enc_statfs, dec_statfs),
7247 PROC(READLINK, enc_readlink, dec_readlink),
7248 PROC(READDIR, enc_readdir, dec_readdir),
7249 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7250 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7251 PROC(GETACL, enc_getacl, dec_getacl),
7252 PROC(SETACL, enc_setacl, dec_setacl),
7253 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7254 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007255 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007256#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007257 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7258 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7259 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7260 PROC(SEQUENCE, enc_sequence, dec_sequence),
7261 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7262 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7263 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7264 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007265 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007266 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007267 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007268 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007269 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007270 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Trond Myklebustad24ecf2012-05-25 17:11:42 -04007271 PROC(BIND_CONN_TO_SESSION,
7272 enc_bind_conn_to_session, dec_bind_conn_to_session),
Trond Myklebust66245532012-05-25 17:18:09 -04007273 PROC(DESTROY_CLIENTID, enc_destroy_clientid, dec_destroy_clientid),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007274#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275};
7276
Trond Myklebusta613fa12012-01-20 13:53:56 -05007277const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007279 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280 .procs = nfs4_procedures
7281};
7282
7283/*
7284 * Local variables:
7285 * c-basic-offset: 8
7286 * End:
7287 */