blob: 27b0fec1a6b03125c0175e07f82b9bc1f46b4b32 [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
Trond Myklebust7fc38842012-10-15 11:51:21 -0400939 WARN_ON_ONCE(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{
Trond Myklebust7fc38842012-10-15 11:51:21 -0400958 WARN_ON_ONCE(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:
Benny Halevy34558512009-08-14 17:19:30 +03001406 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001407 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409}
1410
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001411static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Al Viro8687b632006-10-19 23:28:48 -07001413 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Benny Halevy13c65ce2009-08-14 17:19:25 +03001415 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001417 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001418 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001419 break;
1420 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001421 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001422 break;
1423 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001424 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001425 break;
1426 default:
1427 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429}
1430
1431static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1432{
Al Viro8687b632006-10-19 23:28:48 -07001433 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Benny Halevy13c65ce2009-08-14 17:19:25 +03001435 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001436 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 encode_string(xdr, name->len, name->name);
1438}
1439
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001440static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Al Viro8687b632006-10-19 23:28:48 -07001442 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Benny Halevy13c65ce2009-08-14 17:19:25 +03001444 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001445 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 encode_delegation_type(xdr, type);
1447}
1448
1449static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1450{
Al Viro8687b632006-10-19 23:28:48 -07001451 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001453 p = reserve_space(xdr, 4);
1454 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1455 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 encode_string(xdr, name->len, name->name);
1457}
1458
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001459static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Trond Myklebustab19b482012-03-04 18:13:57 -05001461 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 encode_openhdr(xdr, arg);
1463 encode_opentype(xdr, arg);
1464 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001465 case NFS4_OPEN_CLAIM_NULL:
1466 encode_claim_null(xdr, arg->name);
1467 break;
1468 case NFS4_OPEN_CLAIM_PREVIOUS:
1469 encode_claim_previous(xdr, arg->u.delegation_type);
1470 break;
1471 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1472 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1473 break;
1474 default:
1475 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001479static 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 -07001480{
Trond Myklebustab19b482012-03-04 18:13:57 -05001481 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001482 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001483 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001486static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Trond Myklebustab19b482012-03-04 18:13:57 -05001488 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001489 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001490 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001491 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001494static void
Andy Adamsond0179312008-12-23 16:06:17 -05001495encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Trond Myklebustab19b482012-03-04 18:13:57 -05001497 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001498 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001501static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
Trond Myklebustab19b482012-03-04 18:13:57 -05001503 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Trond Myklebust4fc87962012-03-08 17:42:01 -05001506static void encode_open_stateid(struct xdr_stream *xdr,
1507 const struct nfs_open_context *ctx,
1508 const struct nfs_lock_context *l_ctx,
1509 fmode_t fmode,
1510 int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (ctx->state != NULL) {
Trond Myklebust2a369152012-08-13 18:54:45 -04001515 const struct nfs_lockowner *lockowner = NULL;
1516
1517 if (l_ctx != NULL)
1518 lockowner = &l_ctx->lockowner;
Trond Myklebust4fc87962012-03-08 17:42:01 -05001519 nfs4_select_rw_stateid(&stateid, ctx->state,
Trond Myklebust2a369152012-08-13 18:54:45 -04001520 fmode, lockowner);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001521 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001522 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001523 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001525 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001528static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Al Viro8687b632006-10-19 23:28:48 -07001530 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Trond Myklebustab19b482012-03-04 18:13:57 -05001532 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001533 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001534 FMODE_READ, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Benny Halevy13c65ce2009-08-14 17:19:25 +03001536 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001537 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001538 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001541static 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 -07001542{
Trond Myklebust28331a42011-04-27 13:47:52 -04001543 uint32_t attrs[2] = {
1544 FATTR4_WORD0_RDATTR_ERROR,
1545 FATTR4_WORD1_MOUNTED_ON_FILEID,
1546 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001547 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001548 __be32 *p, verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001550 if (readdir->plus) {
1551 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001552 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001553 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1554 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1555 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1556 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001557 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001558 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001559 /* Use mounted_on_fileid only if the server supports it */
1560 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1561 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001562
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001563 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001564 encode_uint64(xdr, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001565 encode_nfs4_verifier(xdr, &readdir->verifier);
1566 p = reserve_space(xdr, 20);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001567 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001568 *p++ = cpu_to_be32(readdir->count);
1569 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001570
Benny Halevye75bc1c2009-08-14 17:18:54 +03001571 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001572 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Chuck Levercd937102012-03-02 17:14:31 -05001573 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03001574 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1575 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001576 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001577 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001578 attrs[0] & readdir->bitmask[0],
1579 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001582static 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 -07001583{
Trond Myklebustab19b482012-03-04 18:13:57 -05001584 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001587static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Trond Myklebustab19b482012-03-04 18:13:57 -05001589 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001590 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001593static 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 -07001594{
Trond Myklebustab19b482012-03-04 18:13:57 -05001595 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001596 encode_string(xdr, oldname->len, oldname->name);
1597 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
Chuck Leverbb4dae52012-03-01 17:01:48 -05001600static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1601 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001603 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001604 encode_uint64(xdr, clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001607static void
Andy Adamsond0179312008-12-23 16:06:17 -05001608encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001609{
Trond Myklebustab19b482012-03-04 18:13:57 -05001610 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001611}
1612
Chuck Lever9f06c712010-12-14 14:59:18 +00001613static void
Andy Adamsond0179312008-12-23 16:06:17 -05001614encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001615{
Al Viro8687b632006-10-19 23:28:48 -07001616 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001617
Trond Myklebustab19b482012-03-04 18:13:57 -05001618 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001619 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001620 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001621 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001622 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001623 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001624 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001625 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001626}
1627
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001628static void
Andy Adamsond0179312008-12-23 16:06:17 -05001629encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Trond Myklebustab19b482012-03-04 18:13:57 -05001631 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001634static 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 -07001635{
Trond Myklebustab19b482012-03-04 18:13:57 -05001636 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001637 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001638 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001641static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Al Viro8687b632006-10-19 23:28:48 -07001643 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Trond Myklebust70019512012-03-04 20:49:32 -05001645 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001646 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001649 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001650 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1652 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001653 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001654 *p = cpu_to_be32(setclientid->sc_cb_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001657static 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 -07001658{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001659 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1660 decode_setclientid_confirm_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001661 encode_uint64(xdr, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001662 encode_nfs4_verifier(xdr, &arg->confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001665static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Al Viro8687b632006-10-19 23:28:48 -07001667 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Trond Myklebustab19b482012-03-04 18:13:57 -05001669 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001670 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001671 FMODE_WRITE, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Benny Halevy13c65ce2009-08-14 17:19:25 +03001673 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001674 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001675 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001676 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001681static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
Trond Myklebustab19b482012-03-04 18:13:57 -05001683 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001684 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001686
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001687static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1688{
Trond Myklebustab19b482012-03-04 18:13:57 -05001689 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001690 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001691}
1692
Benny Halevy99fe60d2009-04-01 09:22:29 -04001693#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001694/* NFSv4.1 operations */
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04001695static void encode_bind_conn_to_session(struct xdr_stream *xdr,
1696 struct nfs4_session *session,
1697 struct compound_hdr *hdr)
1698{
1699 __be32 *p;
1700
1701 encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
1702 decode_bind_conn_to_session_maxsz, hdr);
1703 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1704 p = xdr_reserve_space(xdr, 8);
1705 *p++ = cpu_to_be32(NFS4_CDFC4_BACK_OR_BOTH);
1706 *p = 0; /* use_conn_in_rdma_mode = False */
1707}
1708
Benny Halevy99fe60d2009-04-01 09:22:29 -04001709static void encode_exchange_id(struct xdr_stream *xdr,
1710 struct nfs41_exchange_id_args *args,
1711 struct compound_hdr *hdr)
1712{
1713 __be32 *p;
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001714 char impl_name[NFS4_OPAQUE_LIMIT];
1715 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001716
Trond Myklebust70019512012-03-04 20:49:32 -05001717 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001718 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001719
1720 encode_string(xdr, args->id_len, args->id);
1721
Benny Halevy13c65ce2009-08-14 17:19:25 +03001722 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001723 *p++ = cpu_to_be32(args->flags);
1724 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001725
1726 if (send_implementation_id &&
1727 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1728 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1729 <= NFS4_OPAQUE_LIMIT + 1)
1730 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1731 utsname()->sysname, utsname()->release,
1732 utsname()->version, utsname()->machine);
1733
1734 if (len > 0) {
1735 *p = cpu_to_be32(1); /* implementation id array length=1 */
1736
1737 encode_string(xdr,
1738 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1739 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1740 encode_string(xdr, len, impl_name);
1741 /* just send zeros for nii_date - the date is in nii_name */
1742 p = reserve_space(xdr, 12);
1743 p = xdr_encode_hyper(p, 0);
1744 *p = cpu_to_be32(0);
1745 } else
1746 *p = cpu_to_be32(0); /* implementation id array length=0 */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001747}
Andy Adamsonfc931582009-04-01 09:22:31 -04001748
1749static void encode_create_session(struct xdr_stream *xdr,
1750 struct nfs41_create_session_args *args,
1751 struct compound_hdr *hdr)
1752{
1753 __be32 *p;
1754 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1755 uint32_t len;
1756 struct nfs_client *clp = args->client;
Chuck Leverf0920752012-05-21 22:45:41 -04001757 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Mike Sager8e0d46e2009-12-17 12:06:26 -05001758 u32 max_resp_sz_cached;
1759
1760 /*
1761 * Assumes OPEN is the biggest non-idempotent compound.
1762 * 2 is the verifier.
1763 */
1764 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1765 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001766
Andy Adamsonfc931582009-04-01 09:22:31 -04001767 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1768 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001769
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001770 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1771 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
Andy Adamson114f64b2011-03-09 13:13:45 -05001772 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001773 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1774 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001775
Andy Adamsonfc931582009-04-01 09:22:31 -04001776 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001777 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001778 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1779 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001780 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001781 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1782 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1783 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001784
1785 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001786 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001787 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1788 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1789 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1790 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1791 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1792 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001793
Benny Halevye75bc1c2009-08-14 17:18:54 +03001794 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001795 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001796 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001797
1798 /* authsys_parms rfc1831 */
Chuck Leverf0920752012-05-21 22:45:41 -04001799 *p++ = (__be32)nn->boot_time.tv_nsec; /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001800 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001801 *p++ = cpu_to_be32(0); /* UID */
1802 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001803 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001804}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001805
1806static void encode_destroy_session(struct xdr_stream *xdr,
1807 struct nfs4_session *session,
1808 struct compound_hdr *hdr)
1809{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001810 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1811 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001812}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001813
Trond Myklebust66245532012-05-25 17:18:09 -04001814static void encode_destroy_clientid(struct xdr_stream *xdr,
1815 uint64_t clientid,
1816 struct compound_hdr *hdr)
1817{
1818 encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
1819 encode_uint64(xdr, clientid);
1820}
1821
Ricardo Labiaga180197532009-12-05 16:08:40 -05001822static void encode_reclaim_complete(struct xdr_stream *xdr,
1823 struct nfs41_reclaim_complete_args *args,
1824 struct compound_hdr *hdr)
1825{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001826 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1827 encode_uint32(xdr, args->one_fs);
Ricardo Labiaga180197532009-12-05 16:08:40 -05001828}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001829#endif /* CONFIG_NFS_V4_1 */
1830
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001831static void encode_sequence(struct xdr_stream *xdr,
1832 const struct nfs4_sequence_args *args,
1833 struct compound_hdr *hdr)
1834{
1835#if defined(CONFIG_NFS_V4_1)
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001836 struct nfs4_session *session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001837 struct nfs4_slot_table *tp;
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001838 struct nfs4_slot *slot = args->sa_slot;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001839 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001840
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001841 if (slot == NULL)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001842 return;
1843
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001844 tp = slot->table;
1845 session = tp->session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001846
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001847 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001848
1849 /*
1850 * Sessionid + seqid + slotid + max slotid + cache_this
1851 */
1852 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1853 "max_slotid=%d cache_this=%d\n",
1854 __func__,
1855 ((u32 *)session->sess_id.data)[0],
1856 ((u32 *)session->sess_id.data)[1],
1857 ((u32 *)session->sess_id.data)[2],
1858 ((u32 *)session->sess_id.data)[3],
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001859 slot->seq_nr, slot->slot_nr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001860 tp->highest_used_slotid, args->sa_cache_this);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001861 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001862 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001863 *p++ = cpu_to_be32(slot->seq_nr);
Trond Myklebust2b2fa712012-11-16 12:58:36 -05001864 *p++ = cpu_to_be32(slot->slot_nr);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001865 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001866 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001867#endif /* CONFIG_NFS_V4_1 */
1868}
1869
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001870#ifdef CONFIG_NFS_V4_1
1871static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001872encode_getdevicelist(struct xdr_stream *xdr,
1873 const struct nfs4_getdevicelist_args *args,
1874 struct compound_hdr *hdr)
1875{
1876 __be32 *p;
1877 nfs4_verifier dummy = {
1878 .data = "dummmmmy",
1879 };
1880
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001881 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1882 p = reserve_space(xdr, 16);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001883 *p++ = cpu_to_be32(args->layoutclass);
1884 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1885 xdr_encode_hyper(p, 0ULL); /* cookie */
1886 encode_nfs4_verifier(xdr, &dummy);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001887}
1888
1889static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001890encode_getdeviceinfo(struct xdr_stream *xdr,
1891 const struct nfs4_getdeviceinfo_args *args,
1892 struct compound_hdr *hdr)
1893{
1894 __be32 *p;
1895
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001896 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1897 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001898 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1899 NFS4_DEVICEID4_SIZE);
1900 *p++ = cpu_to_be32(args->pdev->layout_type);
1901 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
1902 *p++ = cpu_to_be32(0); /* bitmap length 0 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001903}
1904
1905static void
1906encode_layoutget(struct xdr_stream *xdr,
1907 const struct nfs4_layoutget_args *args,
1908 struct compound_hdr *hdr)
1909{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001910 __be32 *p;
1911
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001912 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1913 p = reserve_space(xdr, 36);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001914 *p++ = cpu_to_be32(0); /* Signal layout available */
1915 *p++ = cpu_to_be32(args->type);
1916 *p++ = cpu_to_be32(args->range.iomode);
1917 p = xdr_encode_hyper(p, args->range.offset);
1918 p = xdr_encode_hyper(p, args->range.length);
1919 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001920 encode_nfs4_stateid(xdr, &args->stateid);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001921 encode_uint32(xdr, args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001922
1923 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1924 __func__,
1925 args->type,
1926 args->range.iomode,
1927 (unsigned long)args->range.offset,
1928 (unsigned long)args->range.length,
1929 args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001930}
Andy Adamson863a3c62011-03-23 13:27:54 +00001931
1932static int
1933encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001934 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00001935 const struct nfs4_layoutcommit_args *args,
1936 struct compound_hdr *hdr)
1937{
1938 __be32 *p;
1939
1940 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1941 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1942
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001943 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
1944 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001945 /* Only whole file layouts */
1946 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04001947 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001948 *p = cpu_to_be32(0); /* reclaim */
1949 encode_nfs4_stateid(xdr, &args->stateid);
1950 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001951 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
1952 p = xdr_encode_hyper(p, args->lastbytewritten);
1953 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1954 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03001955
1956 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
1957 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1958 NFS_I(inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001959 else
1960 encode_uint32(xdr, 0); /* no layout-type payload */
Andy Adamson863a3c62011-03-23 13:27:54 +00001961
Andy Adamson863a3c62011-03-23 13:27:54 +00001962 return 0;
1963}
Benny Halevycbe82602011-05-22 19:52:37 +03001964
1965static void
1966encode_layoutreturn(struct xdr_stream *xdr,
1967 const struct nfs4_layoutreturn_args *args,
1968 struct compound_hdr *hdr)
1969{
1970 __be32 *p;
1971
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001972 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
1973 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001974 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
1975 *p++ = cpu_to_be32(args->layout_type);
1976 *p++ = cpu_to_be32(IOMODE_ANY);
1977 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001978 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001979 p = xdr_encode_hyper(p, 0);
1980 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
1981 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001982 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03001983 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03001984 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
1985 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
1986 NFS_I(args->inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001987 } else
1988 encode_uint32(xdr, 0);
Benny Halevycbe82602011-05-22 19:52:37 +03001989}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001990
1991static int
1992encode_secinfo_no_name(struct xdr_stream *xdr,
1993 const struct nfs41_secinfo_no_name_args *args,
1994 struct compound_hdr *hdr)
1995{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001996 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
1997 encode_uint32(xdr, args->style);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001998 return 0;
1999}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002000
2001static void encode_test_stateid(struct xdr_stream *xdr,
2002 struct nfs41_test_stateid_args *args,
2003 struct compound_hdr *hdr)
2004{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05002005 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2006 encode_uint32(xdr, 1);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002007 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002008}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002009
2010static void encode_free_stateid(struct xdr_stream *xdr,
2011 struct nfs41_free_stateid_args *args,
2012 struct compound_hdr *hdr)
2013{
Trond Myklebustab19b482012-03-04 18:13:57 -05002014 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002015 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002016}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002017#endif /* CONFIG_NFS_V4_1 */
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019/*
2020 * END OF "GENERIC" ENCODE ROUTINES.
2021 */
2022
Benny Halevy66cc0422009-04-01 09:22:10 -04002023static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2024{
2025#if defined(CONFIG_NFS_V4_1)
Trond Myklebust2b2fa712012-11-16 12:58:36 -05002026
2027 if (args->sa_slot)
2028 return args->sa_slot->table->session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002029#endif /* CONFIG_NFS_V4_1 */
2030 return 0;
2031}
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033/*
2034 * Encode an ACCESS request
2035 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002036static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2037 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002040 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Chuck Lever9f06c712010-12-14 14:59:18 +00002043 encode_compound_hdr(xdr, req, &hdr);
2044 encode_sequence(xdr, &args->seq_args, &hdr);
2045 encode_putfh(xdr, args->fh, &hdr);
2046 encode_access(xdr, args->access, &hdr);
2047 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002048 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
2051/*
2052 * Encode LOOKUP request
2053 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002054static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2055 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002058 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Chuck Lever9f06c712010-12-14 14:59:18 +00002061 encode_compound_hdr(xdr, req, &hdr);
2062 encode_sequence(xdr, &args->seq_args, &hdr);
2063 encode_putfh(xdr, args->dir_fh, &hdr);
2064 encode_lookup(xdr, args->name, &hdr);
2065 encode_getfh(xdr, &hdr);
2066 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002067 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070/*
2071 * Encode LOOKUP_ROOT request
2072 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002073static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2074 struct xdr_stream *xdr,
2075 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002078 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Chuck Lever9f06c712010-12-14 14:59:18 +00002081 encode_compound_hdr(xdr, req, &hdr);
2082 encode_sequence(xdr, &args->seq_args, &hdr);
2083 encode_putrootfh(xdr, &hdr);
2084 encode_getfh(xdr, &hdr);
2085 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002086 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
2089/*
2090 * Encode REMOVE request
2091 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002092static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2093 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002096 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Chuck Lever9f06c712010-12-14 14:59:18 +00002099 encode_compound_hdr(xdr, req, &hdr);
2100 encode_sequence(xdr, &args->seq_args, &hdr);
2101 encode_putfh(xdr, args->fh, &hdr);
2102 encode_remove(xdr, &args->name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002103 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106/*
2107 * Encode RENAME request
2108 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002109static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2110 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002113 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Chuck Lever9f06c712010-12-14 14:59:18 +00002116 encode_compound_hdr(xdr, req, &hdr);
2117 encode_sequence(xdr, &args->seq_args, &hdr);
2118 encode_putfh(xdr, args->old_dir, &hdr);
2119 encode_savefh(xdr, &hdr);
2120 encode_putfh(xdr, args->new_dir, &hdr);
2121 encode_rename(xdr, args->old_name, args->new_name, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002122 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
2125/*
2126 * Encode LINK request
2127 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002128static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2129 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002132 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Chuck Lever9f06c712010-12-14 14:59:18 +00002135 encode_compound_hdr(xdr, req, &hdr);
2136 encode_sequence(xdr, &args->seq_args, &hdr);
2137 encode_putfh(xdr, args->fh, &hdr);
2138 encode_savefh(xdr, &hdr);
2139 encode_putfh(xdr, args->dir_fh, &hdr);
2140 encode_link(xdr, args->name, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002141 encode_restorefh(xdr, &hdr);
2142 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002143 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
2146/*
2147 * Encode CREATE request
2148 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002149static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2150 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002153 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Chuck Lever9f06c712010-12-14 14:59:18 +00002156 encode_compound_hdr(xdr, req, &hdr);
2157 encode_sequence(xdr, &args->seq_args, &hdr);
2158 encode_putfh(xdr, args->dir_fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002159 encode_create(xdr, args, &hdr);
2160 encode_getfh(xdr, &hdr);
2161 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002162 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163}
2164
2165/*
2166 * Encode SYMLINK request
2167 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002168static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2169 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
Chuck Lever9f06c712010-12-14 14:59:18 +00002171 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
2174/*
2175 * Encode GETATTR request
2176 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002177static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2178 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002181 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Chuck Lever9f06c712010-12-14 14:59:18 +00002184 encode_compound_hdr(xdr, req, &hdr);
2185 encode_sequence(xdr, &args->seq_args, &hdr);
2186 encode_putfh(xdr, args->fh, &hdr);
2187 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002188 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
2191/*
2192 * Encode a CLOSE request
2193 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002194static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2195 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Andy Adamson05d564f2008-12-23 16:06:15 -05002197 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002198 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002199 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Chuck Lever9f06c712010-12-14 14:59:18 +00002201 encode_compound_hdr(xdr, req, &hdr);
2202 encode_sequence(xdr, &args->seq_args, &hdr);
2203 encode_putfh(xdr, args->fh, &hdr);
2204 encode_close(xdr, args, &hdr);
2205 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002206 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
2209/*
2210 * Encode an OPEN request
2211 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002212static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2213 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002216 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Chuck Lever9f06c712010-12-14 14:59:18 +00002219 encode_compound_hdr(xdr, req, &hdr);
2220 encode_sequence(xdr, &args->seq_args, &hdr);
2221 encode_putfh(xdr, args->fh, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002222 encode_open(xdr, args, &hdr);
2223 encode_getfh(xdr, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002224 if (args->access)
2225 encode_access(xdr, args->access, &hdr);
Trond Myklebust1549210f2012-06-05 09:16:47 -04002226 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002227 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230/*
2231 * Encode an OPEN_CONFIRM request
2232 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002233static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2234 struct xdr_stream *xdr,
2235 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002238 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Chuck Lever9f06c712010-12-14 14:59:18 +00002241 encode_compound_hdr(xdr, req, &hdr);
2242 encode_putfh(xdr, args->fh, &hdr);
2243 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002244 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245}
2246
2247/*
2248 * Encode an OPEN request with no attributes.
2249 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002250static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2251 struct xdr_stream *xdr,
2252 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002255 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Chuck Lever9f06c712010-12-14 14:59:18 +00002258 encode_compound_hdr(xdr, req, &hdr);
2259 encode_sequence(xdr, &args->seq_args, &hdr);
2260 encode_putfh(xdr, args->fh, &hdr);
2261 encode_open(xdr, args, &hdr);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07002262 if (args->access)
2263 encode_access(xdr, args->access, &hdr);
Andy Adamsone23008e2012-10-02 21:07:32 -04002264 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002265 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
2267
2268/*
2269 * Encode an OPEN_DOWNGRADE request
2270 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002271static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2272 struct xdr_stream *xdr,
2273 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002276 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Chuck Lever9f06c712010-12-14 14:59:18 +00002279 encode_compound_hdr(xdr, req, &hdr);
2280 encode_sequence(xdr, &args->seq_args, &hdr);
2281 encode_putfh(xdr, args->fh, &hdr);
2282 encode_open_downgrade(xdr, args, &hdr);
2283 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002284 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
2286
2287/*
2288 * Encode a LOCK request
2289 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002290static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2291 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002294 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Chuck Lever9f06c712010-12-14 14:59:18 +00002297 encode_compound_hdr(xdr, req, &hdr);
2298 encode_sequence(xdr, &args->seq_args, &hdr);
2299 encode_putfh(xdr, args->fh, &hdr);
2300 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002301 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304/*
2305 * Encode a LOCKT request
2306 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002307static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2308 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002311 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Chuck Lever9f06c712010-12-14 14:59:18 +00002314 encode_compound_hdr(xdr, req, &hdr);
2315 encode_sequence(xdr, &args->seq_args, &hdr);
2316 encode_putfh(xdr, args->fh, &hdr);
2317 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002318 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319}
2320
2321/*
2322 * Encode a LOCKU request
2323 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002324static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2325 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002328 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Chuck Lever9f06c712010-12-14 14:59:18 +00002331 encode_compound_hdr(xdr, req, &hdr);
2332 encode_sequence(xdr, &args->seq_args, &hdr);
2333 encode_putfh(xdr, args->fh, &hdr);
2334 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002335 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
Chuck Lever9f06c712010-12-14 14:59:18 +00002338static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2339 struct xdr_stream *xdr,
2340 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002341{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002342 struct compound_hdr hdr = {
2343 .minorversion = 0,
2344 };
2345
Chuck Lever9f06c712010-12-14 14:59:18 +00002346 encode_compound_hdr(xdr, req, &hdr);
2347 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002348 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002349}
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351/*
2352 * Encode a READLINK request
2353 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002354static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2355 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002358 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Chuck Lever9f06c712010-12-14 14:59:18 +00002361 encode_compound_hdr(xdr, req, &hdr);
2362 encode_sequence(xdr, &args->seq_args, &hdr);
2363 encode_putfh(xdr, args->fh, &hdr);
2364 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002365
Benny Halevy28f56692009-04-01 09:22:09 -04002366 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002367 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002368 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
2370
2371/*
2372 * Encode a READDIR request
2373 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002374static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2375 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002378 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Chuck Lever9f06c712010-12-14 14:59:18 +00002381 encode_compound_hdr(xdr, req, &hdr);
2382 encode_sequence(xdr, &args->seq_args, &hdr);
2383 encode_putfh(xdr, args->fh, &hdr);
2384 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002385
Benny Halevy28f56692009-04-01 09:22:09 -04002386 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002387 args->pgbase, args->count);
2388 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002389 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002390 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002391 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
2394/*
2395 * Encode a READ request
2396 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002397static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2398 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002401 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Chuck Lever9f06c712010-12-14 14:59:18 +00002404 encode_compound_hdr(xdr, req, &hdr);
2405 encode_sequence(xdr, &args->seq_args, &hdr);
2406 encode_putfh(xdr, args->fh, &hdr);
2407 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Benny Halevy28f56692009-04-01 09:22:09 -04002409 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002411 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002412 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
2415/*
2416 * Encode an SETATTR request
2417 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002418static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2419 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
Andy Adamson05d564f2008-12-23 16:06:15 -05002421 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002422 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002423 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Chuck Lever9f06c712010-12-14 14:59:18 +00002425 encode_compound_hdr(xdr, req, &hdr);
2426 encode_sequence(xdr, &args->seq_args, &hdr);
2427 encode_putfh(xdr, args->fh, &hdr);
2428 encode_setattr(xdr, args, args->server, &hdr);
2429 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002430 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431}
2432
2433/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002434 * Encode a GETACL request
2435 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002436static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2437 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002438{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002439 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002440 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002441 };
Benny Halevy28f56692009-04-01 09:22:09 -04002442 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002443
Chuck Lever9f06c712010-12-14 14:59:18 +00002444 encode_compound_hdr(xdr, req, &hdr);
2445 encode_sequence(xdr, &args->seq_args, &hdr);
2446 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002447 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002448 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002449
Benny Halevy28f56692009-04-01 09:22:09 -04002450 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002451 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002452
Andy Adamsond0179312008-12-23 16:06:17 -05002453 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002454}
2455
2456/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 * Encode a WRITE request
2458 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002459static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2460 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002463 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Chuck Lever9f06c712010-12-14 14:59:18 +00002466 encode_compound_hdr(xdr, req, &hdr);
2467 encode_sequence(xdr, &args->seq_args, &hdr);
2468 encode_putfh(xdr, args->fh, &hdr);
2469 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002470 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002471 if (args->bitmask)
2472 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002473 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
2476/*
2477 * a COMMIT request
2478 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002479static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04002480 struct nfs_commitargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002483 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Chuck Lever9f06c712010-12-14 14:59:18 +00002486 encode_compound_hdr(xdr, req, &hdr);
2487 encode_sequence(xdr, &args->seq_args, &hdr);
2488 encode_putfh(xdr, args->fh, &hdr);
2489 encode_commit(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002490 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
2493/*
2494 * FSINFO request
2495 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002496static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2497 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002500 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Chuck Lever9f06c712010-12-14 14:59:18 +00002503 encode_compound_hdr(xdr, req, &hdr);
2504 encode_sequence(xdr, &args->seq_args, &hdr);
2505 encode_putfh(xdr, args->fh, &hdr);
2506 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002507 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
2509
2510/*
2511 * a PATHCONF request
2512 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002513static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2514 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002517 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Chuck Lever9f06c712010-12-14 14:59:18 +00002520 encode_compound_hdr(xdr, req, &hdr);
2521 encode_sequence(xdr, &args->seq_args, &hdr);
2522 encode_putfh(xdr, args->fh, &hdr);
2523 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002524 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002525 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527
2528/*
2529 * a STATFS request
2530 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002531static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2532 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002535 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Chuck Lever9f06c712010-12-14 14:59:18 +00002538 encode_compound_hdr(xdr, req, &hdr);
2539 encode_sequence(xdr, &args->seq_args, &hdr);
2540 encode_putfh(xdr, args->fh, &hdr);
2541 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002542 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002543 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
2546/*
2547 * GETATTR_BITMAP request
2548 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002549static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2550 struct xdr_stream *xdr,
2551 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002554 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Chuck Lever9f06c712010-12-14 14:59:18 +00002557 encode_compound_hdr(xdr, req, &hdr);
2558 encode_sequence(xdr, &args->seq_args, &hdr);
2559 encode_putfh(xdr, args->fhandle, &hdr);
2560 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002561 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002562 FATTR4_WORD0_LINK_SUPPORT|
2563 FATTR4_WORD0_SYMLINK_SUPPORT|
2564 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002565 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
2568/*
2569 * a RENEW request
2570 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002571static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2572 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002575 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 };
2577
Chuck Lever9f06c712010-12-14 14:59:18 +00002578 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002579 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002580 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
2583/*
2584 * a SETCLIENTID request
2585 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002586static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2587 struct xdr_stream *xdr,
2588 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002591 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 };
2593
Chuck Lever9f06c712010-12-14 14:59:18 +00002594 encode_compound_hdr(xdr, req, &hdr);
2595 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002596 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
2599/*
2600 * a SETCLIENTID_CONFIRM request
2601 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002602static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2603 struct xdr_stream *xdr,
2604 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002607 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 };
Fred Isamandae100c2011-07-30 20:52:37 -04002609 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Chuck Lever9f06c712010-12-14 14:59:18 +00002611 encode_compound_hdr(xdr, req, &hdr);
2612 encode_setclientid_confirm(xdr, arg, &hdr);
2613 encode_putrootfh(xdr, &hdr);
2614 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002615 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
2618/*
2619 * DELEGRETURN request
2620 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002621static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2622 struct xdr_stream *xdr,
2623 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002626 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Chuck Lever9f06c712010-12-14 14:59:18 +00002629 encode_compound_hdr(xdr, req, &hdr);
2630 encode_sequence(xdr, &args->seq_args, &hdr);
2631 encode_putfh(xdr, args->fhandle, &hdr);
Chuck Lever9f06c712010-12-14 14:59:18 +00002632 encode_getfattr(xdr, args->bitmask, &hdr);
Trond Myklebuste144cbc2012-04-28 16:05:03 -04002633 encode_delegreturn(xdr, args->stateid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002634 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
2637/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002638 * Encode FS_LOCATIONS request
2639 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002640static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2641 struct xdr_stream *xdr,
2642 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002643{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002644 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002645 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002646 };
Benny Halevy28f56692009-04-01 09:22:09 -04002647 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002648
Chuck Lever9f06c712010-12-14 14:59:18 +00002649 encode_compound_hdr(xdr, req, &hdr);
2650 encode_sequence(xdr, &args->seq_args, &hdr);
2651 encode_putfh(xdr, args->dir_fh, &hdr);
2652 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002653 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002654 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002655
Benny Halevy28f56692009-04-01 09:22:09 -04002656 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002657 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002658 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002659}
2660
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002661/*
2662 * Encode SECINFO request
2663 */
2664static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2665 struct xdr_stream *xdr,
2666 struct nfs4_secinfo_arg *args)
2667{
2668 struct compound_hdr hdr = {
2669 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2670 };
2671
2672 encode_compound_hdr(xdr, req, &hdr);
2673 encode_sequence(xdr, &args->seq_args, &hdr);
2674 encode_putfh(xdr, args->dir_fh, &hdr);
2675 encode_secinfo(xdr, args->name, &hdr);
2676 encode_nops(&hdr);
2677}
2678
Benny Halevy99fe60d2009-04-01 09:22:29 -04002679#if defined(CONFIG_NFS_V4_1)
2680/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04002681 * BIND_CONN_TO_SESSION request
2682 */
2683static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
2684 struct xdr_stream *xdr,
2685 struct nfs_client *clp)
2686{
2687 struct compound_hdr hdr = {
2688 .minorversion = clp->cl_mvops->minor_version,
2689 };
2690
2691 encode_compound_hdr(xdr, req, &hdr);
2692 encode_bind_conn_to_session(xdr, clp->cl_session, &hdr);
2693 encode_nops(&hdr);
2694}
2695
2696/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04002697 * EXCHANGE_ID request
2698 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002699static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2700 struct xdr_stream *xdr,
2701 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002702{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002703 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002704 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002705 };
2706
Chuck Lever9f06c712010-12-14 14:59:18 +00002707 encode_compound_hdr(xdr, req, &hdr);
2708 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002709 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002710}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002711
2712/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002713 * a CREATE_SESSION request
2714 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002715static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2716 struct xdr_stream *xdr,
2717 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002718{
Andy Adamsonfc931582009-04-01 09:22:31 -04002719 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002720 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002721 };
2722
Chuck Lever9f06c712010-12-14 14:59:18 +00002723 encode_compound_hdr(xdr, req, &hdr);
2724 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002725 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002726}
2727
2728/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002729 * a DESTROY_SESSION request
2730 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002731static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2732 struct xdr_stream *xdr,
2733 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002734{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002735 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002736 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002737 };
2738
Chuck Lever9f06c712010-12-14 14:59:18 +00002739 encode_compound_hdr(xdr, req, &hdr);
2740 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002741 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002742}
2743
2744/*
Trond Myklebust66245532012-05-25 17:18:09 -04002745 * a DESTROY_CLIENTID request
2746 */
2747static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
2748 struct xdr_stream *xdr,
2749 struct nfs_client *clp)
2750{
2751 struct compound_hdr hdr = {
2752 .minorversion = clp->cl_mvops->minor_version,
2753 };
2754
2755 encode_compound_hdr(xdr, req, &hdr);
2756 encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
2757 encode_nops(&hdr);
2758}
2759
2760/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002761 * a SEQUENCE request
2762 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002763static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2764 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002765{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002766 struct compound_hdr hdr = {
2767 .minorversion = nfs4_xdr_minorversion(args),
2768 };
2769
Chuck Lever9f06c712010-12-14 14:59:18 +00002770 encode_compound_hdr(xdr, req, &hdr);
2771 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002772 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002773}
2774
2775/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002776 * a GET_LEASE_TIME request
2777 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002778static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2779 struct xdr_stream *xdr,
2780 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002781{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002782 struct compound_hdr hdr = {
2783 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2784 };
Fred Isamandae100c2011-07-30 20:52:37 -04002785 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002786
Chuck Lever9f06c712010-12-14 14:59:18 +00002787 encode_compound_hdr(xdr, req, &hdr);
2788 encode_sequence(xdr, &args->la_seq_args, &hdr);
2789 encode_putrootfh(xdr, &hdr);
2790 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002791 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002792}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002793
2794/*
2795 * a RECLAIM_COMPLETE request
2796 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002797static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2798 struct xdr_stream *xdr,
2799 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002800{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002801 struct compound_hdr hdr = {
2802 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2803 };
2804
Chuck Lever9f06c712010-12-14 14:59:18 +00002805 encode_compound_hdr(xdr, req, &hdr);
2806 encode_sequence(xdr, &args->seq_args, &hdr);
2807 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002808 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002809}
2810
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002811/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002812 * Encode GETDEVICELIST request
2813 */
2814static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2815 struct xdr_stream *xdr,
2816 struct nfs4_getdevicelist_args *args)
2817{
2818 struct compound_hdr hdr = {
2819 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2820 };
2821
2822 encode_compound_hdr(xdr, req, &hdr);
2823 encode_sequence(xdr, &args->seq_args, &hdr);
2824 encode_putfh(xdr, args->fh, &hdr);
2825 encode_getdevicelist(xdr, args, &hdr);
2826 encode_nops(&hdr);
2827}
2828
2829/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002830 * Encode GETDEVICEINFO request
2831 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002832static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2833 struct xdr_stream *xdr,
2834 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002835{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002836 struct compound_hdr hdr = {
2837 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2838 };
2839
Chuck Lever9f06c712010-12-14 14:59:18 +00002840 encode_compound_hdr(xdr, req, &hdr);
2841 encode_sequence(xdr, &args->seq_args, &hdr);
2842 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002843
2844 /* set up reply kvec. Subtract notification bitmap max size (2)
2845 * so that notification bitmap is put in xdr_buf tail */
2846 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2847 args->pdev->pages, args->pdev->pgbase,
2848 args->pdev->pglen);
2849
2850 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002851}
2852
2853/*
2854 * Encode LAYOUTGET request
2855 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002856static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2857 struct xdr_stream *xdr,
2858 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002859{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002860 struct compound_hdr hdr = {
2861 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2862 };
2863
Chuck Lever9f06c712010-12-14 14:59:18 +00002864 encode_compound_hdr(xdr, req, &hdr);
2865 encode_sequence(xdr, &args->seq_args, &hdr);
2866 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2867 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002868
2869 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2870 args->layout.pages, 0, args->layout.pglen);
2871
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002872 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002873}
Andy Adamson863a3c62011-03-23 13:27:54 +00002874
2875/*
2876 * Encode LAYOUTCOMMIT request
2877 */
Benny Halevycbe82602011-05-22 19:52:37 +03002878static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2879 struct xdr_stream *xdr,
2880 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002881{
Benny Halevyac7db722011-05-22 19:53:48 +03002882 struct nfs4_layoutcommit_data *data =
2883 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002884 struct compound_hdr hdr = {
2885 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2886 };
2887
2888 encode_compound_hdr(xdr, req, &hdr);
2889 encode_sequence(xdr, &args->seq_args, &hdr);
2890 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002891 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002892 encode_getfattr(xdr, args->bitmask, &hdr);
2893 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002894}
2895
2896/*
2897 * Encode LAYOUTRETURN request
2898 */
2899static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2900 struct xdr_stream *xdr,
2901 struct nfs4_layoutreturn_args *args)
2902{
2903 struct compound_hdr hdr = {
2904 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2905 };
2906
2907 encode_compound_hdr(xdr, req, &hdr);
2908 encode_sequence(xdr, &args->seq_args, &hdr);
2909 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2910 encode_layoutreturn(xdr, args, &hdr);
2911 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002912}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002913
2914/*
2915 * Encode SECINFO_NO_NAME request
2916 */
2917static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2918 struct xdr_stream *xdr,
2919 struct nfs41_secinfo_no_name_args *args)
2920{
2921 struct compound_hdr hdr = {
2922 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2923 };
2924
2925 encode_compound_hdr(xdr, req, &hdr);
2926 encode_sequence(xdr, &args->seq_args, &hdr);
2927 encode_putrootfh(xdr, &hdr);
2928 encode_secinfo_no_name(xdr, args, &hdr);
2929 encode_nops(&hdr);
2930 return 0;
2931}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002932
2933/*
2934 * Encode TEST_STATEID request
2935 */
2936static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
2937 struct xdr_stream *xdr,
2938 struct nfs41_test_stateid_args *args)
2939{
2940 struct compound_hdr hdr = {
2941 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2942 };
2943
2944 encode_compound_hdr(xdr, req, &hdr);
2945 encode_sequence(xdr, &args->seq_args, &hdr);
2946 encode_test_stateid(xdr, args, &hdr);
2947 encode_nops(&hdr);
2948}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002949
2950/*
2951 * Encode FREE_STATEID request
2952 */
2953static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
2954 struct xdr_stream *xdr,
2955 struct nfs41_free_stateid_args *args)
2956{
2957 struct compound_hdr hdr = {
2958 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2959 };
2960
2961 encode_compound_hdr(xdr, req, &hdr);
2962 encode_sequence(xdr, &args->seq_args, &hdr);
2963 encode_free_stateid(xdr, args, &hdr);
2964 encode_nops(&hdr);
2965}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002966#endif /* CONFIG_NFS_V4_1 */
2967
Benny Halevy686841b2009-08-14 17:19:48 +03002968static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2969{
2970 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2971 "Remaining buffer length is %tu words.\n",
2972 func, xdr->end - xdr->p);
2973}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Trond Myklebust683b57b2006-06-09 09:34:22 -04002975static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Al Viro8687b632006-10-19 23:28:48 -07002977 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Benny Halevyc0eae662009-08-14 17:20:14 +03002979 p = xdr_inline_decode(xdr, 4);
2980 if (unlikely(!p))
2981 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002982 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002983 p = xdr_inline_decode(xdr, *len);
2984 if (unlikely(!p))
2985 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 *string = (char *)p;
2987 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002988out_overflow:
2989 print_overflow_msg(__func__, xdr);
2990 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991}
2992
2993static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2994{
Al Viro8687b632006-10-19 23:28:48 -07002995 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Benny Halevyc0eae662009-08-14 17:20:14 +03002997 p = xdr_inline_decode(xdr, 8);
2998 if (unlikely(!p))
2999 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003000 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003001 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003002
Benny Halevyc0eae662009-08-14 17:20:14 +03003003 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3004 if (unlikely(!p))
3005 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 hdr->tag = (char *)p;
3007 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003008 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003009 if (unlikely(hdr->nops < 1))
3010 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003012out_overflow:
3013 print_overflow_msg(__func__, xdr);
3014 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
3017static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3018{
Al Viro8687b632006-10-19 23:28:48 -07003019 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 uint32_t opnum;
3021 int32_t nfserr;
3022
Benny Halevyc0eae662009-08-14 17:20:14 +03003023 p = xdr_inline_decode(xdr, 8);
3024 if (unlikely(!p))
3025 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003026 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003028 dprintk("nfs: Server returned operation"
3029 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 opnum, expected);
3031 return -EIO;
3032 }
Benny Halevycccddf42009-08-14 17:20:19 +03003033 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03003035 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003037out_overflow:
3038 print_overflow_msg(__func__, xdr);
3039 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040}
3041
3042/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003043static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
Al Viro8687b632006-10-19 23:28:48 -07003045 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003046 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 char *str;
3048
Benny Halevyc0eae662009-08-14 17:20:14 +03003049 p = xdr_inline_decode(xdr, 12);
3050 if (likely(p))
3051 return decode_opaque_inline(xdr, &strlen, &str);
3052 print_overflow_msg(__func__, xdr);
3053 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054}
3055
3056static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3057{
Al Viro8687b632006-10-19 23:28:48 -07003058 uint32_t bmlen;
3059 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Benny Halevyc0eae662009-08-14 17:20:14 +03003061 p = xdr_inline_decode(xdr, 4);
3062 if (unlikely(!p))
3063 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003064 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Fred Isamandae100c2011-07-30 20:52:37 -04003066 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003067 p = xdr_inline_decode(xdr, (bmlen << 2));
3068 if (unlikely(!p))
3069 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003071 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003072 if (bmlen > 1) {
3073 bitmap[1] = be32_to_cpup(p++);
3074 if (bmlen > 2)
3075 bitmap[2] = be32_to_cpup(p);
3076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 }
3078 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003079out_overflow:
3080 print_overflow_msg(__func__, xdr);
3081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082}
3083
Trond Myklebust256e48b2012-06-21 11:18:13 -04003084static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Al Viro8687b632006-10-19 23:28:48 -07003086 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Benny Halevyc0eae662009-08-14 17:20:14 +03003088 p = xdr_inline_decode(xdr, 4);
3089 if (unlikely(!p))
3090 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003091 *attrlen = be32_to_cpup(p);
Trond Myklebust256e48b2012-06-21 11:18:13 -04003092 *savep = xdr_stream_pos(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003094out_overflow:
3095 print_overflow_msg(__func__, xdr);
3096 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
3099static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3100{
3101 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003102 int ret;
3103 ret = decode_attr_bitmap(xdr, bitmask);
3104 if (unlikely(ret < 0))
3105 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3107 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003108 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3109 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3110 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 return 0;
3112}
3113
3114static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3115{
Al Viro8687b632006-10-19 23:28:48 -07003116 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003117 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119 *type = 0;
3120 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3121 return -EIO;
3122 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003123 p = xdr_inline_decode(xdr, 4);
3124 if (unlikely(!p))
3125 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003126 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003128 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 return -EIO;
3130 }
3131 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003132 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003134 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003135 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003136out_overflow:
3137 print_overflow_msg(__func__, xdr);
3138 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139}
3140
Chuck Lever264e6352012-03-01 17:02:05 -05003141static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3142 uint32_t *bitmap, uint32_t *type)
3143{
3144 __be32 *p;
3145
3146 *type = 0;
3147 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3148 return -EIO;
3149 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3150 p = xdr_inline_decode(xdr, 4);
3151 if (unlikely(!p))
3152 goto out_overflow;
3153 *type = be32_to_cpup(p);
3154 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3155 }
3156 dprintk("%s: expire type=0x%x\n", __func__, *type);
3157 return 0;
3158out_overflow:
3159 print_overflow_msg(__func__, xdr);
3160 return -EIO;
3161}
3162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3164{
Al Viro8687b632006-10-19 23:28:48 -07003165 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003166 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
3168 *change = 0;
3169 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3170 return -EIO;
3171 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003172 p = xdr_inline_decode(xdr, 8);
3173 if (unlikely(!p))
3174 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003175 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003177 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003179 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003181 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003182out_overflow:
3183 print_overflow_msg(__func__, xdr);
3184 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185}
3186
3187static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3188{
Al Viro8687b632006-10-19 23:28:48 -07003189 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003190 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192 *size = 0;
3193 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3194 return -EIO;
3195 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003196 p = xdr_inline_decode(xdr, 8);
3197 if (unlikely(!p))
3198 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003199 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003201 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003203 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003204 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003205out_overflow:
3206 print_overflow_msg(__func__, xdr);
3207 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
3210static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3211{
Al Viro8687b632006-10-19 23:28:48 -07003212 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 *res = 0;
3215 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3216 return -EIO;
3217 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003218 p = xdr_inline_decode(xdr, 4);
3219 if (unlikely(!p))
3220 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003221 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3223 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003224 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003226out_overflow:
3227 print_overflow_msg(__func__, xdr);
3228 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229}
3230
3231static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3232{
Al Viro8687b632006-10-19 23:28:48 -07003233 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
3235 *res = 0;
3236 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3237 return -EIO;
3238 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003239 p = xdr_inline_decode(xdr, 4);
3240 if (unlikely(!p))
3241 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003242 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3244 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003245 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003247out_overflow:
3248 print_overflow_msg(__func__, xdr);
3249 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250}
3251
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003252static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253{
Al Viro8687b632006-10-19 23:28:48 -07003254 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003255 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
3257 fsid->major = 0;
3258 fsid->minor = 0;
3259 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3260 return -EIO;
3261 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003262 p = xdr_inline_decode(xdr, 16);
3263 if (unlikely(!p))
3264 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003265 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003266 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003268 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003270 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 (unsigned long long)fsid->major,
3272 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003273 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003274out_overflow:
3275 print_overflow_msg(__func__, xdr);
3276 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
3279static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3280{
Al Viro8687b632006-10-19 23:28:48 -07003281 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
3283 *res = 60;
3284 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3285 return -EIO;
3286 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003287 p = xdr_inline_decode(xdr, 4);
3288 if (unlikely(!p))
3289 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003290 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3292 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003293 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003295out_overflow:
3296 print_overflow_msg(__func__, xdr);
3297 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298}
3299
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003300static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003301{
3302 __be32 *p;
3303
3304 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3305 return -EIO;
3306 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3307 p = xdr_inline_decode(xdr, 4);
3308 if (unlikely(!p))
3309 goto out_overflow;
3310 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003311 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003312 }
3313 return 0;
3314out_overflow:
3315 print_overflow_msg(__func__, xdr);
3316 return -EIO;
3317}
3318
3319static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3320{
3321 __be32 *p;
3322 int len;
3323
Trond Myklebust7ad07352010-10-23 15:34:20 -04003324 if (fh != NULL)
3325 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003326
3327 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3328 return -EIO;
3329 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3330 p = xdr_inline_decode(xdr, 4);
3331 if (unlikely(!p))
3332 goto out_overflow;
3333 len = be32_to_cpup(p);
3334 if (len > NFS4_FHSIZE)
3335 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003336 p = xdr_inline_decode(xdr, len);
3337 if (unlikely(!p))
3338 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003339 if (fh != NULL) {
3340 memcpy(fh->data, p, len);
3341 fh->size = len;
3342 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003343 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3344 }
3345 return 0;
3346out_overflow:
3347 print_overflow_msg(__func__, xdr);
3348 return -EIO;
3349}
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3352{
Al Viro8687b632006-10-19 23:28:48 -07003353 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
3355 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3356 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3357 return -EIO;
3358 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003359 p = xdr_inline_decode(xdr, 4);
3360 if (unlikely(!p))
3361 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003362 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3364 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003365 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003367out_overflow:
3368 print_overflow_msg(__func__, xdr);
3369 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370}
3371
3372static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3373{
Al Viro8687b632006-10-19 23:28:48 -07003374 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003375 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
3377 *fileid = 0;
3378 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3379 return -EIO;
3380 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003381 p = xdr_inline_decode(xdr, 8);
3382 if (unlikely(!p))
3383 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003384 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003386 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003388 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003389 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003390out_overflow:
3391 print_overflow_msg(__func__, xdr);
3392 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393}
3394
Manoj Naik99baf622006-06-09 09:34:24 -04003395static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3396{
Al Viro8687b632006-10-19 23:28:48 -07003397 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003398 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003399
3400 *fileid = 0;
3401 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3402 return -EIO;
3403 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003404 p = xdr_inline_decode(xdr, 8);
3405 if (unlikely(!p))
3406 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003407 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003408 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003409 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003410 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003411 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003412 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003413out_overflow:
3414 print_overflow_msg(__func__, xdr);
3415 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003416}
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3419{
Al Viro8687b632006-10-19 23:28:48 -07003420 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 int status = 0;
3422
3423 *res = 0;
3424 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3425 return -EIO;
3426 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003427 p = xdr_inline_decode(xdr, 8);
3428 if (unlikely(!p))
3429 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003430 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3432 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003433 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003435out_overflow:
3436 print_overflow_msg(__func__, xdr);
3437 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438}
3439
3440static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3441{
Al Viro8687b632006-10-19 23:28:48 -07003442 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 int status = 0;
3444
3445 *res = 0;
3446 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3447 return -EIO;
3448 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003449 p = xdr_inline_decode(xdr, 8);
3450 if (unlikely(!p))
3451 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003452 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3454 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003455 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003457out_overflow:
3458 print_overflow_msg(__func__, xdr);
3459 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460}
3461
3462static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3463{
Al Viro8687b632006-10-19 23:28:48 -07003464 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 int status = 0;
3466
3467 *res = 0;
3468 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3469 return -EIO;
3470 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003471 p = xdr_inline_decode(xdr, 8);
3472 if (unlikely(!p))
3473 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003474 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3476 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003477 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003479out_overflow:
3480 print_overflow_msg(__func__, xdr);
3481 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482}
3483
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003484static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3485{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003486 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003487 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003488 int status = 0;
3489
Benny Halevyc0eae662009-08-14 17:20:14 +03003490 p = xdr_inline_decode(xdr, 4);
3491 if (unlikely(!p))
3492 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003493 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003494 if (n == 0)
3495 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003496 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003497 path->ncomponents = 0;
3498 while (path->ncomponents < n) {
3499 struct nfs4_string *component = &path->components[path->ncomponents];
3500 status = decode_opaque_inline(xdr, &component->len, &component->data);
3501 if (unlikely(status != 0))
3502 goto out_eio;
Trond Myklebust95a13f72012-03-14 21:55:01 -04003503 ifdebug (XDR)
Chuck Lever02a29762012-03-01 17:00:31 -05003504 pr_cont("%s%.*s ",
3505 (path->ncomponents != n ? "/ " : ""),
3506 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003507 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3508 path->ncomponents++;
3509 else {
3510 dprintk("cannot parse %d components in path\n", n);
3511 goto out_eio;
3512 }
3513 }
3514out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003515 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003516root_path:
3517/* a root pathname is sent as a zero component4 */
3518 path->ncomponents = 1;
3519 path->components[0].len=0;
3520 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003521 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003522 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003523out_eio:
3524 dprintk(" status %d", status);
3525 status = -EIO;
3526 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003527out_overflow:
3528 print_overflow_msg(__func__, xdr);
3529 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003530}
3531
3532static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003533{
3534 int n;
Al Viro8687b632006-10-19 23:28:48 -07003535 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003536 int status = -EIO;
3537
3538 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3539 goto out;
3540 status = 0;
3541 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3542 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003543 status = -EIO;
3544 /* Ignore borken servers that return unrequested attrs */
3545 if (unlikely(res == NULL))
3546 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003547 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003548 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003549 if (unlikely(status != 0))
3550 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003551 p = xdr_inline_decode(xdr, 4);
3552 if (unlikely(!p))
3553 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003554 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003555 if (n <= 0)
3556 goto out_eio;
3557 res->nlocations = 0;
3558 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003559 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003560 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003561
Benny Halevyc0eae662009-08-14 17:20:14 +03003562 p = xdr_inline_decode(xdr, 4);
3563 if (unlikely(!p))
3564 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003565 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003566
3567 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003568 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003569 while (loc->nservers < m) {
3570 struct nfs4_string *server = &loc->servers[loc->nservers];
3571 status = decode_opaque_inline(xdr, &server->len, &server->data);
3572 if (unlikely(status != 0))
3573 goto out_eio;
3574 dprintk("%s ", server->data);
3575 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3576 loc->nservers++;
3577 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003578 unsigned int i;
3579 dprintk("%s: using first %u of %u servers "
3580 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003581 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003582 NFS4_FS_LOCATION_MAXSERVERS,
3583 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003584 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003585 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003586 char *data;
3587 status = decode_opaque_inline(xdr, &len, &data);
3588 if (unlikely(status != 0))
3589 goto out_eio;
3590 }
3591 }
3592 }
3593 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003594 if (unlikely(status != 0))
3595 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003596 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003597 res->nlocations++;
3598 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003599 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003600 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003601out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003602 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003603 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003604out_overflow:
3605 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003606out_eio:
3607 status = -EIO;
3608 goto out;
3609}
3610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3612{
Al Viro8687b632006-10-19 23:28:48 -07003613 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 int status = 0;
3615
3616 *res = 0;
3617 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3618 return -EIO;
3619 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003620 p = xdr_inline_decode(xdr, 8);
3621 if (unlikely(!p))
3622 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003623 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3625 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003626 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003628out_overflow:
3629 print_overflow_msg(__func__, xdr);
3630 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631}
3632
3633static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3634{
Al Viro8687b632006-10-19 23:28:48 -07003635 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 int status = 0;
3637
3638 *maxlink = 1;
3639 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3640 return -EIO;
3641 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003642 p = xdr_inline_decode(xdr, 4);
3643 if (unlikely(!p))
3644 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003645 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3647 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003648 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003650out_overflow:
3651 print_overflow_msg(__func__, xdr);
3652 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653}
3654
3655static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3656{
Al Viro8687b632006-10-19 23:28:48 -07003657 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 int status = 0;
3659
3660 *maxname = 1024;
3661 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3662 return -EIO;
3663 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003664 p = xdr_inline_decode(xdr, 4);
3665 if (unlikely(!p))
3666 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003667 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3669 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003670 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003672out_overflow:
3673 print_overflow_msg(__func__, xdr);
3674 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675}
3676
3677static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3678{
Al Viro8687b632006-10-19 23:28:48 -07003679 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 int status = 0;
3681
3682 *res = 1024;
3683 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3684 return -EIO;
3685 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3686 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003687 p = xdr_inline_decode(xdr, 8);
3688 if (unlikely(!p))
3689 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003690 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 if (maxread > 0x7FFFFFFF)
3692 maxread = 0x7FFFFFFF;
3693 *res = (uint32_t)maxread;
3694 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3695 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003696 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003698out_overflow:
3699 print_overflow_msg(__func__, xdr);
3700 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701}
3702
3703static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3704{
Al Viro8687b632006-10-19 23:28:48 -07003705 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 int status = 0;
3707
3708 *res = 1024;
3709 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3710 return -EIO;
3711 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3712 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003713 p = xdr_inline_decode(xdr, 8);
3714 if (unlikely(!p))
3715 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003716 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (maxwrite > 0x7FFFFFFF)
3718 maxwrite = 0x7FFFFFFF;
3719 *res = (uint32_t)maxwrite;
3720 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3721 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003722 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003724out_overflow:
3725 print_overflow_msg(__func__, xdr);
3726 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727}
3728
Trond Myklebustbca79472009-03-11 14:10:26 -04003729static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730{
Trond Myklebustbca79472009-03-11 14:10:26 -04003731 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003732 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003733 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
3735 *mode = 0;
3736 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3737 return -EIO;
3738 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003739 p = xdr_inline_decode(xdr, 4);
3740 if (unlikely(!p))
3741 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003742 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003743 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003745 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003747 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003748 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003749out_overflow:
3750 print_overflow_msg(__func__, xdr);
3751 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752}
3753
3754static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3755{
Al Viro8687b632006-10-19 23:28:48 -07003756 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003757 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759 *nlink = 1;
3760 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3761 return -EIO;
3762 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003763 p = xdr_inline_decode(xdr, 4);
3764 if (unlikely(!p))
3765 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003766 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003768 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003770 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003771 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003772out_overflow:
3773 print_overflow_msg(__func__, xdr);
3774 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775}
3776
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003777static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003778 const struct nfs_server *server, uint32_t *uid,
3779 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780{
Al Viro8687b632006-10-19 23:28:48 -07003781 uint32_t len;
3782 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003783 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 *uid = -2;
3786 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3787 return -EIO;
3788 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003789 p = xdr_inline_decode(xdr, 4);
3790 if (unlikely(!p))
3791 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003792 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003793 p = xdr_inline_decode(xdr, len);
3794 if (unlikely(!p))
3795 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003796 if (owner_name != NULL) {
3797 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3798 if (owner_name->data != NULL) {
3799 owner_name->len = len;
3800 ret = NFS_ATTR_FATTR_OWNER_NAME;
3801 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003802 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003803 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003804 ret = NFS_ATTR_FATTR_OWNER;
3805 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003807 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003809 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003810 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3812 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003813 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003814 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003815out_overflow:
3816 print_overflow_msg(__func__, xdr);
3817 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818}
3819
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003820static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003821 const struct nfs_server *server, uint32_t *gid,
3822 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823{
Al Viro8687b632006-10-19 23:28:48 -07003824 uint32_t len;
3825 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003826 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828 *gid = -2;
3829 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3830 return -EIO;
3831 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003832 p = xdr_inline_decode(xdr, 4);
3833 if (unlikely(!p))
3834 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003835 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003836 p = xdr_inline_decode(xdr, len);
3837 if (unlikely(!p))
3838 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003839 if (group_name != NULL) {
3840 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3841 if (group_name->data != NULL) {
3842 group_name->len = len;
3843 ret = NFS_ATTR_FATTR_GROUP_NAME;
3844 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003845 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003846 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003847 ret = NFS_ATTR_FATTR_GROUP;
3848 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003850 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003852 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003853 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3855 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003856 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003857 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003858out_overflow:
3859 print_overflow_msg(__func__, xdr);
3860 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861}
3862
3863static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3864{
Al Viro8687b632006-10-19 23:28:48 -07003865 uint32_t major = 0, minor = 0;
3866 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003867 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869 *rdev = MKDEV(0,0);
3870 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3871 return -EIO;
3872 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3873 dev_t tmp;
3874
Benny Halevyc0eae662009-08-14 17:20:14 +03003875 p = xdr_inline_decode(xdr, 8);
3876 if (unlikely(!p))
3877 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003878 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003879 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 tmp = MKDEV(major, minor);
3881 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3882 *rdev = tmp;
3883 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003884 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003886 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003887 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003888out_overflow:
3889 print_overflow_msg(__func__, xdr);
3890 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891}
3892
3893static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3894{
Al Viro8687b632006-10-19 23:28:48 -07003895 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 int status = 0;
3897
3898 *res = 0;
3899 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3900 return -EIO;
3901 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003902 p = xdr_inline_decode(xdr, 8);
3903 if (unlikely(!p))
3904 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003905 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3907 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003908 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003910out_overflow:
3911 print_overflow_msg(__func__, xdr);
3912 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913}
3914
3915static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3916{
Al Viro8687b632006-10-19 23:28:48 -07003917 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 int status = 0;
3919
3920 *res = 0;
3921 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3922 return -EIO;
3923 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003924 p = xdr_inline_decode(xdr, 8);
3925 if (unlikely(!p))
3926 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003927 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3929 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003930 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003932out_overflow:
3933 print_overflow_msg(__func__, xdr);
3934 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935}
3936
3937static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3938{
Al Viro8687b632006-10-19 23:28:48 -07003939 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 int status = 0;
3941
3942 *res = 0;
3943 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3944 return -EIO;
3945 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003946 p = xdr_inline_decode(xdr, 8);
3947 if (unlikely(!p))
3948 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003949 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3951 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003952 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003954out_overflow:
3955 print_overflow_msg(__func__, xdr);
3956 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957}
3958
3959static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3960{
Al Viro8687b632006-10-19 23:28:48 -07003961 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003962 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964 *used = 0;
3965 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3966 return -EIO;
3967 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003968 p = xdr_inline_decode(xdr, 8);
3969 if (unlikely(!p))
3970 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003971 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003973 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003975 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003977 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003978out_overflow:
3979 print_overflow_msg(__func__, xdr);
3980 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981}
3982
3983static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3984{
Al Viro8687b632006-10-19 23:28:48 -07003985 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 uint64_t sec;
3987 uint32_t nsec;
3988
Benny Halevyc0eae662009-08-14 17:20:14 +03003989 p = xdr_inline_decode(xdr, 12);
3990 if (unlikely(!p))
3991 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003992 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003993 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 time->tv_sec = (time_t)sec;
3995 time->tv_nsec = (long)nsec;
3996 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003997out_overflow:
3998 print_overflow_msg(__func__, xdr);
3999 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000}
4001
4002static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4003{
4004 int status = 0;
4005
4006 time->tv_sec = 0;
4007 time->tv_nsec = 0;
4008 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4009 return -EIO;
4010 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4011 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004012 if (status == 0)
4013 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4015 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004016 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 return status;
4018}
4019
4020static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4021{
4022 int status = 0;
4023
4024 time->tv_sec = 0;
4025 time->tv_nsec = 0;
4026 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4027 return -EIO;
4028 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4029 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004030 if (status == 0)
4031 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4033 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004034 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 return status;
4036}
4037
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004038static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4039 struct timespec *time)
4040{
4041 int status = 0;
4042
4043 time->tv_sec = 0;
4044 time->tv_nsec = 0;
4045 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4046 return -EIO;
4047 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4048 status = decode_attr_time(xdr, time);
4049 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4050 }
4051 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4052 (long)time->tv_nsec);
4053 return status;
4054}
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4057{
4058 int status = 0;
4059
4060 time->tv_sec = 0;
4061 time->tv_nsec = 0;
4062 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4063 return -EIO;
4064 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4065 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004066 if (status == 0)
4067 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4069 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004070 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 return status;
4072}
4073
Trond Myklebust256e48b2012-06-21 11:18:13 -04004074static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075{
4076 unsigned int attrwords = XDR_QUADLEN(attrlen);
Trond Myklebust256e48b2012-06-21 11:18:13 -04004077 unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004080 dprintk("%s: server returned incorrect attribute length: "
4081 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004082 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 attrwords << 2,
4084 (attrwords < nwords) ? '<' : '>',
4085 nwords << 2);
4086 return -EIO;
4087 }
4088 return 0;
4089}
4090
4091static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4092{
Al Viro8687b632006-10-19 23:28:48 -07004093 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Benny Halevyc0eae662009-08-14 17:20:14 +03004095 p = xdr_inline_decode(xdr, 20);
4096 if (unlikely(!p))
4097 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004098 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004099 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004100 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004102out_overflow:
4103 print_overflow_msg(__func__, xdr);
4104 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105}
4106
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004107static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108{
Al Viro8687b632006-10-19 23:28:48 -07004109 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 uint32_t supp, acc;
4111 int status;
4112
4113 status = decode_op_hdr(xdr, OP_ACCESS);
4114 if (status)
4115 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004116 p = xdr_inline_decode(xdr, 8);
4117 if (unlikely(!p))
4118 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004119 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004120 acc = be32_to_cpup(p);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04004121 *supported = supp;
4122 *access = acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004124out_overflow:
4125 print_overflow_msg(__func__, xdr);
4126 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127}
4128
Benny Halevy07d30432009-08-14 17:19:52 +03004129static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130{
Al Viro8687b632006-10-19 23:28:48 -07004131 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004132
4133 p = xdr_inline_decode(xdr, len);
4134 if (likely(p)) {
4135 memcpy(buf, p, len);
4136 return 0;
4137 }
4138 print_overflow_msg(__func__, xdr);
4139 return -EIO;
4140}
4141
4142static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4143{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004144 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}
4146
4147static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4148{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 int status;
4150
4151 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004152 if (status != -EIO)
4153 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004154 if (!status)
4155 status = decode_stateid(xdr, &res->stateid);
4156 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157}
4158
Benny Halevydb942bb2009-08-14 17:19:56 +03004159static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4160{
Chuck Levercd937102012-03-02 17:14:31 -05004161 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162}
4163
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004164static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
4165{
4166 return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
4167}
4168
Fred Isaman0b7c0152012-04-20 14:47:39 -04004169static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 int status;
4172
4173 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004174 if (!status)
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04004175 status = decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevydb942bb2009-08-14 17:19:56 +03004176 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177}
4178
4179static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4180{
Al Viro8687b632006-10-19 23:28:48 -07004181 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 uint32_t bmlen;
4183 int status;
4184
4185 status = decode_op_hdr(xdr, OP_CREATE);
4186 if (status)
4187 return status;
4188 if ((status = decode_change_info(xdr, cinfo)))
4189 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004190 p = xdr_inline_decode(xdr, 4);
4191 if (unlikely(!p))
4192 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004193 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004194 p = xdr_inline_decode(xdr, bmlen << 2);
4195 if (likely(p))
4196 return 0;
4197out_overflow:
4198 print_overflow_msg(__func__, xdr);
4199 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}
4201
4202static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4203{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004204 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004205 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 int status;
4207
4208 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4209 goto xdr_error;
4210 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4211 goto xdr_error;
4212 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4213 goto xdr_error;
4214 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4215 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004216 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4217 &res->fh_expire_type)) != 0)
4218 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4220 goto xdr_error;
4221 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4222 goto xdr_error;
4223 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4224 goto xdr_error;
4225 status = verify_attr_len(xdr, savep, attrlen);
4226xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004227 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 return status;
4229}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4232{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004233 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004234 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4238 goto xdr_error;
4239 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4240 goto xdr_error;
4241 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4242 goto xdr_error;
4243
4244 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4245 goto xdr_error;
4246 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4247 goto xdr_error;
4248 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4249 goto xdr_error;
4250 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4251 goto xdr_error;
4252 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4253 goto xdr_error;
4254 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4255 goto xdr_error;
4256
4257 status = verify_attr_len(xdr, savep, attrlen);
4258xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004259 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 return status;
4261}
4262
4263static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4264{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004265 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004266 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004268
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4270 goto xdr_error;
4271 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4272 goto xdr_error;
4273 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4274 goto xdr_error;
4275
4276 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4277 goto xdr_error;
4278 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4279 goto xdr_error;
4280
4281 status = verify_attr_len(xdr, savep, attrlen);
4282xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004283 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 return status;
4285}
4286
Andy Adamson88034c32012-05-23 05:02:34 -04004287static int decode_threshold_hint(struct xdr_stream *xdr,
4288 uint32_t *bitmap,
4289 uint64_t *res,
4290 uint32_t hint_bit)
4291{
4292 __be32 *p;
4293
4294 *res = 0;
4295 if (likely(bitmap[0] & hint_bit)) {
4296 p = xdr_inline_decode(xdr, 8);
4297 if (unlikely(!p))
4298 goto out_overflow;
4299 xdr_decode_hyper(p, res);
4300 }
4301 return 0;
4302out_overflow:
4303 print_overflow_msg(__func__, xdr);
4304 return -EIO;
4305}
4306
4307static int decode_first_threshold_item4(struct xdr_stream *xdr,
4308 struct nfs4_threshold *res)
4309{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004310 __be32 *p;
4311 unsigned int savep;
Andy Adamson88034c32012-05-23 05:02:34 -04004312 uint32_t bitmap[3] = {0,}, attrlen;
4313 int status;
4314
4315 /* layout type */
4316 p = xdr_inline_decode(xdr, 4);
4317 if (unlikely(!p)) {
4318 print_overflow_msg(__func__, xdr);
4319 return -EIO;
4320 }
4321 res->l_type = be32_to_cpup(p);
4322
4323 /* thi_hintset bitmap */
4324 status = decode_attr_bitmap(xdr, bitmap);
4325 if (status < 0)
4326 goto xdr_error;
4327
4328 /* thi_hintlist length */
4329 status = decode_attr_length(xdr, &attrlen, &savep);
4330 if (status < 0)
4331 goto xdr_error;
4332 /* thi_hintlist */
4333 status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
4334 if (status < 0)
4335 goto xdr_error;
4336 status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
4337 if (status < 0)
4338 goto xdr_error;
4339 status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
4340 THRESHOLD_RD_IO);
4341 if (status < 0)
4342 goto xdr_error;
4343 status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
4344 THRESHOLD_WR_IO);
4345 if (status < 0)
4346 goto xdr_error;
4347
4348 status = verify_attr_len(xdr, savep, attrlen);
4349 res->bm = bitmap[0];
4350
4351 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
4352 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
4353 res->wr_io_sz);
4354xdr_error:
4355 dprintk("%s ret=%d!\n", __func__, status);
4356 return status;
4357}
4358
4359/*
4360 * Thresholds on pNFS direct I/O vrs MDS I/O
4361 */
4362static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
4363 uint32_t *bitmap,
4364 struct nfs4_threshold *res)
4365{
4366 __be32 *p;
4367 int status = 0;
4368 uint32_t num;
4369
4370 if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
4371 return -EIO;
Trond Myklebust029c5342012-06-05 09:35:44 -04004372 if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
Trond Myklebust1549210f2012-06-05 09:16:47 -04004373 /* Did the server return an unrequested attribute? */
4374 if (unlikely(res == NULL))
4375 return -EREMOTEIO;
Andy Adamson88034c32012-05-23 05:02:34 -04004376 p = xdr_inline_decode(xdr, 4);
4377 if (unlikely(!p))
4378 goto out_overflow;
4379 num = be32_to_cpup(p);
4380 if (num == 0)
4381 return 0;
4382 if (num > 1)
4383 printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
4384 "drivers per filesystem not supported\n",
4385 __func__);
4386
4387 status = decode_first_threshold_item4(xdr, res);
Trond Myklebust029c5342012-06-05 09:35:44 -04004388 bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
Andy Adamson88034c32012-05-23 05:02:34 -04004389 }
4390 return status;
4391out_overflow:
4392 print_overflow_msg(__func__, xdr);
4393 return -EIO;
4394}
4395
Bryan Schumakerae42c702010-10-21 16:33:17 -04004396static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4397 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004398 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004399 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400{
Trond Myklebustbca79472009-03-11 14:10:26 -04004401 int status;
4402 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004403 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004404 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004406 status = decode_attr_type(xdr, bitmap, &type);
4407 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004409 fattr->mode = 0;
4410 if (status != 0) {
4411 fattr->mode |= nfs_type2fmt[type];
4412 fattr->valid |= status;
4413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004415 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4416 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004418 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004419
4420 status = decode_attr_size(xdr, bitmap, &fattr->size);
4421 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004423 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004424
4425 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4426 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004428 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004429
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004430 err = 0;
4431 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004432 if (status < 0)
4433 goto xdr_error;
4434
4435 status = decode_attr_filehandle(xdr, bitmap, fh);
4436 if (status < 0)
4437 goto xdr_error;
4438
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004439 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4440 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004442 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004443
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004444 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004445 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004446 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004447 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004448
4449 status = decode_attr_mode(xdr, bitmap, &fmode);
4450 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004452 if (status != 0) {
4453 fattr->mode |= fmode;
4454 fattr->valid |= status;
4455 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004456
4457 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4458 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004460 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004461
Trond Myklebust6926afd2012-01-07 13:22:46 -05004462 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004463 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004465 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004466
Trond Myklebust6926afd2012-01-07 13:22:46 -05004467 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004468 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004470 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004471
4472 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4473 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004475 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004476
4477 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4478 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004480 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004481
4482 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4483 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004485 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004486
4487 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4488 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004490 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004491
4492 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4493 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004495 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004496
Trond Myklebust28331a42011-04-27 13:47:52 -04004497 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004498 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004499 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004500 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004501
Andy Adamson88034c32012-05-23 05:02:34 -04004502 status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
4503 if (status < 0)
4504 goto xdr_error;
4505
Bryan Schumakerae42c702010-10-21 16:33:17 -04004506xdr_error:
4507 dprintk("%s: xdr returned %d\n", __func__, -status);
4508 return status;
4509}
4510
4511static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004512 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4513 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004514{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004515 unsigned int savep;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004516 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004517 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004518 int status;
4519
4520 status = decode_op_hdr(xdr, OP_GETATTR);
4521 if (status < 0)
4522 goto xdr_error;
4523
4524 status = decode_attr_bitmap(xdr, bitmap);
4525 if (status < 0)
4526 goto xdr_error;
4527
4528 status = decode_attr_length(xdr, &attrlen, &savep);
4529 if (status < 0)
4530 goto xdr_error;
4531
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004532 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004533 if (status < 0)
4534 goto xdr_error;
4535
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004536 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004538 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 return status;
4540}
4541
Bryan Schumakerae42c702010-10-21 16:33:17 -04004542static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004543 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004544{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004545 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
Andy Adamson504913f2010-10-20 00:17:57 -04004548/*
4549 * Decode potentially multiple layout types. Currently we only support
4550 * one layout driver per file system.
4551 */
4552static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4553 uint32_t *layouttype)
4554{
4555 uint32_t *p;
4556 int num;
4557
4558 p = xdr_inline_decode(xdr, 4);
4559 if (unlikely(!p))
4560 goto out_overflow;
4561 num = be32_to_cpup(p);
4562
4563 /* pNFS is not supported by the underlying file system */
4564 if (num == 0) {
4565 *layouttype = 0;
4566 return 0;
4567 }
4568 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004569 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4570 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004571
4572 /* Decode and set first layout type, move xdr->p past unused types */
4573 p = xdr_inline_decode(xdr, num * 4);
4574 if (unlikely(!p))
4575 goto out_overflow;
4576 *layouttype = be32_to_cpup(p);
4577 return 0;
4578out_overflow:
4579 print_overflow_msg(__func__, xdr);
4580 return -EIO;
4581}
4582
4583/*
4584 * The type of file system exported.
4585 * Note we must ensure that layouttype is set in any non-error case.
4586 */
4587static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4588 uint32_t *layouttype)
4589{
4590 int status = 0;
4591
4592 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4593 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4594 return -EIO;
4595 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4596 status = decode_first_pnfs_layout_type(xdr, layouttype);
4597 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4598 } else
4599 *layouttype = 0;
4600 return status;
4601}
4602
Fred Isamandae100c2011-07-30 20:52:37 -04004603/*
4604 * The prefered block size for layout directed io
4605 */
4606static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4607 uint32_t *res)
4608{
4609 __be32 *p;
4610
4611 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4612 *res = 0;
4613 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4614 p = xdr_inline_decode(xdr, 4);
4615 if (unlikely(!p)) {
4616 print_overflow_msg(__func__, xdr);
4617 return -EIO;
4618 }
4619 *res = be32_to_cpup(p);
4620 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4621 }
4622 return 0;
4623}
4624
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4626{
Trond Myklebust256e48b2012-06-21 11:18:13 -04004627 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004628 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 int status;
4630
4631 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4632 goto xdr_error;
4633 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4634 goto xdr_error;
4635 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4636 goto xdr_error;
4637
4638 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4639
4640 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4641 goto xdr_error;
4642 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4643 goto xdr_error;
4644 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4645 goto xdr_error;
4646 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4647 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4648 goto xdr_error;
4649 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004650 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4651 if (status != 0)
4652 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004653 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4654 if (status != 0)
4655 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004656 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4657 if (status)
4658 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660 status = verify_attr_len(xdr, savep, attrlen);
4661xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004662 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 return status;
4664}
4665
4666static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4667{
Al Viro8687b632006-10-19 23:28:48 -07004668 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 uint32_t len;
4670 int status;
4671
Trond Myklebust99367812007-07-17 21:52:41 -04004672 /* Zero handle first to allow comparisons */
4673 memset(fh, 0, sizeof(*fh));
4674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 status = decode_op_hdr(xdr, OP_GETFH);
4676 if (status)
4677 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678
Benny Halevyc0eae662009-08-14 17:20:14 +03004679 p = xdr_inline_decode(xdr, 4);
4680 if (unlikely(!p))
4681 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004682 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 if (len > NFS4_FHSIZE)
4684 return -EIO;
4685 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004686 p = xdr_inline_decode(xdr, len);
4687 if (unlikely(!p))
4688 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004689 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004691out_overflow:
4692 print_overflow_msg(__func__, xdr);
4693 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694}
4695
4696static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4697{
4698 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004699
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 status = decode_op_hdr(xdr, OP_LINK);
4701 if (status)
4702 return status;
4703 return decode_change_info(xdr, cinfo);
4704}
4705
4706/*
4707 * We create the owner, so we know a proper owner.id length is 4.
4708 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004709static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004711 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004712 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004713 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004715 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004716 if (unlikely(!p))
4717 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004718 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004719 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004720 type = be32_to_cpup(p++); /* 4 byte read */
4721 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004722 fl->fl_start = (loff_t)offset;
4723 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4724 if (length == ~(uint64_t)0)
4725 fl->fl_end = OFFSET_MAX;
4726 fl->fl_type = F_WRLCK;
4727 if (type & 1)
4728 fl->fl_type = F_RDLCK;
4729 fl->fl_pid = 0;
4730 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004731 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4732 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4733 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004734 if (likely(p))
4735 return -NFS4ERR_DENIED;
4736out_overflow:
4737 print_overflow_msg(__func__, xdr);
4738 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739}
4740
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004741static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 int status;
4744
4745 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004746 if (status == -EIO)
4747 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004749 status = decode_stateid(xdr, &res->stateid);
4750 if (unlikely(status))
4751 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004753 status = decode_lock_denied(xdr, NULL);
4754 if (res->open_seqid != NULL)
4755 nfs_increment_open_seqid(status, res->open_seqid);
4756 nfs_increment_lock_seqid(status, res->lock_seqid);
4757out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 return status;
4759}
4760
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004761static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762{
4763 int status;
4764 status = decode_op_hdr(xdr, OP_LOCKT);
4765 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004766 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 return status;
4768}
4769
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004770static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 int status;
4773
4774 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004775 if (status != -EIO)
4776 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004777 if (status == 0)
4778 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 return status;
4780}
4781
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004782static int decode_release_lockowner(struct xdr_stream *xdr)
4783{
4784 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4785}
4786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787static int decode_lookup(struct xdr_stream *xdr)
4788{
4789 return decode_op_hdr(xdr, OP_LOOKUP);
4790}
4791
4792/* This is too sick! */
4793static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4794{
Andy Adamson05d564f2008-12-23 16:06:15 -05004795 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 uint32_t limit_type, nblocks, blocksize;
4797
Benny Halevyc0eae662009-08-14 17:20:14 +03004798 p = xdr_inline_decode(xdr, 12);
4799 if (unlikely(!p))
4800 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004801 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004803 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004804 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004805 break;
4806 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004807 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004808 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004809 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 }
4811 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004812out_overflow:
4813 print_overflow_msg(__func__, xdr);
4814 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815}
4816
4817static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4818{
Andy Adamson05d564f2008-12-23 16:06:15 -05004819 __be32 *p;
4820 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004821 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Benny Halevyc0eae662009-08-14 17:20:14 +03004823 p = xdr_inline_decode(xdr, 4);
4824 if (unlikely(!p))
4825 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004826 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4828 res->delegation_type = 0;
4829 return 0;
4830 }
Benny Halevy07d30432009-08-14 17:19:52 +03004831 status = decode_stateid(xdr, &res->delegation);
4832 if (unlikely(status))
4833 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004834 p = xdr_inline_decode(xdr, 4);
4835 if (unlikely(!p))
4836 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004837 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004840 case NFS4_OPEN_DELEGATE_READ:
4841 res->delegation_type = FMODE_READ;
4842 break;
4843 case NFS4_OPEN_DELEGATE_WRITE:
4844 res->delegation_type = FMODE_WRITE|FMODE_READ;
4845 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 return -EIO;
4847 }
David Howells7539bba2006-08-22 20:06:09 -04004848 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004849out_overflow:
4850 print_overflow_msg(__func__, xdr);
4851 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852}
4853
4854static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4855{
Andy Adamson05d564f2008-12-23 16:06:15 -05004856 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004857 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004858 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
Andy Adamson05d564f2008-12-23 16:06:15 -05004860 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004861 if (status != -EIO)
4862 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004863 if (!status)
4864 status = decode_stateid(xdr, &res->stateid);
4865 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004866 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
Andy Adamson05d564f2008-12-23 16:06:15 -05004868 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Benny Halevyc0eae662009-08-14 17:20:14 +03004870 p = xdr_inline_decode(xdr, 8);
4871 if (unlikely(!p))
4872 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004873 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004874 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004875 if (bmlen > 10)
4876 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
Benny Halevyc0eae662009-08-14 17:20:14 +03004878 p = xdr_inline_decode(xdr, bmlen << 2);
4879 if (unlikely(!p))
4880 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004881 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4882 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004883 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004884 for (; i < NFS4_BITMAP_SIZE; i++)
4885 res->attrset[i] = 0;
4886
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 return decode_delegation(xdr, res);
4888xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004889 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004891out_overflow:
4892 print_overflow_msg(__func__, xdr);
4893 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894}
4895
4896static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 int status;
4899
Andy Adamson05d564f2008-12-23 16:06:15 -05004900 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004901 if (status != -EIO)
4902 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004903 if (!status)
4904 status = decode_stateid(xdr, &res->stateid);
4905 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906}
4907
4908static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 int status;
4911
4912 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004913 if (status != -EIO)
4914 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004915 if (!status)
4916 status = decode_stateid(xdr, &res->stateid);
4917 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918}
4919
4920static int decode_putfh(struct xdr_stream *xdr)
4921{
4922 return decode_op_hdr(xdr, OP_PUTFH);
4923}
4924
4925static int decode_putrootfh(struct xdr_stream *xdr)
4926{
4927 return decode_op_hdr(xdr, OP_PUTROOTFH);
4928}
4929
4930static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4931{
Al Viro8687b632006-10-19 23:28:48 -07004932 __be32 *p;
Trond Myklebust64bd5772012-06-20 22:35:05 -04004933 uint32_t count, eof, recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 int status;
4935
4936 status = decode_op_hdr(xdr, OP_READ);
4937 if (status)
4938 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004939 p = xdr_inline_decode(xdr, 8);
4940 if (unlikely(!p))
4941 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004942 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004943 count = be32_to_cpup(p);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004944 recvd = xdr_read_pages(xdr, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004946 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 "count %u > recvd %u\n", count, recvd);
4948 count = recvd;
4949 eof = 0;
4950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 res->eof = eof;
4952 res->count = count;
4953 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004954out_overflow:
4955 print_overflow_msg(__func__, xdr);
4956 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957}
4958
4959static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4960{
Chuck Leverbcecff72007-10-26 13:32:03 -04004961 int status;
Chuck Levercd937102012-03-02 17:14:31 -05004962 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004965 if (!status)
4966 status = decode_verifier(xdr, readdir->verifier.data);
4967 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 return status;
Chuck Levercd937102012-03-02 17:14:31 -05004969 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03004970 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05004971 __func__, verf[0], verf[1]);
Trond Myklebust64bd5772012-06-20 22:35:05 -04004972 return xdr_read_pages(xdr, xdr->buf->page_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973}
4974
4975static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4976{
4977 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Chuck Leverbcecff72007-10-26 13:32:03 -04004978 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004979 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 int status;
4981
4982 status = decode_op_hdr(xdr, OP_READLINK);
4983 if (status)
4984 return status;
4985
4986 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004987 p = xdr_inline_decode(xdr, 4);
4988 if (unlikely(!p))
4989 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004990 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004992 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 return -ENAMETOOLONG;
4994 }
Trond Myklebust64bd5772012-06-20 22:35:05 -04004995 recvd = xdr_read_pages(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004997 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 "count %u > recvd %u\n", len, recvd);
4999 return -EIO;
5000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 /*
5002 * The XDR encode routine has set things up so that
5003 * the link text will be copied directly into the
5004 * buffer. We just have to do overflow-checking,
5005 * and and null-terminate the text (the VFS expects
5006 * null-termination).
5007 */
Chuck Leverb4687da2010-09-21 16:55:48 -04005008 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005010out_overflow:
5011 print_overflow_msg(__func__, xdr);
5012 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013}
5014
5015static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5016{
5017 int status;
5018
5019 status = decode_op_hdr(xdr, OP_REMOVE);
5020 if (status)
5021 goto out;
5022 status = decode_change_info(xdr, cinfo);
5023out:
5024 return status;
5025}
5026
5027static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5028 struct nfs4_change_info *new_cinfo)
5029{
5030 int status;
5031
5032 status = decode_op_hdr(xdr, OP_RENAME);
5033 if (status)
5034 goto out;
5035 if ((status = decode_change_info(xdr, old_cinfo)))
5036 goto out;
5037 status = decode_change_info(xdr, new_cinfo);
5038out:
5039 return status;
5040}
5041
5042static int decode_renew(struct xdr_stream *xdr)
5043{
5044 return decode_op_hdr(xdr, OP_RENEW);
5045}
5046
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005047static int
5048decode_restorefh(struct xdr_stream *xdr)
5049{
5050 return decode_op_hdr(xdr, OP_RESTOREFH);
5051}
5052
J. Bruce Fields029d1052005-06-22 17:16:22 +00005053static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05005054 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005055{
Trond Myklebust256e48b2012-06-21 11:18:13 -04005056 unsigned int savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005057 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04005058 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00005059 int status;
Trond Myklebustcff298c2012-08-14 17:14:17 -04005060 unsigned int pg_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005061
Andy Adamsonbf118a32011-12-07 11:55:27 -05005062 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005063 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5064 goto out;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005065
Trond Myklebust519d3952012-08-14 17:30:10 -04005066 xdr_enter_page(xdr, xdr->buf->page_len);
5067
Trond Myklebustcff298c2012-08-14 17:14:17 -04005068 /* Calculate the offset of the page data */
5069 pg_offset = xdr->buf->head[0].iov_len;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005070
J. Bruce Fields029d1052005-06-22 17:16:22 +00005071 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5072 goto out;
5073 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5074 goto out;
5075
5076 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5077 return -EIO;
5078 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
J. Bruce Fields029d1052005-06-22 17:16:22 +00005079
Andy Adamsonbf118a32011-12-07 11:55:27 -05005080 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5081 * are stored with the acl data to handle the problem of
5082 * variable length bitmaps.*/
Trond Myklebustcff298c2012-08-14 17:14:17 -04005083 res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
Trond Myklebust519d3952012-08-14 17:30:10 -04005084 res->acl_len = attrlen;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005085
5086 /* Check for receive buffer overflow */
5087 if (res->acl_len > (xdr->nwords << 2) ||
5088 res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
5089 res->acl_flags |= NFS4_ACL_TRUNC;
Trond Myklebust519d3952012-08-14 17:30:10 -04005090 dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
Trond Myklebustcff298c2012-08-14 17:14:17 -04005091 attrlen, xdr->nwords << 2);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005092 }
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005093 } else
5094 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005095
5096out:
5097 return status;
5098}
5099
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100static int
5101decode_savefh(struct xdr_stream *xdr)
5102{
5103 return decode_op_hdr(xdr, OP_SAVEFH);
5104}
5105
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005106static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107{
Al Viro8687b632006-10-19 23:28:48 -07005108 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 uint32_t bmlen;
5110 int status;
5111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 status = decode_op_hdr(xdr, OP_SETATTR);
5113 if (status)
5114 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005115 p = xdr_inline_decode(xdr, 4);
5116 if (unlikely(!p))
5117 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005118 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005119 p = xdr_inline_decode(xdr, bmlen << 2);
5120 if (likely(p))
5121 return 0;
5122out_overflow:
5123 print_overflow_msg(__func__, xdr);
5124 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125}
5126
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005127static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128{
Al Viro8687b632006-10-19 23:28:48 -07005129 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 uint32_t opnum;
5131 int32_t nfserr;
5132
Benny Halevyc0eae662009-08-14 17:20:14 +03005133 p = xdr_inline_decode(xdr, 8);
5134 if (unlikely(!p))
5135 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005136 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005138 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005139 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 return -EIO;
5141 }
Benny Halevycccddf42009-08-14 17:20:19 +03005142 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005144 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5145 if (unlikely(!p))
5146 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005147 p = xdr_decode_hyper(p, &res->clientid);
5148 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 } else if (nfserr == NFSERR_CLID_INUSE) {
5150 uint32_t len;
5151
5152 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005153 p = xdr_inline_decode(xdr, 4);
5154 if (unlikely(!p))
5155 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005156 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005157 p = xdr_inline_decode(xdr, len);
5158 if (unlikely(!p))
5159 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
5161 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005162 p = xdr_inline_decode(xdr, 4);
5163 if (unlikely(!p))
5164 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005165 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005166 p = xdr_inline_decode(xdr, len);
5167 if (unlikely(!p))
5168 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 return -NFSERR_CLID_INUSE;
5170 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005171 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
5173 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005174out_overflow:
5175 print_overflow_msg(__func__, xdr);
5176 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177}
5178
5179static int decode_setclientid_confirm(struct xdr_stream *xdr)
5180{
5181 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5182}
5183
5184static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5185{
Al Viro8687b632006-10-19 23:28:48 -07005186 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 int status;
5188
5189 status = decode_op_hdr(xdr, OP_WRITE);
5190 if (status)
5191 return status;
5192
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005193 p = xdr_inline_decode(xdr, 8);
Benny Halevyc0eae662009-08-14 17:20:14 +03005194 if (unlikely(!p))
5195 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005196 res->count = be32_to_cpup(p++);
5197 res->verf->committed = be32_to_cpup(p++);
Trond Myklebust2f2c63b2012-06-08 11:56:09 -04005198 return decode_write_verifier(xdr, &res->verf->verifier);
Benny Halevyc0eae662009-08-14 17:20:14 +03005199out_overflow:
5200 print_overflow_msg(__func__, xdr);
5201 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202}
5203
5204static int decode_delegreturn(struct xdr_stream *xdr)
5205{
5206 return decode_op_hdr(xdr, OP_DELEGRETURN);
5207}
5208
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005209static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5210{
5211 __be32 *p;
5212
5213 p = xdr_inline_decode(xdr, 4);
5214 if (unlikely(!p))
5215 goto out_overflow;
5216 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5217 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5218 goto out_err;
5219
5220 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5221 if (unlikely(!p))
5222 goto out_overflow;
5223 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5224
5225 p = xdr_inline_decode(xdr, 8);
5226 if (unlikely(!p))
5227 goto out_overflow;
5228 flavor->gss.qop4 = be32_to_cpup(p++);
5229 flavor->gss.service = be32_to_cpup(p);
5230
5231 return 0;
5232
5233out_overflow:
5234 print_overflow_msg(__func__, xdr);
5235 return -EIO;
5236out_err:
5237 return -EINVAL;
5238}
5239
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005240static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005241{
5242 struct nfs4_secinfo_flavor *sec_flavor;
5243 int status;
5244 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005245 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005246
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005247 p = xdr_inline_decode(xdr, 4);
5248 if (unlikely(!p))
5249 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005250
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005251 res->flavors->num_flavors = 0;
5252 num_flavors = be32_to_cpup(p);
5253
5254 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005255 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005256 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005257 break;
5258
5259 p = xdr_inline_decode(xdr, 4);
5260 if (unlikely(!p))
5261 goto out_overflow;
5262 sec_flavor->flavor = be32_to_cpup(p);
5263
5264 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005265 status = decode_secinfo_gss(xdr, sec_flavor);
5266 if (status)
5267 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005268 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005269 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005270 }
5271
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005272 status = 0;
Bryan Schumaker613e9012011-04-27 15:28:44 -04005273out:
5274 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005275out_overflow:
5276 print_overflow_msg(__func__, xdr);
5277 return -EIO;
5278}
5279
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005280static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5281{
5282 int status = decode_op_hdr(xdr, OP_SECINFO);
5283 if (status)
5284 return status;
5285 return decode_secinfo_common(xdr, res);
5286}
5287
Benny Halevy99fe60d2009-04-01 09:22:29 -04005288#if defined(CONFIG_NFS_V4_1)
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04005289static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5290{
5291 int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
5292 if (status)
5293 return status;
5294 return decode_secinfo_common(xdr, res);
5295}
5296
Benny Halevy99fe60d2009-04-01 09:22:29 -04005297static int decode_exchange_id(struct xdr_stream *xdr,
5298 struct nfs41_exchange_id_res *res)
5299{
5300 __be32 *p;
5301 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005302 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005303 int status;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005304 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005305
5306 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5307 if (status)
5308 return status;
5309
Benny Halevyc0eae662009-08-14 17:20:14 +03005310 p = xdr_inline_decode(xdr, 8);
5311 if (unlikely(!p))
5312 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005313 xdr_decode_hyper(p, &res->clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005314 p = xdr_inline_decode(xdr, 12);
5315 if (unlikely(!p))
5316 goto out_overflow;
Trond Myklebust32b01312012-05-26 13:41:04 -04005317 res->seqid = be32_to_cpup(p++);
5318 res->flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005319
5320 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005321 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005322 if (dummy != SP4_NONE)
5323 return -EIO;
5324
Chuck Leveracdeb692012-05-21 22:46:16 -04005325 /* server_owner4.so_minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005326 p = xdr_inline_decode(xdr, 8);
5327 if (unlikely(!p))
5328 goto out_overflow;
Chuck Leveracdeb692012-05-21 22:46:16 -04005329 p = xdr_decode_hyper(p, &res->server_owner->minor_id);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005330
Chuck Leveracdeb692012-05-21 22:46:16 -04005331 /* server_owner4.so_major_id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005332 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5333 if (unlikely(status))
5334 return status;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005335 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5336 return -EIO;
Chuck Leveracdeb692012-05-21 22:46:16 -04005337 memcpy(res->server_owner->major_id, dummy_str, dummy);
5338 res->server_owner->major_id_sz = dummy;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005339
Chuck Leveracdeb692012-05-21 22:46:16 -04005340 /* server_scope4 */
5341 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5342 if (unlikely(status))
5343 return status;
5344 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5345 return -EIO;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005346 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5347 res->server_scope->server_scope_sz = dummy;
5348
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005349 /* Implementation Id */
5350 p = xdr_inline_decode(xdr, 4);
5351 if (unlikely(!p))
5352 goto out_overflow;
5353 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005354
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005355 if (impl_id_count) {
5356 /* nii_domain */
5357 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5358 if (unlikely(status))
5359 return status;
5360 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5361 return -EIO;
5362 memcpy(res->impl_id->domain, dummy_str, dummy);
5363
5364 /* nii_name */
5365 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5366 if (unlikely(status))
5367 return status;
5368 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5369 return -EIO;
5370 memcpy(res->impl_id->name, dummy_str, dummy);
5371
5372 /* nii_date */
5373 p = xdr_inline_decode(xdr, 12);
5374 if (unlikely(!p))
5375 goto out_overflow;
5376 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5377 res->impl_id->date.nseconds = be32_to_cpup(p);
5378
5379 /* if there's more than one entry, ignore the rest */
5380 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005381 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005382out_overflow:
5383 print_overflow_msg(__func__, xdr);
5384 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005385}
Andy Adamsonfc931582009-04-01 09:22:31 -04005386
5387static int decode_chan_attrs(struct xdr_stream *xdr,
5388 struct nfs4_channel_attrs *attrs)
5389{
5390 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005391 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005392
Benny Halevyc0eae662009-08-14 17:20:14 +03005393 p = xdr_inline_decode(xdr, 28);
5394 if (unlikely(!p))
5395 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005396 val = be32_to_cpup(p++); /* headerpadsz */
5397 if (val)
5398 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005399 attrs->max_rqst_sz = be32_to_cpup(p++);
5400 attrs->max_resp_sz = be32_to_cpup(p++);
5401 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5402 attrs->max_ops = be32_to_cpup(p++);
5403 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005404 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005405 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005406 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5407 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005408 return -EINVAL;
5409 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005410 if (nr_attrs == 1) {
5411 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5412 if (unlikely(!p))
5413 goto out_overflow;
5414 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005415 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005416out_overflow:
5417 print_overflow_msg(__func__, xdr);
5418 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005419}
5420
Benny Halevye78291e2009-08-14 17:20:00 +03005421static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5422{
5423 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005424}
5425
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005426static int decode_bind_conn_to_session(struct xdr_stream *xdr,
5427 struct nfs41_bind_conn_to_session_res *res)
5428{
5429 __be32 *p;
5430 int status;
5431
5432 status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
5433 if (!status)
5434 status = decode_sessionid(xdr, &res->session->sess_id);
5435 if (unlikely(status))
5436 return status;
5437
5438 /* dir flags, rdma mode bool */
5439 p = xdr_inline_decode(xdr, 8);
5440 if (unlikely(!p))
5441 goto out_overflow;
5442
5443 res->dir = be32_to_cpup(p++);
5444 if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
5445 return -EIO;
5446 if (be32_to_cpup(p) == 0)
5447 res->use_conn_in_rdma_mode = false;
5448 else
5449 res->use_conn_in_rdma_mode = true;
5450
5451 return 0;
5452out_overflow:
5453 print_overflow_msg(__func__, xdr);
5454 return -EIO;
5455}
5456
Andy Adamsonfc931582009-04-01 09:22:31 -04005457static int decode_create_session(struct xdr_stream *xdr,
5458 struct nfs41_create_session_res *res)
5459{
5460 __be32 *p;
5461 int status;
5462 struct nfs_client *clp = res->client;
5463 struct nfs4_session *session = clp->cl_session;
5464
5465 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005466 if (!status)
5467 status = decode_sessionid(xdr, &session->sess_id);
5468 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005469 return status;
5470
Andy Adamsonfc931582009-04-01 09:22:31 -04005471 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005472 p = xdr_inline_decode(xdr, 8);
5473 if (unlikely(!p))
5474 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005475 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005476 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005477
5478 /* Channel attributes */
5479 status = decode_chan_attrs(xdr, &session->fc_attrs);
5480 if (!status)
5481 status = decode_chan_attrs(xdr, &session->bc_attrs);
5482 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005483out_overflow:
5484 print_overflow_msg(__func__, xdr);
5485 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005486}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005487
5488static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5489{
5490 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5491}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005492
Trond Myklebust66245532012-05-25 17:18:09 -04005493static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
5494{
5495 return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
5496}
5497
Ricardo Labiaga180197532009-12-05 16:08:40 -05005498static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5499{
5500 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5501}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005502#endif /* CONFIG_NFS_V4_1 */
5503
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005504static int decode_sequence(struct xdr_stream *xdr,
5505 struct nfs4_sequence_res *res,
5506 struct rpc_rqst *rqstp)
5507{
5508#if defined(CONFIG_NFS_V4_1)
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005509 struct nfs4_session *session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005510 struct nfs4_sessionid id;
5511 u32 dummy;
5512 int status;
5513 __be32 *p;
5514
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005515 if (res->sr_slot == NULL)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005516 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;
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005529 session = res->sr_slot->table->session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005530
Trond Myklebuste3725ec2012-11-16 12:25:01 -05005531 if (memcmp(id.data, session->sess_id.data,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005532 NFS4_MAX_SESSIONID_LEN)) {
5533 dprintk("%s Invalid session id\n", __func__);
5534 goto out_err;
5535 }
Benny Halevye78291e2009-08-14 17:20:00 +03005536
Benny Halevyc0eae662009-08-14 17:20:14 +03005537 p = xdr_inline_decode(xdr, 20);
5538 if (unlikely(!p))
5539 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005540
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005541 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005542 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005543 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005544 dprintk("%s Invalid sequence number\n", __func__);
5545 goto out_err;
5546 }
5547 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005548 dummy = be32_to_cpup(p++);
Trond Myklebustdf2fabf2012-11-16 12:45:06 -05005549 if (dummy != res->sr_slot->slot_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005550 dprintk("%s Invalid slot id\n", __func__);
5551 goto out_err;
5552 }
5553 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005554 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005555 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005556 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005557 /* result flags */
5558 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005559 status = 0;
5560out_err:
5561 res->sr_status = status;
5562 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005563out_overflow:
5564 print_overflow_msg(__func__, xdr);
5565 status = -EIO;
5566 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005567#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005568 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005569#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005570}
5571
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005572#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005573/*
5574 * TODO: Need to handle case when EOF != true;
5575 */
5576static int decode_getdevicelist(struct xdr_stream *xdr,
5577 struct pnfs_devicelist *res)
5578{
5579 __be32 *p;
5580 int status, i;
Trond Myklebust98d94522012-06-08 12:01:14 -04005581 nfs4_verifier verftemp;
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005582
5583 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5584 if (status)
5585 return status;
5586
5587 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5588 if (unlikely(!p))
5589 goto out_overflow;
5590
5591 /* TODO: Skip cookie for now */
5592 p += 2;
5593
5594 /* Read verifier */
Trond Myklebust98d94522012-06-08 12:01:14 -04005595 p = xdr_decode_opaque_fixed(p, verftemp.data, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005596
5597 res->num_devs = be32_to_cpup(p);
5598
5599 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5600
5601 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005602 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005603 __func__, res->num_devs);
5604 return -EIO;
5605 }
5606
5607 p = xdr_inline_decode(xdr,
5608 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5609 if (unlikely(!p))
5610 goto out_overflow;
5611 for (i = 0; i < res->num_devs; i++)
5612 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5613 NFS4_DEVICEID4_SIZE);
5614 res->eof = be32_to_cpup(p);
5615 return 0;
5616out_overflow:
5617 print_overflow_msg(__func__, xdr);
5618 return -EIO;
5619}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005620
5621static int decode_getdeviceinfo(struct xdr_stream *xdr,
5622 struct pnfs_device *pdev)
5623{
5624 __be32 *p;
5625 uint32_t len, type;
5626 int status;
5627
5628 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5629 if (status) {
5630 if (status == -ETOOSMALL) {
5631 p = xdr_inline_decode(xdr, 4);
5632 if (unlikely(!p))
5633 goto out_overflow;
5634 pdev->mincount = be32_to_cpup(p);
5635 dprintk("%s: Min count too small. mincnt = %u\n",
5636 __func__, pdev->mincount);
5637 }
5638 return status;
5639 }
5640
5641 p = xdr_inline_decode(xdr, 8);
5642 if (unlikely(!p))
5643 goto out_overflow;
5644 type = be32_to_cpup(p++);
5645 if (type != pdev->layout_type) {
5646 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5647 __func__, pdev->layout_type, type);
5648 return -EINVAL;
5649 }
5650 /*
5651 * Get the length of the opaque device_addr4. xdr_read_pages places
5652 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5653 * and places the remaining xdr data in xdr_buf->tail
5654 */
5655 pdev->mincount = be32_to_cpup(p);
Trond Myklebust13fe4ba2012-08-01 14:21:12 -04005656 if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
5657 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005658
5659 /* Parse notification bitmap, verifying that it is zero. */
5660 p = xdr_inline_decode(xdr, 4);
5661 if (unlikely(!p))
5662 goto out_overflow;
5663 len = be32_to_cpup(p);
5664 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005665 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005666
5667 p = xdr_inline_decode(xdr, 4 * len);
5668 if (unlikely(!p))
5669 goto out_overflow;
5670 for (i = 0; i < len; i++, p++) {
5671 if (be32_to_cpup(p)) {
5672 dprintk("%s: notifications not supported\n",
5673 __func__);
5674 return -EIO;
5675 }
5676 }
5677 }
5678 return 0;
5679out_overflow:
5680 print_overflow_msg(__func__, xdr);
5681 return -EIO;
5682}
5683
5684static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5685 struct nfs4_layoutget_res *res)
5686{
5687 __be32 *p;
5688 int status;
5689 u32 layout_count;
Trond Myklebust64bd5772012-06-20 22:35:05 -04005690 u32 recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005691
5692 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5693 if (status)
5694 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005695 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005696 if (unlikely(!p))
5697 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005698 res->return_on_close = be32_to_cpup(p);
5699 decode_stateid(xdr, &res->stateid);
5700 p = xdr_inline_decode(xdr, 4);
5701 if (unlikely(!p))
5702 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005703 layout_count = be32_to_cpup(p);
5704 if (!layout_count) {
5705 dprintk("%s: server responded with empty layout array\n",
5706 __func__);
5707 return -EINVAL;
5708 }
5709
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005710 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005711 if (unlikely(!p))
5712 goto out_overflow;
5713 p = xdr_decode_hyper(p, &res->range.offset);
5714 p = xdr_decode_hyper(p, &res->range.length);
5715 res->range.iomode = be32_to_cpup(p++);
5716 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005717 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005718
5719 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5720 __func__,
5721 (unsigned long)res->range.offset,
5722 (unsigned long)res->range.length,
5723 res->range.iomode,
5724 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005725 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005726
Trond Myklebust64bd5772012-06-20 22:35:05 -04005727 recvd = xdr_read_pages(xdr, res->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005728 if (res->layoutp->len > recvd) {
5729 dprintk("NFS: server cheating in layoutget reply: "
5730 "layout len %u > recvd %u\n",
5731 res->layoutp->len, recvd);
5732 return -EINVAL;
5733 }
5734
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005735 if (layout_count > 1) {
5736 /* We only handle a length one array at the moment. Any
5737 * further entries are just ignored. Note that this means
5738 * the client may see a response that is less than the
5739 * minimum it requested.
5740 */
5741 dprintk("%s: server responded with %d layouts, dropping tail\n",
5742 __func__, layout_count);
5743 }
5744
5745 return 0;
5746out_overflow:
5747 print_overflow_msg(__func__, xdr);
5748 return -EIO;
5749}
Andy Adamson863a3c62011-03-23 13:27:54 +00005750
Benny Halevycbe82602011-05-22 19:52:37 +03005751static int decode_layoutreturn(struct xdr_stream *xdr,
5752 struct nfs4_layoutreturn_res *res)
5753{
5754 __be32 *p;
5755 int status;
5756
5757 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5758 if (status)
5759 return status;
5760 p = xdr_inline_decode(xdr, 4);
5761 if (unlikely(!p))
5762 goto out_overflow;
5763 res->lrs_present = be32_to_cpup(p);
5764 if (res->lrs_present)
5765 status = decode_stateid(xdr, &res->stateid);
5766 return status;
5767out_overflow:
5768 print_overflow_msg(__func__, xdr);
5769 return -EIO;
5770}
5771
Andy Adamson863a3c62011-03-23 13:27:54 +00005772static int decode_layoutcommit(struct xdr_stream *xdr,
5773 struct rpc_rqst *req,
5774 struct nfs4_layoutcommit_res *res)
5775{
5776 __be32 *p;
5777 __u32 sizechanged;
5778 int status;
5779
5780 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005781 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005782 if (status)
5783 return status;
5784
5785 p = xdr_inline_decode(xdr, 4);
5786 if (unlikely(!p))
5787 goto out_overflow;
5788 sizechanged = be32_to_cpup(p);
5789
5790 if (sizechanged) {
5791 /* throw away new size */
5792 p = xdr_inline_decode(xdr, 8);
5793 if (unlikely(!p))
5794 goto out_overflow;
5795 }
5796 return 0;
5797out_overflow:
5798 print_overflow_msg(__func__, xdr);
5799 return -EIO;
5800}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005801
5802static int decode_test_stateid(struct xdr_stream *xdr,
5803 struct nfs41_test_stateid_res *res)
5804{
5805 __be32 *p;
5806 int status;
5807 int num_res;
5808
5809 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5810 if (status)
5811 return status;
5812
5813 p = xdr_inline_decode(xdr, 4);
5814 if (unlikely(!p))
5815 goto out_overflow;
5816 num_res = be32_to_cpup(p++);
5817 if (num_res != 1)
5818 goto out;
5819
5820 p = xdr_inline_decode(xdr, 4);
5821 if (unlikely(!p))
5822 goto out_overflow;
5823 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005824
5825 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005826out_overflow:
5827 print_overflow_msg(__func__, xdr);
5828out:
5829 return -EIO;
5830}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005831
5832static int decode_free_stateid(struct xdr_stream *xdr,
5833 struct nfs41_free_stateid_res *res)
5834{
5835 __be32 *p;
5836 int status;
5837
5838 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5839 if (status)
5840 return status;
5841
5842 p = xdr_inline_decode(xdr, 4);
5843 if (unlikely(!p))
5844 goto out_overflow;
5845 res->status = be32_to_cpup(p++);
5846 return res->status;
5847out_overflow:
5848 print_overflow_msg(__func__, xdr);
5849 return -EIO;
5850}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005851#endif /* CONFIG_NFS_V4_1 */
5852
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853/*
Benny Halevy49c25592008-12-23 16:06:16 -05005854 * END OF "GENERIC" DECODE ROUTINES.
5855 */
5856
5857/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858 * Decode OPEN_DOWNGRADE response
5859 */
Chuck Leverbf269552010-12-14 14:59:29 +00005860static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5861 struct xdr_stream *xdr,
5862 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863{
Andy Adamson05d564f2008-12-23 16:06:15 -05005864 struct compound_hdr hdr;
5865 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
Chuck Leverbf269552010-12-14 14:59:29 +00005867 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005868 if (status)
5869 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005870 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005871 if (status)
5872 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005873 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005874 if (status)
5875 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005876 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005877 if (status != 0)
5878 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005879 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005881 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882}
5883
5884/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 * Decode ACCESS response
5886 */
Chuck Leverbf269552010-12-14 14:59:29 +00005887static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5888 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 struct compound_hdr hdr;
5891 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005892
Chuck Leverbf269552010-12-14 14:59:29 +00005893 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005894 if (status)
5895 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005896 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005897 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005899 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005900 if (status != 0)
5901 goto out;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04005902 status = decode_access(xdr, &res->supported, &res->access);
Trond Myklebust76b32992007-08-10 17:45:11 -04005903 if (status != 0)
5904 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005905 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906out:
5907 return status;
5908}
5909
5910/*
5911 * Decode LOOKUP response
5912 */
Chuck Leverbf269552010-12-14 14:59:29 +00005913static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5914 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 struct compound_hdr hdr;
5917 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005918
Chuck Leverbf269552010-12-14 14:59:29 +00005919 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005920 if (status)
5921 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005922 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005923 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005925 status = decode_putfh(xdr);
5926 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005928 status = decode_lookup(xdr);
5929 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005931 status = decode_getfh(xdr, res->fh);
5932 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005934 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935out:
5936 return status;
5937}
5938
5939/*
5940 * Decode LOOKUP_ROOT response
5941 */
Chuck Leverbf269552010-12-14 14:59:29 +00005942static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5943 struct xdr_stream *xdr,
5944 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946 struct compound_hdr hdr;
5947 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005948
Chuck Leverbf269552010-12-14 14:59:29 +00005949 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005950 if (status)
5951 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005952 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005953 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005955 status = decode_putrootfh(xdr);
5956 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005958 status = decode_getfh(xdr, res->fh);
5959 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005960 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961out:
5962 return status;
5963}
5964
5965/*
5966 * Decode REMOVE response
5967 */
Chuck Leverbf269552010-12-14 14:59:29 +00005968static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5969 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 struct compound_hdr hdr;
5972 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005973
Chuck Leverbf269552010-12-14 14:59:29 +00005974 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005975 if (status)
5976 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005977 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005978 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005980 status = decode_putfh(xdr);
5981 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005982 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005983 status = decode_remove(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984out:
5985 return status;
5986}
5987
5988/*
5989 * Decode RENAME response
5990 */
Chuck Leverbf269552010-12-14 14:59:29 +00005991static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5992 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 struct compound_hdr hdr;
5995 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005996
Chuck Leverbf269552010-12-14 14:59:29 +00005997 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005998 if (status)
5999 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006000 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006001 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006003 status = decode_putfh(xdr);
6004 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006006 status = decode_savefh(xdr);
6007 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006009 status = decode_putfh(xdr);
6010 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006012 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013out:
6014 return status;
6015}
6016
6017/*
6018 * Decode LINK response
6019 */
Chuck Leverbf269552010-12-14 14:59:29 +00006020static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6021 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 struct compound_hdr hdr;
6024 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006025
Chuck Leverbf269552010-12-14 14:59:29 +00006026 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006027 if (status)
6028 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006029 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006030 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006032 status = decode_putfh(xdr);
6033 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006035 status = decode_savefh(xdr);
6036 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006038 status = decode_putfh(xdr);
6039 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006041 status = decode_link(xdr, &res->cinfo);
6042 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006043 goto out;
6044 /*
6045 * Note order: OP_LINK leaves the directory as the current
6046 * filehandle.
6047 */
Chuck Leverbf269552010-12-14 14:59:29 +00006048 status = decode_restorefh(xdr);
6049 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006050 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006051 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052out:
6053 return status;
6054}
6055
6056/*
6057 * Decode CREATE response
6058 */
Chuck Leverbf269552010-12-14 14:59:29 +00006059static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6060 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 struct compound_hdr hdr;
6063 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006064
Chuck Leverbf269552010-12-14 14:59:29 +00006065 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006066 if (status)
6067 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006068 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006069 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006071 status = decode_putfh(xdr);
6072 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006074 status = decode_create(xdr, &res->dir_cinfo);
6075 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006077 status = decode_getfh(xdr, res->fh);
6078 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 goto out;
Trond Myklebust7c317fc2012-04-27 13:48:18 -04006080 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081out:
6082 return status;
6083}
6084
6085/*
6086 * Decode SYMLINK response
6087 */
Chuck Leverbf269552010-12-14 14:59:29 +00006088static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6089 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090{
Chuck Leverbf269552010-12-14 14:59:29 +00006091 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092}
6093
6094/*
6095 * Decode GETATTR response
6096 */
Chuck Leverbf269552010-12-14 14:59:29 +00006097static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6098 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100 struct compound_hdr hdr;
6101 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006102
Chuck Leverbf269552010-12-14 14:59:29 +00006103 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 if (status)
6105 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006106 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006107 if (status)
6108 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006109 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110 if (status)
6111 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006112 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113out:
6114 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115}
6116
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006117/*
6118 * Encode an SETACL request
6119 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006120static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6121 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006122{
Andy Adamson05d564f2008-12-23 16:06:15 -05006123 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006124 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006125 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006126
Chuck Lever9f06c712010-12-14 14:59:18 +00006127 encode_compound_hdr(xdr, req, &hdr);
6128 encode_sequence(xdr, &args->seq_args, &hdr);
6129 encode_putfh(xdr, args->fh, &hdr);
6130 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006131 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006132}
Andy Adamson05d564f2008-12-23 16:06:15 -05006133
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006134/*
6135 * Decode SETACL response
6136 */
6137static int
Chuck Leverbf269552010-12-14 14:59:29 +00006138nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006139 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006140{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006141 struct compound_hdr hdr;
6142 int status;
6143
Chuck Leverbf269552010-12-14 14:59:29 +00006144 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006145 if (status)
6146 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006147 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006148 if (status)
6149 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006150 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006151 if (status)
6152 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006153 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006154out:
6155 return status;
6156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157
6158/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006159 * Decode GETACL response
6160 */
6161static int
Chuck Leverbf269552010-12-14 14:59:29 +00006162nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006163 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006164{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006165 struct compound_hdr hdr;
6166 int status;
6167
Trond Myklebust331818f2012-02-03 18:30:53 -05006168 if (res->acl_scratch != NULL) {
6169 void *p = page_address(res->acl_scratch);
6170 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6171 }
Chuck Leverbf269552010-12-14 14:59:29 +00006172 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006173 if (status)
6174 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006175 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006176 if (status)
6177 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006178 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006179 if (status)
6180 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006181 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006182
6183out:
6184 return status;
6185}
6186
6187/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 * Decode CLOSE response
6189 */
Chuck Leverbf269552010-12-14 14:59:29 +00006190static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6191 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192{
Andy Adamson05d564f2008-12-23 16:06:15 -05006193 struct compound_hdr hdr;
6194 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195
Chuck Leverbf269552010-12-14 14:59:29 +00006196 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006197 if (status)
6198 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006199 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006200 if (status)
6201 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006202 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006203 if (status)
6204 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006205 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006206 if (status != 0)
6207 goto out;
6208 /*
6209 * Note: Server may do delete on close for this file
6210 * in which case the getattr call will fail with
6211 * an ESTALE error. Shouldn't be a problem,
6212 * though, since fattr->valid will remain unset.
6213 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006214 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006216 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217}
6218
6219/*
6220 * Decode OPEN response
6221 */
Chuck Leverbf269552010-12-14 14:59:29 +00006222static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6223 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224{
Andy Adamson05d564f2008-12-23 16:06:15 -05006225 struct compound_hdr hdr;
6226 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Chuck Leverbf269552010-12-14 14:59:29 +00006228 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006229 if (status)
6230 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006231 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006232 if (status)
6233 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006234 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006235 if (status)
6236 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006237 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006238 if (status)
6239 goto out;
Weston Andros Adamson01913b42012-09-06 15:54:27 -04006240 status = decode_getfh(xdr, &res->fh);
6241 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006243 if (res->access_request)
6244 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust90ff0c52012-04-27 13:48:18 -04006245 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006247 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248}
6249
6250/*
6251 * Decode OPEN_CONFIRM response
6252 */
Chuck Leverbf269552010-12-14 14:59:29 +00006253static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6254 struct xdr_stream *xdr,
6255 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256{
Andy Adamson05d564f2008-12-23 16:06:15 -05006257 struct compound_hdr hdr;
6258 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259
Chuck Leverbf269552010-12-14 14:59:29 +00006260 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006261 if (status)
6262 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006263 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006264 if (status)
6265 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006266 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006268 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269}
6270
6271/*
6272 * Decode OPEN response
6273 */
Chuck Leverbf269552010-12-14 14:59:29 +00006274static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6275 struct xdr_stream *xdr,
6276 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277{
Andy Adamson05d564f2008-12-23 16:06:15 -05006278 struct compound_hdr hdr;
6279 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280
Chuck Leverbf269552010-12-14 14:59:29 +00006281 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006282 if (status)
6283 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006284 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006285 if (status)
6286 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006287 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006288 if (status)
6289 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006290 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006291 if (status)
6292 goto out;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07006293 if (res->access_request)
6294 decode_access(xdr, &res->access_supported, &res->access_result);
Trond Myklebust6926afd2012-01-07 13:22:46 -05006295 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006297 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298}
6299
6300/*
6301 * Decode SETATTR response
6302 */
Chuck Leverbf269552010-12-14 14:59:29 +00006303static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6304 struct xdr_stream *xdr,
6305 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306{
Andy Adamson05d564f2008-12-23 16:06:15 -05006307 struct compound_hdr hdr;
6308 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309
Chuck Leverbf269552010-12-14 14:59:29 +00006310 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006311 if (status)
6312 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006313 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006314 if (status)
6315 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006316 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006317 if (status)
6318 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006319 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006320 if (status)
6321 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006322 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006324 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325}
6326
6327/*
6328 * Decode LOCK response
6329 */
Chuck Leverbf269552010-12-14 14:59:29 +00006330static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6331 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333 struct compound_hdr hdr;
6334 int status;
6335
Chuck Leverbf269552010-12-14 14:59:29 +00006336 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 if (status)
6338 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006339 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006340 if (status)
6341 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006342 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343 if (status)
6344 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006345 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346out:
6347 return status;
6348}
6349
6350/*
6351 * Decode LOCKT response
6352 */
Chuck Leverbf269552010-12-14 14:59:29 +00006353static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6354 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 struct compound_hdr hdr;
6357 int status;
6358
Chuck Leverbf269552010-12-14 14:59:29 +00006359 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 if (status)
6361 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006362 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006363 if (status)
6364 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006365 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366 if (status)
6367 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006368 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369out:
6370 return status;
6371}
6372
6373/*
6374 * Decode LOCKU response
6375 */
Chuck Leverbf269552010-12-14 14:59:29 +00006376static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6377 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 struct compound_hdr hdr;
6380 int status;
6381
Chuck Leverbf269552010-12-14 14:59:29 +00006382 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 if (status)
6384 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006385 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006386 if (status)
6387 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006388 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389 if (status)
6390 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006391 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392out:
6393 return status;
6394}
6395
Chuck Leverbf269552010-12-14 14:59:29 +00006396static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6397 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006398{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006399 struct compound_hdr hdr;
6400 int status;
6401
Chuck Leverbf269552010-12-14 14:59:29 +00006402 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006403 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006404 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006405 return status;
6406}
6407
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408/*
6409 * Decode READLINK response
6410 */
Chuck Leverbf269552010-12-14 14:59:29 +00006411static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6412 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006413 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 struct compound_hdr hdr;
6416 int status;
6417
Chuck Leverbf269552010-12-14 14:59:29 +00006418 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 if (status)
6420 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006421 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006422 if (status)
6423 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006424 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425 if (status)
6426 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006427 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428out:
6429 return status;
6430}
6431
6432/*
6433 * Decode READDIR response
6434 */
Chuck Leverbf269552010-12-14 14:59:29 +00006435static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6436 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438 struct compound_hdr hdr;
6439 int status;
6440
Chuck Leverbf269552010-12-14 14:59:29 +00006441 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 if (status)
6443 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006444 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006445 if (status)
6446 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006447 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 if (status)
6449 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006450 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451out:
6452 return status;
6453}
6454
6455/*
6456 * Decode Read response
6457 */
Chuck Leverbf269552010-12-14 14:59:29 +00006458static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6459 struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 struct compound_hdr hdr;
6462 int status;
6463
Chuck Leverbf269552010-12-14 14:59:29 +00006464 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 if (status)
6466 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006467 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006468 if (status)
6469 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006470 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 if (status)
6472 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006473 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 if (!status)
6475 status = res->count;
6476out:
6477 return status;
6478}
6479
6480/*
6481 * Decode WRITE response
6482 */
Chuck Leverbf269552010-12-14 14:59:29 +00006483static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6484 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 struct compound_hdr hdr;
6487 int status;
6488
Chuck Leverbf269552010-12-14 14:59:29 +00006489 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 if (status)
6491 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006492 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006493 if (status)
6494 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006495 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 if (status)
6497 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006498 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006499 if (status)
6500 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006501 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006502 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 if (!status)
6504 status = res->count;
6505out:
6506 return status;
6507}
6508
6509/*
6510 * Decode COMMIT response
6511 */
Chuck Leverbf269552010-12-14 14:59:29 +00006512static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Fred Isaman0b7c0152012-04-20 14:47:39 -04006513 struct nfs_commitres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515 struct compound_hdr hdr;
6516 int status;
6517
Chuck Leverbf269552010-12-14 14:59:29 +00006518 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 if (status)
6520 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006521 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006522 if (status)
6523 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006524 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 if (status)
6526 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006527 status = decode_commit(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528out:
6529 return status;
6530}
6531
6532/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006533 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 */
Chuck Leverbf269552010-12-14 14:59:29 +00006535static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006536 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538 struct compound_hdr hdr;
6539 int status;
6540
Chuck Leverbf269552010-12-14 14:59:29 +00006541 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006543 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006544 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006545 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006547 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548 return status;
6549}
6550
6551/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006552 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553 */
Chuck Leverbf269552010-12-14 14:59:29 +00006554static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006555 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 struct compound_hdr hdr;
6558 int status;
6559
Chuck Leverbf269552010-12-14 14:59:29 +00006560 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006562 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006563 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006564 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006566 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567 return status;
6568}
6569
6570/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006571 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 */
Chuck Leverbf269552010-12-14 14:59:29 +00006573static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006574 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 struct compound_hdr hdr;
6577 int status;
6578
Chuck Leverbf269552010-12-14 14:59:29 +00006579 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006581 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006582 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006583 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006585 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586 return status;
6587}
6588
6589/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006590 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591 */
Chuck Leverbf269552010-12-14 14:59:29 +00006592static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6593 struct xdr_stream *xdr,
6594 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 struct compound_hdr hdr;
6597 int status;
6598
Chuck Leverbf269552010-12-14 14:59:29 +00006599 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006600 if (status)
6601 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006602 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006603 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006605 status = decode_putfh(xdr);
6606 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006608 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609out:
6610 return status;
6611}
6612
6613/*
6614 * Decode RENEW response
6615 */
Chuck Leverbf269552010-12-14 14:59:29 +00006616static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6617 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619 struct compound_hdr hdr;
6620 int status;
6621
Chuck Leverbf269552010-12-14 14:59:29 +00006622 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006624 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 return status;
6626}
6627
6628/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006629 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 */
Chuck Leverbf269552010-12-14 14:59:29 +00006631static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6632 struct xdr_stream *xdr,
6633 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635 struct compound_hdr hdr;
6636 int status;
6637
Chuck Leverbf269552010-12-14 14:59:29 +00006638 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006640 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641 return status;
6642}
6643
6644/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006645 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646 */
Chuck Leverbf269552010-12-14 14:59:29 +00006647static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6648 struct xdr_stream *xdr,
6649 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 struct compound_hdr hdr;
6652 int status;
6653
Chuck Leverbf269552010-12-14 14:59:29 +00006654 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006656 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006658 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006660 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 return status;
6662}
6663
6664/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006665 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 */
Chuck Leverbf269552010-12-14 14:59:29 +00006667static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6668 struct xdr_stream *xdr,
6669 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671 struct compound_hdr hdr;
6672 int status;
6673
Chuck Leverbf269552010-12-14 14:59:29 +00006674 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006675 if (status)
6676 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006677 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006678 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006679 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006680 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006681 if (status != 0)
6682 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006683 status = decode_getfattr(xdr, res->fattr, res->server);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006684 if (status != 0)
6685 goto out;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04006686 status = decode_delegreturn(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006687out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688 return status;
6689}
6690
Trond Myklebust683b57b2006-06-09 09:34:22 -04006691/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006692 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006693 */
Chuck Leverbf269552010-12-14 14:59:29 +00006694static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6695 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006696 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006697{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006698 struct compound_hdr hdr;
6699 int status;
6700
Chuck Leverbf269552010-12-14 14:59:29 +00006701 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006702 if (status)
6703 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006704 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006705 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006706 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006707 status = decode_putfh(xdr);
6708 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006709 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006710 status = decode_lookup(xdr);
6711 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006712 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006713 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006714 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6715 NULL, res->fs_locations,
6716 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006717out:
6718 return status;
6719}
6720
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006721/*
6722 * Decode SECINFO response
6723 */
6724static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6725 struct xdr_stream *xdr,
6726 struct nfs4_secinfo_res *res)
6727{
6728 struct compound_hdr hdr;
6729 int status;
6730
6731 status = decode_compound_hdr(xdr, &hdr);
6732 if (status)
6733 goto out;
6734 status = decode_sequence(xdr, &res->seq_res, rqstp);
6735 if (status)
6736 goto out;
6737 status = decode_putfh(xdr);
6738 if (status)
6739 goto out;
6740 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006741out:
6742 return status;
6743}
6744
Benny Halevy99fe60d2009-04-01 09:22:29 -04006745#if defined(CONFIG_NFS_V4_1)
6746/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04006747 * Decode BIND_CONN_TO_SESSION response
6748 */
6749static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
6750 struct xdr_stream *xdr,
6751 void *res)
6752{
6753 struct compound_hdr hdr;
6754 int status;
6755
6756 status = decode_compound_hdr(xdr, &hdr);
6757 if (!status)
6758 status = decode_bind_conn_to_session(xdr, res);
6759 return status;
6760}
6761
6762/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006763 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006764 */
Chuck Leverbf269552010-12-14 14:59:29 +00006765static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6766 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006767 void *res)
6768{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006769 struct compound_hdr hdr;
6770 int status;
6771
Chuck Leverbf269552010-12-14 14:59:29 +00006772 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006773 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006774 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006775 return status;
6776}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006777
6778/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006779 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006780 */
Chuck Leverbf269552010-12-14 14:59:29 +00006781static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6782 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006783 struct nfs41_create_session_res *res)
6784{
Andy Adamsonfc931582009-04-01 09:22:31 -04006785 struct compound_hdr hdr;
6786 int status;
6787
Chuck Leverbf269552010-12-14 14:59:29 +00006788 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006789 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006790 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006791 return status;
6792}
6793
6794/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006795 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006796 */
Chuck Leverbf269552010-12-14 14:59:29 +00006797static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6798 struct xdr_stream *xdr,
6799 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006800{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006801 struct compound_hdr hdr;
6802 int status;
6803
Chuck Leverbf269552010-12-14 14:59:29 +00006804 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006805 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006806 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006807 return status;
6808}
6809
6810/*
Trond Myklebust66245532012-05-25 17:18:09 -04006811 * Decode DESTROY_CLIENTID response
6812 */
6813static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
6814 struct xdr_stream *xdr,
6815 void *res)
6816{
6817 struct compound_hdr hdr;
6818 int status;
6819
6820 status = decode_compound_hdr(xdr, &hdr);
6821 if (!status)
6822 status = decode_destroy_clientid(xdr, res);
6823 return status;
6824}
6825
6826/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006827 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006828 */
Chuck Leverbf269552010-12-14 14:59:29 +00006829static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6830 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006831 struct nfs4_sequence_res *res)
6832{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006833 struct compound_hdr hdr;
6834 int status;
6835
Chuck Leverbf269552010-12-14 14:59:29 +00006836 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006837 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006838 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006839 return status;
6840}
6841
6842/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006843 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006844 */
Chuck Leverbf269552010-12-14 14:59:29 +00006845static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6846 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006847 struct nfs4_get_lease_time_res *res)
6848{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006849 struct compound_hdr hdr;
6850 int status;
6851
Chuck Leverbf269552010-12-14 14:59:29 +00006852 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006853 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006854 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006855 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006856 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006857 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006858 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006859 return status;
6860}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006861
6862/*
6863 * Decode RECLAIM_COMPLETE response
6864 */
Chuck Leverbf269552010-12-14 14:59:29 +00006865static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6866 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006867 struct nfs41_reclaim_complete_res *res)
6868{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006869 struct compound_hdr hdr;
6870 int status;
6871
Chuck Leverbf269552010-12-14 14:59:29 +00006872 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006873 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006874 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006875 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006876 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006877 return status;
6878}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006879
6880/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006881 * Decode GETDEVICELIST response
6882 */
6883static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6884 struct xdr_stream *xdr,
6885 struct nfs4_getdevicelist_res *res)
6886{
6887 struct compound_hdr hdr;
6888 int status;
6889
6890 dprintk("encoding getdevicelist!\n");
6891
6892 status = decode_compound_hdr(xdr, &hdr);
6893 if (status != 0)
6894 goto out;
6895 status = decode_sequence(xdr, &res->seq_res, rqstp);
6896 if (status != 0)
6897 goto out;
6898 status = decode_putfh(xdr);
6899 if (status != 0)
6900 goto out;
6901 status = decode_getdevicelist(xdr, res->devlist);
6902out:
6903 return status;
6904}
6905
6906/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006907 * Decode GETDEVINFO response
6908 */
Chuck Leverbf269552010-12-14 14:59:29 +00006909static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6910 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006911 struct nfs4_getdeviceinfo_res *res)
6912{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006913 struct compound_hdr hdr;
6914 int status;
6915
Chuck Leverbf269552010-12-14 14:59:29 +00006916 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006917 if (status != 0)
6918 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006919 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006920 if (status != 0)
6921 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006922 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006923out:
6924 return status;
6925}
6926
6927/*
6928 * Decode LAYOUTGET response
6929 */
Chuck Leverbf269552010-12-14 14:59:29 +00006930static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6931 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006932 struct nfs4_layoutget_res *res)
6933{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006934 struct compound_hdr hdr;
6935 int status;
6936
Chuck Leverbf269552010-12-14 14:59:29 +00006937 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006938 if (status)
6939 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006940 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006941 if (status)
6942 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006943 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006944 if (status)
6945 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006946 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006947out:
6948 return status;
6949}
Andy Adamson863a3c62011-03-23 13:27:54 +00006950
6951/*
Benny Halevycbe82602011-05-22 19:52:37 +03006952 * Decode LAYOUTRETURN response
6953 */
6954static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6955 struct xdr_stream *xdr,
6956 struct nfs4_layoutreturn_res *res)
6957{
6958 struct compound_hdr hdr;
6959 int status;
6960
6961 status = decode_compound_hdr(xdr, &hdr);
6962 if (status)
6963 goto out;
6964 status = decode_sequence(xdr, &res->seq_res, rqstp);
6965 if (status)
6966 goto out;
6967 status = decode_putfh(xdr);
6968 if (status)
6969 goto out;
6970 status = decode_layoutreturn(xdr, res);
6971out:
6972 return status;
6973}
6974
6975/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006976 * Decode LAYOUTCOMMIT response
6977 */
6978static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6979 struct xdr_stream *xdr,
6980 struct nfs4_layoutcommit_res *res)
6981{
6982 struct compound_hdr hdr;
6983 int status;
6984
6985 status = decode_compound_hdr(xdr, &hdr);
6986 if (status)
6987 goto out;
6988 status = decode_sequence(xdr, &res->seq_res, rqstp);
6989 if (status)
6990 goto out;
6991 status = decode_putfh(xdr);
6992 if (status)
6993 goto out;
6994 status = decode_layoutcommit(xdr, rqstp, res);
6995 if (status)
6996 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006997 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00006998out:
6999 return status;
7000}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007001
7002/*
7003 * Decode SECINFO_NO_NAME response
7004 */
7005static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7006 struct xdr_stream *xdr,
7007 struct nfs4_secinfo_res *res)
7008{
7009 struct compound_hdr hdr;
7010 int status;
7011
7012 status = decode_compound_hdr(xdr, &hdr);
7013 if (status)
7014 goto out;
7015 status = decode_sequence(xdr, &res->seq_res, rqstp);
7016 if (status)
7017 goto out;
7018 status = decode_putrootfh(xdr);
7019 if (status)
7020 goto out;
Bryan Schumaker31e4dda2012-04-27 13:27:38 -04007021 status = decode_secinfo_no_name(xdr, res);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007022out:
7023 return status;
7024}
Bryan Schumaker7d974792011-06-02 14:59:08 -04007025
7026/*
7027 * Decode TEST_STATEID response
7028 */
7029static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
7030 struct xdr_stream *xdr,
7031 struct nfs41_test_stateid_res *res)
7032{
7033 struct compound_hdr hdr;
7034 int status;
7035
7036 status = decode_compound_hdr(xdr, &hdr);
7037 if (status)
7038 goto out;
7039 status = decode_sequence(xdr, &res->seq_res, rqstp);
7040 if (status)
7041 goto out;
7042 status = decode_test_stateid(xdr, res);
7043out:
7044 return status;
7045}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007046
7047/*
7048 * Decode FREE_STATEID response
7049 */
7050static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7051 struct xdr_stream *xdr,
7052 struct nfs41_free_stateid_res *res)
7053{
7054 struct compound_hdr hdr;
7055 int status;
7056
7057 status = decode_compound_hdr(xdr, &hdr);
7058 if (status)
7059 goto out;
7060 status = decode_sequence(xdr, &res->seq_res, rqstp);
7061 if (status)
7062 goto out;
7063 status = decode_free_stateid(xdr, res);
7064out:
7065 return status;
7066}
Benny Halevy99fe60d2009-04-01 09:22:29 -04007067#endif /* CONFIG_NFS_V4_1 */
7068
Chuck Lever573c4e12010-12-14 14:58:11 +00007069/**
7070 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7071 * the local page cache.
7072 * @xdr: XDR stream where entry resides
7073 * @entry: buffer to fill in with entry data
7074 * @plus: boolean indicating whether this should be a readdirplus entry
7075 *
7076 * Returns zero if successful, otherwise a negative errno value is
7077 * returned.
7078 *
7079 * This function is not invoked during READDIR reply decoding, but
7080 * rather whenever an application invokes the getdents(2) system call
7081 * on a directory already in our cache.
7082 */
7083int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7084 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085{
Trond Myklebust256e48b2012-06-21 11:18:13 -04007086 unsigned int savep;
Fred Isamandae100c2011-07-30 20:52:37 -04007087 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007089 __be32 *p = xdr_inline_decode(xdr, 4);
7090 if (unlikely(!p))
7091 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007092 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007093 p = xdr_inline_decode(xdr, 4);
7094 if (unlikely(!p))
7095 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007096 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00007097 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00007099 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100 }
7101
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007102 p = xdr_inline_decode(xdr, 12);
7103 if (unlikely(!p))
7104 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105 entry->prev_cookie = entry->cookie;
7106 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05007107 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007108
Trond Myklebust9af8c222010-10-24 11:52:55 -04007109 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007110 if (unlikely(!p))
7111 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113
7114 /*
7115 * In case the server doesn't return an inode number,
7116 * we fake one here. (We don't use inode number 0,
7117 * since glibc seems to choke on it...)
7118 */
7119 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04007120 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121
Trond Myklebust9af8c222010-10-24 11:52:55 -04007122 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007123 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04007124
Trond Myklebust256e48b2012-06-21 11:18:13 -04007125 if (decode_attr_length(xdr, &len, &savep) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007126 goto out_overflow;
7127
Chuck Lever573c4e12010-12-14 14:58:11 +00007128 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05007129 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007130 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04007131 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7132 entry->ino = entry->fattr->mounted_on_fileid;
7133 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007134 entry->ino = entry->fattr->fileid;
7135
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05007136 entry->d_type = DT_UNKNOWN;
7137 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7138 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7139
Chuck Lever573c4e12010-12-14 14:58:11 +00007140 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007141
7142out_overflow:
7143 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007144 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145}
7146
7147/*
7148 * We need to translate between nfs status return values and
7149 * the local errno values which may not be the same.
7150 */
7151static struct {
7152 int stat;
7153 int errno;
7154} nfs_errtbl[] = {
7155 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007156 { NFS4ERR_PERM, -EPERM },
7157 { NFS4ERR_NOENT, -ENOENT },
7158 { NFS4ERR_IO, -errno_NFSERR_IO},
7159 { NFS4ERR_NXIO, -ENXIO },
7160 { NFS4ERR_ACCESS, -EACCES },
7161 { NFS4ERR_EXIST, -EEXIST },
7162 { NFS4ERR_XDEV, -EXDEV },
7163 { NFS4ERR_NOTDIR, -ENOTDIR },
7164 { NFS4ERR_ISDIR, -EISDIR },
7165 { NFS4ERR_INVAL, -EINVAL },
7166 { NFS4ERR_FBIG, -EFBIG },
7167 { NFS4ERR_NOSPC, -ENOSPC },
7168 { NFS4ERR_ROFS, -EROFS },
7169 { NFS4ERR_MLINK, -EMLINK },
7170 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7171 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7172 { NFS4ERR_DQUOT, -EDQUOT },
7173 { NFS4ERR_STALE, -ESTALE },
7174 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007175 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7176 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7177 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007178 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007179 { NFS4ERR_BADTYPE, -EBADTYPE },
7180 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007181 { NFS4ERR_SYMLINK, -ELOOP },
7182 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7183 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007184 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185};
7186
7187/*
7188 * Convert an NFS error code to a local one.
7189 * This one is used jointly by NFSv2 and NFSv3.
7190 */
7191static int
David Howells0a8ea432006-08-22 20:06:08 -04007192nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193{
7194 int i;
7195 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7196 if (nfs_errtbl[i].stat == stat)
7197 return nfs_errtbl[i].errno;
7198 }
7199 if (stat <= 10000 || stat > 10100) {
7200 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007201 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 }
7203 /* If we cannot translate the error, the recovery routines should
7204 * handle it.
7205 * Note: remaining NFSv4 error codes have values > 10000, so should
7206 * not conflict with native Linux error codes.
7207 */
Benny Halevy856dff32008-03-31 17:39:06 +03007208 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209}
7210
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211#define PROC(proc, argtype, restype) \
7212[NFSPROC4_CLNT_##proc] = { \
7213 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007214 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007215 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007216 .p_arglen = NFS4_##argtype##_sz, \
7217 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007218 .p_statidx = NFSPROC4_CLNT_##proc, \
7219 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007220}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221
7222struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007223 PROC(READ, enc_read, dec_read),
7224 PROC(WRITE, enc_write, dec_write),
7225 PROC(COMMIT, enc_commit, dec_commit),
7226 PROC(OPEN, enc_open, dec_open),
7227 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7228 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7229 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7230 PROC(CLOSE, enc_close, dec_close),
7231 PROC(SETATTR, enc_setattr, dec_setattr),
7232 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7233 PROC(RENEW, enc_renew, dec_renew),
7234 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7235 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7236 PROC(LOCK, enc_lock, dec_lock),
7237 PROC(LOCKT, enc_lockt, dec_lockt),
7238 PROC(LOCKU, enc_locku, dec_locku),
7239 PROC(ACCESS, enc_access, dec_access),
7240 PROC(GETATTR, enc_getattr, dec_getattr),
7241 PROC(LOOKUP, enc_lookup, dec_lookup),
7242 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7243 PROC(REMOVE, enc_remove, dec_remove),
7244 PROC(RENAME, enc_rename, dec_rename),
7245 PROC(LINK, enc_link, dec_link),
7246 PROC(SYMLINK, enc_symlink, dec_symlink),
7247 PROC(CREATE, enc_create, dec_create),
7248 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7249 PROC(STATFS, enc_statfs, dec_statfs),
7250 PROC(READLINK, enc_readlink, dec_readlink),
7251 PROC(READDIR, enc_readdir, dec_readdir),
7252 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7253 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7254 PROC(GETACL, enc_getacl, dec_getacl),
7255 PROC(SETACL, enc_setacl, dec_setacl),
7256 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7257 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007258 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007259#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007260 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7261 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7262 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7263 PROC(SEQUENCE, enc_sequence, dec_sequence),
7264 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7265 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7266 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7267 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007268 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007269 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007270 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007271 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007272 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007273 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Trond Myklebustad24ecf2012-05-25 17:11:42 -04007274 PROC(BIND_CONN_TO_SESSION,
7275 enc_bind_conn_to_session, dec_bind_conn_to_session),
Trond Myklebust66245532012-05-25 17:18:09 -04007276 PROC(DESTROY_CLIENTID, enc_destroy_clientid, dec_destroy_clientid),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007277#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278};
7279
Trond Myklebusta613fa12012-01-20 13:53:56 -05007280const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007282 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283 .procs = nfs4_procedures
7284};
7285
7286/*
7287 * Local variables:
7288 * c-basic-offset: 8
7289 * End:
7290 */