blob: 62effaf579c4db47b1ba18958ae7058491428510 [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>
Trond Myklebust4ce79712005-06-22 17:16:21 +000056#include "nfs4_fs.h"
Alexandros Batsakis4882ef72009-12-05 13:30:21 -050057#include "internal.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040058#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define NFSDBG_FACILITY NFSDBG_XDR
61
62/* Mapping from NFS error code to "errno" error code. */
63#define errno_NFSERR_IO EIO
64
David Howells0a8ea432006-08-22 20:06:08 -040065static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
68#ifdef DEBUG
69#define NFS4_MAXTAGLEN 20
70#else
71#define NFS4_MAXTAGLEN 0
72#endif
73
Andy Adamson6c0195a2008-12-23 16:06:15 -050074/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040075 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Trond Myklebustd035c362010-12-21 10:45:27 -050077#define open_owner_id_maxsz (1 + 1 + 4)
78#define lock_owner_id_maxsz (1 + 1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040079#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
81#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
82#define op_encode_hdr_maxsz (1)
83#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040084#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
85#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
86#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
87#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
89 (NFS4_FHSIZE >> 2))
90#define decode_putfh_maxsz (op_decode_hdr_maxsz)
91#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
92#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
93#define encode_getfh_maxsz (op_encode_hdr_maxsz)
94#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
95 ((3+NFS4_FHSIZE) >> 2))
Andy Adamsone5012d12011-07-11 17:17:42 -040096#define nfs4_fattr_bitmap_maxsz 4
J. Bruce Fields96928202005-06-22 17:16:22 +000097#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
99#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400100#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
101#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
J. Bruce Fields96928202005-06-22 17:16:22 +0000102/* This is based on getfattr, which uses the most attributes: */
103#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400104 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000105#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
106 nfs4_fattr_value_maxsz)
107#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400108#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
109 1 + 2 + 1 + \
110 nfs4_owner_maxsz + \
111 nfs4_group_maxsz + \
112 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define encode_savefh_maxsz (op_encode_hdr_maxsz)
114#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400115#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
116#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200117#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Fred Isamandae100c2011-07-30 20:52:37 -0400118/* The 5 accounts for the PNFS attributes, and assumes that at most three
119 * layout types will be returned.
120 */
121#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
122 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
124#define decode_renew_maxsz (op_decode_hdr_maxsz)
125#define encode_setclientid_maxsz \
126 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500127 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
128 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
129 1 /* sc_prog */ + \
130 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
131 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
132 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define decode_setclientid_maxsz \
134 (op_decode_hdr_maxsz + \
135 2 + \
136 1024) /* large value for CLID_INUSE */
137#define encode_setclientid_confirm_maxsz \
138 (op_encode_hdr_maxsz + \
139 3 + (NFS4_VERIFIER_SIZE >> 2))
140#define decode_setclientid_confirm_maxsz \
141 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400142#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
143#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400144#define encode_share_access_maxsz \
145 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500146#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400147#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
148#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
149#define encode_open_maxsz (op_encode_hdr_maxsz + \
150 2 + encode_share_access_maxsz + 2 + \
151 open_owner_id_maxsz + \
152 encode_opentype_maxsz + \
153 encode_claim_null_maxsz)
154#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400155#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400156 decode_ace_maxsz)
157#define decode_change_info_maxsz (5)
158#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400159 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400160 decode_change_info_maxsz + 1 + \
161 nfs4_fattr_bitmap_maxsz + \
162 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400163#define encode_open_confirm_maxsz \
164 (op_encode_hdr_maxsz + \
165 encode_stateid_maxsz + 1)
166#define decode_open_confirm_maxsz \
167 (op_decode_hdr_maxsz + \
168 decode_stateid_maxsz)
169#define encode_open_downgrade_maxsz \
170 (op_encode_hdr_maxsz + \
171 encode_stateid_maxsz + 1 + \
172 encode_share_access_maxsz)
173#define decode_open_downgrade_maxsz \
174 (op_decode_hdr_maxsz + \
175 decode_stateid_maxsz)
176#define encode_close_maxsz (op_encode_hdr_maxsz + \
177 1 + encode_stateid_maxsz)
178#define decode_close_maxsz (op_decode_hdr_maxsz + \
179 decode_stateid_maxsz)
180#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
181 encode_stateid_maxsz + \
182 encode_attrs_maxsz)
183#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
184 nfs4_fattr_bitmap_maxsz)
185#define encode_read_maxsz (op_encode_hdr_maxsz + \
186 encode_stateid_maxsz + 3)
187#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
188#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
189 2 + encode_verifier_maxsz + 5)
190#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
191 decode_verifier_maxsz)
192#define encode_readlink_maxsz (op_encode_hdr_maxsz)
193#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
194#define encode_write_maxsz (op_encode_hdr_maxsz + \
195 encode_stateid_maxsz + 4)
196#define decode_write_maxsz (op_decode_hdr_maxsz + \
197 2 + decode_verifier_maxsz)
198#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
199#define decode_commit_maxsz (op_decode_hdr_maxsz + \
200 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define encode_remove_maxsz (op_encode_hdr_maxsz + \
202 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400203#define decode_remove_maxsz (op_decode_hdr_maxsz + \
204 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define encode_rename_maxsz (op_encode_hdr_maxsz + \
206 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400207#define decode_rename_maxsz (op_decode_hdr_maxsz + \
208 decode_change_info_maxsz + \
209 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define encode_link_maxsz (op_encode_hdr_maxsz + \
211 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400212#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400213#define encode_lockowner_maxsz (7)
Trond Myklebust9104a552007-07-17 21:52:42 -0400214#define encode_lock_maxsz (op_encode_hdr_maxsz + \
215 7 + \
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400216 1 + encode_stateid_maxsz + 1 + \
217 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400218#define decode_lock_denied_maxsz \
219 (8 + decode_lockowner_maxsz)
220#define decode_lock_maxsz (op_decode_hdr_maxsz + \
221 decode_lock_denied_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400222#define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
223 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400224#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
225 decode_lock_denied_maxsz)
226#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
227 encode_stateid_maxsz + \
228 4)
229#define decode_locku_maxsz (op_decode_hdr_maxsz + \
230 decode_stateid_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400231#define encode_release_lockowner_maxsz \
232 (op_encode_hdr_maxsz + \
233 encode_lockowner_maxsz)
234#define decode_release_lockowner_maxsz \
235 (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400236#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
237#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
239 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400240 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000241 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
243#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400244 1 + 2 + nfs4_name_maxsz + \
245 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400246#define decode_create_maxsz (op_decode_hdr_maxsz + \
247 decode_change_info_maxsz + \
248 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400249#define encode_statfs_maxsz (encode_getattr_maxsz)
250#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
252#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400253#define encode_getacl_maxsz (encode_getattr_maxsz)
254#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
255 nfs4_fattr_bitmap_maxsz + 1)
256#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
257 encode_stateid_maxsz + 3)
258#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400259#define encode_fs_locations_maxsz \
260 (encode_getattr_maxsz)
261#define decode_fs_locations_maxsz \
262 (0)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000263#define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
Bryan Schumaker1650add2011-06-02 15:07:35 -0400264#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 -0400265
266#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400267#define NFS4_MAX_MACHINE_NAME_LEN (64)
268
Benny Halevy99fe60d2009-04-01 09:22:29 -0400269#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
270 encode_verifier_maxsz + \
271 1 /* co_ownerid.len */ + \
272 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
273 1 /* flags */ + \
274 1 /* spa_how */ + \
275 0 /* SP4_NONE (for now) */ + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500276 1 /* implementation id array of size 1 */ + \
277 1 /* nii_domain */ + \
278 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
279 1 /* nii_name */ + \
280 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
281 3 /* nii_date */)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400282#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
283 2 /* eir_clientid */ + \
284 1 /* eir_sequenceid */ + \
285 1 /* eir_flags */ + \
286 1 /* spr_how */ + \
287 0 /* SP4_NONE (for now) */ + \
288 2 /* eir_server_owner.so_minor_id */ + \
289 /* eir_server_owner.so_major_id<> */ \
290 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
291 /* eir_server_scope<> */ \
292 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
293 1 /* eir_server_impl_id array length */ + \
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500294 1 /* nii_domain */ + \
295 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
296 1 /* nii_name */ + \
297 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
298 3 /* nii_date */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400299#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
300#define decode_channel_attrs_maxsz (6 + \
301 1 /* ca_rdma_ird.len */ + \
302 1 /* ca_rdma_ird */)
303#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
304 2 /* csa_clientid */ + \
305 1 /* csa_sequence */ + \
306 1 /* csa_flags */ + \
307 encode_channel_attrs_maxsz + \
308 encode_channel_attrs_maxsz + \
309 1 /* csa_cb_program */ + \
310 1 /* csa_sec_parms.len (1) */ + \
311 1 /* cb_secflavor (AUTH_SYS) */ + \
312 1 /* stamp */ + \
313 1 /* machinename.len */ + \
314 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
315 1 /* uid */ + \
316 1 /* gid */ + \
317 1 /* gids.len (0) */)
318#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
319 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
320 1 /* csr_sequence */ + \
321 1 /* csr_flags */ + \
322 decode_channel_attrs_maxsz + \
323 decode_channel_attrs_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400324#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
325#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400326#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
327 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
328#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
329 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500330#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
331#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400332#define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
333 encode_verifier_maxsz)
334#define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
335 2 /* nfs_cookie4 gdlr_cookie */ + \
336 decode_verifier_maxsz \
337 /* verifier4 gdlr_verifier */ + \
338 1 /* gdlr_deviceid_list count */ + \
339 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
340 NFS4_DEVICEID4_SIZE) \
341 /* gdlr_deviceid_list */ + \
342 1 /* bool gdlr_eof */)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400343#define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
344 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
345#define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
346 1 /* layout type */ + \
347 1 /* opaque devaddr4 length */ + \
348 /* devaddr4 payload is read into page */ \
349 1 /* notification bitmap length */ + \
350 1 /* notification bitmap */)
351#define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
352 encode_stateid_maxsz)
353#define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
354 decode_stateid_maxsz + \
355 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
Andy Adamson863a3c62011-03-23 13:27:54 +0000356#define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
357 2 /* offset */ + \
358 2 /* length */ + \
359 1 /* reclaim */ + \
360 encode_stateid_maxsz + \
361 1 /* new offset (true) */ + \
362 2 /* last byte written */ + \
363 1 /* nt_timechanged (false) */ + \
364 1 /* layoutupdate4 layout type */ + \
365 1 /* NULL filelayout layoutupdate4 payload */)
366#define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
Benny Halevycbe82602011-05-22 19:52:37 +0300367#define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
368 encode_stateid_maxsz + \
369 1 /* FIXME: opaque lrf_body always empty at the moment */)
370#define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
371 1 + decode_stateid_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400372#define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
373#define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
Bryan Schumaker7d974792011-06-02 14:59:08 -0400374#define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
375 XDR_QUADLEN(NFS4_STATEID_SIZE))
376#define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400377#define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
378 XDR_QUADLEN(NFS4_STATEID_SIZE))
379#define decode_free_stateid_maxsz (op_decode_hdr_maxsz + 1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400380#else /* CONFIG_NFS_V4_1 */
381#define encode_sequence_maxsz 0
382#define decode_sequence_maxsz 0
383#endif /* CONFIG_NFS_V4_1 */
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
386#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
387#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400388 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400390 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400392 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400394 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400396 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400398 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400400 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400402 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400404 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400406 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400408 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400410 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400412 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400414 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400415 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#define NFS4_dec_write_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_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400420 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400422 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400424 encode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400425 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400427 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400429 decode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400430 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400432 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400433 encode_putfh_maxsz + \
434 encode_savefh_maxsz + \
435 encode_open_maxsz + \
436 encode_getfh_maxsz + \
437 encode_getattr_maxsz + \
438 encode_restorefh_maxsz + \
439 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400441 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400442 decode_putfh_maxsz + \
443 decode_savefh_maxsz + \
444 decode_open_maxsz + \
445 decode_getfh_maxsz + \
446 decode_getattr_maxsz + \
447 decode_restorefh_maxsz + \
448 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400449#define NFS4_enc_open_confirm_sz \
450 (compound_encode_hdr_maxsz + \
451 encode_putfh_maxsz + \
452 encode_open_confirm_maxsz)
453#define NFS4_dec_open_confirm_sz \
454 (compound_decode_hdr_maxsz + \
455 decode_putfh_maxsz + \
456 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400458 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400460 encode_open_maxsz + \
461 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400463 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400465 decode_open_maxsz + \
466 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#define NFS4_enc_open_downgrade_sz \
468 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400469 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400470 encode_putfh_maxsz + \
471 encode_open_downgrade_maxsz + \
472 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#define NFS4_dec_open_downgrade_sz \
474 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400475 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400476 decode_putfh_maxsz + \
477 decode_open_downgrade_maxsz + \
478 decode_getattr_maxsz)
479#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400480 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400481 encode_putfh_maxsz + \
482 encode_close_maxsz + \
483 encode_getattr_maxsz)
484#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400485 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400486 decode_putfh_maxsz + \
487 decode_close_maxsz + \
488 decode_getattr_maxsz)
489#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400490 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400491 encode_putfh_maxsz + \
492 encode_setattr_maxsz + \
493 encode_getattr_maxsz)
494#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400495 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400496 decode_putfh_maxsz + \
497 decode_setattr_maxsz + \
498 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400500 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 encode_putfh_maxsz + \
502 encode_fsinfo_maxsz)
503#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400504 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 decode_putfh_maxsz + \
506 decode_fsinfo_maxsz)
507#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
508 encode_renew_maxsz)
509#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
510 decode_renew_maxsz)
511#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
512 encode_setclientid_maxsz)
513#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
514 decode_setclientid_maxsz)
515#define NFS4_enc_setclientid_confirm_sz \
516 (compound_encode_hdr_maxsz + \
517 encode_setclientid_confirm_maxsz + \
518 encode_putrootfh_maxsz + \
519 encode_fsinfo_maxsz)
520#define NFS4_dec_setclientid_confirm_sz \
521 (compound_decode_hdr_maxsz + \
522 decode_setclientid_confirm_maxsz + \
523 decode_putrootfh_maxsz + \
524 decode_fsinfo_maxsz)
525#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400526 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400528 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400530 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400532 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400534 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400536 encode_lockt_maxsz)
537#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400538 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400539 decode_putfh_maxsz + \
540 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400542 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400544 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400546 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400548 decode_locku_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400549#define NFS4_enc_release_lockowner_sz \
550 (compound_encode_hdr_maxsz + \
551 encode_lockowner_maxsz)
552#define NFS4_dec_release_lockowner_sz \
553 (compound_decode_hdr_maxsz + \
554 decode_lockowner_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400556 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400558 encode_access_maxsz + \
559 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400561 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400563 decode_access_maxsz + \
564 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400566 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 encode_putfh_maxsz + \
568 encode_getattr_maxsz)
569#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400570 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 decode_putfh_maxsz + \
572 decode_getattr_maxsz)
573#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400574 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 encode_putfh_maxsz + \
576 encode_lookup_maxsz + \
577 encode_getattr_maxsz + \
578 encode_getfh_maxsz)
579#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400580 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400582 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 decode_getattr_maxsz + \
584 decode_getfh_maxsz)
585#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400586 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 encode_putrootfh_maxsz + \
588 encode_getattr_maxsz + \
589 encode_getfh_maxsz)
590#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400591 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 decode_putrootfh_maxsz + \
593 decode_getattr_maxsz + \
594 decode_getfh_maxsz)
595#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400596 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 encode_putfh_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400598 encode_remove_maxsz + \
599 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400601 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 decode_putfh_maxsz + \
Benny Halevy6ce18392009-04-01 09:22:06 -0400603 decode_remove_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400604 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400606 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 encode_putfh_maxsz + \
608 encode_savefh_maxsz + \
609 encode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400610 encode_rename_maxsz + \
611 encode_getattr_maxsz + \
612 encode_restorefh_maxsz + \
613 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400615 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 decode_putfh_maxsz + \
617 decode_savefh_maxsz + \
618 decode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400619 decode_rename_maxsz + \
620 decode_getattr_maxsz + \
621 decode_restorefh_maxsz + \
622 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400624 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 encode_putfh_maxsz + \
626 encode_savefh_maxsz + \
627 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400628 encode_link_maxsz + \
629 decode_getattr_maxsz + \
630 encode_restorefh_maxsz + \
631 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400633 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 decode_putfh_maxsz + \
635 decode_savefh_maxsz + \
636 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400637 decode_link_maxsz + \
638 decode_getattr_maxsz + \
639 decode_restorefh_maxsz + \
640 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400642 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 encode_putfh_maxsz + \
644 encode_symlink_maxsz + \
645 encode_getattr_maxsz + \
646 encode_getfh_maxsz)
647#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400648 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 decode_putfh_maxsz + \
650 decode_symlink_maxsz + \
651 decode_getattr_maxsz + \
652 decode_getfh_maxsz)
653#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400654 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 encode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400656 encode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400658 encode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 encode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400660 encode_restorefh_maxsz + \
661 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 + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400665 decode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400667 decode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 decode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400669 decode_restorefh_maxsz + \
670 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400672 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 encode_putfh_maxsz + \
674 encode_getattr_maxsz)
675#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400676 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 decode_putfh_maxsz + \
678 decode_getattr_maxsz)
679#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400680 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400682 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400684 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400686 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400688 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800689 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 encode_getattr_maxsz)
691#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400692 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800693 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 decode_getattr_maxsz)
695#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400696 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100698 encode_delegreturn_maxsz + \
699 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400701 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100702 decode_delegreturn_maxsz + \
703 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000704#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400705 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000706 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400707 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000708#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400709 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000710 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400711 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000712#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400713 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000714 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400715 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000716#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400717 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000718 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400719 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400720#define NFS4_enc_fs_locations_sz \
721 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400722 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400723 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400724 encode_lookup_maxsz + \
725 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400726#define NFS4_dec_fs_locations_sz \
727 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400728 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400729 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400730 decode_lookup_maxsz + \
731 decode_fs_locations_maxsz)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000732#define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
733 encode_sequence_maxsz + \
734 encode_putfh_maxsz + \
735 encode_secinfo_maxsz)
736#define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
737 decode_sequence_maxsz + \
738 decode_putfh_maxsz + \
739 decode_secinfo_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400740#if defined(CONFIG_NFS_V4_1)
741#define NFS4_enc_exchange_id_sz \
742 (compound_encode_hdr_maxsz + \
743 encode_exchange_id_maxsz)
744#define NFS4_dec_exchange_id_sz \
745 (compound_decode_hdr_maxsz + \
746 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400747#define NFS4_enc_create_session_sz \
748 (compound_encode_hdr_maxsz + \
749 encode_create_session_maxsz)
750#define NFS4_dec_create_session_sz \
751 (compound_decode_hdr_maxsz + \
752 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400753#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
754 encode_destroy_session_maxsz)
755#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
756 decode_destroy_session_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400757#define NFS4_enc_sequence_sz \
758 (compound_decode_hdr_maxsz + \
759 encode_sequence_maxsz)
760#define NFS4_dec_sequence_sz \
761 (compound_decode_hdr_maxsz + \
762 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400763#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
764 encode_sequence_maxsz + \
765 encode_putrootfh_maxsz + \
766 encode_fsinfo_maxsz)
767#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
768 decode_sequence_maxsz + \
769 decode_putrootfh_maxsz + \
770 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500771#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
772 encode_sequence_maxsz + \
773 encode_reclaim_complete_maxsz)
774#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
775 decode_sequence_maxsz + \
776 decode_reclaim_complete_maxsz)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400777#define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
778 encode_sequence_maxsz + \
779 encode_putfh_maxsz + \
780 encode_getdevicelist_maxsz)
781#define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
782 decode_sequence_maxsz + \
783 decode_putfh_maxsz + \
784 decode_getdevicelist_maxsz)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400785#define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
786 encode_sequence_maxsz +\
787 encode_getdeviceinfo_maxsz)
788#define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
789 decode_sequence_maxsz + \
790 decode_getdeviceinfo_maxsz)
791#define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
792 encode_sequence_maxsz + \
793 encode_putfh_maxsz + \
794 encode_layoutget_maxsz)
795#define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
796 decode_sequence_maxsz + \
797 decode_putfh_maxsz + \
798 decode_layoutget_maxsz)
Andy Adamson863a3c62011-03-23 13:27:54 +0000799#define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
800 encode_sequence_maxsz +\
801 encode_putfh_maxsz + \
802 encode_layoutcommit_maxsz + \
803 encode_getattr_maxsz)
804#define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
805 decode_sequence_maxsz + \
806 decode_putfh_maxsz + \
807 decode_layoutcommit_maxsz + \
808 decode_getattr_maxsz)
Benny Halevycbe82602011-05-22 19:52:37 +0300809#define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
810 encode_sequence_maxsz + \
811 encode_putfh_maxsz + \
812 encode_layoutreturn_maxsz)
813#define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
814 decode_sequence_maxsz + \
815 decode_putfh_maxsz + \
816 decode_layoutreturn_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400817#define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
818 encode_sequence_maxsz + \
819 encode_putrootfh_maxsz +\
820 encode_secinfo_no_name_maxsz)
821#define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
822 decode_sequence_maxsz + \
823 decode_putrootfh_maxsz + \
824 decode_secinfo_no_name_maxsz)
Bryan Schumaker7d974792011-06-02 14:59:08 -0400825#define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
826 encode_sequence_maxsz + \
827 encode_test_stateid_maxsz)
828#define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
829 decode_sequence_maxsz + \
830 decode_test_stateid_maxsz)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400831#define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
832 encode_sequence_maxsz + \
833 encode_free_stateid_maxsz)
834#define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
835 decode_sequence_maxsz + \
836 decode_free_stateid_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500837
838const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
839 compound_encode_hdr_maxsz +
840 encode_sequence_maxsz +
841 encode_putfh_maxsz +
842 encode_getattr_maxsz) *
843 XDR_UNIT);
844
845const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
846 compound_decode_hdr_maxsz +
847 decode_sequence_maxsz +
848 decode_putfh_maxsz) *
849 XDR_UNIT);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400850#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500852static unsigned short send_implementation_id = 1;
853
854module_param(send_implementation_id, ushort, 0644);
855MODULE_PARM_DESC(send_implementation_id,
856 "Send implementation ID with NFSv4.1 exchange_id");
857
Trond Myklebustbca79472009-03-11 14:10:26 -0400858static const umode_t nfs_type2fmt[] = {
859 [NF4BAD] = 0,
860 [NF4REG] = S_IFREG,
861 [NF4DIR] = S_IFDIR,
862 [NF4BLK] = S_IFBLK,
863 [NF4CHR] = S_IFCHR,
864 [NF4LNK] = S_IFLNK,
865 [NF4SOCK] = S_IFSOCK,
866 [NF4FIFO] = S_IFIFO,
867 [NF4ATTRDIR] = 0,
868 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869};
870
871struct compound_hdr {
872 int32_t status;
873 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500874 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 uint32_t taglen;
876 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400877 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400878 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879};
880
Benny Halevy13c65ce2009-08-14 17:19:25 +0300881static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
882{
883 __be32 *p = xdr_reserve_space(xdr, nbytes);
884 BUG_ON(!p);
885 return p;
886}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Trond Myklebustcb17e552012-03-04 18:13:56 -0500888static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
889{
890 __be32 *p;
891
892 p = xdr_reserve_space(xdr, len);
893 xdr_encode_opaque_fixed(p, buf, len);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
897{
Al Viro8687b632006-10-19 23:28:48 -0700898 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500900 p = reserve_space(xdr, 4 + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 xdr_encode_opaque(p, str, len);
902}
903
Trond Myklebust4ade9822012-03-04 18:13:57 -0500904static void encode_uint32(struct xdr_stream *xdr, u32 n)
905{
906 __be32 *p;
907
908 p = reserve_space(xdr, 4);
909 *p = cpu_to_be32(n);
910}
911
912static void encode_nfs4_seqid(struct xdr_stream *xdr,
913 const struct nfs_seqid *seqid)
914{
915 encode_uint32(xdr, seqid->sequence->counter);
916}
917
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400918static void encode_compound_hdr(struct xdr_stream *xdr,
919 struct rpc_rqst *req,
920 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Al Viro8687b632006-10-19 23:28:48 -0700922 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400923 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400924
925 /* initialize running count of expected bytes in reply.
926 * NOTE: the replied tag SHOULD be the same is the one sent,
927 * but this is not required as a MUST for the server to do so. */
928 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500931 encode_string(xdr, hdr->taglen, hdr->tag);
932 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300933 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500934 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300935 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500936}
937
Trond Myklebustab19b482012-03-04 18:13:57 -0500938static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
939 uint32_t replen,
940 struct compound_hdr *hdr)
941{
942 encode_uint32(xdr, op);
943 hdr->nops++;
944 hdr->replen += replen;
945}
946
Andy Adamsond0179312008-12-23 16:06:17 -0500947static void encode_nops(struct compound_hdr *hdr)
948{
Andy Adamsonfc931582009-04-01 09:22:31 -0400949 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500950 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500953static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
954{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500955 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
959{
Trond Myklebustcb17e552012-03-04 18:13:56 -0500960 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500963static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 char owner_name[IDMAP_NAMESZ];
966 char owner_group[IDMAP_NAMESZ];
967 int owner_namelen = 0;
968 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700969 __be32 *p;
970 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 int len;
972 uint32_t bmval0 = 0;
973 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 /*
976 * We reserve enough space to write the entire attribute buffer at once.
977 * In the worst-case, this would be
978 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
979 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000980 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
982 len = 16;
983
984 /* Sigh */
985 if (iap->ia_valid & ATTR_SIZE)
986 len += 8;
987 if (iap->ia_valid & ATTR_MODE)
988 len += 4;
989 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800990 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400992 dprintk("nfs: couldn't resolve uid %d to string\n",
993 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /* XXX */
995 strcpy(owner_name, "nobody");
996 owner_namelen = sizeof("nobody") - 1;
997 /* goto out; */
998 }
999 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1000 }
1001 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001002 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001004 dprintk("nfs: couldn't resolve gid %d to string\n",
1005 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 strcpy(owner_group, "nobody");
1007 owner_grouplen = sizeof("nobody") - 1;
1008 /* goto out; */
1009 }
1010 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1011 }
1012 if (iap->ia_valid & ATTR_ATIME_SET)
1013 len += 16;
1014 else if (iap->ia_valid & ATTR_ATIME)
1015 len += 4;
1016 if (iap->ia_valid & ATTR_MTIME_SET)
1017 len += 16;
1018 else if (iap->ia_valid & ATTR_MTIME)
1019 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001020 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 /*
1023 * We write the bitmap length now, but leave the bitmap and the attribute
1024 * buffer length to be backfilled at the end of this routine.
1025 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001026 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 q = p;
1028 p += 3;
1029
1030 if (iap->ia_valid & ATTR_SIZE) {
1031 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +03001032 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 if (iap->ia_valid & ATTR_MODE) {
1035 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001036 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038 if (iap->ia_valid & ATTR_UID) {
1039 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +03001040 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042 if (iap->ia_valid & ATTR_GID) {
1043 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +03001044 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 if (iap->ia_valid & ATTR_ATIME_SET) {
1047 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001048 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1049 *p++ = cpu_to_be32(0);
Trond Myklebustd3f6baa2010-06-22 08:52:39 -04001050 *p++ = cpu_to_be32(iap->ia_atime.tv_sec);
1051 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053 else if (iap->ia_valid & ATTR_ATIME) {
1054 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001055 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 if (iap->ia_valid & ATTR_MTIME_SET) {
1058 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001059 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1060 *p++ = cpu_to_be32(0);
1061 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
1062 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064 else if (iap->ia_valid & ATTR_MTIME) {
1065 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001066 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 /*
1070 * Now we backfill the bitmap and the attribute buffer length.
1071 */
1072 if (len != ((char *)p - (char *)q) + 4) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -05001073 printk(KERN_ERR "NFS: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 len, ((char *)p - (char *)q) + 4);
1075 BUG();
1076 }
1077 len = (char *)p - (char *)q - 12;
1078 *q++ = htonl(bmval0);
1079 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +03001080 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001085static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Al Viro8687b632006-10-19 23:28:48 -07001087 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Benny Halevy13c65ce2009-08-14 17:19:25 +03001089 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001090 *p++ = cpu_to_be32(OP_ACCESS);
Benny Halevy34558512009-08-14 17:19:30 +03001091 *p = cpu_to_be32(access);
Andy Adamsond0179312008-12-23 16:06:17 -05001092 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001093 hdr->replen += decode_access_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001096static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Trond Myklebustab19b482012-03-04 18:13:57 -05001098 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001099 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001100 encode_nfs4_stateid(xdr, arg->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001103static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Al Viro8687b632006-10-19 23:28:48 -07001105 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001106
Benny Halevy13c65ce2009-08-14 17:19:25 +03001107 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001108 *p++ = cpu_to_be32(OP_COMMIT);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001109 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001110 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001111 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001112 hdr->replen += decode_commit_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001115static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Al Viro8687b632006-10-19 23:28:48 -07001117 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001118
Benny Halevy13c65ce2009-08-14 17:19:25 +03001119 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001120 *p++ = cpu_to_be32(OP_CREATE);
Benny Halevy34558512009-08-14 17:19:30 +03001121 *p = cpu_to_be32(create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 switch (create->ftype) {
1124 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001125 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001126 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -04001127 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
1130 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001131 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001132 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +03001133 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 break;
1135
1136 default:
1137 break;
1138 }
1139
Benny Halevy811652b2009-08-14 17:19:34 +03001140 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001141 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001142 hdr->replen += decode_create_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001144 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001147static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Andy Adamson05d564f2008-12-23 16:06:15 -05001149 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Benny Halevy13c65ce2009-08-14 17:19:25 +03001151 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001152 *p++ = cpu_to_be32(OP_GETATTR);
1153 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001154 *p = cpu_to_be32(bitmap);
Andy Adamsond0179312008-12-23 16:06:17 -05001155 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001156 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001159static 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 -07001160{
Andy Adamson05d564f2008-12-23 16:06:15 -05001161 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Benny Halevy13c65ce2009-08-14 17:19:25 +03001163 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001164 *p++ = cpu_to_be32(OP_GETATTR);
1165 *p++ = cpu_to_be32(2);
1166 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001167 *p = cpu_to_be32(bm1);
Andy Adamsond0179312008-12-23 16:06:17 -05001168 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001169 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Fred Isamandae100c2011-07-30 20:52:37 -04001172static void
1173encode_getattr_three(struct xdr_stream *xdr,
1174 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1175 struct compound_hdr *hdr)
1176{
1177 __be32 *p;
1178
Trond Myklebustab19b482012-03-04 18:13:57 -05001179 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
Fred Isamandae100c2011-07-30 20:52:37 -04001180 if (bm2) {
1181 p = reserve_space(xdr, 16);
1182 *p++ = cpu_to_be32(3);
1183 *p++ = cpu_to_be32(bm0);
1184 *p++ = cpu_to_be32(bm1);
1185 *p = cpu_to_be32(bm2);
1186 } else if (bm1) {
1187 p = reserve_space(xdr, 12);
1188 *p++ = cpu_to_be32(2);
1189 *p++ = cpu_to_be32(bm0);
1190 *p = cpu_to_be32(bm1);
1191 } else {
1192 p = reserve_space(xdr, 8);
1193 *p++ = cpu_to_be32(1);
1194 *p = cpu_to_be32(bm0);
1195 }
Fred Isamandae100c2011-07-30 20:52:37 -04001196}
1197
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001198static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001200 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1201 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001204static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Fred Isamandae100c2011-07-30 20:52:37 -04001206 encode_getattr_three(xdr,
1207 bitmask[0] & nfs4_fsinfo_bitmap[0],
1208 bitmask[1] & nfs4_fsinfo_bitmap[1],
1209 bitmask[2] & nfs4_fsinfo_bitmap[2],
1210 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001213static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001214{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001215 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1216 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001217}
1218
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001219static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Trond Myklebustab19b482012-03-04 18:13:57 -05001221 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001224static void encode_link(struct xdr_stream *xdr, const struct qstr *name, 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_LINK, decode_link_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001227 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001230static inline int nfs4_lock_type(struct file_lock *fl, int block)
1231{
1232 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
1233 return block ? NFS4_READW_LT : NFS4_READ_LT;
1234 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1235}
1236
1237static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1238{
1239 if (fl->fl_end == OFFSET_MAX)
1240 return ~(uint64_t)0;
1241 return fl->fl_end - fl->fl_start + 1;
1242}
1243
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001244static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1245{
1246 __be32 *p;
1247
Trond Myklebustd035c362010-12-21 10:45:27 -05001248 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001249 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001250 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001251 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001252 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001253 xdr_encode_hyper(p, lowner->id);
1254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256/*
1257 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1258 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1259 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001260static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Al Viro8687b632006-10-19 23:28:48 -07001262 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Benny Halevy13c65ce2009-08-14 17:19:25 +03001264 p = reserve_space(xdr, 32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001265 *p++ = cpu_to_be32(OP_LOCK);
1266 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1267 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001268 p = xdr_encode_hyper(p, args->fl->fl_start);
1269 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001270 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001271 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001272 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001273 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001274 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001275 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001278 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001279 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Andy Adamsond0179312008-12-23 16:06:17 -05001281 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001282 hdr->replen += decode_lock_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001285static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Al Viro8687b632006-10-19 23:28:48 -07001287 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001289 p = reserve_space(xdr, 24);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001290 *p++ = cpu_to_be32(OP_LOCKT);
1291 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001292 p = xdr_encode_hyper(p, args->fl->fl_start);
1293 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001294 encode_lockowner(xdr, &args->lock_owner);
Andy Adamsond0179312008-12-23 16:06:17 -05001295 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001296 hdr->replen += decode_lockt_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001299static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Al Viro8687b632006-10-19 23:28:48 -07001301 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Trond Myklebust4ade9822012-03-04 18:13:57 -05001303 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001304 *p++ = cpu_to_be32(OP_LOCKU);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001305 *p = cpu_to_be32(nfs4_lock_type(args->fl, 0));
1306 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));
Andy Adamsond0179312008-12-23 16:06:17 -05001311 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001312 hdr->replen += decode_locku_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001315static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1316{
Trond Myklebustab19b482012-03-04 18:13:57 -05001317 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001318 encode_lockowner(xdr, lowner);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001319}
1320
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001321static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Trond Myklebustab19b482012-03-04 18:13:57 -05001323 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001324 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001327static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Al Viro8687b632006-10-19 23:28:48 -07001329 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Benny Halevy13c65ce2009-08-14 17:19:25 +03001331 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001332 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001333 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001334 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001335 break;
1336 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001337 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001338 break;
1339 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001340 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001341 break;
1342 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001343 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
Benny Halevy34558512009-08-14 17:19:30 +03001345 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
1348static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1349{
Al Viro8687b632006-10-19 23:28:48 -07001350 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /*
1352 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1353 * owner 4 = 32
1354 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001355 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001356 encode_share_access(xdr, arg->fmode);
Trond Myklebustd035c362010-12-21 10:45:27 -05001357 p = reserve_space(xdr, 32);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001358 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001359 *p++ = cpu_to_be32(20);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001360 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001361 *p++ = cpu_to_be32(arg->server->s_dev);
Benny Halevy34558512009-08-14 17:19:30 +03001362 xdr_encode_hyper(p, arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
1365static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1366{
Al Viro8687b632006-10-19 23:28:48 -07001367 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001368 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Benny Halevy13c65ce2009-08-14 17:19:25 +03001370 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001372 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001373 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001374 encode_attrs(xdr, arg->u.attrs, arg->server);
1375 break;
1376 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001377 clp = arg->server->nfs_client;
Trond Myklebusta4432342010-06-16 09:52:27 -04001378 if (clp->cl_mvops->minor_version > 0) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001379 if (nfs4_has_persistent_session(clp)) {
1380 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1381 encode_attrs(xdr, arg->u.attrs, arg->server);
1382 } else {
1383 struct iattr dummy;
1384
1385 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1386 encode_nfs4_verifier(xdr, &arg->u.verifier);
1387 dummy.ia_valid = 0;
1388 encode_attrs(xdr, &dummy, arg->server);
1389 }
1390 } else {
1391 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1392 encode_nfs4_verifier(xdr, &arg->u.verifier);
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395}
1396
1397static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1398{
Al Viro8687b632006-10-19 23:28:48 -07001399 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Benny Halevy13c65ce2009-08-14 17:19:25 +03001401 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001403 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001404 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001405 break;
1406 default:
1407 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001408 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001409 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411}
1412
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001413static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Al Viro8687b632006-10-19 23:28:48 -07001415 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Benny Halevy13c65ce2009-08-14 17:19:25 +03001417 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001419 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001420 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001421 break;
1422 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001423 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001424 break;
1425 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001426 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001427 break;
1428 default:
1429 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431}
1432
1433static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1434{
Al Viro8687b632006-10-19 23:28:48 -07001435 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Benny Halevy13c65ce2009-08-14 17:19:25 +03001437 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001438 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 encode_string(xdr, name->len, name->name);
1440}
1441
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001442static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Al Viro8687b632006-10-19 23:28:48 -07001444 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Benny Halevy13c65ce2009-08-14 17:19:25 +03001446 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001447 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 encode_delegation_type(xdr, type);
1449}
1450
1451static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1452{
Al Viro8687b632006-10-19 23:28:48 -07001453 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001455 p = reserve_space(xdr, 4);
1456 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1457 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 encode_string(xdr, name->len, name->name);
1459}
1460
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001461static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Trond Myklebustab19b482012-03-04 18:13:57 -05001463 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 encode_openhdr(xdr, arg);
1465 encode_opentype(xdr, arg);
1466 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001467 case NFS4_OPEN_CLAIM_NULL:
1468 encode_claim_null(xdr, arg->name);
1469 break;
1470 case NFS4_OPEN_CLAIM_PREVIOUS:
1471 encode_claim_previous(xdr, arg->u.delegation_type);
1472 break;
1473 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1474 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1475 break;
1476 default:
1477 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001481static 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 -07001482{
Trond Myklebustab19b482012-03-04 18:13:57 -05001483 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001484 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001485 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001488static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Trond Myklebustab19b482012-03-04 18:13:57 -05001490 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001491 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001492 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001493 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001496static void
Andy Adamsond0179312008-12-23 16:06:17 -05001497encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Trond Myklebustab19b482012-03-04 18:13:57 -05001499 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001500 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001503static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Trond Myklebustab19b482012-03-04 18:13:57 -05001505 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001508static void encode_open_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx, const struct nfs_lock_context *l_ctx, int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (ctx->state != NULL) {
Trond Myklebust1e3987c2012-03-04 18:13:56 -05001513 nfs4_select_rw_stateid(&stateid, ctx->state, l_ctx->lockowner, l_ctx->pid);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001514 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001515 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001516 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001518 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001521static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Al Viro8687b632006-10-19 23:28:48 -07001523 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Trond Myklebustab19b482012-03-04 18:13:57 -05001525 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001526 encode_open_stateid(xdr, args->context, args->lock_context,
Andy Adamson89d1ea62011-03-01 01:34:09 +00001527 hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Benny Halevy13c65ce2009-08-14 17:19:25 +03001529 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001530 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001531 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001534static 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 -07001535{
Trond Myklebust28331a42011-04-27 13:47:52 -04001536 uint32_t attrs[2] = {
1537 FATTR4_WORD0_RDATTR_ERROR,
1538 FATTR4_WORD1_MOUNTED_ON_FILEID,
1539 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001540 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001541 __be32 *p, verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001543 if (readdir->plus) {
1544 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001545 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001546 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1547 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1548 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1549 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001550 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001551 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001552 /* Use mounted_on_fileid only if the server supports it */
1553 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1554 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001555
Chuck Levercd937102012-03-02 17:14:31 -05001556 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001557 *p++ = cpu_to_be32(OP_READDIR);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001558 p = xdr_encode_hyper(p, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001559 encode_nfs4_verifier(xdr, &readdir->verifier);
1560 p = reserve_space(xdr, 20);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001561 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001562 *p++ = cpu_to_be32(readdir->count);
1563 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001564
Benny Halevye75bc1c2009-08-14 17:18:54 +03001565 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001566 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Andy Adamsond0179312008-12-23 16:06:17 -05001567 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001568 hdr->replen += decode_readdir_maxsz;
Chuck Levercd937102012-03-02 17:14:31 -05001569 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03001570 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1571 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001572 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001573 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001574 attrs[0] & readdir->bitmask[0],
1575 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001578static 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 -07001579{
Trond Myklebustab19b482012-03-04 18:13:57 -05001580 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001583static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Trond Myklebustab19b482012-03-04 18:13:57 -05001585 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001586 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001589static 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 -07001590{
Trond Myklebustab19b482012-03-04 18:13:57 -05001591 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001592 encode_string(xdr, oldname->len, oldname->name);
1593 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Chuck Leverbb4dae52012-03-01 17:01:48 -05001596static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1597 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Al Viro8687b632006-10-19 23:28:48 -07001599 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Benny Halevy13c65ce2009-08-14 17:19:25 +03001601 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001602 *p++ = cpu_to_be32(OP_RENEW);
Chuck Leverbb4dae52012-03-01 17:01:48 -05001603 xdr_encode_hyper(p, clid);
Andy Adamsond0179312008-12-23 16:06:17 -05001604 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001605 hdr->replen += decode_renew_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001608static void
Andy Adamsond0179312008-12-23 16:06:17 -05001609encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001610{
Trond Myklebustab19b482012-03-04 18:13:57 -05001611 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001612}
1613
Chuck Lever9f06c712010-12-14 14:59:18 +00001614static void
Andy Adamsond0179312008-12-23 16:06:17 -05001615encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001616{
Al Viro8687b632006-10-19 23:28:48 -07001617 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001618
Trond Myklebustab19b482012-03-04 18:13:57 -05001619 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001620 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001621 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001622 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001623 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Chuck Lever9f06c712010-12-14 14:59:18 +00001624 BUG_ON(arg->acl_len % 4);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001625 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001626 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001627 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001628}
1629
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001630static void
Andy Adamsond0179312008-12-23 16:06:17 -05001631encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Trond Myklebustab19b482012-03-04 18:13:57 -05001633 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001636static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Trond Myklebustab19b482012-03-04 18:13:57 -05001638 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001639 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001640 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001643static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Al Viro8687b632006-10-19 23:28:48 -07001645 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Chuck Levercd937102012-03-02 17:14:31 -05001647 p = reserve_space(xdr, 4);
1648 *p = cpu_to_be32(OP_SETCLIENTID);
1649 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001652 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001653 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1655 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001656 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001657 *p = cpu_to_be32(setclientid->sc_cb_ident);
Andy Adamsond0179312008-12-23 16:06:17 -05001658 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001659 hdr->replen += decode_setclientid_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001662static 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 -07001663{
Andy Adamson05d564f2008-12-23 16:06:15 -05001664 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Chuck Levercd937102012-03-02 17:14:31 -05001666 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001667 *p++ = cpu_to_be32(OP_SETCLIENTID_CONFIRM);
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001668 p = xdr_encode_hyper(p, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001669 encode_nfs4_verifier(xdr, &arg->confirm);
Andy Adamsond0179312008-12-23 16:06:17 -05001670 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001671 hdr->replen += decode_setclientid_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001674static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Al Viro8687b632006-10-19 23:28:48 -07001676 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Trond Myklebustab19b482012-03-04 18:13:57 -05001678 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001679 encode_open_stateid(xdr, args->context, args->lock_context,
Andy Adamson89d1ea62011-03-01 01:34:09 +00001680 hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Benny Halevy13c65ce2009-08-14 17:19:25 +03001682 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001683 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001684 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001685 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
1689
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001690static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Trond Myklebustab19b482012-03-04 18:13:57 -05001692 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001693 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001695
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001696static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1697{
Trond Myklebustab19b482012-03-04 18:13:57 -05001698 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001699 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001700}
1701
Benny Halevy99fe60d2009-04-01 09:22:29 -04001702#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001703/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001704static void encode_exchange_id(struct xdr_stream *xdr,
1705 struct nfs41_exchange_id_args *args,
1706 struct compound_hdr *hdr)
1707{
1708 __be32 *p;
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001709 char impl_name[NFS4_OPAQUE_LIMIT];
1710 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001711
Chuck Levercd937102012-03-02 17:14:31 -05001712 p = reserve_space(xdr, 4);
1713 *p = cpu_to_be32(OP_EXCHANGE_ID);
1714 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001715
1716 encode_string(xdr, args->id_len, args->id);
1717
Benny Halevy13c65ce2009-08-14 17:19:25 +03001718 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001719 *p++ = cpu_to_be32(args->flags);
1720 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001721
1722 if (send_implementation_id &&
1723 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1724 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1725 <= NFS4_OPAQUE_LIMIT + 1)
1726 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1727 utsname()->sysname, utsname()->release,
1728 utsname()->version, utsname()->machine);
1729
1730 if (len > 0) {
1731 *p = cpu_to_be32(1); /* implementation id array length=1 */
1732
1733 encode_string(xdr,
1734 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1735 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1736 encode_string(xdr, len, impl_name);
1737 /* just send zeros for nii_date - the date is in nii_name */
1738 p = reserve_space(xdr, 12);
1739 p = xdr_encode_hyper(p, 0);
1740 *p = cpu_to_be32(0);
1741 } else
1742 *p = cpu_to_be32(0); /* implementation id array length=0 */
1743
Benny Halevy99fe60d2009-04-01 09:22:29 -04001744 hdr->nops++;
1745 hdr->replen += decode_exchange_id_maxsz;
1746}
Andy Adamsonfc931582009-04-01 09:22:31 -04001747
1748static void encode_create_session(struct xdr_stream *xdr,
1749 struct nfs41_create_session_args *args,
1750 struct compound_hdr *hdr)
1751{
1752 __be32 *p;
1753 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1754 uint32_t len;
1755 struct nfs_client *clp = args->client;
Mike Sager8e0d46e2009-12-17 12:06:26 -05001756 u32 max_resp_sz_cached;
1757
1758 /*
1759 * Assumes OPEN is the biggest non-idempotent compound.
1760 * 2 is the verifier.
1761 */
1762 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1763 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001764
Andy Adamsonfc931582009-04-01 09:22:31 -04001765 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1766 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001767
Benny Halevy13c65ce2009-08-14 17:19:25 +03001768 p = reserve_space(xdr, 20 + 2*28 + 20 + len + 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001769 *p++ = cpu_to_be32(OP_CREATE_SESSION);
Andy Adamson114f64b2011-03-09 13:13:45 -05001770 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001771 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1772 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001773
Andy Adamsonfc931582009-04-01 09:22:31 -04001774 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001775 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001776 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1777 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001778 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001779 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1780 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1781 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001782
1783 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001784 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001785 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1786 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1787 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1788 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1789 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1790 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001791
Benny Halevye75bc1c2009-08-14 17:18:54 +03001792 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001793 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001794 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001795
1796 /* authsys_parms rfc1831 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001797 *p++ = cpu_to_be32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001798 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001799 *p++ = cpu_to_be32(0); /* UID */
1800 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001801 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001802 hdr->nops++;
1803 hdr->replen += decode_create_session_maxsz;
1804}
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{
1810 __be32 *p;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001811 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001812 *p++ = cpu_to_be32(OP_DESTROY_SESSION);
Benny Halevy34558512009-08-14 17:19:30 +03001813 xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001814 hdr->nops++;
1815 hdr->replen += decode_destroy_session_maxsz;
1816}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001817
1818static void encode_reclaim_complete(struct xdr_stream *xdr,
1819 struct nfs41_reclaim_complete_args *args,
1820 struct compound_hdr *hdr)
1821{
1822 __be32 *p;
1823
1824 p = reserve_space(xdr, 8);
1825 *p++ = cpu_to_be32(OP_RECLAIM_COMPLETE);
1826 *p++ = cpu_to_be32(args->one_fs);
1827 hdr->nops++;
1828 hdr->replen += decode_reclaim_complete_maxsz;
1829}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001830#endif /* CONFIG_NFS_V4_1 */
1831
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001832static void encode_sequence(struct xdr_stream *xdr,
1833 const struct nfs4_sequence_args *args,
1834 struct compound_hdr *hdr)
1835{
1836#if defined(CONFIG_NFS_V4_1)
1837 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001838 struct nfs4_slot_table *tp;
1839 struct nfs4_slot *slot;
1840 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001841
1842 if (!session)
1843 return;
1844
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001845 tp = &session->fc_slot_table;
1846
1847 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1848 slot = tp->slots + args->sa_slotid;
1849
Benny Halevy13c65ce2009-08-14 17:19:25 +03001850 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001851 *p++ = cpu_to_be32(OP_SEQUENCE);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001852
1853 /*
1854 * Sessionid + seqid + slotid + max slotid + cache_this
1855 */
1856 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1857 "max_slotid=%d cache_this=%d\n",
1858 __func__,
1859 ((u32 *)session->sess_id.data)[0],
1860 ((u32 *)session->sess_id.data)[1],
1861 ((u32 *)session->sess_id.data)[2],
1862 ((u32 *)session->sess_id.data)[3],
1863 slot->seq_nr, args->sa_slotid,
1864 tp->highest_used_slotid, args->sa_cache_this);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001865 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001866 *p++ = cpu_to_be32(slot->seq_nr);
1867 *p++ = cpu_to_be32(args->sa_slotid);
1868 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001869 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001870 hdr->nops++;
1871 hdr->replen += decode_sequence_maxsz;
1872#endif /* CONFIG_NFS_V4_1 */
1873}
1874
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001875#ifdef CONFIG_NFS_V4_1
1876static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001877encode_getdevicelist(struct xdr_stream *xdr,
1878 const struct nfs4_getdevicelist_args *args,
1879 struct compound_hdr *hdr)
1880{
1881 __be32 *p;
1882 nfs4_verifier dummy = {
1883 .data = "dummmmmy",
1884 };
1885
1886 p = reserve_space(xdr, 20);
1887 *p++ = cpu_to_be32(OP_GETDEVICELIST);
1888 *p++ = cpu_to_be32(args->layoutclass);
1889 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1890 xdr_encode_hyper(p, 0ULL); /* cookie */
1891 encode_nfs4_verifier(xdr, &dummy);
1892 hdr->nops++;
1893 hdr->replen += decode_getdevicelist_maxsz;
1894}
1895
1896static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001897encode_getdeviceinfo(struct xdr_stream *xdr,
1898 const struct nfs4_getdeviceinfo_args *args,
1899 struct compound_hdr *hdr)
1900{
1901 __be32 *p;
1902
1903 p = reserve_space(xdr, 16 + NFS4_DEVICEID4_SIZE);
1904 *p++ = cpu_to_be32(OP_GETDEVICEINFO);
1905 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1906 NFS4_DEVICEID4_SIZE);
1907 *p++ = cpu_to_be32(args->pdev->layout_type);
1908 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
1909 *p++ = cpu_to_be32(0); /* bitmap length 0 */
1910 hdr->nops++;
1911 hdr->replen += decode_getdeviceinfo_maxsz;
1912}
1913
1914static void
1915encode_layoutget(struct xdr_stream *xdr,
1916 const struct nfs4_layoutget_args *args,
1917 struct compound_hdr *hdr)
1918{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001919 __be32 *p;
1920
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001921 p = reserve_space(xdr, 40);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001922 *p++ = cpu_to_be32(OP_LAYOUTGET);
1923 *p++ = cpu_to_be32(0); /* Signal layout available */
1924 *p++ = cpu_to_be32(args->type);
1925 *p++ = cpu_to_be32(args->range.iomode);
1926 p = xdr_encode_hyper(p, args->range.offset);
1927 p = xdr_encode_hyper(p, args->range.length);
1928 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001929 encode_nfs4_stateid(xdr, &args->stateid);
1930 p = reserve_space(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001931 *p = cpu_to_be32(args->maxcount);
1932
1933 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1934 __func__,
1935 args->type,
1936 args->range.iomode,
1937 (unsigned long)args->range.offset,
1938 (unsigned long)args->range.length,
1939 args->maxcount);
1940 hdr->nops++;
1941 hdr->replen += decode_layoutget_maxsz;
1942}
Andy Adamson863a3c62011-03-23 13:27:54 +00001943
1944static int
1945encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001946 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00001947 const struct nfs4_layoutcommit_args *args,
1948 struct compound_hdr *hdr)
1949{
1950 __be32 *p;
1951
1952 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1953 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1954
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001955 p = reserve_space(xdr, 24);
Andy Adamson863a3c62011-03-23 13:27:54 +00001956 *p++ = cpu_to_be32(OP_LAYOUTCOMMIT);
1957 /* Only whole file layouts */
1958 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04001959 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001960 *p = cpu_to_be32(0); /* reclaim */
1961 encode_nfs4_stateid(xdr, &args->stateid);
1962 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001963 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
1964 p = xdr_encode_hyper(p, args->lastbytewritten);
1965 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1966 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03001967
1968 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
1969 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1970 NFS_I(inode)->layout, xdr, args);
1971 else {
1972 p = reserve_space(xdr, 4);
1973 *p = cpu_to_be32(0); /* no layout-type payload */
1974 }
Andy Adamson863a3c62011-03-23 13:27:54 +00001975
1976 hdr->nops++;
1977 hdr->replen += decode_layoutcommit_maxsz;
1978 return 0;
1979}
Benny Halevycbe82602011-05-22 19:52:37 +03001980
1981static void
1982encode_layoutreturn(struct xdr_stream *xdr,
1983 const struct nfs4_layoutreturn_args *args,
1984 struct compound_hdr *hdr)
1985{
1986 __be32 *p;
1987
1988 p = reserve_space(xdr, 20);
1989 *p++ = cpu_to_be32(OP_LAYOUTRETURN);
1990 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
1991 *p++ = cpu_to_be32(args->layout_type);
1992 *p++ = cpu_to_be32(IOMODE_ANY);
1993 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001994 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001995 p = xdr_encode_hyper(p, 0);
1996 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
1997 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001998 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03001999 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03002000 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
2001 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
2002 NFS_I(args->inode)->layout, xdr, args);
2003 } else {
2004 p = reserve_space(xdr, 4);
2005 *p = cpu_to_be32(0);
2006 }
Benny Halevycbe82602011-05-22 19:52:37 +03002007 hdr->nops++;
2008 hdr->replen += decode_layoutreturn_maxsz;
2009}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002010
2011static int
2012encode_secinfo_no_name(struct xdr_stream *xdr,
2013 const struct nfs41_secinfo_no_name_args *args,
2014 struct compound_hdr *hdr)
2015{
2016 __be32 *p;
2017 p = reserve_space(xdr, 8);
2018 *p++ = cpu_to_be32(OP_SECINFO_NO_NAME);
2019 *p++ = cpu_to_be32(args->style);
2020 hdr->nops++;
2021 hdr->replen += decode_secinfo_no_name_maxsz;
2022 return 0;
2023}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002024
2025static void encode_test_stateid(struct xdr_stream *xdr,
2026 struct nfs41_test_stateid_args *args,
2027 struct compound_hdr *hdr)
2028{
2029 __be32 *p;
2030
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002031 p = reserve_space(xdr, 8);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002032 *p++ = cpu_to_be32(OP_TEST_STATEID);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002033 *p = cpu_to_be32(1);
2034 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002035 hdr->nops++;
2036 hdr->replen += decode_test_stateid_maxsz;
2037}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002038
2039static void encode_free_stateid(struct xdr_stream *xdr,
2040 struct nfs41_free_stateid_args *args,
2041 struct compound_hdr *hdr)
2042{
Trond Myklebustab19b482012-03-04 18:13:57 -05002043 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002044 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002045}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002046#endif /* CONFIG_NFS_V4_1 */
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048/*
2049 * END OF "GENERIC" ENCODE ROUTINES.
2050 */
2051
Benny Halevy66cc0422009-04-01 09:22:10 -04002052static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2053{
2054#if defined(CONFIG_NFS_V4_1)
2055 if (args->sa_session)
Trond Myklebusta4432342010-06-16 09:52:27 -04002056 return args->sa_session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002057#endif /* CONFIG_NFS_V4_1 */
2058 return 0;
2059}
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061/*
2062 * Encode an ACCESS request
2063 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002064static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2065 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002068 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Chuck Lever9f06c712010-12-14 14:59:18 +00002071 encode_compound_hdr(xdr, req, &hdr);
2072 encode_sequence(xdr, &args->seq_args, &hdr);
2073 encode_putfh(xdr, args->fh, &hdr);
2074 encode_access(xdr, args->access, &hdr);
2075 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002076 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
2079/*
2080 * Encode LOOKUP request
2081 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002082static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2083 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002086 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Chuck Lever9f06c712010-12-14 14:59:18 +00002089 encode_compound_hdr(xdr, req, &hdr);
2090 encode_sequence(xdr, &args->seq_args, &hdr);
2091 encode_putfh(xdr, args->dir_fh, &hdr);
2092 encode_lookup(xdr, args->name, &hdr);
2093 encode_getfh(xdr, &hdr);
2094 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002095 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
2098/*
2099 * Encode LOOKUP_ROOT request
2100 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002101static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2102 struct xdr_stream *xdr,
2103 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002106 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Chuck Lever9f06c712010-12-14 14:59:18 +00002109 encode_compound_hdr(xdr, req, &hdr);
2110 encode_sequence(xdr, &args->seq_args, &hdr);
2111 encode_putrootfh(xdr, &hdr);
2112 encode_getfh(xdr, &hdr);
2113 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002114 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
2117/*
2118 * Encode REMOVE request
2119 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002120static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2121 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002124 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Chuck Lever9f06c712010-12-14 14:59:18 +00002127 encode_compound_hdr(xdr, req, &hdr);
2128 encode_sequence(xdr, &args->seq_args, &hdr);
2129 encode_putfh(xdr, args->fh, &hdr);
2130 encode_remove(xdr, &args->name, &hdr);
2131 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002132 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135/*
2136 * Encode RENAME request
2137 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002138static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2139 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002142 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Chuck Lever9f06c712010-12-14 14:59:18 +00002145 encode_compound_hdr(xdr, req, &hdr);
2146 encode_sequence(xdr, &args->seq_args, &hdr);
2147 encode_putfh(xdr, args->old_dir, &hdr);
2148 encode_savefh(xdr, &hdr);
2149 encode_putfh(xdr, args->new_dir, &hdr);
2150 encode_rename(xdr, args->old_name, args->new_name, &hdr);
2151 encode_getfattr(xdr, args->bitmask, &hdr);
2152 encode_restorefh(xdr, &hdr);
2153 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002154 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157/*
2158 * Encode LINK request
2159 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002160static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2161 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002164 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Chuck Lever9f06c712010-12-14 14:59:18 +00002167 encode_compound_hdr(xdr, req, &hdr);
2168 encode_sequence(xdr, &args->seq_args, &hdr);
2169 encode_putfh(xdr, args->fh, &hdr);
2170 encode_savefh(xdr, &hdr);
2171 encode_putfh(xdr, args->dir_fh, &hdr);
2172 encode_link(xdr, args->name, &hdr);
2173 encode_getfattr(xdr, args->bitmask, &hdr);
2174 encode_restorefh(xdr, &hdr);
2175 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002176 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179/*
2180 * Encode CREATE request
2181 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002182static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2183 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002186 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Chuck Lever9f06c712010-12-14 14:59:18 +00002189 encode_compound_hdr(xdr, req, &hdr);
2190 encode_sequence(xdr, &args->seq_args, &hdr);
2191 encode_putfh(xdr, args->dir_fh, &hdr);
2192 encode_savefh(xdr, &hdr);
2193 encode_create(xdr, args, &hdr);
2194 encode_getfh(xdr, &hdr);
2195 encode_getfattr(xdr, args->bitmask, &hdr);
2196 encode_restorefh(xdr, &hdr);
2197 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002198 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
2201/*
2202 * Encode SYMLINK request
2203 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002204static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2205 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
Chuck Lever9f06c712010-12-14 14:59:18 +00002207 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
2210/*
2211 * Encode GETATTR request
2212 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002213static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2214 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002217 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Chuck Lever9f06c712010-12-14 14:59:18 +00002220 encode_compound_hdr(xdr, req, &hdr);
2221 encode_sequence(xdr, &args->seq_args, &hdr);
2222 encode_putfh(xdr, args->fh, &hdr);
2223 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002224 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225}
2226
2227/*
2228 * Encode a CLOSE request
2229 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002230static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2231 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Andy Adamson05d564f2008-12-23 16:06:15 -05002233 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002234 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002235 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Chuck Lever9f06c712010-12-14 14:59:18 +00002237 encode_compound_hdr(xdr, req, &hdr);
2238 encode_sequence(xdr, &args->seq_args, &hdr);
2239 encode_putfh(xdr, args->fh, &hdr);
2240 encode_close(xdr, args, &hdr);
2241 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002242 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
2245/*
2246 * Encode an OPEN request
2247 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002248static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2249 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002252 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Chuck Lever9f06c712010-12-14 14:59:18 +00002255 encode_compound_hdr(xdr, req, &hdr);
2256 encode_sequence(xdr, &args->seq_args, &hdr);
2257 encode_putfh(xdr, args->fh, &hdr);
2258 encode_savefh(xdr, &hdr);
2259 encode_open(xdr, args, &hdr);
2260 encode_getfh(xdr, &hdr);
2261 encode_getfattr(xdr, args->bitmask, &hdr);
2262 encode_restorefh(xdr, &hdr);
Trond Myklebust6926afd2012-01-07 13:22:46 -05002263 encode_getfattr(xdr, args->dir_bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002264 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
2267/*
2268 * Encode an OPEN_CONFIRM request
2269 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002270static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2271 struct xdr_stream *xdr,
2272 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002275 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Chuck Lever9f06c712010-12-14 14:59:18 +00002278 encode_compound_hdr(xdr, req, &hdr);
2279 encode_putfh(xdr, args->fh, &hdr);
2280 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002281 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282}
2283
2284/*
2285 * Encode an OPEN request with no attributes.
2286 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002287static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2288 struct xdr_stream *xdr,
2289 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002292 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Chuck Lever9f06c712010-12-14 14:59:18 +00002295 encode_compound_hdr(xdr, req, &hdr);
2296 encode_sequence(xdr, &args->seq_args, &hdr);
2297 encode_putfh(xdr, args->fh, &hdr);
2298 encode_open(xdr, args, &hdr);
2299 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002300 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303/*
2304 * Encode an OPEN_DOWNGRADE request
2305 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002306static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2307 struct xdr_stream *xdr,
2308 struct nfs_closeargs *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_open_downgrade(xdr, args, &hdr);
2318 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002319 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320}
2321
2322/*
2323 * Encode a LOCK request
2324 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002325static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2326 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002329 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Chuck Lever9f06c712010-12-14 14:59:18 +00002332 encode_compound_hdr(xdr, req, &hdr);
2333 encode_sequence(xdr, &args->seq_args, &hdr);
2334 encode_putfh(xdr, args->fh, &hdr);
2335 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002336 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
2339/*
2340 * Encode a LOCKT request
2341 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002342static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2343 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002346 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Chuck Lever9f06c712010-12-14 14:59:18 +00002349 encode_compound_hdr(xdr, req, &hdr);
2350 encode_sequence(xdr, &args->seq_args, &hdr);
2351 encode_putfh(xdr, args->fh, &hdr);
2352 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002353 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
2356/*
2357 * Encode a LOCKU request
2358 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002359static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2360 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002363 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Chuck Lever9f06c712010-12-14 14:59:18 +00002366 encode_compound_hdr(xdr, req, &hdr);
2367 encode_sequence(xdr, &args->seq_args, &hdr);
2368 encode_putfh(xdr, args->fh, &hdr);
2369 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002370 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
Chuck Lever9f06c712010-12-14 14:59:18 +00002373static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2374 struct xdr_stream *xdr,
2375 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002376{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002377 struct compound_hdr hdr = {
2378 .minorversion = 0,
2379 };
2380
Chuck Lever9f06c712010-12-14 14:59:18 +00002381 encode_compound_hdr(xdr, req, &hdr);
2382 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002383 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002384}
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386/*
2387 * Encode a READLINK request
2388 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002389static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2390 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002393 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Chuck Lever9f06c712010-12-14 14:59:18 +00002396 encode_compound_hdr(xdr, req, &hdr);
2397 encode_sequence(xdr, &args->seq_args, &hdr);
2398 encode_putfh(xdr, args->fh, &hdr);
2399 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002400
Benny Halevy28f56692009-04-01 09:22:09 -04002401 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002402 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002403 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404}
2405
2406/*
2407 * Encode a READDIR request
2408 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002409static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2410 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002413 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Chuck Lever9f06c712010-12-14 14:59:18 +00002416 encode_compound_hdr(xdr, req, &hdr);
2417 encode_sequence(xdr, &args->seq_args, &hdr);
2418 encode_putfh(xdr, args->fh, &hdr);
2419 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002420
Benny Halevy28f56692009-04-01 09:22:09 -04002421 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002422 args->pgbase, args->count);
2423 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002424 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002425 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002426 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
2429/*
2430 * Encode a READ request
2431 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002432static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2433 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002436 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Chuck Lever9f06c712010-12-14 14:59:18 +00002439 encode_compound_hdr(xdr, req, &hdr);
2440 encode_sequence(xdr, &args->seq_args, &hdr);
2441 encode_putfh(xdr, args->fh, &hdr);
2442 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Benny Halevy28f56692009-04-01 09:22:09 -04002444 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002446 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002447 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
2450/*
2451 * Encode an SETATTR request
2452 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002453static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2454 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Andy Adamson05d564f2008-12-23 16:06:15 -05002456 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002457 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002458 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Chuck Lever9f06c712010-12-14 14:59:18 +00002460 encode_compound_hdr(xdr, req, &hdr);
2461 encode_sequence(xdr, &args->seq_args, &hdr);
2462 encode_putfh(xdr, args->fh, &hdr);
2463 encode_setattr(xdr, args, args->server, &hdr);
2464 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002465 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
2468/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002469 * Encode a GETACL request
2470 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002471static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2472 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002473{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002474 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002475 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002476 };
Benny Halevy28f56692009-04-01 09:22:09 -04002477 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002478
Chuck Lever9f06c712010-12-14 14:59:18 +00002479 encode_compound_hdr(xdr, req, &hdr);
2480 encode_sequence(xdr, &args->seq_args, &hdr);
2481 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002482 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002483 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002484
Benny Halevy28f56692009-04-01 09:22:09 -04002485 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002486 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002487
Andy Adamsond0179312008-12-23 16:06:17 -05002488 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002489}
2490
2491/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 * Encode a WRITE request
2493 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002494static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2495 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002498 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Chuck Lever9f06c712010-12-14 14:59:18 +00002501 encode_compound_hdr(xdr, req, &hdr);
2502 encode_sequence(xdr, &args->seq_args, &hdr);
2503 encode_putfh(xdr, args->fh, &hdr);
2504 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002505 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002506 if (args->bitmask)
2507 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002508 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
2511/*
2512 * a COMMIT request
2513 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002514static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
2515 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002518 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Chuck Lever9f06c712010-12-14 14:59:18 +00002521 encode_compound_hdr(xdr, req, &hdr);
2522 encode_sequence(xdr, &args->seq_args, &hdr);
2523 encode_putfh(xdr, args->fh, &hdr);
2524 encode_commit(xdr, args, &hdr);
Fred Isaman988b6dc2011-03-23 13:27:52 +00002525 if (args->bitmask)
2526 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002527 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
2530/*
2531 * FSINFO request
2532 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002533static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2534 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002537 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Chuck Lever9f06c712010-12-14 14:59:18 +00002540 encode_compound_hdr(xdr, req, &hdr);
2541 encode_sequence(xdr, &args->seq_args, &hdr);
2542 encode_putfh(xdr, args->fh, &hdr);
2543 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002544 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
2547/*
2548 * a PATHCONF request
2549 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002550static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2551 const struct nfs4_pathconf_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->fh, &hdr);
2560 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002561 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002562 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
2564
2565/*
2566 * a STATFS request
2567 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002568static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2569 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002572 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Chuck Lever9f06c712010-12-14 14:59:18 +00002575 encode_compound_hdr(xdr, req, &hdr);
2576 encode_sequence(xdr, &args->seq_args, &hdr);
2577 encode_putfh(xdr, args->fh, &hdr);
2578 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002579 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002580 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
2583/*
2584 * GETATTR_BITMAP request
2585 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002586static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2587 struct xdr_stream *xdr,
2588 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002591 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Chuck Lever9f06c712010-12-14 14:59:18 +00002594 encode_compound_hdr(xdr, req, &hdr);
2595 encode_sequence(xdr, &args->seq_args, &hdr);
2596 encode_putfh(xdr, args->fhandle, &hdr);
2597 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002598 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002599 FATTR4_WORD0_LINK_SUPPORT|
2600 FATTR4_WORD0_SYMLINK_SUPPORT|
2601 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002602 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}
2604
2605/*
2606 * a RENEW request
2607 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002608static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2609 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002612 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 };
2614
Chuck Lever9f06c712010-12-14 14:59:18 +00002615 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002616 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002617 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
2620/*
2621 * a SETCLIENTID request
2622 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002623static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2624 struct xdr_stream *xdr,
2625 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002628 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 };
2630
Chuck Lever9f06c712010-12-14 14:59:18 +00002631 encode_compound_hdr(xdr, req, &hdr);
2632 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002633 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
2636/*
2637 * a SETCLIENTID_CONFIRM request
2638 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002639static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2640 struct xdr_stream *xdr,
2641 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002644 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 };
Fred Isamandae100c2011-07-30 20:52:37 -04002646 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Chuck Lever9f06c712010-12-14 14:59:18 +00002648 encode_compound_hdr(xdr, req, &hdr);
2649 encode_setclientid_confirm(xdr, arg, &hdr);
2650 encode_putrootfh(xdr, &hdr);
2651 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002652 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
2655/*
2656 * DELEGRETURN request
2657 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002658static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2659 struct xdr_stream *xdr,
2660 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002663 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Chuck Lever9f06c712010-12-14 14:59:18 +00002666 encode_compound_hdr(xdr, req, &hdr);
2667 encode_sequence(xdr, &args->seq_args, &hdr);
2668 encode_putfh(xdr, args->fhandle, &hdr);
2669 encode_delegreturn(xdr, args->stateid, &hdr);
2670 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002671 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672}
2673
2674/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002675 * Encode FS_LOCATIONS request
2676 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002677static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2678 struct xdr_stream *xdr,
2679 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002680{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002681 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002682 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002683 };
Benny Halevy28f56692009-04-01 09:22:09 -04002684 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002685
Chuck Lever9f06c712010-12-14 14:59:18 +00002686 encode_compound_hdr(xdr, req, &hdr);
2687 encode_sequence(xdr, &args->seq_args, &hdr);
2688 encode_putfh(xdr, args->dir_fh, &hdr);
2689 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002690 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002691 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002692
Benny Halevy28f56692009-04-01 09:22:09 -04002693 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002694 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002695 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002696}
2697
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002698/*
2699 * Encode SECINFO request
2700 */
2701static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2702 struct xdr_stream *xdr,
2703 struct nfs4_secinfo_arg *args)
2704{
2705 struct compound_hdr hdr = {
2706 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2707 };
2708
2709 encode_compound_hdr(xdr, req, &hdr);
2710 encode_sequence(xdr, &args->seq_args, &hdr);
2711 encode_putfh(xdr, args->dir_fh, &hdr);
2712 encode_secinfo(xdr, args->name, &hdr);
2713 encode_nops(&hdr);
2714}
2715
Benny Halevy99fe60d2009-04-01 09:22:29 -04002716#if defined(CONFIG_NFS_V4_1)
2717/*
2718 * EXCHANGE_ID request
2719 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002720static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2721 struct xdr_stream *xdr,
2722 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002723{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002724 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002725 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002726 };
2727
Chuck Lever9f06c712010-12-14 14:59:18 +00002728 encode_compound_hdr(xdr, req, &hdr);
2729 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002730 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002731}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002732
2733/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002734 * a CREATE_SESSION request
2735 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002736static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2737 struct xdr_stream *xdr,
2738 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002739{
Andy Adamsonfc931582009-04-01 09:22:31 -04002740 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002741 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002742 };
2743
Chuck Lever9f06c712010-12-14 14:59:18 +00002744 encode_compound_hdr(xdr, req, &hdr);
2745 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002746 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002747}
2748
2749/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002750 * a DESTROY_SESSION request
2751 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002752static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2753 struct xdr_stream *xdr,
2754 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002755{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002756 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002757 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002758 };
2759
Chuck Lever9f06c712010-12-14 14:59:18 +00002760 encode_compound_hdr(xdr, req, &hdr);
2761 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002762 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002763}
2764
2765/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002766 * a SEQUENCE request
2767 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002768static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2769 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002770{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002771 struct compound_hdr hdr = {
2772 .minorversion = nfs4_xdr_minorversion(args),
2773 };
2774
Chuck Lever9f06c712010-12-14 14:59:18 +00002775 encode_compound_hdr(xdr, req, &hdr);
2776 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002777 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002778}
2779
2780/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002781 * a GET_LEASE_TIME request
2782 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002783static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2784 struct xdr_stream *xdr,
2785 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002786{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002787 struct compound_hdr hdr = {
2788 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2789 };
Fred Isamandae100c2011-07-30 20:52:37 -04002790 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002791
Chuck Lever9f06c712010-12-14 14:59:18 +00002792 encode_compound_hdr(xdr, req, &hdr);
2793 encode_sequence(xdr, &args->la_seq_args, &hdr);
2794 encode_putrootfh(xdr, &hdr);
2795 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002796 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002797}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002798
2799/*
2800 * a RECLAIM_COMPLETE request
2801 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002802static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2803 struct xdr_stream *xdr,
2804 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002805{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002806 struct compound_hdr hdr = {
2807 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2808 };
2809
Chuck Lever9f06c712010-12-14 14:59:18 +00002810 encode_compound_hdr(xdr, req, &hdr);
2811 encode_sequence(xdr, &args->seq_args, &hdr);
2812 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002813 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002814}
2815
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002816/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002817 * Encode GETDEVICELIST request
2818 */
2819static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2820 struct xdr_stream *xdr,
2821 struct nfs4_getdevicelist_args *args)
2822{
2823 struct compound_hdr hdr = {
2824 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2825 };
2826
2827 encode_compound_hdr(xdr, req, &hdr);
2828 encode_sequence(xdr, &args->seq_args, &hdr);
2829 encode_putfh(xdr, args->fh, &hdr);
2830 encode_getdevicelist(xdr, args, &hdr);
2831 encode_nops(&hdr);
2832}
2833
2834/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002835 * Encode GETDEVICEINFO request
2836 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002837static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2838 struct xdr_stream *xdr,
2839 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002840{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002841 struct compound_hdr hdr = {
2842 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2843 };
2844
Chuck Lever9f06c712010-12-14 14:59:18 +00002845 encode_compound_hdr(xdr, req, &hdr);
2846 encode_sequence(xdr, &args->seq_args, &hdr);
2847 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002848
2849 /* set up reply kvec. Subtract notification bitmap max size (2)
2850 * so that notification bitmap is put in xdr_buf tail */
2851 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2852 args->pdev->pages, args->pdev->pgbase,
2853 args->pdev->pglen);
2854
2855 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002856}
2857
2858/*
2859 * Encode LAYOUTGET request
2860 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002861static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2862 struct xdr_stream *xdr,
2863 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002864{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002865 struct compound_hdr hdr = {
2866 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2867 };
2868
Chuck Lever9f06c712010-12-14 14:59:18 +00002869 encode_compound_hdr(xdr, req, &hdr);
2870 encode_sequence(xdr, &args->seq_args, &hdr);
2871 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2872 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002873
2874 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2875 args->layout.pages, 0, args->layout.pglen);
2876
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002877 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002878}
Andy Adamson863a3c62011-03-23 13:27:54 +00002879
2880/*
2881 * Encode LAYOUTCOMMIT request
2882 */
Benny Halevycbe82602011-05-22 19:52:37 +03002883static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2884 struct xdr_stream *xdr,
2885 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002886{
Benny Halevyac7db722011-05-22 19:53:48 +03002887 struct nfs4_layoutcommit_data *data =
2888 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002889 struct compound_hdr hdr = {
2890 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2891 };
2892
2893 encode_compound_hdr(xdr, req, &hdr);
2894 encode_sequence(xdr, &args->seq_args, &hdr);
2895 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002896 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002897 encode_getfattr(xdr, args->bitmask, &hdr);
2898 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002899}
2900
2901/*
2902 * Encode LAYOUTRETURN request
2903 */
2904static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2905 struct xdr_stream *xdr,
2906 struct nfs4_layoutreturn_args *args)
2907{
2908 struct compound_hdr hdr = {
2909 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2910 };
2911
2912 encode_compound_hdr(xdr, req, &hdr);
2913 encode_sequence(xdr, &args->seq_args, &hdr);
2914 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2915 encode_layoutreturn(xdr, args, &hdr);
2916 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002917}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002918
2919/*
2920 * Encode SECINFO_NO_NAME request
2921 */
2922static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2923 struct xdr_stream *xdr,
2924 struct nfs41_secinfo_no_name_args *args)
2925{
2926 struct compound_hdr hdr = {
2927 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2928 };
2929
2930 encode_compound_hdr(xdr, req, &hdr);
2931 encode_sequence(xdr, &args->seq_args, &hdr);
2932 encode_putrootfh(xdr, &hdr);
2933 encode_secinfo_no_name(xdr, args, &hdr);
2934 encode_nops(&hdr);
2935 return 0;
2936}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002937
2938/*
2939 * Encode TEST_STATEID request
2940 */
2941static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
2942 struct xdr_stream *xdr,
2943 struct nfs41_test_stateid_args *args)
2944{
2945 struct compound_hdr hdr = {
2946 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2947 };
2948
2949 encode_compound_hdr(xdr, req, &hdr);
2950 encode_sequence(xdr, &args->seq_args, &hdr);
2951 encode_test_stateid(xdr, args, &hdr);
2952 encode_nops(&hdr);
2953}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002954
2955/*
2956 * Encode FREE_STATEID request
2957 */
2958static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
2959 struct xdr_stream *xdr,
2960 struct nfs41_free_stateid_args *args)
2961{
2962 struct compound_hdr hdr = {
2963 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2964 };
2965
2966 encode_compound_hdr(xdr, req, &hdr);
2967 encode_sequence(xdr, &args->seq_args, &hdr);
2968 encode_free_stateid(xdr, args, &hdr);
2969 encode_nops(&hdr);
2970}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002971#endif /* CONFIG_NFS_V4_1 */
2972
Benny Halevy686841b2009-08-14 17:19:48 +03002973static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2974{
2975 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2976 "Remaining buffer length is %tu words.\n",
2977 func, xdr->end - xdr->p);
2978}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Trond Myklebust683b57b2006-06-09 09:34:22 -04002980static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Al Viro8687b632006-10-19 23:28:48 -07002982 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Benny Halevyc0eae662009-08-14 17:20:14 +03002984 p = xdr_inline_decode(xdr, 4);
2985 if (unlikely(!p))
2986 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002987 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002988 p = xdr_inline_decode(xdr, *len);
2989 if (unlikely(!p))
2990 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 *string = (char *)p;
2992 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002993out_overflow:
2994 print_overflow_msg(__func__, xdr);
2995 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
2998static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2999{
Al Viro8687b632006-10-19 23:28:48 -07003000 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Benny Halevyc0eae662009-08-14 17:20:14 +03003002 p = xdr_inline_decode(xdr, 8);
3003 if (unlikely(!p))
3004 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003005 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003006 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003007
Benny Halevyc0eae662009-08-14 17:20:14 +03003008 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3009 if (unlikely(!p))
3010 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 hdr->tag = (char *)p;
3012 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003013 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003014 if (unlikely(hdr->nops < 1))
3015 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003017out_overflow:
3018 print_overflow_msg(__func__, xdr);
3019 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020}
3021
3022static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3023{
Al Viro8687b632006-10-19 23:28:48 -07003024 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 uint32_t opnum;
3026 int32_t nfserr;
3027
Benny Halevyc0eae662009-08-14 17:20:14 +03003028 p = xdr_inline_decode(xdr, 8);
3029 if (unlikely(!p))
3030 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003031 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003033 dprintk("nfs: Server returned operation"
3034 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 opnum, expected);
3036 return -EIO;
3037 }
Benny Halevycccddf42009-08-14 17:20:19 +03003038 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03003040 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003042out_overflow:
3043 print_overflow_msg(__func__, xdr);
3044 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045}
3046
3047/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003048static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
Al Viro8687b632006-10-19 23:28:48 -07003050 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003051 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 char *str;
3053
Benny Halevyc0eae662009-08-14 17:20:14 +03003054 p = xdr_inline_decode(xdr, 12);
3055 if (likely(p))
3056 return decode_opaque_inline(xdr, &strlen, &str);
3057 print_overflow_msg(__func__, xdr);
3058 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
3060
3061static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3062{
Al Viro8687b632006-10-19 23:28:48 -07003063 uint32_t bmlen;
3064 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Benny Halevyc0eae662009-08-14 17:20:14 +03003066 p = xdr_inline_decode(xdr, 4);
3067 if (unlikely(!p))
3068 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003069 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Fred Isamandae100c2011-07-30 20:52:37 -04003071 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003072 p = xdr_inline_decode(xdr, (bmlen << 2));
3073 if (unlikely(!p))
3074 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003076 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003077 if (bmlen > 1) {
3078 bitmap[1] = be32_to_cpup(p++);
3079 if (bmlen > 2)
3080 bitmap[2] = be32_to_cpup(p);
3081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003084out_overflow:
3085 print_overflow_msg(__func__, xdr);
3086 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
3088
Al Viro8687b632006-10-19 23:28:48 -07003089static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
Al Viro8687b632006-10-19 23:28:48 -07003091 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Benny Halevyc0eae662009-08-14 17:20:14 +03003093 p = xdr_inline_decode(xdr, 4);
3094 if (unlikely(!p))
3095 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003096 *attrlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 *savep = xdr->p;
3098 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003099out_overflow:
3100 print_overflow_msg(__func__, xdr);
3101 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
3104static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3105{
3106 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003107 int ret;
3108 ret = decode_attr_bitmap(xdr, bitmask);
3109 if (unlikely(ret < 0))
3110 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3112 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003113 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3114 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3115 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 return 0;
3117}
3118
3119static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3120{
Al Viro8687b632006-10-19 23:28:48 -07003121 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003122 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124 *type = 0;
3125 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3126 return -EIO;
3127 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003128 p = xdr_inline_decode(xdr, 4);
3129 if (unlikely(!p))
3130 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003131 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003133 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return -EIO;
3135 }
3136 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003137 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003139 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003140 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003141out_overflow:
3142 print_overflow_msg(__func__, xdr);
3143 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145
Chuck Lever264e6352012-03-01 17:02:05 -05003146static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3147 uint32_t *bitmap, uint32_t *type)
3148{
3149 __be32 *p;
3150
3151 *type = 0;
3152 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3153 return -EIO;
3154 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3155 p = xdr_inline_decode(xdr, 4);
3156 if (unlikely(!p))
3157 goto out_overflow;
3158 *type = be32_to_cpup(p);
3159 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3160 }
3161 dprintk("%s: expire type=0x%x\n", __func__, *type);
3162 return 0;
3163out_overflow:
3164 print_overflow_msg(__func__, xdr);
3165 return -EIO;
3166}
3167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3169{
Al Viro8687b632006-10-19 23:28:48 -07003170 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003171 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173 *change = 0;
3174 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3175 return -EIO;
3176 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003177 p = xdr_inline_decode(xdr, 8);
3178 if (unlikely(!p))
3179 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003180 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003182 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003184 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003186 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003187out_overflow:
3188 print_overflow_msg(__func__, xdr);
3189 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190}
3191
3192static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3193{
Al Viro8687b632006-10-19 23:28:48 -07003194 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003195 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
3197 *size = 0;
3198 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3199 return -EIO;
3200 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003201 p = xdr_inline_decode(xdr, 8);
3202 if (unlikely(!p))
3203 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003204 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003206 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003208 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003209 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003210out_overflow:
3211 print_overflow_msg(__func__, xdr);
3212 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
3215static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3216{
Al Viro8687b632006-10-19 23:28:48 -07003217 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 *res = 0;
3220 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3221 return -EIO;
3222 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003223 p = xdr_inline_decode(xdr, 4);
3224 if (unlikely(!p))
3225 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003226 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3228 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003229 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003231out_overflow:
3232 print_overflow_msg(__func__, xdr);
3233 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234}
3235
3236static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3237{
Al Viro8687b632006-10-19 23:28:48 -07003238 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240 *res = 0;
3241 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3242 return -EIO;
3243 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003244 p = xdr_inline_decode(xdr, 4);
3245 if (unlikely(!p))
3246 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003247 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3249 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003250 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003252out_overflow:
3253 print_overflow_msg(__func__, xdr);
3254 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003257static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
Al Viro8687b632006-10-19 23:28:48 -07003259 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003260 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
3262 fsid->major = 0;
3263 fsid->minor = 0;
3264 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3265 return -EIO;
3266 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003267 p = xdr_inline_decode(xdr, 16);
3268 if (unlikely(!p))
3269 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003270 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003271 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003273 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003275 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 (unsigned long long)fsid->major,
3277 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003278 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003279out_overflow:
3280 print_overflow_msg(__func__, xdr);
3281 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
3284static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3285{
Al Viro8687b632006-10-19 23:28:48 -07003286 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 *res = 60;
3289 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3290 return -EIO;
3291 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003292 p = xdr_inline_decode(xdr, 4);
3293 if (unlikely(!p))
3294 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003295 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3297 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003298 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003300out_overflow:
3301 print_overflow_msg(__func__, xdr);
3302 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003305static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003306{
3307 __be32 *p;
3308
3309 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3310 return -EIO;
3311 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3312 p = xdr_inline_decode(xdr, 4);
3313 if (unlikely(!p))
3314 goto out_overflow;
3315 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003316 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003317 }
3318 return 0;
3319out_overflow:
3320 print_overflow_msg(__func__, xdr);
3321 return -EIO;
3322}
3323
3324static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3325{
3326 __be32 *p;
3327 int len;
3328
Trond Myklebust7ad07352010-10-23 15:34:20 -04003329 if (fh != NULL)
3330 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003331
3332 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3333 return -EIO;
3334 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3335 p = xdr_inline_decode(xdr, 4);
3336 if (unlikely(!p))
3337 goto out_overflow;
3338 len = be32_to_cpup(p);
3339 if (len > NFS4_FHSIZE)
3340 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003341 p = xdr_inline_decode(xdr, len);
3342 if (unlikely(!p))
3343 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003344 if (fh != NULL) {
3345 memcpy(fh->data, p, len);
3346 fh->size = len;
3347 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003348 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3349 }
3350 return 0;
3351out_overflow:
3352 print_overflow_msg(__func__, xdr);
3353 return -EIO;
3354}
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3357{
Al Viro8687b632006-10-19 23:28:48 -07003358 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
3360 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3361 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3362 return -EIO;
3363 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003364 p = xdr_inline_decode(xdr, 4);
3365 if (unlikely(!p))
3366 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003367 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3369 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003370 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003372out_overflow:
3373 print_overflow_msg(__func__, xdr);
3374 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375}
3376
3377static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3378{
Al Viro8687b632006-10-19 23:28:48 -07003379 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003380 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 *fileid = 0;
3383 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3384 return -EIO;
3385 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003386 p = xdr_inline_decode(xdr, 8);
3387 if (unlikely(!p))
3388 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003389 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003391 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003393 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003394 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003395out_overflow:
3396 print_overflow_msg(__func__, xdr);
3397 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398}
3399
Manoj Naik99baf622006-06-09 09:34:24 -04003400static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3401{
Al Viro8687b632006-10-19 23:28:48 -07003402 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003403 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003404
3405 *fileid = 0;
3406 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3407 return -EIO;
3408 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003409 p = xdr_inline_decode(xdr, 8);
3410 if (unlikely(!p))
3411 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003412 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003413 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003414 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003415 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003416 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003417 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003418out_overflow:
3419 print_overflow_msg(__func__, xdr);
3420 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003421}
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3424{
Al Viro8687b632006-10-19 23:28:48 -07003425 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 int status = 0;
3427
3428 *res = 0;
3429 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3430 return -EIO;
3431 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003432 p = xdr_inline_decode(xdr, 8);
3433 if (unlikely(!p))
3434 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003435 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3437 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003438 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003440out_overflow:
3441 print_overflow_msg(__func__, xdr);
3442 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
3445static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3446{
Al Viro8687b632006-10-19 23:28:48 -07003447 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 int status = 0;
3449
3450 *res = 0;
3451 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3452 return -EIO;
3453 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003454 p = xdr_inline_decode(xdr, 8);
3455 if (unlikely(!p))
3456 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003457 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3459 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003460 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003462out_overflow:
3463 print_overflow_msg(__func__, xdr);
3464 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
3467static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3468{
Al Viro8687b632006-10-19 23:28:48 -07003469 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 int status = 0;
3471
3472 *res = 0;
3473 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3474 return -EIO;
3475 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003476 p = xdr_inline_decode(xdr, 8);
3477 if (unlikely(!p))
3478 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003479 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3481 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003482 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003484out_overflow:
3485 print_overflow_msg(__func__, xdr);
3486 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487}
3488
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003489static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3490{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003491 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003492 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003493 int status = 0;
3494
Benny Halevyc0eae662009-08-14 17:20:14 +03003495 p = xdr_inline_decode(xdr, 4);
3496 if (unlikely(!p))
3497 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003498 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003499 if (n == 0)
3500 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003501 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003502 path->ncomponents = 0;
3503 while (path->ncomponents < n) {
3504 struct nfs4_string *component = &path->components[path->ncomponents];
3505 status = decode_opaque_inline(xdr, &component->len, &component->data);
3506 if (unlikely(status != 0))
3507 goto out_eio;
Chuck Lever02a29762012-03-01 17:00:31 -05003508 if (unlikely(nfs_debug & NFSDBG_XDR))
3509 pr_cont("%s%.*s ",
3510 (path->ncomponents != n ? "/ " : ""),
3511 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003512 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3513 path->ncomponents++;
3514 else {
3515 dprintk("cannot parse %d components in path\n", n);
3516 goto out_eio;
3517 }
3518 }
3519out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003520 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003521root_path:
3522/* a root pathname is sent as a zero component4 */
3523 path->ncomponents = 1;
3524 path->components[0].len=0;
3525 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003526 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003527 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003528out_eio:
3529 dprintk(" status %d", status);
3530 status = -EIO;
3531 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003532out_overflow:
3533 print_overflow_msg(__func__, xdr);
3534 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003535}
3536
3537static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003538{
3539 int n;
Al Viro8687b632006-10-19 23:28:48 -07003540 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003541 int status = -EIO;
3542
3543 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3544 goto out;
3545 status = 0;
3546 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3547 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003548 status = -EIO;
3549 /* Ignore borken servers that return unrequested attrs */
3550 if (unlikely(res == NULL))
3551 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003552 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003553 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003554 if (unlikely(status != 0))
3555 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003556 p = xdr_inline_decode(xdr, 4);
3557 if (unlikely(!p))
3558 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003559 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003560 if (n <= 0)
3561 goto out_eio;
3562 res->nlocations = 0;
3563 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003564 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003565 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003566
Benny Halevyc0eae662009-08-14 17:20:14 +03003567 p = xdr_inline_decode(xdr, 4);
3568 if (unlikely(!p))
3569 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003570 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003571
3572 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003573 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003574 while (loc->nservers < m) {
3575 struct nfs4_string *server = &loc->servers[loc->nservers];
3576 status = decode_opaque_inline(xdr, &server->len, &server->data);
3577 if (unlikely(status != 0))
3578 goto out_eio;
3579 dprintk("%s ", server->data);
3580 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3581 loc->nservers++;
3582 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003583 unsigned int i;
3584 dprintk("%s: using first %u of %u servers "
3585 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003586 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003587 NFS4_FS_LOCATION_MAXSERVERS,
3588 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003589 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003590 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003591 char *data;
3592 status = decode_opaque_inline(xdr, &len, &data);
3593 if (unlikely(status != 0))
3594 goto out_eio;
3595 }
3596 }
3597 }
3598 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003599 if (unlikely(status != 0))
3600 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003601 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003602 res->nlocations++;
3603 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003604 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003605 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003606out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003607 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003608 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003609out_overflow:
3610 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003611out_eio:
3612 status = -EIO;
3613 goto out;
3614}
3615
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3617{
Al Viro8687b632006-10-19 23:28:48 -07003618 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 int status = 0;
3620
3621 *res = 0;
3622 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3623 return -EIO;
3624 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003625 p = xdr_inline_decode(xdr, 8);
3626 if (unlikely(!p))
3627 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003628 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3630 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003631 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003633out_overflow:
3634 print_overflow_msg(__func__, xdr);
3635 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636}
3637
3638static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3639{
Al Viro8687b632006-10-19 23:28:48 -07003640 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 int status = 0;
3642
3643 *maxlink = 1;
3644 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3645 return -EIO;
3646 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003647 p = xdr_inline_decode(xdr, 4);
3648 if (unlikely(!p))
3649 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003650 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3652 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003653 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003655out_overflow:
3656 print_overflow_msg(__func__, xdr);
3657 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658}
3659
3660static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3661{
Al Viro8687b632006-10-19 23:28:48 -07003662 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 int status = 0;
3664
3665 *maxname = 1024;
3666 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3667 return -EIO;
3668 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003669 p = xdr_inline_decode(xdr, 4);
3670 if (unlikely(!p))
3671 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003672 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3674 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003675 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003677out_overflow:
3678 print_overflow_msg(__func__, xdr);
3679 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
3682static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3683{
Al Viro8687b632006-10-19 23:28:48 -07003684 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 int status = 0;
3686
3687 *res = 1024;
3688 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3689 return -EIO;
3690 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3691 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003692 p = xdr_inline_decode(xdr, 8);
3693 if (unlikely(!p))
3694 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003695 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 if (maxread > 0x7FFFFFFF)
3697 maxread = 0x7FFFFFFF;
3698 *res = (uint32_t)maxread;
3699 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3700 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003701 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003703out_overflow:
3704 print_overflow_msg(__func__, xdr);
3705 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
3708static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3709{
Al Viro8687b632006-10-19 23:28:48 -07003710 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 int status = 0;
3712
3713 *res = 1024;
3714 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3715 return -EIO;
3716 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3717 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003718 p = xdr_inline_decode(xdr, 8);
3719 if (unlikely(!p))
3720 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003721 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 if (maxwrite > 0x7FFFFFFF)
3723 maxwrite = 0x7FFFFFFF;
3724 *res = (uint32_t)maxwrite;
3725 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3726 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003727 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003729out_overflow:
3730 print_overflow_msg(__func__, xdr);
3731 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732}
3733
Trond Myklebustbca79472009-03-11 14:10:26 -04003734static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
Trond Myklebustbca79472009-03-11 14:10:26 -04003736 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003737 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003738 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 *mode = 0;
3741 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3742 return -EIO;
3743 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003744 p = xdr_inline_decode(xdr, 4);
3745 if (unlikely(!p))
3746 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003747 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003748 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003750 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003752 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003753 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003754out_overflow:
3755 print_overflow_msg(__func__, xdr);
3756 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757}
3758
3759static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3760{
Al Viro8687b632006-10-19 23:28:48 -07003761 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003762 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
3764 *nlink = 1;
3765 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3766 return -EIO;
3767 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003768 p = xdr_inline_decode(xdr, 4);
3769 if (unlikely(!p))
3770 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003771 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003773 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003775 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003776 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003777out_overflow:
3778 print_overflow_msg(__func__, xdr);
3779 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780}
3781
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003782static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003783 const struct nfs_server *server, uint32_t *uid,
3784 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Al Viro8687b632006-10-19 23:28:48 -07003786 uint32_t len;
3787 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003788 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
3790 *uid = -2;
3791 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3792 return -EIO;
3793 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003794 p = xdr_inline_decode(xdr, 4);
3795 if (unlikely(!p))
3796 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003797 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003798 p = xdr_inline_decode(xdr, len);
3799 if (unlikely(!p))
3800 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003801 if (owner_name != NULL) {
3802 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3803 if (owner_name->data != NULL) {
3804 owner_name->len = len;
3805 ret = NFS_ATTR_FATTR_OWNER_NAME;
3806 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003807 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003808 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003809 ret = NFS_ATTR_FATTR_OWNER;
3810 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003812 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003814 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003815 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3817 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003818 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003819 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003820out_overflow:
3821 print_overflow_msg(__func__, xdr);
3822 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003825static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003826 const struct nfs_server *server, uint32_t *gid,
3827 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Al Viro8687b632006-10-19 23:28:48 -07003829 uint32_t len;
3830 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003831 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832
3833 *gid = -2;
3834 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3835 return -EIO;
3836 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003837 p = xdr_inline_decode(xdr, 4);
3838 if (unlikely(!p))
3839 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003840 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003841 p = xdr_inline_decode(xdr, len);
3842 if (unlikely(!p))
3843 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003844 if (group_name != NULL) {
3845 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3846 if (group_name->data != NULL) {
3847 group_name->len = len;
3848 ret = NFS_ATTR_FATTR_GROUP_NAME;
3849 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003850 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003851 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003852 ret = NFS_ATTR_FATTR_GROUP;
3853 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003855 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003857 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003858 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3860 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003861 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003862 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003863out_overflow:
3864 print_overflow_msg(__func__, xdr);
3865 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866}
3867
3868static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3869{
Al Viro8687b632006-10-19 23:28:48 -07003870 uint32_t major = 0, minor = 0;
3871 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003872 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
3874 *rdev = MKDEV(0,0);
3875 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3876 return -EIO;
3877 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3878 dev_t tmp;
3879
Benny Halevyc0eae662009-08-14 17:20:14 +03003880 p = xdr_inline_decode(xdr, 8);
3881 if (unlikely(!p))
3882 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003883 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003884 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 tmp = MKDEV(major, minor);
3886 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3887 *rdev = tmp;
3888 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003889 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003891 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003892 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003893out_overflow:
3894 print_overflow_msg(__func__, xdr);
3895 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896}
3897
3898static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3899{
Al Viro8687b632006-10-19 23:28:48 -07003900 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 int status = 0;
3902
3903 *res = 0;
3904 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3905 return -EIO;
3906 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003907 p = xdr_inline_decode(xdr, 8);
3908 if (unlikely(!p))
3909 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003910 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3912 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003913 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003915out_overflow:
3916 print_overflow_msg(__func__, xdr);
3917 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
3920static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3921{
Al Viro8687b632006-10-19 23:28:48 -07003922 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 int status = 0;
3924
3925 *res = 0;
3926 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3927 return -EIO;
3928 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003929 p = xdr_inline_decode(xdr, 8);
3930 if (unlikely(!p))
3931 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003932 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3934 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003935 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003937out_overflow:
3938 print_overflow_msg(__func__, xdr);
3939 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
3942static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3943{
Al Viro8687b632006-10-19 23:28:48 -07003944 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 int status = 0;
3946
3947 *res = 0;
3948 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3949 return -EIO;
3950 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003951 p = xdr_inline_decode(xdr, 8);
3952 if (unlikely(!p))
3953 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003954 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3956 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003957 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003959out_overflow:
3960 print_overflow_msg(__func__, xdr);
3961 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962}
3963
3964static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3965{
Al Viro8687b632006-10-19 23:28:48 -07003966 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003967 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
3969 *used = 0;
3970 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3971 return -EIO;
3972 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003973 p = xdr_inline_decode(xdr, 8);
3974 if (unlikely(!p))
3975 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003976 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003978 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003980 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003982 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003983out_overflow:
3984 print_overflow_msg(__func__, xdr);
3985 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986}
3987
3988static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3989{
Al Viro8687b632006-10-19 23:28:48 -07003990 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 uint64_t sec;
3992 uint32_t nsec;
3993
Benny Halevyc0eae662009-08-14 17:20:14 +03003994 p = xdr_inline_decode(xdr, 12);
3995 if (unlikely(!p))
3996 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003997 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003998 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 time->tv_sec = (time_t)sec;
4000 time->tv_nsec = (long)nsec;
4001 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004002out_overflow:
4003 print_overflow_msg(__func__, xdr);
4004 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005}
4006
4007static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4008{
4009 int status = 0;
4010
4011 time->tv_sec = 0;
4012 time->tv_nsec = 0;
4013 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4014 return -EIO;
4015 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4016 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004017 if (status == 0)
4018 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4020 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004021 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 return status;
4023}
4024
4025static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4026{
4027 int status = 0;
4028
4029 time->tv_sec = 0;
4030 time->tv_nsec = 0;
4031 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4032 return -EIO;
4033 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4034 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004035 if (status == 0)
4036 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4038 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004039 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 return status;
4041}
4042
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004043static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4044 struct timespec *time)
4045{
4046 int status = 0;
4047
4048 time->tv_sec = 0;
4049 time->tv_nsec = 0;
4050 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4051 return -EIO;
4052 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4053 status = decode_attr_time(xdr, time);
4054 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4055 }
4056 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4057 (long)time->tv_nsec);
4058 return status;
4059}
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4062{
4063 int status = 0;
4064
4065 time->tv_sec = 0;
4066 time->tv_nsec = 0;
4067 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4068 return -EIO;
4069 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4070 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004071 if (status == 0)
4072 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4074 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004075 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 return status;
4077}
4078
Al Viro8687b632006-10-19 23:28:48 -07004079static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080{
4081 unsigned int attrwords = XDR_QUADLEN(attrlen);
4082 unsigned int nwords = xdr->p - savep;
4083
4084 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004085 dprintk("%s: server returned incorrect attribute length: "
4086 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004087 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 attrwords << 2,
4089 (attrwords < nwords) ? '<' : '>',
4090 nwords << 2);
4091 return -EIO;
4092 }
4093 return 0;
4094}
4095
4096static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4097{
Al Viro8687b632006-10-19 23:28:48 -07004098 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Benny Halevyc0eae662009-08-14 17:20:14 +03004100 p = xdr_inline_decode(xdr, 20);
4101 if (unlikely(!p))
4102 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004103 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004104 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004105 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004107out_overflow:
4108 print_overflow_msg(__func__, xdr);
4109 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110}
4111
4112static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
4113{
Al Viro8687b632006-10-19 23:28:48 -07004114 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 uint32_t supp, acc;
4116 int status;
4117
4118 status = decode_op_hdr(xdr, OP_ACCESS);
4119 if (status)
4120 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004121 p = xdr_inline_decode(xdr, 8);
4122 if (unlikely(!p))
4123 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004124 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004125 acc = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 access->supported = supp;
4127 access->access = acc;
4128 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004129out_overflow:
4130 print_overflow_msg(__func__, xdr);
4131 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132}
4133
Benny Halevy07d30432009-08-14 17:19:52 +03004134static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
Al Viro8687b632006-10-19 23:28:48 -07004136 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004137
4138 p = xdr_inline_decode(xdr, len);
4139 if (likely(p)) {
4140 memcpy(buf, p, len);
4141 return 0;
4142 }
4143 print_overflow_msg(__func__, xdr);
4144 return -EIO;
4145}
4146
4147static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4148{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004149 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
4152static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4153{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 int status;
4155
4156 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004157 if (status != -EIO)
4158 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004159 if (!status)
4160 status = decode_stateid(xdr, &res->stateid);
4161 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162}
4163
Benny Halevydb942bb2009-08-14 17:19:56 +03004164static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4165{
Chuck Levercd937102012-03-02 17:14:31 -05004166 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167}
4168
4169static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
4170{
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)
4175 status = decode_verifier(xdr, res->verf->verifier);
4176 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{
Al Viro8687b632006-10-19 23:28:48 -07004204 __be32 *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{
Al Viro8687b632006-10-19 23:28:48 -07004233 __be32 *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{
Al Viro8687b632006-10-19 23:28:48 -07004265 __be32 *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
Bryan Schumakerae42c702010-10-21 16:33:17 -04004287static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4288 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004289 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004290 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291{
Trond Myklebustbca79472009-03-11 14:10:26 -04004292 int status;
4293 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004294 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004295 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004297 status = decode_attr_type(xdr, bitmap, &type);
4298 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004300 fattr->mode = 0;
4301 if (status != 0) {
4302 fattr->mode |= nfs_type2fmt[type];
4303 fattr->valid |= status;
4304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004306 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4307 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004309 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004310
4311 status = decode_attr_size(xdr, bitmap, &fattr->size);
4312 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004314 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004315
4316 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4317 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004319 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004320
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004321 err = 0;
4322 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004323 if (status < 0)
4324 goto xdr_error;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004325 if (err == -NFS4ERR_WRONGSEC)
4326 nfs_fixup_secinfo_attributes(fattr, fh);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004327
4328 status = decode_attr_filehandle(xdr, bitmap, fh);
4329 if (status < 0)
4330 goto xdr_error;
4331
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004332 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4333 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004335 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004336
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004337 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004338 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004339 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004340 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004341
4342 status = decode_attr_mode(xdr, bitmap, &fmode);
4343 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004345 if (status != 0) {
4346 fattr->mode |= fmode;
4347 fattr->valid |= status;
4348 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004349
4350 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4351 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004353 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004354
Trond Myklebust6926afd2012-01-07 13:22:46 -05004355 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004356 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004358 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004359
Trond Myklebust6926afd2012-01-07 13:22:46 -05004360 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004361 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004363 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004364
4365 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4366 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004368 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004369
4370 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4371 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004373 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004374
4375 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4376 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004378 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004379
4380 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4381 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004383 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004384
4385 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4386 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004388 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004389
Trond Myklebust28331a42011-04-27 13:47:52 -04004390 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004391 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004392 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004393 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004394
Bryan Schumakerae42c702010-10-21 16:33:17 -04004395xdr_error:
4396 dprintk("%s: xdr returned %d\n", __func__, -status);
4397 return status;
4398}
4399
4400static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004401 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4402 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004403{
4404 __be32 *savep;
4405 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004406 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004407 int status;
4408
4409 status = decode_op_hdr(xdr, OP_GETATTR);
4410 if (status < 0)
4411 goto xdr_error;
4412
4413 status = decode_attr_bitmap(xdr, bitmap);
4414 if (status < 0)
4415 goto xdr_error;
4416
4417 status = decode_attr_length(xdr, &attrlen, &savep);
4418 if (status < 0)
4419 goto xdr_error;
4420
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004421 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004422 if (status < 0)
4423 goto xdr_error;
4424
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004425 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004427 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 return status;
4429}
4430
Bryan Schumakerae42c702010-10-21 16:33:17 -04004431static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004432 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004433{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004434 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
Andy Adamson504913f2010-10-20 00:17:57 -04004437/*
4438 * Decode potentially multiple layout types. Currently we only support
4439 * one layout driver per file system.
4440 */
4441static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4442 uint32_t *layouttype)
4443{
4444 uint32_t *p;
4445 int num;
4446
4447 p = xdr_inline_decode(xdr, 4);
4448 if (unlikely(!p))
4449 goto out_overflow;
4450 num = be32_to_cpup(p);
4451
4452 /* pNFS is not supported by the underlying file system */
4453 if (num == 0) {
4454 *layouttype = 0;
4455 return 0;
4456 }
4457 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004458 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4459 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004460
4461 /* Decode and set first layout type, move xdr->p past unused types */
4462 p = xdr_inline_decode(xdr, num * 4);
4463 if (unlikely(!p))
4464 goto out_overflow;
4465 *layouttype = be32_to_cpup(p);
4466 return 0;
4467out_overflow:
4468 print_overflow_msg(__func__, xdr);
4469 return -EIO;
4470}
4471
4472/*
4473 * The type of file system exported.
4474 * Note we must ensure that layouttype is set in any non-error case.
4475 */
4476static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4477 uint32_t *layouttype)
4478{
4479 int status = 0;
4480
4481 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4482 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4483 return -EIO;
4484 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4485 status = decode_first_pnfs_layout_type(xdr, layouttype);
4486 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4487 } else
4488 *layouttype = 0;
4489 return status;
4490}
4491
Fred Isamandae100c2011-07-30 20:52:37 -04004492/*
4493 * The prefered block size for layout directed io
4494 */
4495static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4496 uint32_t *res)
4497{
4498 __be32 *p;
4499
4500 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4501 *res = 0;
4502 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4503 p = xdr_inline_decode(xdr, 4);
4504 if (unlikely(!p)) {
4505 print_overflow_msg(__func__, xdr);
4506 return -EIO;
4507 }
4508 *res = be32_to_cpup(p);
4509 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4510 }
4511 return 0;
4512}
4513
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4515{
Al Viro8687b632006-10-19 23:28:48 -07004516 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004517 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 int status;
4519
4520 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4521 goto xdr_error;
4522 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4523 goto xdr_error;
4524 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4525 goto xdr_error;
4526
4527 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4528
4529 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4530 goto xdr_error;
4531 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4532 goto xdr_error;
4533 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4534 goto xdr_error;
4535 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4536 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4537 goto xdr_error;
4538 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004539 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4540 if (status != 0)
4541 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004542 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4543 if (status != 0)
4544 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004545 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4546 if (status)
4547 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
4549 status = verify_attr_len(xdr, savep, attrlen);
4550xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004551 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 return status;
4553}
4554
4555static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4556{
Al Viro8687b632006-10-19 23:28:48 -07004557 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 uint32_t len;
4559 int status;
4560
Trond Myklebust99367812007-07-17 21:52:41 -04004561 /* Zero handle first to allow comparisons */
4562 memset(fh, 0, sizeof(*fh));
4563
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 status = decode_op_hdr(xdr, OP_GETFH);
4565 if (status)
4566 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Benny Halevyc0eae662009-08-14 17:20:14 +03004568 p = xdr_inline_decode(xdr, 4);
4569 if (unlikely(!p))
4570 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004571 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 if (len > NFS4_FHSIZE)
4573 return -EIO;
4574 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004575 p = xdr_inline_decode(xdr, len);
4576 if (unlikely(!p))
4577 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004578 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004580out_overflow:
4581 print_overflow_msg(__func__, xdr);
4582 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583}
4584
4585static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4586{
4587 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 status = decode_op_hdr(xdr, OP_LINK);
4590 if (status)
4591 return status;
4592 return decode_change_info(xdr, cinfo);
4593}
4594
4595/*
4596 * We create the owner, so we know a proper owner.id length is 4.
4597 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004598static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004600 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004601 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004602 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004604 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004605 if (unlikely(!p))
4606 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004607 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004608 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004609 type = be32_to_cpup(p++); /* 4 byte read */
4610 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004611 fl->fl_start = (loff_t)offset;
4612 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4613 if (length == ~(uint64_t)0)
4614 fl->fl_end = OFFSET_MAX;
4615 fl->fl_type = F_WRLCK;
4616 if (type & 1)
4617 fl->fl_type = F_RDLCK;
4618 fl->fl_pid = 0;
4619 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004620 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4621 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4622 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004623 if (likely(p))
4624 return -NFS4ERR_DENIED;
4625out_overflow:
4626 print_overflow_msg(__func__, xdr);
4627 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628}
4629
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004630static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 int status;
4633
4634 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004635 if (status == -EIO)
4636 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004638 status = decode_stateid(xdr, &res->stateid);
4639 if (unlikely(status))
4640 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004642 status = decode_lock_denied(xdr, NULL);
4643 if (res->open_seqid != NULL)
4644 nfs_increment_open_seqid(status, res->open_seqid);
4645 nfs_increment_lock_seqid(status, res->lock_seqid);
4646out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 return status;
4648}
4649
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004650static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651{
4652 int status;
4653 status = decode_op_hdr(xdr, OP_LOCKT);
4654 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004655 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 return status;
4657}
4658
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004659static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 int status;
4662
4663 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004664 if (status != -EIO)
4665 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004666 if (status == 0)
4667 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 return status;
4669}
4670
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004671static int decode_release_lockowner(struct xdr_stream *xdr)
4672{
4673 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4674}
4675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676static int decode_lookup(struct xdr_stream *xdr)
4677{
4678 return decode_op_hdr(xdr, OP_LOOKUP);
4679}
4680
4681/* This is too sick! */
4682static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4683{
Andy Adamson05d564f2008-12-23 16:06:15 -05004684 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 uint32_t limit_type, nblocks, blocksize;
4686
Benny Halevyc0eae662009-08-14 17:20:14 +03004687 p = xdr_inline_decode(xdr, 12);
4688 if (unlikely(!p))
4689 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004690 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004692 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004693 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004694 break;
4695 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004696 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004697 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004698 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 }
4700 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004701out_overflow:
4702 print_overflow_msg(__func__, xdr);
4703 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704}
4705
4706static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4707{
Andy Adamson05d564f2008-12-23 16:06:15 -05004708 __be32 *p;
4709 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004710 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Benny Halevyc0eae662009-08-14 17:20:14 +03004712 p = xdr_inline_decode(xdr, 4);
4713 if (unlikely(!p))
4714 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004715 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4717 res->delegation_type = 0;
4718 return 0;
4719 }
Benny Halevy07d30432009-08-14 17:19:52 +03004720 status = decode_stateid(xdr, &res->delegation);
4721 if (unlikely(status))
4722 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004723 p = xdr_inline_decode(xdr, 4);
4724 if (unlikely(!p))
4725 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004726 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004727
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004729 case NFS4_OPEN_DELEGATE_READ:
4730 res->delegation_type = FMODE_READ;
4731 break;
4732 case NFS4_OPEN_DELEGATE_WRITE:
4733 res->delegation_type = FMODE_WRITE|FMODE_READ;
4734 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 return -EIO;
4736 }
David Howells7539bba2006-08-22 20:06:09 -04004737 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004738out_overflow:
4739 print_overflow_msg(__func__, xdr);
4740 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741}
4742
4743static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4744{
Andy Adamson05d564f2008-12-23 16:06:15 -05004745 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004746 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004747 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
Andy Adamson05d564f2008-12-23 16:06:15 -05004749 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004750 if (status != -EIO)
4751 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004752 if (!status)
4753 status = decode_stateid(xdr, &res->stateid);
4754 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004755 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Andy Adamson05d564f2008-12-23 16:06:15 -05004757 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758
Benny Halevyc0eae662009-08-14 17:20:14 +03004759 p = xdr_inline_decode(xdr, 8);
4760 if (unlikely(!p))
4761 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004762 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004763 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004764 if (bmlen > 10)
4765 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Benny Halevyc0eae662009-08-14 17:20:14 +03004767 p = xdr_inline_decode(xdr, bmlen << 2);
4768 if (unlikely(!p))
4769 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004770 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4771 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004772 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004773 for (; i < NFS4_BITMAP_SIZE; i++)
4774 res->attrset[i] = 0;
4775
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 return decode_delegation(xdr, res);
4777xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004778 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004780out_overflow:
4781 print_overflow_msg(__func__, xdr);
4782 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783}
4784
4785static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4786{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 int status;
4788
Andy Adamson05d564f2008-12-23 16:06:15 -05004789 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004790 if (status != -EIO)
4791 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004792 if (!status)
4793 status = decode_stateid(xdr, &res->stateid);
4794 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795}
4796
4797static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 int status;
4800
4801 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004802 if (status != -EIO)
4803 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004804 if (!status)
4805 status = decode_stateid(xdr, &res->stateid);
4806 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807}
4808
4809static int decode_putfh(struct xdr_stream *xdr)
4810{
4811 return decode_op_hdr(xdr, OP_PUTFH);
4812}
4813
4814static int decode_putrootfh(struct xdr_stream *xdr)
4815{
4816 return decode_op_hdr(xdr, OP_PUTROOTFH);
4817}
4818
4819static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4820{
4821 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07004822 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 uint32_t count, eof, recvd, hdrlen;
4824 int status;
4825
4826 status = decode_op_hdr(xdr, OP_READ);
4827 if (status)
4828 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004829 p = xdr_inline_decode(xdr, 8);
4830 if (unlikely(!p))
4831 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004832 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004833 count = be32_to_cpup(p);
Chuck Lever8111f372010-12-14 14:58:01 +00004834 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 recvd = req->rq_rcv_buf.len - hdrlen;
4836 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004837 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 "count %u > recvd %u\n", count, recvd);
4839 count = recvd;
4840 eof = 0;
4841 }
4842 xdr_read_pages(xdr, count);
4843 res->eof = eof;
4844 res->count = count;
4845 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004846out_overflow:
4847 print_overflow_msg(__func__, xdr);
4848 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849}
4850
4851static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4852{
4853 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004855 size_t hdrlen;
4856 u32 recvd, pglen = rcvbuf->page_len;
Chuck Leverbcecff72007-10-26 13:32:03 -04004857 int status;
Chuck Levercd937102012-03-02 17:14:31 -05004858 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004861 if (!status)
4862 status = decode_verifier(xdr, readdir->verifier.data);
4863 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 return status;
Chuck Levercd937102012-03-02 17:14:31 -05004865 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03004866 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05004867 __func__, verf[0], verf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Benny Halevydb942bb2009-08-14 17:19:56 +03004869 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 recvd = rcvbuf->len - hdrlen;
4871 if (pglen > recvd)
4872 pglen = recvd;
4873 xdr_read_pages(xdr, pglen);
4874
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004875
Trond Myklebustac396122010-11-15 20:26:22 -05004876 return pglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877}
4878
4879static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4880{
4881 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
4882 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004883 size_t hdrlen;
4884 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004885 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 int status;
4887
4888 status = decode_op_hdr(xdr, OP_READLINK);
4889 if (status)
4890 return status;
4891
4892 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004893 p = xdr_inline_decode(xdr, 4);
4894 if (unlikely(!p))
4895 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004896 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004898 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 return -ENAMETOOLONG;
4900 }
4901 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
4902 recvd = req->rq_rcv_buf.len - hdrlen;
4903 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004904 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 "count %u > recvd %u\n", len, recvd);
4906 return -EIO;
4907 }
4908 xdr_read_pages(xdr, len);
4909 /*
4910 * The XDR encode routine has set things up so that
4911 * the link text will be copied directly into the
4912 * buffer. We just have to do overflow-checking,
4913 * and and null-terminate the text (the VFS expects
4914 * null-termination).
4915 */
Chuck Leverb4687da2010-09-21 16:55:48 -04004916 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004918out_overflow:
4919 print_overflow_msg(__func__, xdr);
4920 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921}
4922
4923static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4924{
4925 int status;
4926
4927 status = decode_op_hdr(xdr, OP_REMOVE);
4928 if (status)
4929 goto out;
4930 status = decode_change_info(xdr, cinfo);
4931out:
4932 return status;
4933}
4934
4935static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
4936 struct nfs4_change_info *new_cinfo)
4937{
4938 int status;
4939
4940 status = decode_op_hdr(xdr, OP_RENAME);
4941 if (status)
4942 goto out;
4943 if ((status = decode_change_info(xdr, old_cinfo)))
4944 goto out;
4945 status = decode_change_info(xdr, new_cinfo);
4946out:
4947 return status;
4948}
4949
4950static int decode_renew(struct xdr_stream *xdr)
4951{
4952 return decode_op_hdr(xdr, OP_RENEW);
4953}
4954
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004955static int
4956decode_restorefh(struct xdr_stream *xdr)
4957{
4958 return decode_op_hdr(xdr, OP_RESTOREFH);
4959}
4960
J. Bruce Fields029d1052005-06-22 17:16:22 +00004961static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05004962 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00004963{
Andy Adamsonbf118a32011-12-07 11:55:27 -05004964 __be32 *savep, *bm_p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004965 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004966 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00004967 struct kvec *iov = req->rq_rcv_buf.head;
4968 int status;
4969
Andy Adamsonbf118a32011-12-07 11:55:27 -05004970 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004971 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4972 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05004973 bm_p = xdr->p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004974 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4975 goto out;
4976 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4977 goto out;
4978
4979 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
4980 return -EIO;
4981 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04004982 size_t hdrlen;
4983 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004984
Andy Adamsonbf118a32011-12-07 11:55:27 -05004985 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
4986 * are stored with the acl data to handle the problem of
4987 * variable length bitmaps.*/
4988 xdr->p = bm_p;
4989 res->acl_data_offset = be32_to_cpup(bm_p) + 2;
4990 res->acl_data_offset <<= 2;
4991
J. Bruce Fields029d1052005-06-22 17:16:22 +00004992 /* We ignore &savep and don't do consistency checks on
4993 * the attr length. Let userspace figure it out.... */
4994 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
Andy Adamsonbf118a32011-12-07 11:55:27 -05004995 attrlen += res->acl_data_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004996 recvd = req->rq_rcv_buf.len - hdrlen;
4997 if (attrlen > recvd) {
Andy Adamsonbf118a32011-12-07 11:55:27 -05004998 if (res->acl_flags & NFS4_ACL_LEN_REQUEST) {
4999 /* getxattr interface called with a NULL buf */
5000 res->acl_len = attrlen;
5001 goto out;
5002 }
5003 dprintk("NFS: acl reply: attrlen %u > recvd %u\n",
J. Bruce Fields029d1052005-06-22 17:16:22 +00005004 attrlen, recvd);
5005 return -EINVAL;
5006 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04005007 xdr_read_pages(xdr, attrlen);
Andy Adamsonbf118a32011-12-07 11:55:27 -05005008 res->acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005009 } else
5010 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005011
5012out:
5013 return status;
5014}
5015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016static int
5017decode_savefh(struct xdr_stream *xdr)
5018{
5019 return decode_op_hdr(xdr, OP_SAVEFH);
5020}
5021
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005022static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023{
Al Viro8687b632006-10-19 23:28:48 -07005024 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 uint32_t bmlen;
5026 int status;
5027
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 status = decode_op_hdr(xdr, OP_SETATTR);
5029 if (status)
5030 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005031 p = xdr_inline_decode(xdr, 4);
5032 if (unlikely(!p))
5033 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005034 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005035 p = xdr_inline_decode(xdr, bmlen << 2);
5036 if (likely(p))
5037 return 0;
5038out_overflow:
5039 print_overflow_msg(__func__, xdr);
5040 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041}
5042
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005043static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044{
Al Viro8687b632006-10-19 23:28:48 -07005045 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 uint32_t opnum;
5047 int32_t nfserr;
5048
Benny Halevyc0eae662009-08-14 17:20:14 +03005049 p = xdr_inline_decode(xdr, 8);
5050 if (unlikely(!p))
5051 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005052 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005054 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005055 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 return -EIO;
5057 }
Benny Halevycccddf42009-08-14 17:20:19 +03005058 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005060 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5061 if (unlikely(!p))
5062 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005063 p = xdr_decode_hyper(p, &res->clientid);
5064 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 } else if (nfserr == NFSERR_CLID_INUSE) {
5066 uint32_t len;
5067
5068 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005069 p = xdr_inline_decode(xdr, 4);
5070 if (unlikely(!p))
5071 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005072 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005073 p = xdr_inline_decode(xdr, len);
5074 if (unlikely(!p))
5075 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
5077 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005078 p = xdr_inline_decode(xdr, 4);
5079 if (unlikely(!p))
5080 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005081 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005082 p = xdr_inline_decode(xdr, len);
5083 if (unlikely(!p))
5084 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 return -NFSERR_CLID_INUSE;
5086 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005087 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005090out_overflow:
5091 print_overflow_msg(__func__, xdr);
5092 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093}
5094
5095static int decode_setclientid_confirm(struct xdr_stream *xdr)
5096{
5097 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5098}
5099
5100static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5101{
Al Viro8687b632006-10-19 23:28:48 -07005102 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 int status;
5104
5105 status = decode_op_hdr(xdr, OP_WRITE);
5106 if (status)
5107 return status;
5108
Benny Halevyc0eae662009-08-14 17:20:14 +03005109 p = xdr_inline_decode(xdr, 16);
5110 if (unlikely(!p))
5111 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005112 res->count = be32_to_cpup(p++);
5113 res->verf->committed = be32_to_cpup(p++);
Chuck Levercd937102012-03-02 17:14:31 -05005114 memcpy(res->verf->verifier, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005116out_overflow:
5117 print_overflow_msg(__func__, xdr);
5118 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119}
5120
5121static int decode_delegreturn(struct xdr_stream *xdr)
5122{
5123 return decode_op_hdr(xdr, OP_DELEGRETURN);
5124}
5125
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005126static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5127{
5128 __be32 *p;
5129
5130 p = xdr_inline_decode(xdr, 4);
5131 if (unlikely(!p))
5132 goto out_overflow;
5133 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5134 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5135 goto out_err;
5136
5137 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5138 if (unlikely(!p))
5139 goto out_overflow;
5140 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5141
5142 p = xdr_inline_decode(xdr, 8);
5143 if (unlikely(!p))
5144 goto out_overflow;
5145 flavor->gss.qop4 = be32_to_cpup(p++);
5146 flavor->gss.service = be32_to_cpup(p);
5147
5148 return 0;
5149
5150out_overflow:
5151 print_overflow_msg(__func__, xdr);
5152 return -EIO;
5153out_err:
5154 return -EINVAL;
5155}
5156
5157static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5158{
5159 struct nfs4_secinfo_flavor *sec_flavor;
5160 int status;
5161 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005162 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005163
5164 status = decode_op_hdr(xdr, OP_SECINFO);
Bryan Schumaker613e9012011-04-27 15:28:44 -04005165 if (status)
5166 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005167 p = xdr_inline_decode(xdr, 4);
5168 if (unlikely(!p))
5169 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005170
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005171 res->flavors->num_flavors = 0;
5172 num_flavors = be32_to_cpup(p);
5173
5174 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005175 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005176 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005177 break;
5178
5179 p = xdr_inline_decode(xdr, 4);
5180 if (unlikely(!p))
5181 goto out_overflow;
5182 sec_flavor->flavor = be32_to_cpup(p);
5183
5184 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005185 status = decode_secinfo_gss(xdr, sec_flavor);
5186 if (status)
5187 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005188 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005189 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005190 }
5191
Bryan Schumaker613e9012011-04-27 15:28:44 -04005192out:
5193 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005194out_overflow:
5195 print_overflow_msg(__func__, xdr);
5196 return -EIO;
5197}
5198
Benny Halevy99fe60d2009-04-01 09:22:29 -04005199#if defined(CONFIG_NFS_V4_1)
5200static int decode_exchange_id(struct xdr_stream *xdr,
5201 struct nfs41_exchange_id_res *res)
5202{
5203 __be32 *p;
5204 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005205 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005206 int status;
5207 struct nfs_client *clp = res->client;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005208 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005209
5210 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5211 if (status)
5212 return status;
5213
Benny Halevyc0eae662009-08-14 17:20:14 +03005214 p = xdr_inline_decode(xdr, 8);
5215 if (unlikely(!p))
5216 goto out_overflow;
Andy Adamson114f64b2011-03-09 13:13:45 -05005217 xdr_decode_hyper(p, &clp->cl_clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005218 p = xdr_inline_decode(xdr, 12);
5219 if (unlikely(!p))
5220 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005221 clp->cl_seqid = be32_to_cpup(p++);
5222 clp->cl_exchange_flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005223
5224 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005225 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005226 if (dummy != SP4_NONE)
5227 return -EIO;
5228
5229 /* Throw away minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005230 p = xdr_inline_decode(xdr, 8);
5231 if (unlikely(!p))
5232 goto out_overflow;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005233
5234 /* Throw away Major id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005235 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5236 if (unlikely(status))
5237 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005238
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005239 /* Save server_scope */
Benny Halevy2460ba52009-08-14 17:20:10 +03005240 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5241 if (unlikely(status))
5242 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005243
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005244 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5245 return -EIO;
5246
5247 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5248 res->server_scope->server_scope_sz = dummy;
5249
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005250 /* Implementation Id */
5251 p = xdr_inline_decode(xdr, 4);
5252 if (unlikely(!p))
5253 goto out_overflow;
5254 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005255
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005256 if (impl_id_count) {
5257 /* nii_domain */
5258 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5259 if (unlikely(status))
5260 return status;
5261 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5262 return -EIO;
5263 memcpy(res->impl_id->domain, dummy_str, dummy);
5264
5265 /* nii_name */
5266 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5267 if (unlikely(status))
5268 return status;
5269 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5270 return -EIO;
5271 memcpy(res->impl_id->name, dummy_str, dummy);
5272
5273 /* nii_date */
5274 p = xdr_inline_decode(xdr, 12);
5275 if (unlikely(!p))
5276 goto out_overflow;
5277 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5278 res->impl_id->date.nseconds = be32_to_cpup(p);
5279
5280 /* if there's more than one entry, ignore the rest */
5281 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005282 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005283out_overflow:
5284 print_overflow_msg(__func__, xdr);
5285 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005286}
Andy Adamsonfc931582009-04-01 09:22:31 -04005287
5288static int decode_chan_attrs(struct xdr_stream *xdr,
5289 struct nfs4_channel_attrs *attrs)
5290{
5291 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005292 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005293
Benny Halevyc0eae662009-08-14 17:20:14 +03005294 p = xdr_inline_decode(xdr, 28);
5295 if (unlikely(!p))
5296 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005297 val = be32_to_cpup(p++); /* headerpadsz */
5298 if (val)
5299 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005300 attrs->max_rqst_sz = be32_to_cpup(p++);
5301 attrs->max_resp_sz = be32_to_cpup(p++);
5302 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5303 attrs->max_ops = be32_to_cpup(p++);
5304 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005305 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005306 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005307 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5308 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005309 return -EINVAL;
5310 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005311 if (nr_attrs == 1) {
5312 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5313 if (unlikely(!p))
5314 goto out_overflow;
5315 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005316 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005317out_overflow:
5318 print_overflow_msg(__func__, xdr);
5319 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005320}
5321
Benny Halevye78291e2009-08-14 17:20:00 +03005322static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5323{
5324 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005325}
5326
5327static int decode_create_session(struct xdr_stream *xdr,
5328 struct nfs41_create_session_res *res)
5329{
5330 __be32 *p;
5331 int status;
5332 struct nfs_client *clp = res->client;
5333 struct nfs4_session *session = clp->cl_session;
5334
5335 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005336 if (!status)
5337 status = decode_sessionid(xdr, &session->sess_id);
5338 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005339 return status;
5340
Andy Adamsonfc931582009-04-01 09:22:31 -04005341 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005342 p = xdr_inline_decode(xdr, 8);
5343 if (unlikely(!p))
5344 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005345 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005346 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005347
5348 /* Channel attributes */
5349 status = decode_chan_attrs(xdr, &session->fc_attrs);
5350 if (!status)
5351 status = decode_chan_attrs(xdr, &session->bc_attrs);
5352 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005353out_overflow:
5354 print_overflow_msg(__func__, xdr);
5355 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005356}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005357
5358static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5359{
5360 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5361}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005362
5363static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5364{
5365 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5366}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005367#endif /* CONFIG_NFS_V4_1 */
5368
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005369static int decode_sequence(struct xdr_stream *xdr,
5370 struct nfs4_sequence_res *res,
5371 struct rpc_rqst *rqstp)
5372{
5373#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005374 struct nfs4_sessionid id;
5375 u32 dummy;
5376 int status;
5377 __be32 *p;
5378
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005379 if (!res->sr_session)
5380 return 0;
5381
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005382 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005383 if (!status)
5384 status = decode_sessionid(xdr, &id);
5385 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005386 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005387
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005388 /*
5389 * If the server returns different values for sessionID, slotID or
5390 * sequence number, the server is looney tunes.
5391 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005392 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005393
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005394 if (memcmp(id.data, res->sr_session->sess_id.data,
5395 NFS4_MAX_SESSIONID_LEN)) {
5396 dprintk("%s Invalid session id\n", __func__);
5397 goto out_err;
5398 }
Benny Halevye78291e2009-08-14 17:20:00 +03005399
Benny Halevyc0eae662009-08-14 17:20:14 +03005400 p = xdr_inline_decode(xdr, 20);
5401 if (unlikely(!p))
5402 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005403
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005404 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005405 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005406 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005407 dprintk("%s Invalid sequence number\n", __func__);
5408 goto out_err;
5409 }
5410 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005411 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005412 if (dummy != res->sr_slot - res->sr_session->fc_slot_table.slots) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005413 dprintk("%s Invalid slot id\n", __func__);
5414 goto out_err;
5415 }
5416 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005417 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005418 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005419 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005420 /* result flags */
5421 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005422 status = 0;
5423out_err:
5424 res->sr_status = status;
5425 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005426out_overflow:
5427 print_overflow_msg(__func__, xdr);
5428 status = -EIO;
5429 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005430#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005431 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005432#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005433}
5434
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005435#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005436/*
5437 * TODO: Need to handle case when EOF != true;
5438 */
5439static int decode_getdevicelist(struct xdr_stream *xdr,
5440 struct pnfs_devicelist *res)
5441{
5442 __be32 *p;
5443 int status, i;
5444 struct nfs_writeverf verftemp;
5445
5446 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5447 if (status)
5448 return status;
5449
5450 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5451 if (unlikely(!p))
5452 goto out_overflow;
5453
5454 /* TODO: Skip cookie for now */
5455 p += 2;
5456
5457 /* Read verifier */
Chuck Levercd937102012-03-02 17:14:31 -05005458 p = xdr_decode_opaque_fixed(p, verftemp.verifier, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005459
5460 res->num_devs = be32_to_cpup(p);
5461
5462 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5463
5464 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005465 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005466 __func__, res->num_devs);
5467 return -EIO;
5468 }
5469
5470 p = xdr_inline_decode(xdr,
5471 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5472 if (unlikely(!p))
5473 goto out_overflow;
5474 for (i = 0; i < res->num_devs; i++)
5475 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5476 NFS4_DEVICEID4_SIZE);
5477 res->eof = be32_to_cpup(p);
5478 return 0;
5479out_overflow:
5480 print_overflow_msg(__func__, xdr);
5481 return -EIO;
5482}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005483
5484static int decode_getdeviceinfo(struct xdr_stream *xdr,
5485 struct pnfs_device *pdev)
5486{
5487 __be32 *p;
5488 uint32_t len, type;
5489 int status;
5490
5491 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5492 if (status) {
5493 if (status == -ETOOSMALL) {
5494 p = xdr_inline_decode(xdr, 4);
5495 if (unlikely(!p))
5496 goto out_overflow;
5497 pdev->mincount = be32_to_cpup(p);
5498 dprintk("%s: Min count too small. mincnt = %u\n",
5499 __func__, pdev->mincount);
5500 }
5501 return status;
5502 }
5503
5504 p = xdr_inline_decode(xdr, 8);
5505 if (unlikely(!p))
5506 goto out_overflow;
5507 type = be32_to_cpup(p++);
5508 if (type != pdev->layout_type) {
5509 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5510 __func__, pdev->layout_type, type);
5511 return -EINVAL;
5512 }
5513 /*
5514 * Get the length of the opaque device_addr4. xdr_read_pages places
5515 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5516 * and places the remaining xdr data in xdr_buf->tail
5517 */
5518 pdev->mincount = be32_to_cpup(p);
5519 xdr_read_pages(xdr, pdev->mincount); /* include space for the length */
5520
5521 /* Parse notification bitmap, verifying that it is zero. */
5522 p = xdr_inline_decode(xdr, 4);
5523 if (unlikely(!p))
5524 goto out_overflow;
5525 len = be32_to_cpup(p);
5526 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005527 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005528
5529 p = xdr_inline_decode(xdr, 4 * len);
5530 if (unlikely(!p))
5531 goto out_overflow;
5532 for (i = 0; i < len; i++, p++) {
5533 if (be32_to_cpup(p)) {
5534 dprintk("%s: notifications not supported\n",
5535 __func__);
5536 return -EIO;
5537 }
5538 }
5539 }
5540 return 0;
5541out_overflow:
5542 print_overflow_msg(__func__, xdr);
5543 return -EIO;
5544}
5545
5546static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5547 struct nfs4_layoutget_res *res)
5548{
5549 __be32 *p;
5550 int status;
5551 u32 layout_count;
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005552 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
5553 struct kvec *iov = rcvbuf->head;
5554 u32 hdrlen, recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005555
5556 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5557 if (status)
5558 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005559 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005560 if (unlikely(!p))
5561 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005562 res->return_on_close = be32_to_cpup(p);
5563 decode_stateid(xdr, &res->stateid);
5564 p = xdr_inline_decode(xdr, 4);
5565 if (unlikely(!p))
5566 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005567 layout_count = be32_to_cpup(p);
5568 if (!layout_count) {
5569 dprintk("%s: server responded with empty layout array\n",
5570 __func__);
5571 return -EINVAL;
5572 }
5573
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005574 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005575 if (unlikely(!p))
5576 goto out_overflow;
5577 p = xdr_decode_hyper(p, &res->range.offset);
5578 p = xdr_decode_hyper(p, &res->range.length);
5579 res->range.iomode = be32_to_cpup(p++);
5580 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005581 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005582
5583 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5584 __func__,
5585 (unsigned long)res->range.offset,
5586 (unsigned long)res->range.length,
5587 res->range.iomode,
5588 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005589 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005590
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005591 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
5592 recvd = req->rq_rcv_buf.len - hdrlen;
5593 if (res->layoutp->len > recvd) {
5594 dprintk("NFS: server cheating in layoutget reply: "
5595 "layout len %u > recvd %u\n",
5596 res->layoutp->len, recvd);
5597 return -EINVAL;
5598 }
5599
5600 xdr_read_pages(xdr, res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005601
5602 if (layout_count > 1) {
5603 /* We only handle a length one array at the moment. Any
5604 * further entries are just ignored. Note that this means
5605 * the client may see a response that is less than the
5606 * minimum it requested.
5607 */
5608 dprintk("%s: server responded with %d layouts, dropping tail\n",
5609 __func__, layout_count);
5610 }
5611
5612 return 0;
5613out_overflow:
5614 print_overflow_msg(__func__, xdr);
5615 return -EIO;
5616}
Andy Adamson863a3c62011-03-23 13:27:54 +00005617
Benny Halevycbe82602011-05-22 19:52:37 +03005618static int decode_layoutreturn(struct xdr_stream *xdr,
5619 struct nfs4_layoutreturn_res *res)
5620{
5621 __be32 *p;
5622 int status;
5623
5624 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5625 if (status)
5626 return status;
5627 p = xdr_inline_decode(xdr, 4);
5628 if (unlikely(!p))
5629 goto out_overflow;
5630 res->lrs_present = be32_to_cpup(p);
5631 if (res->lrs_present)
5632 status = decode_stateid(xdr, &res->stateid);
5633 return status;
5634out_overflow:
5635 print_overflow_msg(__func__, xdr);
5636 return -EIO;
5637}
5638
Andy Adamson863a3c62011-03-23 13:27:54 +00005639static int decode_layoutcommit(struct xdr_stream *xdr,
5640 struct rpc_rqst *req,
5641 struct nfs4_layoutcommit_res *res)
5642{
5643 __be32 *p;
5644 __u32 sizechanged;
5645 int status;
5646
5647 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005648 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005649 if (status)
5650 return status;
5651
5652 p = xdr_inline_decode(xdr, 4);
5653 if (unlikely(!p))
5654 goto out_overflow;
5655 sizechanged = be32_to_cpup(p);
5656
5657 if (sizechanged) {
5658 /* throw away new size */
5659 p = xdr_inline_decode(xdr, 8);
5660 if (unlikely(!p))
5661 goto out_overflow;
5662 }
5663 return 0;
5664out_overflow:
5665 print_overflow_msg(__func__, xdr);
5666 return -EIO;
5667}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005668
5669static int decode_test_stateid(struct xdr_stream *xdr,
5670 struct nfs41_test_stateid_res *res)
5671{
5672 __be32 *p;
5673 int status;
5674 int num_res;
5675
5676 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5677 if (status)
5678 return status;
5679
5680 p = xdr_inline_decode(xdr, 4);
5681 if (unlikely(!p))
5682 goto out_overflow;
5683 num_res = be32_to_cpup(p++);
5684 if (num_res != 1)
5685 goto out;
5686
5687 p = xdr_inline_decode(xdr, 4);
5688 if (unlikely(!p))
5689 goto out_overflow;
5690 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005691
5692 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005693out_overflow:
5694 print_overflow_msg(__func__, xdr);
5695out:
5696 return -EIO;
5697}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005698
5699static int decode_free_stateid(struct xdr_stream *xdr,
5700 struct nfs41_free_stateid_res *res)
5701{
5702 __be32 *p;
5703 int status;
5704
5705 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5706 if (status)
5707 return status;
5708
5709 p = xdr_inline_decode(xdr, 4);
5710 if (unlikely(!p))
5711 goto out_overflow;
5712 res->status = be32_to_cpup(p++);
5713 return res->status;
5714out_overflow:
5715 print_overflow_msg(__func__, xdr);
5716 return -EIO;
5717}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005718#endif /* CONFIG_NFS_V4_1 */
5719
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720/*
Benny Halevy49c25592008-12-23 16:06:16 -05005721 * END OF "GENERIC" DECODE ROUTINES.
5722 */
5723
5724/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 * Decode OPEN_DOWNGRADE response
5726 */
Chuck Leverbf269552010-12-14 14:59:29 +00005727static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5728 struct xdr_stream *xdr,
5729 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730{
Andy Adamson05d564f2008-12-23 16:06:15 -05005731 struct compound_hdr hdr;
5732 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
Chuck Leverbf269552010-12-14 14:59:29 +00005734 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005735 if (status)
5736 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005737 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005738 if (status)
5739 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005740 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005741 if (status)
5742 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005743 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005744 if (status != 0)
5745 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005746 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005748 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749}
5750
5751/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752 * Decode ACCESS response
5753 */
Chuck Leverbf269552010-12-14 14:59:29 +00005754static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5755 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 struct compound_hdr hdr;
5758 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005759
Chuck Leverbf269552010-12-14 14:59:29 +00005760 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005761 if (status)
5762 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005763 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005764 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005766 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005767 if (status != 0)
5768 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005769 status = decode_access(xdr, res);
Trond Myklebust76b32992007-08-10 17:45:11 -04005770 if (status != 0)
5771 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005772 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773out:
5774 return status;
5775}
5776
5777/*
5778 * Decode LOOKUP response
5779 */
Chuck Leverbf269552010-12-14 14:59:29 +00005780static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5781 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 struct compound_hdr hdr;
5784 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005785
Chuck Leverbf269552010-12-14 14:59:29 +00005786 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005787 if (status)
5788 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005789 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005790 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005792 status = decode_putfh(xdr);
5793 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005795 status = decode_lookup(xdr);
5796 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005798 status = decode_getfh(xdr, res->fh);
5799 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005801 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802out:
5803 return status;
5804}
5805
5806/*
5807 * Decode LOOKUP_ROOT response
5808 */
Chuck Leverbf269552010-12-14 14:59:29 +00005809static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5810 struct xdr_stream *xdr,
5811 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 struct compound_hdr hdr;
5814 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005815
Chuck Leverbf269552010-12-14 14:59:29 +00005816 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005817 if (status)
5818 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005819 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005820 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005822 status = decode_putrootfh(xdr);
5823 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005825 status = decode_getfh(xdr, res->fh);
5826 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005827 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828out:
5829 return status;
5830}
5831
5832/*
5833 * Decode REMOVE response
5834 */
Chuck Leverbf269552010-12-14 14:59:29 +00005835static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5836 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838 struct compound_hdr hdr;
5839 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005840
Chuck Leverbf269552010-12-14 14:59:29 +00005841 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005842 if (status)
5843 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005844 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005845 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005847 status = decode_putfh(xdr);
5848 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005849 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005850 status = decode_remove(xdr, &res->cinfo);
5851 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005852 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005853 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854out:
5855 return status;
5856}
5857
5858/*
5859 * Decode RENAME response
5860 */
Chuck Leverbf269552010-12-14 14:59:29 +00005861static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5862 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 struct compound_hdr hdr;
5865 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005866
Chuck Leverbf269552010-12-14 14:59:29 +00005867 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005868 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005873 status = decode_putfh(xdr);
5874 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005876 status = decode_savefh(xdr);
5877 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005879 status = decode_putfh(xdr);
5880 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005882 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
5883 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005884 goto out;
5885 /* Current FH is target directory */
Trond Myklebust6926afd2012-01-07 13:22:46 -05005886 if (decode_getfattr(xdr, res->new_fattr, res->server))
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005887 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005888 status = decode_restorefh(xdr);
5889 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005890 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005891 decode_getfattr(xdr, res->old_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892out:
5893 return status;
5894}
5895
5896/*
5897 * Decode LINK response
5898 */
Chuck Leverbf269552010-12-14 14:59:29 +00005899static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5900 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902 struct compound_hdr hdr;
5903 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005904
Chuck Leverbf269552010-12-14 14:59:29 +00005905 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005906 if (status)
5907 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005908 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005909 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005911 status = decode_putfh(xdr);
5912 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005914 status = decode_savefh(xdr);
5915 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005917 status = decode_putfh(xdr);
5918 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005920 status = decode_link(xdr, &res->cinfo);
5921 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005922 goto out;
5923 /*
5924 * Note order: OP_LINK leaves the directory as the current
5925 * filehandle.
5926 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05005927 if (decode_getfattr(xdr, res->dir_attr, res->server))
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005928 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005929 status = decode_restorefh(xdr);
5930 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005931 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005932 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933out:
5934 return status;
5935}
5936
5937/*
5938 * Decode CREATE response
5939 */
Chuck Leverbf269552010-12-14 14:59:29 +00005940static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5941 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943 struct compound_hdr hdr;
5944 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005945
Chuck Leverbf269552010-12-14 14:59:29 +00005946 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005947 if (status)
5948 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005949 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005950 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005952 status = decode_putfh(xdr);
5953 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005955 status = decode_savefh(xdr);
5956 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005957 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005958 status = decode_create(xdr, &res->dir_cinfo);
5959 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005961 status = decode_getfh(xdr, res->fh);
5962 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005964 if (decode_getfattr(xdr, res->fattr, res->server))
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005965 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005966 status = decode_restorefh(xdr);
5967 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005968 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005969 decode_getfattr(xdr, res->dir_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970out:
5971 return status;
5972}
5973
5974/*
5975 * Decode SYMLINK response
5976 */
Chuck Leverbf269552010-12-14 14:59:29 +00005977static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5978 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979{
Chuck Leverbf269552010-12-14 14:59:29 +00005980 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981}
5982
5983/*
5984 * Decode GETATTR response
5985 */
Chuck Leverbf269552010-12-14 14:59:29 +00005986static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5987 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 struct compound_hdr hdr;
5990 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005991
Chuck Leverbf269552010-12-14 14:59:29 +00005992 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 if (status)
5994 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005995 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005996 if (status)
5997 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005998 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 if (status)
6000 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006001 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002out:
6003 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004}
6005
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006006/*
6007 * Encode an SETACL request
6008 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006009static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6010 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006011{
Andy Adamson05d564f2008-12-23 16:06:15 -05006012 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006013 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006014 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006015
Chuck Lever9f06c712010-12-14 14:59:18 +00006016 encode_compound_hdr(xdr, req, &hdr);
6017 encode_sequence(xdr, &args->seq_args, &hdr);
6018 encode_putfh(xdr, args->fh, &hdr);
6019 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006020 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006021}
Andy Adamson05d564f2008-12-23 16:06:15 -05006022
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006023/*
6024 * Decode SETACL response
6025 */
6026static int
Chuck Leverbf269552010-12-14 14:59:29 +00006027nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006028 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006029{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006030 struct compound_hdr hdr;
6031 int status;
6032
Chuck Leverbf269552010-12-14 14:59:29 +00006033 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006034 if (status)
6035 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006036 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006037 if (status)
6038 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006039 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006040 if (status)
6041 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006042 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006043out:
6044 return status;
6045}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
6047/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006048 * Decode GETACL response
6049 */
6050static int
Chuck Leverbf269552010-12-14 14:59:29 +00006051nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006052 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006053{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006054 struct compound_hdr hdr;
6055 int status;
6056
Trond Myklebust331818f2012-02-03 18:30:53 -05006057 if (res->acl_scratch != NULL) {
6058 void *p = page_address(res->acl_scratch);
6059 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6060 }
Chuck Leverbf269552010-12-14 14:59:29 +00006061 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006062 if (status)
6063 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006064 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006065 if (status)
6066 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006067 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006068 if (status)
6069 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006070 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006071
6072out:
6073 return status;
6074}
6075
6076/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 * Decode CLOSE response
6078 */
Chuck Leverbf269552010-12-14 14:59:29 +00006079static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6080 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081{
Andy Adamson05d564f2008-12-23 16:06:15 -05006082 struct compound_hdr hdr;
6083 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084
Chuck Leverbf269552010-12-14 14:59:29 +00006085 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006086 if (status)
6087 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006088 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006089 if (status)
6090 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006091 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006092 if (status)
6093 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006094 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006095 if (status != 0)
6096 goto out;
6097 /*
6098 * Note: Server may do delete on close for this file
6099 * in which case the getattr call will fail with
6100 * an ESTALE error. Shouldn't be a problem,
6101 * though, since fattr->valid will remain unset.
6102 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006103 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006105 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106}
6107
6108/*
6109 * Decode OPEN response
6110 */
Chuck Leverbf269552010-12-14 14:59:29 +00006111static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6112 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113{
Andy Adamson05d564f2008-12-23 16:06:15 -05006114 struct compound_hdr hdr;
6115 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116
Chuck Leverbf269552010-12-14 14:59:29 +00006117 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006118 if (status)
6119 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006120 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006121 if (status)
6122 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006123 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006124 if (status)
6125 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006126 status = decode_savefh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006127 if (status)
6128 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006129 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006130 if (status)
6131 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006132 if (decode_getfh(xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006134 if (decode_getfattr(xdr, res->f_attr, res->server) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006135 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006136 if (decode_restorefh(xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006137 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006138 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006140 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141}
6142
6143/*
6144 * Decode OPEN_CONFIRM response
6145 */
Chuck Leverbf269552010-12-14 14:59:29 +00006146static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6147 struct xdr_stream *xdr,
6148 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149{
Andy Adamson05d564f2008-12-23 16:06:15 -05006150 struct compound_hdr hdr;
6151 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152
Chuck Leverbf269552010-12-14 14:59:29 +00006153 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006154 if (status)
6155 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006156 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006157 if (status)
6158 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006159 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006161 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162}
6163
6164/*
6165 * Decode OPEN response
6166 */
Chuck Leverbf269552010-12-14 14:59:29 +00006167static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6168 struct xdr_stream *xdr,
6169 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170{
Andy Adamson05d564f2008-12-23 16:06:15 -05006171 struct compound_hdr hdr;
6172 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173
Chuck Leverbf269552010-12-14 14:59:29 +00006174 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006175 if (status)
6176 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006177 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006178 if (status)
6179 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006180 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006181 if (status)
6182 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006183 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006184 if (status)
6185 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006186 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006188 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189}
6190
6191/*
6192 * Decode SETATTR response
6193 */
Chuck Leverbf269552010-12-14 14:59:29 +00006194static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6195 struct xdr_stream *xdr,
6196 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197{
Andy Adamson05d564f2008-12-23 16:06:15 -05006198 struct compound_hdr hdr;
6199 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Chuck Leverbf269552010-12-14 14:59:29 +00006201 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006202 if (status)
6203 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006204 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006205 if (status)
6206 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006207 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006208 if (status)
6209 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006210 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006211 if (status)
6212 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006213 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006215 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216}
6217
6218/*
6219 * Decode LOCK response
6220 */
Chuck Leverbf269552010-12-14 14:59:29 +00006221static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6222 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 struct compound_hdr hdr;
6225 int status;
6226
Chuck Leverbf269552010-12-14 14:59:29 +00006227 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 if (status)
6229 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006230 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006231 if (status)
6232 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006233 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 if (status)
6235 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006236 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237out:
6238 return status;
6239}
6240
6241/*
6242 * Decode LOCKT response
6243 */
Chuck Leverbf269552010-12-14 14:59:29 +00006244static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6245 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247 struct compound_hdr hdr;
6248 int status;
6249
Chuck Leverbf269552010-12-14 14:59:29 +00006250 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 if (status)
6252 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006253 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006254 if (status)
6255 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006256 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257 if (status)
6258 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006259 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260out:
6261 return status;
6262}
6263
6264/*
6265 * Decode LOCKU response
6266 */
Chuck Leverbf269552010-12-14 14:59:29 +00006267static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6268 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270 struct compound_hdr hdr;
6271 int status;
6272
Chuck Leverbf269552010-12-14 14:59:29 +00006273 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274 if (status)
6275 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006276 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006277 if (status)
6278 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006279 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280 if (status)
6281 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006282 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283out:
6284 return status;
6285}
6286
Chuck Leverbf269552010-12-14 14:59:29 +00006287static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6288 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006289{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006290 struct compound_hdr hdr;
6291 int status;
6292
Chuck Leverbf269552010-12-14 14:59:29 +00006293 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006294 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006295 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006296 return status;
6297}
6298
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299/*
6300 * Decode READLINK response
6301 */
Chuck Leverbf269552010-12-14 14:59:29 +00006302static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6303 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006304 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306 struct compound_hdr hdr;
6307 int status;
6308
Chuck Leverbf269552010-12-14 14:59:29 +00006309 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310 if (status)
6311 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006312 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006313 if (status)
6314 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006315 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316 if (status)
6317 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006318 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319out:
6320 return status;
6321}
6322
6323/*
6324 * Decode READDIR response
6325 */
Chuck Leverbf269552010-12-14 14:59:29 +00006326static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6327 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329 struct compound_hdr hdr;
6330 int status;
6331
Chuck Leverbf269552010-12-14 14:59:29 +00006332 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333 if (status)
6334 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006335 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006336 if (status)
6337 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006338 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 if (status)
6340 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006341 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342out:
6343 return status;
6344}
6345
6346/*
6347 * Decode Read response
6348 */
Chuck Leverbf269552010-12-14 14:59:29 +00006349static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6350 struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352 struct compound_hdr hdr;
6353 int status;
6354
Chuck Leverbf269552010-12-14 14:59:29 +00006355 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 if (status)
6357 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006358 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006359 if (status)
6360 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006361 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 if (status)
6363 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006364 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365 if (!status)
6366 status = res->count;
6367out:
6368 return status;
6369}
6370
6371/*
6372 * Decode WRITE response
6373 */
Chuck Leverbf269552010-12-14 14:59:29 +00006374static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6375 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 struct compound_hdr hdr;
6378 int status;
6379
Chuck Leverbf269552010-12-14 14:59:29 +00006380 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 if (status)
6382 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006383 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006384 if (status)
6385 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006386 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387 if (status)
6388 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006389 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006390 if (status)
6391 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006392 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006393 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394 if (!status)
6395 status = res->count;
6396out:
6397 return status;
6398}
6399
6400/*
6401 * Decode COMMIT response
6402 */
Chuck Leverbf269552010-12-14 14:59:29 +00006403static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6404 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406 struct compound_hdr hdr;
6407 int status;
6408
Chuck Leverbf269552010-12-14 14:59:29 +00006409 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410 if (status)
6411 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006412 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006413 if (status)
6414 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006415 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 if (status)
6417 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006418 status = decode_commit(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006419 if (status)
6420 goto out;
Fred Isaman988b6dc2011-03-23 13:27:52 +00006421 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006422 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423out:
6424 return status;
6425}
6426
6427/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006428 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 */
Chuck Leverbf269552010-12-14 14:59:29 +00006430static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006431 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 struct compound_hdr hdr;
6434 int status;
6435
Chuck Leverbf269552010-12-14 14:59:29 +00006436 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006438 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006439 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006440 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006442 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443 return status;
6444}
6445
6446/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006447 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 */
Chuck Leverbf269552010-12-14 14:59:29 +00006449static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006450 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452 struct compound_hdr hdr;
6453 int status;
6454
Chuck Leverbf269552010-12-14 14:59:29 +00006455 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006457 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006458 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006459 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006461 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 return status;
6463}
6464
6465/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006466 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467 */
Chuck Leverbf269552010-12-14 14:59:29 +00006468static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006469 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 struct compound_hdr hdr;
6472 int status;
6473
Chuck Leverbf269552010-12-14 14:59:29 +00006474 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006476 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006477 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006478 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006480 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 return status;
6482}
6483
6484/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006485 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 */
Chuck Leverbf269552010-12-14 14:59:29 +00006487static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6488 struct xdr_stream *xdr,
6489 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 struct compound_hdr hdr;
6492 int status;
6493
Chuck Leverbf269552010-12-14 14:59:29 +00006494 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006495 if (status)
6496 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006497 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006498 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006500 status = decode_putfh(xdr);
6501 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006503 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504out:
6505 return status;
6506}
6507
6508/*
6509 * Decode RENEW response
6510 */
Chuck Leverbf269552010-12-14 14:59:29 +00006511static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6512 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514 struct compound_hdr hdr;
6515 int status;
6516
Chuck Leverbf269552010-12-14 14:59:29 +00006517 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006519 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520 return status;
6521}
6522
6523/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006524 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 */
Chuck Leverbf269552010-12-14 14:59:29 +00006526static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6527 struct xdr_stream *xdr,
6528 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 struct compound_hdr hdr;
6531 int status;
6532
Chuck Leverbf269552010-12-14 14:59:29 +00006533 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006535 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 return status;
6537}
6538
6539/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006540 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 */
Chuck Leverbf269552010-12-14 14:59:29 +00006542static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6543 struct xdr_stream *xdr,
6544 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546 struct compound_hdr hdr;
6547 int status;
6548
Chuck Leverbf269552010-12-14 14:59:29 +00006549 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006551 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006553 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006555 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556 return status;
6557}
6558
6559/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006560 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 */
Chuck Leverbf269552010-12-14 14:59:29 +00006562static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6563 struct xdr_stream *xdr,
6564 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 struct compound_hdr hdr;
6567 int status;
6568
Chuck Leverbf269552010-12-14 14:59:29 +00006569 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006570 if (status)
6571 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006572 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006573 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006574 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006575 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006576 if (status != 0)
6577 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006578 status = decode_delegreturn(xdr);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006579 if (status != 0)
6580 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006581 decode_getfattr(xdr, res->fattr, res->server);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006582out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 return status;
6584}
6585
Trond Myklebust683b57b2006-06-09 09:34:22 -04006586/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006587 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006588 */
Chuck Leverbf269552010-12-14 14:59:29 +00006589static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6590 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006591 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006592{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006593 struct compound_hdr hdr;
6594 int status;
6595
Chuck Leverbf269552010-12-14 14:59:29 +00006596 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006597 if (status)
6598 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006599 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006600 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006601 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006602 status = decode_putfh(xdr);
6603 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006604 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006605 status = decode_lookup(xdr);
6606 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006607 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006608 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006609 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6610 NULL, res->fs_locations,
6611 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006612out:
6613 return status;
6614}
6615
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006616/*
6617 * Decode SECINFO response
6618 */
6619static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6620 struct xdr_stream *xdr,
6621 struct nfs4_secinfo_res *res)
6622{
6623 struct compound_hdr hdr;
6624 int status;
6625
6626 status = decode_compound_hdr(xdr, &hdr);
6627 if (status)
6628 goto out;
6629 status = decode_sequence(xdr, &res->seq_res, rqstp);
6630 if (status)
6631 goto out;
6632 status = decode_putfh(xdr);
6633 if (status)
6634 goto out;
6635 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006636out:
6637 return status;
6638}
6639
Benny Halevy99fe60d2009-04-01 09:22:29 -04006640#if defined(CONFIG_NFS_V4_1)
6641/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006642 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006643 */
Chuck Leverbf269552010-12-14 14:59:29 +00006644static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6645 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006646 void *res)
6647{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006648 struct compound_hdr hdr;
6649 int status;
6650
Chuck Leverbf269552010-12-14 14:59:29 +00006651 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006652 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006653 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006654 return status;
6655}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006656
6657/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006658 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006659 */
Chuck Leverbf269552010-12-14 14:59:29 +00006660static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6661 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006662 struct nfs41_create_session_res *res)
6663{
Andy Adamsonfc931582009-04-01 09:22:31 -04006664 struct compound_hdr hdr;
6665 int status;
6666
Chuck Leverbf269552010-12-14 14:59:29 +00006667 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006668 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006669 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006670 return status;
6671}
6672
6673/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006674 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006675 */
Chuck Leverbf269552010-12-14 14:59:29 +00006676static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6677 struct xdr_stream *xdr,
6678 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006679{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006680 struct compound_hdr hdr;
6681 int status;
6682
Chuck Leverbf269552010-12-14 14:59:29 +00006683 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006684 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006685 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006686 return status;
6687}
6688
6689/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006690 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006691 */
Chuck Leverbf269552010-12-14 14:59:29 +00006692static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6693 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006694 struct nfs4_sequence_res *res)
6695{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006696 struct compound_hdr hdr;
6697 int status;
6698
Chuck Leverbf269552010-12-14 14:59:29 +00006699 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006700 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006701 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006702 return status;
6703}
6704
6705/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006706 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006707 */
Chuck Leverbf269552010-12-14 14:59:29 +00006708static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6709 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006710 struct nfs4_get_lease_time_res *res)
6711{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006712 struct compound_hdr hdr;
6713 int status;
6714
Chuck Leverbf269552010-12-14 14:59:29 +00006715 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006716 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006717 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006718 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006719 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006720 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006721 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006722 return status;
6723}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006724
6725/*
6726 * Decode RECLAIM_COMPLETE response
6727 */
Chuck Leverbf269552010-12-14 14:59:29 +00006728static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6729 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006730 struct nfs41_reclaim_complete_res *res)
6731{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006732 struct compound_hdr hdr;
6733 int status;
6734
Chuck Leverbf269552010-12-14 14:59:29 +00006735 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006736 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006737 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006738 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006739 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006740 return status;
6741}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006742
6743/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006744 * Decode GETDEVICELIST response
6745 */
6746static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6747 struct xdr_stream *xdr,
6748 struct nfs4_getdevicelist_res *res)
6749{
6750 struct compound_hdr hdr;
6751 int status;
6752
6753 dprintk("encoding getdevicelist!\n");
6754
6755 status = decode_compound_hdr(xdr, &hdr);
6756 if (status != 0)
6757 goto out;
6758 status = decode_sequence(xdr, &res->seq_res, rqstp);
6759 if (status != 0)
6760 goto out;
6761 status = decode_putfh(xdr);
6762 if (status != 0)
6763 goto out;
6764 status = decode_getdevicelist(xdr, res->devlist);
6765out:
6766 return status;
6767}
6768
6769/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006770 * Decode GETDEVINFO response
6771 */
Chuck Leverbf269552010-12-14 14:59:29 +00006772static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6773 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006774 struct nfs4_getdeviceinfo_res *res)
6775{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006776 struct compound_hdr hdr;
6777 int status;
6778
Chuck Leverbf269552010-12-14 14:59:29 +00006779 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006780 if (status != 0)
6781 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006782 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006783 if (status != 0)
6784 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006785 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006786out:
6787 return status;
6788}
6789
6790/*
6791 * Decode LAYOUTGET response
6792 */
Chuck Leverbf269552010-12-14 14:59:29 +00006793static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6794 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006795 struct nfs4_layoutget_res *res)
6796{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006797 struct compound_hdr hdr;
6798 int status;
6799
Chuck Leverbf269552010-12-14 14:59:29 +00006800 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006801 if (status)
6802 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006803 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006804 if (status)
6805 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006806 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006807 if (status)
6808 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006809 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006810out:
6811 return status;
6812}
Andy Adamson863a3c62011-03-23 13:27:54 +00006813
6814/*
Benny Halevycbe82602011-05-22 19:52:37 +03006815 * Decode LAYOUTRETURN response
6816 */
6817static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6818 struct xdr_stream *xdr,
6819 struct nfs4_layoutreturn_res *res)
6820{
6821 struct compound_hdr hdr;
6822 int status;
6823
6824 status = decode_compound_hdr(xdr, &hdr);
6825 if (status)
6826 goto out;
6827 status = decode_sequence(xdr, &res->seq_res, rqstp);
6828 if (status)
6829 goto out;
6830 status = decode_putfh(xdr);
6831 if (status)
6832 goto out;
6833 status = decode_layoutreturn(xdr, res);
6834out:
6835 return status;
6836}
6837
6838/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006839 * Decode LAYOUTCOMMIT response
6840 */
6841static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6842 struct xdr_stream *xdr,
6843 struct nfs4_layoutcommit_res *res)
6844{
6845 struct compound_hdr hdr;
6846 int status;
6847
6848 status = decode_compound_hdr(xdr, &hdr);
6849 if (status)
6850 goto out;
6851 status = decode_sequence(xdr, &res->seq_res, rqstp);
6852 if (status)
6853 goto out;
6854 status = decode_putfh(xdr);
6855 if (status)
6856 goto out;
6857 status = decode_layoutcommit(xdr, rqstp, res);
6858 if (status)
6859 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006860 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00006861out:
6862 return status;
6863}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006864
6865/*
6866 * Decode SECINFO_NO_NAME response
6867 */
6868static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
6869 struct xdr_stream *xdr,
6870 struct nfs4_secinfo_res *res)
6871{
6872 struct compound_hdr hdr;
6873 int status;
6874
6875 status = decode_compound_hdr(xdr, &hdr);
6876 if (status)
6877 goto out;
6878 status = decode_sequence(xdr, &res->seq_res, rqstp);
6879 if (status)
6880 goto out;
6881 status = decode_putrootfh(xdr);
6882 if (status)
6883 goto out;
6884 status = decode_secinfo(xdr, res);
6885out:
6886 return status;
6887}
Bryan Schumaker7d974792011-06-02 14:59:08 -04006888
6889/*
6890 * Decode TEST_STATEID response
6891 */
6892static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
6893 struct xdr_stream *xdr,
6894 struct nfs41_test_stateid_res *res)
6895{
6896 struct compound_hdr hdr;
6897 int status;
6898
6899 status = decode_compound_hdr(xdr, &hdr);
6900 if (status)
6901 goto out;
6902 status = decode_sequence(xdr, &res->seq_res, rqstp);
6903 if (status)
6904 goto out;
6905 status = decode_test_stateid(xdr, res);
6906out:
6907 return status;
6908}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006909
6910/*
6911 * Decode FREE_STATEID response
6912 */
6913static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
6914 struct xdr_stream *xdr,
6915 struct nfs41_free_stateid_res *res)
6916{
6917 struct compound_hdr hdr;
6918 int status;
6919
6920 status = decode_compound_hdr(xdr, &hdr);
6921 if (status)
6922 goto out;
6923 status = decode_sequence(xdr, &res->seq_res, rqstp);
6924 if (status)
6925 goto out;
6926 status = decode_free_stateid(xdr, res);
6927out:
6928 return status;
6929}
Benny Halevy99fe60d2009-04-01 09:22:29 -04006930#endif /* CONFIG_NFS_V4_1 */
6931
Chuck Lever573c4e12010-12-14 14:58:11 +00006932/**
6933 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
6934 * the local page cache.
6935 * @xdr: XDR stream where entry resides
6936 * @entry: buffer to fill in with entry data
6937 * @plus: boolean indicating whether this should be a readdirplus entry
6938 *
6939 * Returns zero if successful, otherwise a negative errno value is
6940 * returned.
6941 *
6942 * This function is not invoked during READDIR reply decoding, but
6943 * rather whenever an application invokes the getdents(2) system call
6944 * on a directory already in our cache.
6945 */
6946int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
6947 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948{
Fred Isamandae100c2011-07-30 20:52:37 -04006949 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006951 __be32 *p = xdr_inline_decode(xdr, 4);
6952 if (unlikely(!p))
6953 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05006954 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006955 p = xdr_inline_decode(xdr, 4);
6956 if (unlikely(!p))
6957 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05006958 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00006959 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00006961 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962 }
6963
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006964 p = xdr_inline_decode(xdr, 12);
6965 if (unlikely(!p))
6966 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967 entry->prev_cookie = entry->cookie;
6968 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05006969 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006970
Trond Myklebust9af8c222010-10-24 11:52:55 -04006971 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006972 if (unlikely(!p))
6973 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
6976 /*
6977 * In case the server doesn't return an inode number,
6978 * we fake one here. (We don't use inode number 0,
6979 * since glibc seems to choke on it...)
6980 */
6981 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04006982 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
Trond Myklebust9af8c222010-10-24 11:52:55 -04006984 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006985 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04006986
6987 if (decode_attr_length(xdr, &len, &p) < 0)
6988 goto out_overflow;
6989
Chuck Lever573c4e12010-12-14 14:58:11 +00006990 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006991 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04006992 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04006993 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
6994 entry->ino = entry->fattr->mounted_on_fileid;
6995 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04006996 entry->ino = entry->fattr->fileid;
6997
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05006998 entry->d_type = DT_UNKNOWN;
6999 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7000 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7001
Chuck Lever573c4e12010-12-14 14:58:11 +00007002 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007003
7004out_overflow:
7005 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007006 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007}
7008
7009/*
7010 * We need to translate between nfs status return values and
7011 * the local errno values which may not be the same.
7012 */
7013static struct {
7014 int stat;
7015 int errno;
7016} nfs_errtbl[] = {
7017 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007018 { NFS4ERR_PERM, -EPERM },
7019 { NFS4ERR_NOENT, -ENOENT },
7020 { NFS4ERR_IO, -errno_NFSERR_IO},
7021 { NFS4ERR_NXIO, -ENXIO },
7022 { NFS4ERR_ACCESS, -EACCES },
7023 { NFS4ERR_EXIST, -EEXIST },
7024 { NFS4ERR_XDEV, -EXDEV },
7025 { NFS4ERR_NOTDIR, -ENOTDIR },
7026 { NFS4ERR_ISDIR, -EISDIR },
7027 { NFS4ERR_INVAL, -EINVAL },
7028 { NFS4ERR_FBIG, -EFBIG },
7029 { NFS4ERR_NOSPC, -ENOSPC },
7030 { NFS4ERR_ROFS, -EROFS },
7031 { NFS4ERR_MLINK, -EMLINK },
7032 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7033 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7034 { NFS4ERR_DQUOT, -EDQUOT },
7035 { NFS4ERR_STALE, -ESTALE },
7036 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007037 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7038 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7039 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007040 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007041 { NFS4ERR_BADTYPE, -EBADTYPE },
7042 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007043 { NFS4ERR_SYMLINK, -ELOOP },
7044 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7045 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007046 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047};
7048
7049/*
7050 * Convert an NFS error code to a local one.
7051 * This one is used jointly by NFSv2 and NFSv3.
7052 */
7053static int
David Howells0a8ea432006-08-22 20:06:08 -04007054nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055{
7056 int i;
7057 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7058 if (nfs_errtbl[i].stat == stat)
7059 return nfs_errtbl[i].errno;
7060 }
7061 if (stat <= 10000 || stat > 10100) {
7062 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007063 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064 }
7065 /* If we cannot translate the error, the recovery routines should
7066 * handle it.
7067 * Note: remaining NFSv4 error codes have values > 10000, so should
7068 * not conflict with native Linux error codes.
7069 */
Benny Halevy856dff32008-03-31 17:39:06 +03007070 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071}
7072
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073#define PROC(proc, argtype, restype) \
7074[NFSPROC4_CLNT_##proc] = { \
7075 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007076 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007077 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007078 .p_arglen = NFS4_##argtype##_sz, \
7079 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007080 .p_statidx = NFSPROC4_CLNT_##proc, \
7081 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083
7084struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007085 PROC(READ, enc_read, dec_read),
7086 PROC(WRITE, enc_write, dec_write),
7087 PROC(COMMIT, enc_commit, dec_commit),
7088 PROC(OPEN, enc_open, dec_open),
7089 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7090 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7091 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7092 PROC(CLOSE, enc_close, dec_close),
7093 PROC(SETATTR, enc_setattr, dec_setattr),
7094 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7095 PROC(RENEW, enc_renew, dec_renew),
7096 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7097 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7098 PROC(LOCK, enc_lock, dec_lock),
7099 PROC(LOCKT, enc_lockt, dec_lockt),
7100 PROC(LOCKU, enc_locku, dec_locku),
7101 PROC(ACCESS, enc_access, dec_access),
7102 PROC(GETATTR, enc_getattr, dec_getattr),
7103 PROC(LOOKUP, enc_lookup, dec_lookup),
7104 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7105 PROC(REMOVE, enc_remove, dec_remove),
7106 PROC(RENAME, enc_rename, dec_rename),
7107 PROC(LINK, enc_link, dec_link),
7108 PROC(SYMLINK, enc_symlink, dec_symlink),
7109 PROC(CREATE, enc_create, dec_create),
7110 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7111 PROC(STATFS, enc_statfs, dec_statfs),
7112 PROC(READLINK, enc_readlink, dec_readlink),
7113 PROC(READDIR, enc_readdir, dec_readdir),
7114 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7115 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7116 PROC(GETACL, enc_getacl, dec_getacl),
7117 PROC(SETACL, enc_setacl, dec_setacl),
7118 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7119 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007120 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007121#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007122 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7123 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7124 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7125 PROC(SEQUENCE, enc_sequence, dec_sequence),
7126 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7127 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7128 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7129 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007130 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007131 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007132 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007133 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007134 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007135 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007136#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137};
7138
Trond Myklebusta613fa12012-01-20 13:53:56 -05007139const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007141 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 .procs = nfs4_procedures
7143};
7144
7145/*
7146 * Local variables:
7147 * c-basic-offset: 8
7148 * End:
7149 */