blob: c74fdb114b48af141a719d1facd11ed249c5f5d1 [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
Trond Myklebustff2eb682012-03-05 11:40:12 -0500912static void encode_uint64(struct xdr_stream *xdr, u64 n)
913{
914 __be32 *p;
915
916 p = reserve_space(xdr, 8);
917 xdr_encode_hyper(p, n);
918}
919
Trond Myklebust4ade9822012-03-04 18:13:57 -0500920static void encode_nfs4_seqid(struct xdr_stream *xdr,
921 const struct nfs_seqid *seqid)
922{
923 encode_uint32(xdr, seqid->sequence->counter);
924}
925
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400926static void encode_compound_hdr(struct xdr_stream *xdr,
927 struct rpc_rqst *req,
928 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Al Viro8687b632006-10-19 23:28:48 -0700930 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400931 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400932
933 /* initialize running count of expected bytes in reply.
934 * NOTE: the replied tag SHOULD be the same is the one sent,
935 * but this is not required as a MUST for the server to do so. */
936 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500939 encode_string(xdr, hdr->taglen, hdr->tag);
940 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300941 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500942 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300943 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500944}
945
Trond Myklebustab19b482012-03-04 18:13:57 -0500946static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
947 uint32_t replen,
948 struct compound_hdr *hdr)
949{
950 encode_uint32(xdr, op);
951 hdr->nops++;
952 hdr->replen += replen;
953}
954
Andy Adamsond0179312008-12-23 16:06:17 -0500955static void encode_nops(struct compound_hdr *hdr)
956{
Andy Adamsonfc931582009-04-01 09:22:31 -0400957 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500958 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500961static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
962{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500963 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500964}
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
967{
Trond Myklebustcb17e552012-03-04 18:13:56 -0500968 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500971static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 char owner_name[IDMAP_NAMESZ];
974 char owner_group[IDMAP_NAMESZ];
975 int owner_namelen = 0;
976 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700977 __be32 *p;
978 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int len;
980 uint32_t bmval0 = 0;
981 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /*
984 * We reserve enough space to write the entire attribute buffer at once.
985 * In the worst-case, this would be
986 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
987 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000988 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
990 len = 16;
991
992 /* Sigh */
993 if (iap->ia_valid & ATTR_SIZE)
994 len += 8;
995 if (iap->ia_valid & ATTR_MODE)
996 len += 4;
997 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800998 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001000 dprintk("nfs: couldn't resolve uid %d to string\n",
1001 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* XXX */
1003 strcpy(owner_name, "nobody");
1004 owner_namelen = sizeof("nobody") - 1;
1005 /* goto out; */
1006 }
1007 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1008 }
1009 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08001010 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04001012 dprintk("nfs: couldn't resolve gid %d to string\n",
1013 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 strcpy(owner_group, "nobody");
1015 owner_grouplen = sizeof("nobody") - 1;
1016 /* goto out; */
1017 }
1018 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1019 }
1020 if (iap->ia_valid & ATTR_ATIME_SET)
1021 len += 16;
1022 else if (iap->ia_valid & ATTR_ATIME)
1023 len += 4;
1024 if (iap->ia_valid & ATTR_MTIME_SET)
1025 len += 16;
1026 else if (iap->ia_valid & ATTR_MTIME)
1027 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001028 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 /*
1031 * We write the bitmap length now, but leave the bitmap and the attribute
1032 * buffer length to be backfilled at the end of this routine.
1033 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001034 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 q = p;
1036 p += 3;
1037
1038 if (iap->ia_valid & ATTR_SIZE) {
1039 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +03001040 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042 if (iap->ia_valid & ATTR_MODE) {
1043 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001044 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 if (iap->ia_valid & ATTR_UID) {
1047 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +03001048 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050 if (iap->ia_valid & ATTR_GID) {
1051 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +03001052 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054 if (iap->ia_valid & ATTR_ATIME_SET) {
1055 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001056 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1057 *p++ = cpu_to_be32(0);
Trond Myklebustd3f6baa2010-06-22 08:52:39 -04001058 *p++ = cpu_to_be32(iap->ia_atime.tv_sec);
1059 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061 else if (iap->ia_valid & ATTR_ATIME) {
1062 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001063 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065 if (iap->ia_valid & ATTR_MTIME_SET) {
1066 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001067 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1068 *p++ = cpu_to_be32(0);
1069 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
1070 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072 else if (iap->ia_valid & ATTR_MTIME) {
1073 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001074 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /*
1078 * Now we backfill the bitmap and the attribute buffer length.
1079 */
1080 if (len != ((char *)p - (char *)q) + 4) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -05001081 printk(KERN_ERR "NFS: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 len, ((char *)p - (char *)q) + 4);
1083 BUG();
1084 }
1085 len = (char *)p - (char *)q - 12;
1086 *q++ = htonl(bmval0);
1087 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +03001088 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001093static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001095 encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1096 encode_uint32(xdr, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001099static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Trond Myklebustab19b482012-03-04 18:13:57 -05001101 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001102 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001103 encode_nfs4_stateid(xdr, arg->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001106static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Al Viro8687b632006-10-19 23:28:48 -07001108 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001109
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001110 encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1111 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001112 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001113 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001116static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Al Viro8687b632006-10-19 23:28:48 -07001118 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001119
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001120 encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1121 encode_uint32(xdr, 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 Adamsoncf8cdbe2008-12-23 16:06:18 -05001141 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001144static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Andy Adamson05d564f2008-12-23 16:06:15 -05001146 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001148 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1149 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001150 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001151 *p = cpu_to_be32(bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001154static 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 -07001155{
Andy Adamson05d564f2008-12-23 16:06:15 -05001156 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001158 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1159 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001160 *p++ = cpu_to_be32(2);
1161 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001162 *p = cpu_to_be32(bm1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
Fred Isamandae100c2011-07-30 20:52:37 -04001165static void
1166encode_getattr_three(struct xdr_stream *xdr,
1167 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1168 struct compound_hdr *hdr)
1169{
1170 __be32 *p;
1171
Trond Myklebustab19b482012-03-04 18:13:57 -05001172 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
Fred Isamandae100c2011-07-30 20:52:37 -04001173 if (bm2) {
1174 p = reserve_space(xdr, 16);
1175 *p++ = cpu_to_be32(3);
1176 *p++ = cpu_to_be32(bm0);
1177 *p++ = cpu_to_be32(bm1);
1178 *p = cpu_to_be32(bm2);
1179 } else if (bm1) {
1180 p = reserve_space(xdr, 12);
1181 *p++ = cpu_to_be32(2);
1182 *p++ = cpu_to_be32(bm0);
1183 *p = cpu_to_be32(bm1);
1184 } else {
1185 p = reserve_space(xdr, 8);
1186 *p++ = cpu_to_be32(1);
1187 *p = cpu_to_be32(bm0);
1188 }
Fred Isamandae100c2011-07-30 20:52:37 -04001189}
1190
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001191static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001193 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1194 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001197static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Fred Isamandae100c2011-07-30 20:52:37 -04001199 encode_getattr_three(xdr,
1200 bitmask[0] & nfs4_fsinfo_bitmap[0],
1201 bitmask[1] & nfs4_fsinfo_bitmap[1],
1202 bitmask[2] & nfs4_fsinfo_bitmap[2],
1203 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001206static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001207{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001208 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1209 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001210}
1211
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001212static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Trond Myklebustab19b482012-03-04 18:13:57 -05001214 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001217static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Trond Myklebustab19b482012-03-04 18:13:57 -05001219 encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001220 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001223static inline int nfs4_lock_type(struct file_lock *fl, int block)
1224{
1225 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
1226 return block ? NFS4_READW_LT : NFS4_READ_LT;
1227 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1228}
1229
1230static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1231{
1232 if (fl->fl_end == OFFSET_MAX)
1233 return ~(uint64_t)0;
1234 return fl->fl_end - fl->fl_start + 1;
1235}
1236
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001237static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1238{
1239 __be32 *p;
1240
Trond Myklebustd035c362010-12-21 10:45:27 -05001241 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001242 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001243 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001244 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001245 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001246 xdr_encode_hyper(p, lowner->id);
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/*
1250 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1251 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1252 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001253static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Al Viro8687b632006-10-19 23:28:48 -07001255 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001257 encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1258 p = reserve_space(xdr, 28);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001259 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1260 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001261 p = xdr_encode_hyper(p, args->fl->fl_start);
1262 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001263 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001264 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001265 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001266 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001267 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001268 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001271 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001272 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001276static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Al Viro8687b632006-10-19 23:28:48 -07001278 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001280 encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1281 p = reserve_space(xdr, 20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001282 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001283 p = xdr_encode_hyper(p, args->fl->fl_start);
1284 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001285 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001288static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Al Viro8687b632006-10-19 23:28:48 -07001290 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001292 encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1293 encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
Trond Myklebust4ade9822012-03-04 18:13:57 -05001294 encode_nfs4_seqid(xdr, args->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001295 encode_nfs4_stateid(xdr, args->stateid);
1296 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001297 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001298 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001301static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1302{
Trond Myklebustab19b482012-03-04 18:13:57 -05001303 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001304 encode_lockowner(xdr, lowner);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001305}
1306
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001307static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Trond Myklebustab19b482012-03-04 18:13:57 -05001309 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001310 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001313static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Al Viro8687b632006-10-19 23:28:48 -07001315 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Benny Halevy13c65ce2009-08-14 17:19:25 +03001317 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001318 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001319 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001320 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001321 break;
1322 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001323 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001324 break;
1325 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001326 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001327 break;
1328 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001329 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
Benny Halevy34558512009-08-14 17:19:30 +03001331 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1335{
Al Viro8687b632006-10-19 23:28:48 -07001336 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /*
1338 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1339 * owner 4 = 32
1340 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001341 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001342 encode_share_access(xdr, arg->fmode);
Trond Myklebustd035c362010-12-21 10:45:27 -05001343 p = reserve_space(xdr, 32);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001344 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001345 *p++ = cpu_to_be32(20);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001346 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001347 *p++ = cpu_to_be32(arg->server->s_dev);
Benny Halevy34558512009-08-14 17:19:30 +03001348 xdr_encode_hyper(p, arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
1351static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1352{
Al Viro8687b632006-10-19 23:28:48 -07001353 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001354 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Benny Halevy13c65ce2009-08-14 17:19:25 +03001356 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001358 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001359 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001360 encode_attrs(xdr, arg->u.attrs, arg->server);
1361 break;
1362 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001363 clp = arg->server->nfs_client;
Trond Myklebusta4432342010-06-16 09:52:27 -04001364 if (clp->cl_mvops->minor_version > 0) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001365 if (nfs4_has_persistent_session(clp)) {
1366 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1367 encode_attrs(xdr, arg->u.attrs, arg->server);
1368 } else {
1369 struct iattr dummy;
1370
1371 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1372 encode_nfs4_verifier(xdr, &arg->u.verifier);
1373 dummy.ia_valid = 0;
1374 encode_attrs(xdr, &dummy, arg->server);
1375 }
1376 } else {
1377 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1378 encode_nfs4_verifier(xdr, &arg->u.verifier);
1379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381}
1382
1383static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1384{
Al Viro8687b632006-10-19 23:28:48 -07001385 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Benny Halevy13c65ce2009-08-14 17:19:25 +03001387 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001389 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001390 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001391 break;
1392 default:
1393 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001394 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001395 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397}
1398
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001399static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Al Viro8687b632006-10-19 23:28:48 -07001401 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Benny Halevy13c65ce2009-08-14 17:19:25 +03001403 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001405 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001406 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001407 break;
1408 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001409 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001410 break;
1411 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001412 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001413 break;
1414 default:
1415 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417}
1418
1419static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1420{
Al Viro8687b632006-10-19 23:28:48 -07001421 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Benny Halevy13c65ce2009-08-14 17:19:25 +03001423 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001424 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 encode_string(xdr, name->len, name->name);
1426}
1427
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001428static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Al Viro8687b632006-10-19 23:28:48 -07001430 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Benny Halevy13c65ce2009-08-14 17:19:25 +03001432 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001433 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 encode_delegation_type(xdr, type);
1435}
1436
1437static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1438{
Al Viro8687b632006-10-19 23:28:48 -07001439 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001441 p = reserve_space(xdr, 4);
1442 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1443 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 encode_string(xdr, name->len, name->name);
1445}
1446
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001447static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
Trond Myklebustab19b482012-03-04 18:13:57 -05001449 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 encode_openhdr(xdr, arg);
1451 encode_opentype(xdr, arg);
1452 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001453 case NFS4_OPEN_CLAIM_NULL:
1454 encode_claim_null(xdr, arg->name);
1455 break;
1456 case NFS4_OPEN_CLAIM_PREVIOUS:
1457 encode_claim_previous(xdr, arg->u.delegation_type);
1458 break;
1459 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1460 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1461 break;
1462 default:
1463 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001467static 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 -07001468{
Trond Myklebustab19b482012-03-04 18:13:57 -05001469 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001470 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001471 encode_nfs4_seqid(xdr, arg->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001474static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Trond Myklebustab19b482012-03-04 18:13:57 -05001476 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001477 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001478 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001479 encode_share_access(xdr, arg->fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001482static void
Andy Adamsond0179312008-12-23 16:06:17 -05001483encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Trond Myklebustab19b482012-03-04 18:13:57 -05001485 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001486 encode_string(xdr, fh->size, fh->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001489static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Trond Myklebustab19b482012-03-04 18:13:57 -05001491 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Trond Myklebust4fc87962012-03-08 17:42:01 -05001494static void encode_open_stateid(struct xdr_stream *xdr,
1495 const struct nfs_open_context *ctx,
1496 const struct nfs_lock_context *l_ctx,
1497 fmode_t fmode,
1498 int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (ctx->state != NULL) {
Trond Myklebust4fc87962012-03-08 17:42:01 -05001503 nfs4_select_rw_stateid(&stateid, ctx->state,
1504 fmode, l_ctx->lockowner, l_ctx->pid);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001505 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001506 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001507 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001509 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001512static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Al Viro8687b632006-10-19 23:28:48 -07001514 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Trond Myklebustab19b482012-03-04 18:13:57 -05001516 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001517 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001518 FMODE_READ, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Benny Halevy13c65ce2009-08-14 17:19:25 +03001520 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001521 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001522 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001525static 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 -07001526{
Trond Myklebust28331a42011-04-27 13:47:52 -04001527 uint32_t attrs[2] = {
1528 FATTR4_WORD0_RDATTR_ERROR,
1529 FATTR4_WORD1_MOUNTED_ON_FILEID,
1530 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001531 uint32_t dircount = readdir->count >> 1;
Chuck Levercd937102012-03-02 17:14:31 -05001532 __be32 *p, verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001534 if (readdir->plus) {
1535 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001536 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001537 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1538 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1539 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1540 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001541 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001542 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001543 /* Use mounted_on_fileid only if the server supports it */
1544 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1545 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001546
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001547 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001548 encode_uint64(xdr, readdir->cookie);
Chuck Levercd937102012-03-02 17:14:31 -05001549 encode_nfs4_verifier(xdr, &readdir->verifier);
1550 p = reserve_space(xdr, 20);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001551 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001552 *p++ = cpu_to_be32(readdir->count);
1553 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001554
Benny Halevye75bc1c2009-08-14 17:18:54 +03001555 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001556 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Chuck Levercd937102012-03-02 17:14:31 -05001557 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03001558 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1559 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001560 (unsigned long long)readdir->cookie,
Chuck Levercd937102012-03-02 17:14:31 -05001561 verf[0], verf[1],
Trond Myklebusteadf4592005-06-22 17:16:39 +00001562 attrs[0] & readdir->bitmask[0],
1563 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001566static 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 -07001567{
Trond Myklebustab19b482012-03-04 18:13:57 -05001568 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001571static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Trond Myklebustab19b482012-03-04 18:13:57 -05001573 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001574 encode_string(xdr, name->len, name->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001577static 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 -07001578{
Trond Myklebustab19b482012-03-04 18:13:57 -05001579 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
Benny Halevy811652b2009-08-14 17:19:34 +03001580 encode_string(xdr, oldname->len, oldname->name);
1581 encode_string(xdr, newname->len, newname->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Chuck Leverbb4dae52012-03-01 17:01:48 -05001584static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1585 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001587 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001588 encode_uint64(xdr, clid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001591static void
Andy Adamsond0179312008-12-23 16:06:17 -05001592encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001593{
Trond Myklebustab19b482012-03-04 18:13:57 -05001594 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001595}
1596
Chuck Lever9f06c712010-12-14 14:59:18 +00001597static void
Andy Adamsond0179312008-12-23 16:06:17 -05001598encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001599{
Al Viro8687b632006-10-19 23:28:48 -07001600 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001601
Trond Myklebustab19b482012-03-04 18:13:57 -05001602 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001603 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001604 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001605 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001606 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Chuck Lever9f06c712010-12-14 14:59:18 +00001607 BUG_ON(arg->acl_len % 4);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001608 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001609 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001610 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001611}
1612
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001613static void
Andy Adamsond0179312008-12-23 16:06:17 -05001614encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
Trond Myklebustab19b482012-03-04 18:13:57 -05001616 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001619static 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 -07001620{
Trond Myklebustab19b482012-03-04 18:13:57 -05001621 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001622 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001623 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001626static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Al Viro8687b632006-10-19 23:28:48 -07001628 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Trond Myklebust70019512012-03-04 20:49:32 -05001630 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001631 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001634 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001635 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1637 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001638 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001639 *p = cpu_to_be32(setclientid->sc_cb_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001642static 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 -07001643{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001644 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1645 decode_setclientid_confirm_maxsz, hdr);
Trond Myklebustff2eb682012-03-05 11:40:12 -05001646 encode_uint64(xdr, arg->clientid);
Chuck Levercd937102012-03-02 17:14:31 -05001647 encode_nfs4_verifier(xdr, &arg->confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001650static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
Al Viro8687b632006-10-19 23:28:48 -07001652 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Trond Myklebustab19b482012-03-04 18:13:57 -05001654 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001655 encode_open_stateid(xdr, args->context, args->lock_context,
Trond Myklebust4fc87962012-03-08 17:42:01 -05001656 FMODE_WRITE, hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Benny Halevy13c65ce2009-08-14 17:19:25 +03001658 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001659 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001660 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001661 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001666static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Trond Myklebustab19b482012-03-04 18:13:57 -05001668 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001669 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001671
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001672static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1673{
Trond Myklebustab19b482012-03-04 18:13:57 -05001674 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001675 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001676}
1677
Benny Halevy99fe60d2009-04-01 09:22:29 -04001678#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001679/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001680static void encode_exchange_id(struct xdr_stream *xdr,
1681 struct nfs41_exchange_id_args *args,
1682 struct compound_hdr *hdr)
1683{
1684 __be32 *p;
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001685 char impl_name[NFS4_OPAQUE_LIMIT];
1686 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001687
Trond Myklebust70019512012-03-04 20:49:32 -05001688 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
Chuck Levercd937102012-03-02 17:14:31 -05001689 encode_nfs4_verifier(xdr, args->verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04001690
1691 encode_string(xdr, args->id_len, args->id);
1692
Benny Halevy13c65ce2009-08-14 17:19:25 +03001693 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001694 *p++ = cpu_to_be32(args->flags);
1695 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001696
1697 if (send_implementation_id &&
1698 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1699 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1700 <= NFS4_OPAQUE_LIMIT + 1)
1701 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1702 utsname()->sysname, utsname()->release,
1703 utsname()->version, utsname()->machine);
1704
1705 if (len > 0) {
1706 *p = cpu_to_be32(1); /* implementation id array length=1 */
1707
1708 encode_string(xdr,
1709 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1710 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1711 encode_string(xdr, len, impl_name);
1712 /* just send zeros for nii_date - the date is in nii_name */
1713 p = reserve_space(xdr, 12);
1714 p = xdr_encode_hyper(p, 0);
1715 *p = cpu_to_be32(0);
1716 } else
1717 *p = cpu_to_be32(0); /* implementation id array length=0 */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001718}
Andy Adamsonfc931582009-04-01 09:22:31 -04001719
1720static void encode_create_session(struct xdr_stream *xdr,
1721 struct nfs41_create_session_args *args,
1722 struct compound_hdr *hdr)
1723{
1724 __be32 *p;
1725 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1726 uint32_t len;
1727 struct nfs_client *clp = args->client;
Mike Sager8e0d46e2009-12-17 12:06:26 -05001728 u32 max_resp_sz_cached;
1729
1730 /*
1731 * Assumes OPEN is the biggest non-idempotent compound.
1732 * 2 is the verifier.
1733 */
1734 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1735 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001736
Andy Adamsonfc931582009-04-01 09:22:31 -04001737 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1738 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001739
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001740 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1741 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
Andy Adamson114f64b2011-03-09 13:13:45 -05001742 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001743 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1744 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001745
Andy Adamsonfc931582009-04-01 09:22:31 -04001746 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001747 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001748 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1749 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001750 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001751 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1752 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1753 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001754
1755 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001756 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001757 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1758 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1759 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1760 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1761 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1762 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001763
Benny Halevye75bc1c2009-08-14 17:18:54 +03001764 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001765 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001766 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001767
1768 /* authsys_parms rfc1831 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001769 *p++ = cpu_to_be32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001770 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001771 *p++ = cpu_to_be32(0); /* UID */
1772 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001773 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001774}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001775
1776static void encode_destroy_session(struct xdr_stream *xdr,
1777 struct nfs4_session *session,
1778 struct compound_hdr *hdr)
1779{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001780 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1781 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001782}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001783
1784static void encode_reclaim_complete(struct xdr_stream *xdr,
1785 struct nfs41_reclaim_complete_args *args,
1786 struct compound_hdr *hdr)
1787{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001788 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1789 encode_uint32(xdr, args->one_fs);
Ricardo Labiaga180197532009-12-05 16:08:40 -05001790}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001791#endif /* CONFIG_NFS_V4_1 */
1792
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001793static void encode_sequence(struct xdr_stream *xdr,
1794 const struct nfs4_sequence_args *args,
1795 struct compound_hdr *hdr)
1796{
1797#if defined(CONFIG_NFS_V4_1)
1798 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001799 struct nfs4_slot_table *tp;
1800 struct nfs4_slot *slot;
1801 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001802
1803 if (!session)
1804 return;
1805
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001806 tp = &session->fc_slot_table;
1807
1808 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1809 slot = tp->slots + args->sa_slotid;
1810
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001811 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001812
1813 /*
1814 * Sessionid + seqid + slotid + max slotid + cache_this
1815 */
1816 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1817 "max_slotid=%d cache_this=%d\n",
1818 __func__,
1819 ((u32 *)session->sess_id.data)[0],
1820 ((u32 *)session->sess_id.data)[1],
1821 ((u32 *)session->sess_id.data)[2],
1822 ((u32 *)session->sess_id.data)[3],
1823 slot->seq_nr, args->sa_slotid,
1824 tp->highest_used_slotid, args->sa_cache_this);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001825 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001826 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001827 *p++ = cpu_to_be32(slot->seq_nr);
1828 *p++ = cpu_to_be32(args->sa_slotid);
1829 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001830 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001831#endif /* CONFIG_NFS_V4_1 */
1832}
1833
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001834#ifdef CONFIG_NFS_V4_1
1835static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001836encode_getdevicelist(struct xdr_stream *xdr,
1837 const struct nfs4_getdevicelist_args *args,
1838 struct compound_hdr *hdr)
1839{
1840 __be32 *p;
1841 nfs4_verifier dummy = {
1842 .data = "dummmmmy",
1843 };
1844
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001845 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1846 p = reserve_space(xdr, 16);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001847 *p++ = cpu_to_be32(args->layoutclass);
1848 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1849 xdr_encode_hyper(p, 0ULL); /* cookie */
1850 encode_nfs4_verifier(xdr, &dummy);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001851}
1852
1853static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001854encode_getdeviceinfo(struct xdr_stream *xdr,
1855 const struct nfs4_getdeviceinfo_args *args,
1856 struct compound_hdr *hdr)
1857{
1858 __be32 *p;
1859
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001860 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1861 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001862 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1863 NFS4_DEVICEID4_SIZE);
1864 *p++ = cpu_to_be32(args->pdev->layout_type);
1865 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
1866 *p++ = cpu_to_be32(0); /* bitmap length 0 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001867}
1868
1869static void
1870encode_layoutget(struct xdr_stream *xdr,
1871 const struct nfs4_layoutget_args *args,
1872 struct compound_hdr *hdr)
1873{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001874 __be32 *p;
1875
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001876 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1877 p = reserve_space(xdr, 36);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001878 *p++ = cpu_to_be32(0); /* Signal layout available */
1879 *p++ = cpu_to_be32(args->type);
1880 *p++ = cpu_to_be32(args->range.iomode);
1881 p = xdr_encode_hyper(p, args->range.offset);
1882 p = xdr_encode_hyper(p, args->range.length);
1883 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001884 encode_nfs4_stateid(xdr, &args->stateid);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001885 encode_uint32(xdr, args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001886
1887 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1888 __func__,
1889 args->type,
1890 args->range.iomode,
1891 (unsigned long)args->range.offset,
1892 (unsigned long)args->range.length,
1893 args->maxcount);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001894}
Andy Adamson863a3c62011-03-23 13:27:54 +00001895
1896static int
1897encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03001898 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00001899 const struct nfs4_layoutcommit_args *args,
1900 struct compound_hdr *hdr)
1901{
1902 __be32 *p;
1903
1904 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1905 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
1906
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001907 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
1908 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001909 /* Only whole file layouts */
1910 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04001911 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001912 *p = cpu_to_be32(0); /* reclaim */
1913 encode_nfs4_stateid(xdr, &args->stateid);
1914 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00001915 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
1916 p = xdr_encode_hyper(p, args->lastbytewritten);
1917 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
1918 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03001919
1920 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
1921 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
1922 NFS_I(inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001923 else
1924 encode_uint32(xdr, 0); /* no layout-type payload */
Andy Adamson863a3c62011-03-23 13:27:54 +00001925
Andy Adamson863a3c62011-03-23 13:27:54 +00001926 return 0;
1927}
Benny Halevycbe82602011-05-22 19:52:37 +03001928
1929static void
1930encode_layoutreturn(struct xdr_stream *xdr,
1931 const struct nfs4_layoutreturn_args *args,
1932 struct compound_hdr *hdr)
1933{
1934 __be32 *p;
1935
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001936 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
1937 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001938 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
1939 *p++ = cpu_to_be32(args->layout_type);
1940 *p++ = cpu_to_be32(IOMODE_ANY);
1941 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001942 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03001943 p = xdr_encode_hyper(p, 0);
1944 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
1945 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001946 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03001947 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03001948 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
1949 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
1950 NFS_I(args->inode)->layout, xdr, args);
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001951 } else
1952 encode_uint32(xdr, 0);
Benny Halevycbe82602011-05-22 19:52:37 +03001953}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001954
1955static int
1956encode_secinfo_no_name(struct xdr_stream *xdr,
1957 const struct nfs41_secinfo_no_name_args *args,
1958 struct compound_hdr *hdr)
1959{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001960 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
1961 encode_uint32(xdr, args->style);
Bryan Schumakerfca78d62011-06-02 14:59:07 -04001962 return 0;
1963}
Bryan Schumaker7d974792011-06-02 14:59:08 -04001964
1965static void encode_test_stateid(struct xdr_stream *xdr,
1966 struct nfs41_test_stateid_args *args,
1967 struct compound_hdr *hdr)
1968{
Trond Myklebust475d4ba2012-03-05 11:27:16 -05001969 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
1970 encode_uint32(xdr, 1);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001971 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04001972}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04001973
1974static void encode_free_stateid(struct xdr_stream *xdr,
1975 struct nfs41_free_stateid_args *args,
1976 struct compound_hdr *hdr)
1977{
Trond Myklebustab19b482012-03-04 18:13:57 -05001978 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001979 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04001980}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001981#endif /* CONFIG_NFS_V4_1 */
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/*
1984 * END OF "GENERIC" ENCODE ROUTINES.
1985 */
1986
Benny Halevy66cc0422009-04-01 09:22:10 -04001987static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
1988{
1989#if defined(CONFIG_NFS_V4_1)
1990 if (args->sa_session)
Trond Myklebusta4432342010-06-16 09:52:27 -04001991 return args->sa_session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04001992#endif /* CONFIG_NFS_V4_1 */
1993 return 0;
1994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996/*
1997 * Encode an ACCESS request
1998 */
Chuck Lever9f06c712010-12-14 14:59:18 +00001999static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2000 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002003 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Chuck Lever9f06c712010-12-14 14:59:18 +00002006 encode_compound_hdr(xdr, req, &hdr);
2007 encode_sequence(xdr, &args->seq_args, &hdr);
2008 encode_putfh(xdr, args->fh, &hdr);
2009 encode_access(xdr, args->access, &hdr);
2010 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002011 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
2014/*
2015 * Encode LOOKUP request
2016 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002017static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2018 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002021 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Chuck Lever9f06c712010-12-14 14:59:18 +00002024 encode_compound_hdr(xdr, req, &hdr);
2025 encode_sequence(xdr, &args->seq_args, &hdr);
2026 encode_putfh(xdr, args->dir_fh, &hdr);
2027 encode_lookup(xdr, args->name, &hdr);
2028 encode_getfh(xdr, &hdr);
2029 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002030 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
2032
2033/*
2034 * Encode LOOKUP_ROOT request
2035 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002036static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2037 struct xdr_stream *xdr,
2038 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002041 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Chuck Lever9f06c712010-12-14 14:59:18 +00002044 encode_compound_hdr(xdr, req, &hdr);
2045 encode_sequence(xdr, &args->seq_args, &hdr);
2046 encode_putrootfh(xdr, &hdr);
2047 encode_getfh(xdr, &hdr);
2048 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002049 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053 * Encode REMOVE request
2054 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002055static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2056 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002059 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Chuck Lever9f06c712010-12-14 14:59:18 +00002062 encode_compound_hdr(xdr, req, &hdr);
2063 encode_sequence(xdr, &args->seq_args, &hdr);
2064 encode_putfh(xdr, args->fh, &hdr);
2065 encode_remove(xdr, &args->name, &hdr);
2066 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002067 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070/*
2071 * Encode RENAME request
2072 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002073static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2074 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002077 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Chuck Lever9f06c712010-12-14 14:59:18 +00002080 encode_compound_hdr(xdr, req, &hdr);
2081 encode_sequence(xdr, &args->seq_args, &hdr);
2082 encode_putfh(xdr, args->old_dir, &hdr);
2083 encode_savefh(xdr, &hdr);
2084 encode_putfh(xdr, args->new_dir, &hdr);
2085 encode_rename(xdr, args->old_name, args->new_name, &hdr);
2086 encode_getfattr(xdr, args->bitmask, &hdr);
2087 encode_restorefh(xdr, &hdr);
2088 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002089 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
2092/*
2093 * Encode LINK request
2094 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002095static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2096 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002099 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Chuck Lever9f06c712010-12-14 14:59:18 +00002102 encode_compound_hdr(xdr, req, &hdr);
2103 encode_sequence(xdr, &args->seq_args, &hdr);
2104 encode_putfh(xdr, args->fh, &hdr);
2105 encode_savefh(xdr, &hdr);
2106 encode_putfh(xdr, args->dir_fh, &hdr);
2107 encode_link(xdr, args->name, &hdr);
2108 encode_getfattr(xdr, args->bitmask, &hdr);
2109 encode_restorefh(xdr, &hdr);
2110 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002111 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
2114/*
2115 * Encode CREATE request
2116 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002117static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2118 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002121 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Chuck Lever9f06c712010-12-14 14:59:18 +00002124 encode_compound_hdr(xdr, req, &hdr);
2125 encode_sequence(xdr, &args->seq_args, &hdr);
2126 encode_putfh(xdr, args->dir_fh, &hdr);
2127 encode_savefh(xdr, &hdr);
2128 encode_create(xdr, args, &hdr);
2129 encode_getfh(xdr, &hdr);
2130 encode_getfattr(xdr, args->bitmask, &hdr);
2131 encode_restorefh(xdr, &hdr);
2132 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002133 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/*
2137 * Encode SYMLINK request
2138 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002139static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2140 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Chuck Lever9f06c712010-12-14 14:59:18 +00002142 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
2145/*
2146 * Encode GETATTR request
2147 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002148static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2149 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002152 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Chuck Lever9f06c712010-12-14 14:59:18 +00002155 encode_compound_hdr(xdr, req, &hdr);
2156 encode_sequence(xdr, &args->seq_args, &hdr);
2157 encode_putfh(xdr, args->fh, &hdr);
2158 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002159 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162/*
2163 * Encode a CLOSE request
2164 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002165static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2166 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Andy Adamson05d564f2008-12-23 16:06:15 -05002168 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002169 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002170 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Chuck Lever9f06c712010-12-14 14:59:18 +00002172 encode_compound_hdr(xdr, req, &hdr);
2173 encode_sequence(xdr, &args->seq_args, &hdr);
2174 encode_putfh(xdr, args->fh, &hdr);
2175 encode_close(xdr, args, &hdr);
2176 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002177 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
2180/*
2181 * Encode an OPEN request
2182 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002183static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2184 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002187 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Chuck Lever9f06c712010-12-14 14:59:18 +00002190 encode_compound_hdr(xdr, req, &hdr);
2191 encode_sequence(xdr, &args->seq_args, &hdr);
2192 encode_putfh(xdr, args->fh, &hdr);
2193 encode_savefh(xdr, &hdr);
2194 encode_open(xdr, args, &hdr);
2195 encode_getfh(xdr, &hdr);
2196 encode_getfattr(xdr, args->bitmask, &hdr);
2197 encode_restorefh(xdr, &hdr);
Trond Myklebust6926afd2012-01-07 13:22:46 -05002198 encode_getfattr(xdr, args->dir_bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002199 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200}
2201
2202/*
2203 * Encode an OPEN_CONFIRM request
2204 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002205static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2206 struct xdr_stream *xdr,
2207 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002210 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Chuck Lever9f06c712010-12-14 14:59:18 +00002213 encode_compound_hdr(xdr, req, &hdr);
2214 encode_putfh(xdr, args->fh, &hdr);
2215 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002216 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217}
2218
2219/*
2220 * Encode an OPEN request with no attributes.
2221 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002222static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2223 struct xdr_stream *xdr,
2224 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002227 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Chuck Lever9f06c712010-12-14 14:59:18 +00002230 encode_compound_hdr(xdr, req, &hdr);
2231 encode_sequence(xdr, &args->seq_args, &hdr);
2232 encode_putfh(xdr, args->fh, &hdr);
2233 encode_open(xdr, args, &hdr);
2234 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002235 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
2238/*
2239 * Encode an OPEN_DOWNGRADE request
2240 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002241static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2242 struct xdr_stream *xdr,
2243 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002246 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Chuck Lever9f06c712010-12-14 14:59:18 +00002249 encode_compound_hdr(xdr, req, &hdr);
2250 encode_sequence(xdr, &args->seq_args, &hdr);
2251 encode_putfh(xdr, args->fh, &hdr);
2252 encode_open_downgrade(xdr, args, &hdr);
2253 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002254 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257/*
2258 * Encode a LOCK request
2259 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002260static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2261 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002264 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Chuck Lever9f06c712010-12-14 14:59:18 +00002267 encode_compound_hdr(xdr, req, &hdr);
2268 encode_sequence(xdr, &args->seq_args, &hdr);
2269 encode_putfh(xdr, args->fh, &hdr);
2270 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002271 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
2274/*
2275 * Encode a LOCKT request
2276 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002277static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2278 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002281 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Chuck Lever9f06c712010-12-14 14:59:18 +00002284 encode_compound_hdr(xdr, req, &hdr);
2285 encode_sequence(xdr, &args->seq_args, &hdr);
2286 encode_putfh(xdr, args->fh, &hdr);
2287 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002288 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/*
2292 * Encode a LOCKU request
2293 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002294static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2295 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002298 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Chuck Lever9f06c712010-12-14 14:59:18 +00002301 encode_compound_hdr(xdr, req, &hdr);
2302 encode_sequence(xdr, &args->seq_args, &hdr);
2303 encode_putfh(xdr, args->fh, &hdr);
2304 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002305 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
Chuck Lever9f06c712010-12-14 14:59:18 +00002308static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2309 struct xdr_stream *xdr,
2310 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002311{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002312 struct compound_hdr hdr = {
2313 .minorversion = 0,
2314 };
2315
Chuck Lever9f06c712010-12-14 14:59:18 +00002316 encode_compound_hdr(xdr, req, &hdr);
2317 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002318 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002319}
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321/*
2322 * Encode a READLINK request
2323 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002324static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2325 const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002328 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Chuck Lever9f06c712010-12-14 14:59:18 +00002331 encode_compound_hdr(xdr, req, &hdr);
2332 encode_sequence(xdr, &args->seq_args, &hdr);
2333 encode_putfh(xdr, args->fh, &hdr);
2334 encode_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002335
Benny Halevy28f56692009-04-01 09:22:09 -04002336 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002337 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002338 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
2341/*
2342 * Encode a READDIR request
2343 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002344static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2345 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002348 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Chuck Lever9f06c712010-12-14 14:59:18 +00002351 encode_compound_hdr(xdr, req, &hdr);
2352 encode_sequence(xdr, &args->seq_args, &hdr);
2353 encode_putfh(xdr, args->fh, &hdr);
2354 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002355
Benny Halevy28f56692009-04-01 09:22:09 -04002356 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002357 args->pgbase, args->count);
2358 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002359 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002360 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002361 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362}
2363
2364/*
2365 * Encode a READ request
2366 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002367static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2368 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002371 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Chuck Lever9f06c712010-12-14 14:59:18 +00002374 encode_compound_hdr(xdr, req, &hdr);
2375 encode_sequence(xdr, &args->seq_args, &hdr);
2376 encode_putfh(xdr, args->fh, &hdr);
2377 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Benny Halevy28f56692009-04-01 09:22:09 -04002379 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002381 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002382 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
2385/*
2386 * Encode an SETATTR request
2387 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002388static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2389 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
Andy Adamson05d564f2008-12-23 16:06:15 -05002391 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002392 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002393 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Chuck Lever9f06c712010-12-14 14:59:18 +00002395 encode_compound_hdr(xdr, req, &hdr);
2396 encode_sequence(xdr, &args->seq_args, &hdr);
2397 encode_putfh(xdr, args->fh, &hdr);
2398 encode_setattr(xdr, args, args->server, &hdr);
2399 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002400 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
2403/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002404 * Encode a GETACL request
2405 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002406static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2407 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002408{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002409 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002410 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002411 };
Benny Halevy28f56692009-04-01 09:22:09 -04002412 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002413
Chuck Lever9f06c712010-12-14 14:59:18 +00002414 encode_compound_hdr(xdr, req, &hdr);
2415 encode_sequence(xdr, &args->seq_args, &hdr);
2416 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002417 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002418 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002419
Benny Halevy28f56692009-04-01 09:22:09 -04002420 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002421 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002422
Andy Adamsond0179312008-12-23 16:06:17 -05002423 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002424}
2425
2426/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 * Encode a WRITE request
2428 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002429static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2430 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002433 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Chuck Lever9f06c712010-12-14 14:59:18 +00002436 encode_compound_hdr(xdr, req, &hdr);
2437 encode_sequence(xdr, &args->seq_args, &hdr);
2438 encode_putfh(xdr, args->fh, &hdr);
2439 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002440 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002441 if (args->bitmask)
2442 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002443 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
2446/*
2447 * a COMMIT request
2448 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002449static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
2450 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002453 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Chuck Lever9f06c712010-12-14 14:59:18 +00002456 encode_compound_hdr(xdr, req, &hdr);
2457 encode_sequence(xdr, &args->seq_args, &hdr);
2458 encode_putfh(xdr, args->fh, &hdr);
2459 encode_commit(xdr, args, &hdr);
Fred Isaman988b6dc2011-03-23 13:27:52 +00002460 if (args->bitmask)
2461 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002462 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
2465/*
2466 * FSINFO request
2467 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002468static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2469 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002472 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Chuck Lever9f06c712010-12-14 14:59:18 +00002475 encode_compound_hdr(xdr, req, &hdr);
2476 encode_sequence(xdr, &args->seq_args, &hdr);
2477 encode_putfh(xdr, args->fh, &hdr);
2478 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002479 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
2482/*
2483 * a PATHCONF request
2484 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002485static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2486 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002489 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Chuck Lever9f06c712010-12-14 14:59:18 +00002492 encode_compound_hdr(xdr, req, &hdr);
2493 encode_sequence(xdr, &args->seq_args, &hdr);
2494 encode_putfh(xdr, args->fh, &hdr);
2495 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002496 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002497 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
2500/*
2501 * a STATFS request
2502 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002503static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2504 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002507 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Chuck Lever9f06c712010-12-14 14:59:18 +00002510 encode_compound_hdr(xdr, req, &hdr);
2511 encode_sequence(xdr, &args->seq_args, &hdr);
2512 encode_putfh(xdr, args->fh, &hdr);
2513 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002514 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002515 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
2518/*
2519 * GETATTR_BITMAP request
2520 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002521static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2522 struct xdr_stream *xdr,
2523 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002526 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Chuck Lever9f06c712010-12-14 14:59:18 +00002529 encode_compound_hdr(xdr, req, &hdr);
2530 encode_sequence(xdr, &args->seq_args, &hdr);
2531 encode_putfh(xdr, args->fhandle, &hdr);
2532 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002533 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002534 FATTR4_WORD0_LINK_SUPPORT|
2535 FATTR4_WORD0_SYMLINK_SUPPORT|
2536 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002537 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538}
2539
2540/*
2541 * a RENEW request
2542 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002543static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2544 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002547 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 };
2549
Chuck Lever9f06c712010-12-14 14:59:18 +00002550 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002551 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002552 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
2555/*
2556 * a SETCLIENTID request
2557 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002558static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2559 struct xdr_stream *xdr,
2560 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002563 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 };
2565
Chuck Lever9f06c712010-12-14 14:59:18 +00002566 encode_compound_hdr(xdr, req, &hdr);
2567 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002568 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569}
2570
2571/*
2572 * a SETCLIENTID_CONFIRM request
2573 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002574static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2575 struct xdr_stream *xdr,
2576 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002579 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 };
Fred Isamandae100c2011-07-30 20:52:37 -04002581 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Chuck Lever9f06c712010-12-14 14:59:18 +00002583 encode_compound_hdr(xdr, req, &hdr);
2584 encode_setclientid_confirm(xdr, arg, &hdr);
2585 encode_putrootfh(xdr, &hdr);
2586 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002587 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
2590/*
2591 * DELEGRETURN request
2592 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002593static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2594 struct xdr_stream *xdr,
2595 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002598 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Chuck Lever9f06c712010-12-14 14:59:18 +00002601 encode_compound_hdr(xdr, req, &hdr);
2602 encode_sequence(xdr, &args->seq_args, &hdr);
2603 encode_putfh(xdr, args->fhandle, &hdr);
2604 encode_delegreturn(xdr, args->stateid, &hdr);
2605 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002606 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
2609/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002610 * Encode FS_LOCATIONS request
2611 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002612static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2613 struct xdr_stream *xdr,
2614 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002615{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002616 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002617 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002618 };
Benny Halevy28f56692009-04-01 09:22:09 -04002619 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002620
Chuck Lever9f06c712010-12-14 14:59:18 +00002621 encode_compound_hdr(xdr, req, &hdr);
2622 encode_sequence(xdr, &args->seq_args, &hdr);
2623 encode_putfh(xdr, args->dir_fh, &hdr);
2624 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002625 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002626 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002627
Benny Halevy28f56692009-04-01 09:22:09 -04002628 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002629 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002630 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002631}
2632
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002633/*
2634 * Encode SECINFO request
2635 */
2636static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2637 struct xdr_stream *xdr,
2638 struct nfs4_secinfo_arg *args)
2639{
2640 struct compound_hdr hdr = {
2641 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2642 };
2643
2644 encode_compound_hdr(xdr, req, &hdr);
2645 encode_sequence(xdr, &args->seq_args, &hdr);
2646 encode_putfh(xdr, args->dir_fh, &hdr);
2647 encode_secinfo(xdr, args->name, &hdr);
2648 encode_nops(&hdr);
2649}
2650
Benny Halevy99fe60d2009-04-01 09:22:29 -04002651#if defined(CONFIG_NFS_V4_1)
2652/*
2653 * EXCHANGE_ID request
2654 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002655static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2656 struct xdr_stream *xdr,
2657 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002658{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002659 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002660 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002661 };
2662
Chuck Lever9f06c712010-12-14 14:59:18 +00002663 encode_compound_hdr(xdr, req, &hdr);
2664 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002665 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002666}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002667
2668/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002669 * a CREATE_SESSION request
2670 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002671static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2672 struct xdr_stream *xdr,
2673 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002674{
Andy Adamsonfc931582009-04-01 09:22:31 -04002675 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002676 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002677 };
2678
Chuck Lever9f06c712010-12-14 14:59:18 +00002679 encode_compound_hdr(xdr, req, &hdr);
2680 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002681 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002682}
2683
2684/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002685 * a DESTROY_SESSION request
2686 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002687static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2688 struct xdr_stream *xdr,
2689 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002690{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002691 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002692 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002693 };
2694
Chuck Lever9f06c712010-12-14 14:59:18 +00002695 encode_compound_hdr(xdr, req, &hdr);
2696 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002697 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002698}
2699
2700/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002701 * a SEQUENCE request
2702 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002703static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2704 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002705{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002706 struct compound_hdr hdr = {
2707 .minorversion = nfs4_xdr_minorversion(args),
2708 };
2709
Chuck Lever9f06c712010-12-14 14:59:18 +00002710 encode_compound_hdr(xdr, req, &hdr);
2711 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002712 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002713}
2714
2715/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002716 * a GET_LEASE_TIME request
2717 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002718static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2719 struct xdr_stream *xdr,
2720 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002721{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002722 struct compound_hdr hdr = {
2723 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2724 };
Fred Isamandae100c2011-07-30 20:52:37 -04002725 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002726
Chuck Lever9f06c712010-12-14 14:59:18 +00002727 encode_compound_hdr(xdr, req, &hdr);
2728 encode_sequence(xdr, &args->la_seq_args, &hdr);
2729 encode_putrootfh(xdr, &hdr);
2730 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002731 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002732}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002733
2734/*
2735 * a RECLAIM_COMPLETE request
2736 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002737static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2738 struct xdr_stream *xdr,
2739 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002740{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002741 struct compound_hdr hdr = {
2742 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2743 };
2744
Chuck Lever9f06c712010-12-14 14:59:18 +00002745 encode_compound_hdr(xdr, req, &hdr);
2746 encode_sequence(xdr, &args->seq_args, &hdr);
2747 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002748 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002749}
2750
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002751/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002752 * Encode GETDEVICELIST request
2753 */
2754static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2755 struct xdr_stream *xdr,
2756 struct nfs4_getdevicelist_args *args)
2757{
2758 struct compound_hdr hdr = {
2759 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2760 };
2761
2762 encode_compound_hdr(xdr, req, &hdr);
2763 encode_sequence(xdr, &args->seq_args, &hdr);
2764 encode_putfh(xdr, args->fh, &hdr);
2765 encode_getdevicelist(xdr, args, &hdr);
2766 encode_nops(&hdr);
2767}
2768
2769/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002770 * Encode GETDEVICEINFO request
2771 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002772static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2773 struct xdr_stream *xdr,
2774 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002775{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002776 struct compound_hdr hdr = {
2777 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2778 };
2779
Chuck Lever9f06c712010-12-14 14:59:18 +00002780 encode_compound_hdr(xdr, req, &hdr);
2781 encode_sequence(xdr, &args->seq_args, &hdr);
2782 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002783
2784 /* set up reply kvec. Subtract notification bitmap max size (2)
2785 * so that notification bitmap is put in xdr_buf tail */
2786 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2787 args->pdev->pages, args->pdev->pgbase,
2788 args->pdev->pglen);
2789
2790 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002791}
2792
2793/*
2794 * Encode LAYOUTGET request
2795 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002796static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2797 struct xdr_stream *xdr,
2798 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002799{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002800 struct compound_hdr hdr = {
2801 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2802 };
2803
Chuck Lever9f06c712010-12-14 14:59:18 +00002804 encode_compound_hdr(xdr, req, &hdr);
2805 encode_sequence(xdr, &args->seq_args, &hdr);
2806 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2807 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002808
2809 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2810 args->layout.pages, 0, args->layout.pglen);
2811
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002812 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002813}
Andy Adamson863a3c62011-03-23 13:27:54 +00002814
2815/*
2816 * Encode LAYOUTCOMMIT request
2817 */
Benny Halevycbe82602011-05-22 19:52:37 +03002818static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2819 struct xdr_stream *xdr,
2820 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002821{
Benny Halevyac7db722011-05-22 19:53:48 +03002822 struct nfs4_layoutcommit_data *data =
2823 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002824 struct compound_hdr hdr = {
2825 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2826 };
2827
2828 encode_compound_hdr(xdr, req, &hdr);
2829 encode_sequence(xdr, &args->seq_args, &hdr);
2830 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002831 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002832 encode_getfattr(xdr, args->bitmask, &hdr);
2833 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002834}
2835
2836/*
2837 * Encode LAYOUTRETURN request
2838 */
2839static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2840 struct xdr_stream *xdr,
2841 struct nfs4_layoutreturn_args *args)
2842{
2843 struct compound_hdr hdr = {
2844 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2845 };
2846
2847 encode_compound_hdr(xdr, req, &hdr);
2848 encode_sequence(xdr, &args->seq_args, &hdr);
2849 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2850 encode_layoutreturn(xdr, args, &hdr);
2851 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002852}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002853
2854/*
2855 * Encode SECINFO_NO_NAME request
2856 */
2857static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
2858 struct xdr_stream *xdr,
2859 struct nfs41_secinfo_no_name_args *args)
2860{
2861 struct compound_hdr hdr = {
2862 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2863 };
2864
2865 encode_compound_hdr(xdr, req, &hdr);
2866 encode_sequence(xdr, &args->seq_args, &hdr);
2867 encode_putrootfh(xdr, &hdr);
2868 encode_secinfo_no_name(xdr, args, &hdr);
2869 encode_nops(&hdr);
2870 return 0;
2871}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002872
2873/*
2874 * Encode TEST_STATEID request
2875 */
2876static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
2877 struct xdr_stream *xdr,
2878 struct nfs41_test_stateid_args *args)
2879{
2880 struct compound_hdr hdr = {
2881 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2882 };
2883
2884 encode_compound_hdr(xdr, req, &hdr);
2885 encode_sequence(xdr, &args->seq_args, &hdr);
2886 encode_test_stateid(xdr, args, &hdr);
2887 encode_nops(&hdr);
2888}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002889
2890/*
2891 * Encode FREE_STATEID request
2892 */
2893static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
2894 struct xdr_stream *xdr,
2895 struct nfs41_free_stateid_args *args)
2896{
2897 struct compound_hdr hdr = {
2898 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2899 };
2900
2901 encode_compound_hdr(xdr, req, &hdr);
2902 encode_sequence(xdr, &args->seq_args, &hdr);
2903 encode_free_stateid(xdr, args, &hdr);
2904 encode_nops(&hdr);
2905}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002906#endif /* CONFIG_NFS_V4_1 */
2907
Benny Halevy686841b2009-08-14 17:19:48 +03002908static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2909{
2910 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2911 "Remaining buffer length is %tu words.\n",
2912 func, xdr->end - xdr->p);
2913}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Trond Myklebust683b57b2006-06-09 09:34:22 -04002915static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
Al Viro8687b632006-10-19 23:28:48 -07002917 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Benny Halevyc0eae662009-08-14 17:20:14 +03002919 p = xdr_inline_decode(xdr, 4);
2920 if (unlikely(!p))
2921 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002922 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002923 p = xdr_inline_decode(xdr, *len);
2924 if (unlikely(!p))
2925 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 *string = (char *)p;
2927 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002928out_overflow:
2929 print_overflow_msg(__func__, xdr);
2930 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931}
2932
2933static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2934{
Al Viro8687b632006-10-19 23:28:48 -07002935 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Benny Halevyc0eae662009-08-14 17:20:14 +03002937 p = xdr_inline_decode(xdr, 8);
2938 if (unlikely(!p))
2939 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03002940 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03002941 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05002942
Benny Halevyc0eae662009-08-14 17:20:14 +03002943 p = xdr_inline_decode(xdr, hdr->taglen + 4);
2944 if (unlikely(!p))
2945 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 hdr->tag = (char *)p;
2947 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03002948 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05002949 if (unlikely(hdr->nops < 1))
2950 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002952out_overflow:
2953 print_overflow_msg(__func__, xdr);
2954 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
2956
2957static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2958{
Al Viro8687b632006-10-19 23:28:48 -07002959 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 uint32_t opnum;
2961 int32_t nfserr;
2962
Benny Halevyc0eae662009-08-14 17:20:14 +03002963 p = xdr_inline_decode(xdr, 8);
2964 if (unlikely(!p))
2965 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03002966 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04002968 dprintk("nfs: Server returned operation"
2969 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 opnum, expected);
2971 return -EIO;
2972 }
Benny Halevycccddf42009-08-14 17:20:19 +03002973 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03002975 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002977out_overflow:
2978 print_overflow_msg(__func__, xdr);
2979 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
2981
2982/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04002983static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Al Viro8687b632006-10-19 23:28:48 -07002985 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002986 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 char *str;
2988
Benny Halevyc0eae662009-08-14 17:20:14 +03002989 p = xdr_inline_decode(xdr, 12);
2990 if (likely(p))
2991 return decode_opaque_inline(xdr, &strlen, &str);
2992 print_overflow_msg(__func__, xdr);
2993 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
2996static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2997{
Al Viro8687b632006-10-19 23:28:48 -07002998 uint32_t bmlen;
2999 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Benny Halevyc0eae662009-08-14 17:20:14 +03003001 p = xdr_inline_decode(xdr, 4);
3002 if (unlikely(!p))
3003 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003004 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Fred Isamandae100c2011-07-30 20:52:37 -04003006 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003007 p = xdr_inline_decode(xdr, (bmlen << 2));
3008 if (unlikely(!p))
3009 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003011 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003012 if (bmlen > 1) {
3013 bitmap[1] = be32_to_cpup(p++);
3014 if (bmlen > 2)
3015 bitmap[2] = be32_to_cpup(p);
3016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 }
3018 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003019out_overflow:
3020 print_overflow_msg(__func__, xdr);
3021 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
Al Viro8687b632006-10-19 23:28:48 -07003024static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
Al Viro8687b632006-10-19 23:28:48 -07003026 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Benny Halevyc0eae662009-08-14 17:20:14 +03003028 p = xdr_inline_decode(xdr, 4);
3029 if (unlikely(!p))
3030 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003031 *attrlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 *savep = xdr->p;
3033 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003034out_overflow:
3035 print_overflow_msg(__func__, xdr);
3036 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
3038
3039static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3040{
3041 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003042 int ret;
3043 ret = decode_attr_bitmap(xdr, bitmask);
3044 if (unlikely(ret < 0))
3045 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3047 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003048 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3049 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3050 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return 0;
3052}
3053
3054static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3055{
Al Viro8687b632006-10-19 23:28:48 -07003056 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003057 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 *type = 0;
3060 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3061 return -EIO;
3062 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003063 p = xdr_inline_decode(xdr, 4);
3064 if (unlikely(!p))
3065 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003066 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003068 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 return -EIO;
3070 }
3071 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003072 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003074 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003075 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003076out_overflow:
3077 print_overflow_msg(__func__, xdr);
3078 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
Chuck Lever264e6352012-03-01 17:02:05 -05003081static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3082 uint32_t *bitmap, uint32_t *type)
3083{
3084 __be32 *p;
3085
3086 *type = 0;
3087 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3088 return -EIO;
3089 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3090 p = xdr_inline_decode(xdr, 4);
3091 if (unlikely(!p))
3092 goto out_overflow;
3093 *type = be32_to_cpup(p);
3094 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3095 }
3096 dprintk("%s: expire type=0x%x\n", __func__, *type);
3097 return 0;
3098out_overflow:
3099 print_overflow_msg(__func__, xdr);
3100 return -EIO;
3101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3104{
Al Viro8687b632006-10-19 23:28:48 -07003105 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003106 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 *change = 0;
3109 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3110 return -EIO;
3111 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003112 p = xdr_inline_decode(xdr, 8);
3113 if (unlikely(!p))
3114 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003115 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003117 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003119 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003121 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003122out_overflow:
3123 print_overflow_msg(__func__, xdr);
3124 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125}
3126
3127static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3128{
Al Viro8687b632006-10-19 23:28:48 -07003129 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003130 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
3132 *size = 0;
3133 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3134 return -EIO;
3135 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003136 p = xdr_inline_decode(xdr, 8);
3137 if (unlikely(!p))
3138 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003139 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003141 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003143 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003144 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003145out_overflow:
3146 print_overflow_msg(__func__, xdr);
3147 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148}
3149
3150static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3151{
Al Viro8687b632006-10-19 23:28:48 -07003152 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 *res = 0;
3155 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3156 return -EIO;
3157 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003158 p = xdr_inline_decode(xdr, 4);
3159 if (unlikely(!p))
3160 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003161 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3163 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003164 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003166out_overflow:
3167 print_overflow_msg(__func__, xdr);
3168 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
3170
3171static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3172{
Al Viro8687b632006-10-19 23:28:48 -07003173 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 *res = 0;
3176 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3177 return -EIO;
3178 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003179 p = xdr_inline_decode(xdr, 4);
3180 if (unlikely(!p))
3181 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003182 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3184 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003185 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return 0;
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
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003192static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
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 fsid->major = 0;
3198 fsid->minor = 0;
3199 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3200 return -EIO;
3201 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003202 p = xdr_inline_decode(xdr, 16);
3203 if (unlikely(!p))
3204 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003205 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003206 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003208 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003210 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 (unsigned long long)fsid->major,
3212 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003213 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003214out_overflow:
3215 print_overflow_msg(__func__, xdr);
3216 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
3219static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3220{
Al Viro8687b632006-10-19 23:28:48 -07003221 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 *res = 60;
3224 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3225 return -EIO;
3226 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003227 p = xdr_inline_decode(xdr, 4);
3228 if (unlikely(!p))
3229 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003230 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3232 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003233 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003235out_overflow:
3236 print_overflow_msg(__func__, xdr);
3237 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}
3239
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003240static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003241{
3242 __be32 *p;
3243
3244 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3245 return -EIO;
3246 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3247 p = xdr_inline_decode(xdr, 4);
3248 if (unlikely(!p))
3249 goto out_overflow;
3250 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003251 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003252 }
3253 return 0;
3254out_overflow:
3255 print_overflow_msg(__func__, xdr);
3256 return -EIO;
3257}
3258
3259static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3260{
3261 __be32 *p;
3262 int len;
3263
Trond Myklebust7ad07352010-10-23 15:34:20 -04003264 if (fh != NULL)
3265 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003266
3267 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3268 return -EIO;
3269 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3270 p = xdr_inline_decode(xdr, 4);
3271 if (unlikely(!p))
3272 goto out_overflow;
3273 len = be32_to_cpup(p);
3274 if (len > NFS4_FHSIZE)
3275 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003276 p = xdr_inline_decode(xdr, len);
3277 if (unlikely(!p))
3278 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003279 if (fh != NULL) {
3280 memcpy(fh->data, p, len);
3281 fh->size = len;
3282 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003283 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3284 }
3285 return 0;
3286out_overflow:
3287 print_overflow_msg(__func__, xdr);
3288 return -EIO;
3289}
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3292{
Al Viro8687b632006-10-19 23:28:48 -07003293 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3296 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3297 return -EIO;
3298 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003299 p = xdr_inline_decode(xdr, 4);
3300 if (unlikely(!p))
3301 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003302 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3304 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003305 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003307out_overflow:
3308 print_overflow_msg(__func__, xdr);
3309 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310}
3311
3312static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3313{
Al Viro8687b632006-10-19 23:28:48 -07003314 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003315 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
3317 *fileid = 0;
3318 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3319 return -EIO;
3320 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003321 p = xdr_inline_decode(xdr, 8);
3322 if (unlikely(!p))
3323 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003324 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003326 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003328 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003329 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003330out_overflow:
3331 print_overflow_msg(__func__, xdr);
3332 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333}
3334
Manoj Naik99baf622006-06-09 09:34:24 -04003335static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3336{
Al Viro8687b632006-10-19 23:28:48 -07003337 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003338 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003339
3340 *fileid = 0;
3341 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3342 return -EIO;
3343 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003344 p = xdr_inline_decode(xdr, 8);
3345 if (unlikely(!p))
3346 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003347 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003348 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003349 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003350 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003351 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003352 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003353out_overflow:
3354 print_overflow_msg(__func__, xdr);
3355 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003356}
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3359{
Al Viro8687b632006-10-19 23:28:48 -07003360 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 int status = 0;
3362
3363 *res = 0;
3364 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3365 return -EIO;
3366 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003367 p = xdr_inline_decode(xdr, 8);
3368 if (unlikely(!p))
3369 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003370 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3372 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003373 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003375out_overflow:
3376 print_overflow_msg(__func__, xdr);
3377 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378}
3379
3380static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3381{
Al Viro8687b632006-10-19 23:28:48 -07003382 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 int status = 0;
3384
3385 *res = 0;
3386 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3387 return -EIO;
3388 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003389 p = xdr_inline_decode(xdr, 8);
3390 if (unlikely(!p))
3391 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003392 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3394 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003395 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003397out_overflow:
3398 print_overflow_msg(__func__, xdr);
3399 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400}
3401
3402static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3403{
Al Viro8687b632006-10-19 23:28:48 -07003404 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 int status = 0;
3406
3407 *res = 0;
3408 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3409 return -EIO;
3410 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003411 p = xdr_inline_decode(xdr, 8);
3412 if (unlikely(!p))
3413 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003414 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3416 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003417 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003419out_overflow:
3420 print_overflow_msg(__func__, xdr);
3421 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422}
3423
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003424static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3425{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003426 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003427 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003428 int status = 0;
3429
Benny Halevyc0eae662009-08-14 17:20:14 +03003430 p = xdr_inline_decode(xdr, 4);
3431 if (unlikely(!p))
3432 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003433 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003434 if (n == 0)
3435 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003436 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003437 path->ncomponents = 0;
3438 while (path->ncomponents < n) {
3439 struct nfs4_string *component = &path->components[path->ncomponents];
3440 status = decode_opaque_inline(xdr, &component->len, &component->data);
3441 if (unlikely(status != 0))
3442 goto out_eio;
Trond Myklebust95a13f72012-03-14 21:55:01 -04003443 ifdebug (XDR)
Chuck Lever02a29762012-03-01 17:00:31 -05003444 pr_cont("%s%.*s ",
3445 (path->ncomponents != n ? "/ " : ""),
3446 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003447 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3448 path->ncomponents++;
3449 else {
3450 dprintk("cannot parse %d components in path\n", n);
3451 goto out_eio;
3452 }
3453 }
3454out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003455 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003456root_path:
3457/* a root pathname is sent as a zero component4 */
3458 path->ncomponents = 1;
3459 path->components[0].len=0;
3460 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003461 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003462 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003463out_eio:
3464 dprintk(" status %d", status);
3465 status = -EIO;
3466 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003467out_overflow:
3468 print_overflow_msg(__func__, xdr);
3469 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003470}
3471
3472static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003473{
3474 int n;
Al Viro8687b632006-10-19 23:28:48 -07003475 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003476 int status = -EIO;
3477
3478 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3479 goto out;
3480 status = 0;
3481 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3482 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003483 status = -EIO;
3484 /* Ignore borken servers that return unrequested attrs */
3485 if (unlikely(res == NULL))
3486 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003487 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003488 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003489 if (unlikely(status != 0))
3490 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003491 p = xdr_inline_decode(xdr, 4);
3492 if (unlikely(!p))
3493 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003494 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003495 if (n <= 0)
3496 goto out_eio;
3497 res->nlocations = 0;
3498 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003499 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003500 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003501
Benny Halevyc0eae662009-08-14 17:20:14 +03003502 p = xdr_inline_decode(xdr, 4);
3503 if (unlikely(!p))
3504 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003505 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003506
3507 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003508 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003509 while (loc->nservers < m) {
3510 struct nfs4_string *server = &loc->servers[loc->nservers];
3511 status = decode_opaque_inline(xdr, &server->len, &server->data);
3512 if (unlikely(status != 0))
3513 goto out_eio;
3514 dprintk("%s ", server->data);
3515 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3516 loc->nservers++;
3517 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003518 unsigned int i;
3519 dprintk("%s: using first %u of %u servers "
3520 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003521 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003522 NFS4_FS_LOCATION_MAXSERVERS,
3523 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003524 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003525 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003526 char *data;
3527 status = decode_opaque_inline(xdr, &len, &data);
3528 if (unlikely(status != 0))
3529 goto out_eio;
3530 }
3531 }
3532 }
3533 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003534 if (unlikely(status != 0))
3535 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003536 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003537 res->nlocations++;
3538 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003539 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003540 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003541out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003542 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003543 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003544out_overflow:
3545 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003546out_eio:
3547 status = -EIO;
3548 goto out;
3549}
3550
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3552{
Al Viro8687b632006-10-19 23:28:48 -07003553 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 int status = 0;
3555
3556 *res = 0;
3557 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3558 return -EIO;
3559 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003560 p = xdr_inline_decode(xdr, 8);
3561 if (unlikely(!p))
3562 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003563 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3565 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003566 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003568out_overflow:
3569 print_overflow_msg(__func__, xdr);
3570 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571}
3572
3573static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3574{
Al Viro8687b632006-10-19 23:28:48 -07003575 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 int status = 0;
3577
3578 *maxlink = 1;
3579 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3580 return -EIO;
3581 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003582 p = xdr_inline_decode(xdr, 4);
3583 if (unlikely(!p))
3584 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003585 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3587 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003588 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003590out_overflow:
3591 print_overflow_msg(__func__, xdr);
3592 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593}
3594
3595static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3596{
Al Viro8687b632006-10-19 23:28:48 -07003597 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 int status = 0;
3599
3600 *maxname = 1024;
3601 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3602 return -EIO;
3603 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003604 p = xdr_inline_decode(xdr, 4);
3605 if (unlikely(!p))
3606 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003607 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3609 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003610 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003612out_overflow:
3613 print_overflow_msg(__func__, xdr);
3614 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
3617static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3618{
Al Viro8687b632006-10-19 23:28:48 -07003619 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 int status = 0;
3621
3622 *res = 1024;
3623 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3624 return -EIO;
3625 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3626 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003627 p = xdr_inline_decode(xdr, 8);
3628 if (unlikely(!p))
3629 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003630 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 if (maxread > 0x7FFFFFFF)
3632 maxread = 0x7FFFFFFF;
3633 *res = (uint32_t)maxread;
3634 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3635 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003636 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003638out_overflow:
3639 print_overflow_msg(__func__, xdr);
3640 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641}
3642
3643static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3644{
Al Viro8687b632006-10-19 23:28:48 -07003645 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 int status = 0;
3647
3648 *res = 1024;
3649 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3650 return -EIO;
3651 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3652 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003653 p = xdr_inline_decode(xdr, 8);
3654 if (unlikely(!p))
3655 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003656 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (maxwrite > 0x7FFFFFFF)
3658 maxwrite = 0x7FFFFFFF;
3659 *res = (uint32_t)maxwrite;
3660 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3661 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003662 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003664out_overflow:
3665 print_overflow_msg(__func__, xdr);
3666 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667}
3668
Trond Myklebustbca79472009-03-11 14:10:26 -04003669static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670{
Trond Myklebustbca79472009-03-11 14:10:26 -04003671 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003672 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003673 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
3675 *mode = 0;
3676 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3677 return -EIO;
3678 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003679 p = xdr_inline_decode(xdr, 4);
3680 if (unlikely(!p))
3681 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003682 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003683 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003685 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003687 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003688 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003689out_overflow:
3690 print_overflow_msg(__func__, xdr);
3691 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692}
3693
3694static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3695{
Al Viro8687b632006-10-19 23:28:48 -07003696 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003697 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
3699 *nlink = 1;
3700 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3701 return -EIO;
3702 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003703 p = xdr_inline_decode(xdr, 4);
3704 if (unlikely(!p))
3705 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003706 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003708 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003710 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003711 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003712out_overflow:
3713 print_overflow_msg(__func__, xdr);
3714 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715}
3716
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003717static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003718 const struct nfs_server *server, uint32_t *uid,
3719 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Al Viro8687b632006-10-19 23:28:48 -07003721 uint32_t len;
3722 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003723 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
3725 *uid = -2;
3726 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3727 return -EIO;
3728 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003729 p = xdr_inline_decode(xdr, 4);
3730 if (unlikely(!p))
3731 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003732 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003733 p = xdr_inline_decode(xdr, len);
3734 if (unlikely(!p))
3735 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003736 if (owner_name != NULL) {
3737 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3738 if (owner_name->data != NULL) {
3739 owner_name->len = len;
3740 ret = NFS_ATTR_FATTR_OWNER_NAME;
3741 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003742 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003743 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003744 ret = NFS_ATTR_FATTR_OWNER;
3745 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003747 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003749 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003750 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3752 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003753 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003754 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003755out_overflow:
3756 print_overflow_msg(__func__, xdr);
3757 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758}
3759
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003760static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003761 const struct nfs_server *server, uint32_t *gid,
3762 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Al Viro8687b632006-10-19 23:28:48 -07003764 uint32_t len;
3765 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003766 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
3768 *gid = -2;
3769 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3770 return -EIO;
3771 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003772 p = xdr_inline_decode(xdr, 4);
3773 if (unlikely(!p))
3774 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003775 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003776 p = xdr_inline_decode(xdr, len);
3777 if (unlikely(!p))
3778 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003779 if (group_name != NULL) {
3780 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3781 if (group_name->data != NULL) {
3782 group_name->len = len;
3783 ret = NFS_ATTR_FATTR_GROUP_NAME;
3784 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003785 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003786 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003787 ret = NFS_ATTR_FATTR_GROUP;
3788 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003790 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003792 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003793 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3795 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003796 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003797 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003798out_overflow:
3799 print_overflow_msg(__func__, xdr);
3800 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801}
3802
3803static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3804{
Al Viro8687b632006-10-19 23:28:48 -07003805 uint32_t major = 0, minor = 0;
3806 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003807 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809 *rdev = MKDEV(0,0);
3810 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3811 return -EIO;
3812 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3813 dev_t tmp;
3814
Benny Halevyc0eae662009-08-14 17:20:14 +03003815 p = xdr_inline_decode(xdr, 8);
3816 if (unlikely(!p))
3817 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003818 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003819 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 tmp = MKDEV(major, minor);
3821 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3822 *rdev = tmp;
3823 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003824 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003826 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003827 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003828out_overflow:
3829 print_overflow_msg(__func__, xdr);
3830 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831}
3832
3833static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3834{
Al Viro8687b632006-10-19 23:28:48 -07003835 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 int status = 0;
3837
3838 *res = 0;
3839 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3840 return -EIO;
3841 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003842 p = xdr_inline_decode(xdr, 8);
3843 if (unlikely(!p))
3844 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003845 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3847 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003848 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003850out_overflow:
3851 print_overflow_msg(__func__, xdr);
3852 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853}
3854
3855static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3856{
Al Viro8687b632006-10-19 23:28:48 -07003857 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 int status = 0;
3859
3860 *res = 0;
3861 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3862 return -EIO;
3863 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003864 p = xdr_inline_decode(xdr, 8);
3865 if (unlikely(!p))
3866 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003867 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3869 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003870 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003872out_overflow:
3873 print_overflow_msg(__func__, xdr);
3874 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875}
3876
3877static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3878{
Al Viro8687b632006-10-19 23:28:48 -07003879 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 int status = 0;
3881
3882 *res = 0;
3883 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3884 return -EIO;
3885 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003886 p = xdr_inline_decode(xdr, 8);
3887 if (unlikely(!p))
3888 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003889 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3891 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003892 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003894out_overflow:
3895 print_overflow_msg(__func__, xdr);
3896 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897}
3898
3899static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3900{
Al Viro8687b632006-10-19 23:28:48 -07003901 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003902 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 *used = 0;
3905 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3906 return -EIO;
3907 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003908 p = xdr_inline_decode(xdr, 8);
3909 if (unlikely(!p))
3910 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003911 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003913 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003915 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003917 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003918out_overflow:
3919 print_overflow_msg(__func__, xdr);
3920 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
3923static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3924{
Al Viro8687b632006-10-19 23:28:48 -07003925 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 uint64_t sec;
3927 uint32_t nsec;
3928
Benny Halevyc0eae662009-08-14 17:20:14 +03003929 p = xdr_inline_decode(xdr, 12);
3930 if (unlikely(!p))
3931 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003932 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003933 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 time->tv_sec = (time_t)sec;
3935 time->tv_nsec = (long)nsec;
3936 return 0;
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_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3943{
3944 int status = 0;
3945
3946 time->tv_sec = 0;
3947 time->tv_nsec = 0;
3948 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
3949 return -EIO;
3950 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
3951 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003952 if (status == 0)
3953 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
3955 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003956 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 return status;
3958}
3959
3960static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3961{
3962 int status = 0;
3963
3964 time->tv_sec = 0;
3965 time->tv_nsec = 0;
3966 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
3967 return -EIO;
3968 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
3969 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003970 if (status == 0)
3971 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
3973 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003974 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 return status;
3976}
3977
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07003978static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
3979 struct timespec *time)
3980{
3981 int status = 0;
3982
3983 time->tv_sec = 0;
3984 time->tv_nsec = 0;
3985 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
3986 return -EIO;
3987 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
3988 status = decode_attr_time(xdr, time);
3989 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
3990 }
3991 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
3992 (long)time->tv_nsec);
3993 return status;
3994}
3995
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3997{
3998 int status = 0;
3999
4000 time->tv_sec = 0;
4001 time->tv_nsec = 0;
4002 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4003 return -EIO;
4004 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4005 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004006 if (status == 0)
4007 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4009 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004010 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 return status;
4012}
4013
Al Viro8687b632006-10-19 23:28:48 -07004014static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015{
4016 unsigned int attrwords = XDR_QUADLEN(attrlen);
4017 unsigned int nwords = xdr->p - savep;
4018
4019 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004020 dprintk("%s: server returned incorrect attribute length: "
4021 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004022 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 attrwords << 2,
4024 (attrwords < nwords) ? '<' : '>',
4025 nwords << 2);
4026 return -EIO;
4027 }
4028 return 0;
4029}
4030
4031static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4032{
Al Viro8687b632006-10-19 23:28:48 -07004033 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Benny Halevyc0eae662009-08-14 17:20:14 +03004035 p = xdr_inline_decode(xdr, 20);
4036 if (unlikely(!p))
4037 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004038 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004039 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004040 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004042out_overflow:
4043 print_overflow_msg(__func__, xdr);
4044 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045}
4046
4047static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
4048{
Al Viro8687b632006-10-19 23:28:48 -07004049 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 uint32_t supp, acc;
4051 int status;
4052
4053 status = decode_op_hdr(xdr, OP_ACCESS);
4054 if (status)
4055 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004056 p = xdr_inline_decode(xdr, 8);
4057 if (unlikely(!p))
4058 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004059 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004060 acc = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 access->supported = supp;
4062 access->access = acc;
4063 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004064out_overflow:
4065 print_overflow_msg(__func__, xdr);
4066 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067}
4068
Benny Halevy07d30432009-08-14 17:19:52 +03004069static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070{
Al Viro8687b632006-10-19 23:28:48 -07004071 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004072
4073 p = xdr_inline_decode(xdr, len);
4074 if (likely(p)) {
4075 memcpy(buf, p, len);
4076 return 0;
4077 }
4078 print_overflow_msg(__func__, xdr);
4079 return -EIO;
4080}
4081
4082static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4083{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004084 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085}
4086
4087static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4088{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 int status;
4090
4091 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004092 if (status != -EIO)
4093 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004094 if (!status)
4095 status = decode_stateid(xdr, &res->stateid);
4096 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097}
4098
Benny Halevydb942bb2009-08-14 17:19:56 +03004099static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4100{
Chuck Levercd937102012-03-02 17:14:31 -05004101 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102}
4103
4104static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
4105{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 int status;
4107
4108 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004109 if (!status)
4110 status = decode_verifier(xdr, res->verf->verifier);
4111 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112}
4113
4114static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4115{
Al Viro8687b632006-10-19 23:28:48 -07004116 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 uint32_t bmlen;
4118 int status;
4119
4120 status = decode_op_hdr(xdr, OP_CREATE);
4121 if (status)
4122 return status;
4123 if ((status = decode_change_info(xdr, cinfo)))
4124 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004125 p = xdr_inline_decode(xdr, 4);
4126 if (unlikely(!p))
4127 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004128 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004129 p = xdr_inline_decode(xdr, bmlen << 2);
4130 if (likely(p))
4131 return 0;
4132out_overflow:
4133 print_overflow_msg(__func__, xdr);
4134 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135}
4136
4137static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4138{
Al Viro8687b632006-10-19 23:28:48 -07004139 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004140 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 int status;
4142
4143 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4144 goto xdr_error;
4145 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4146 goto xdr_error;
4147 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4148 goto xdr_error;
4149 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4150 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004151 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4152 &res->fh_expire_type)) != 0)
4153 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4155 goto xdr_error;
4156 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4157 goto xdr_error;
4158 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4159 goto xdr_error;
4160 status = verify_attr_len(xdr, savep, attrlen);
4161xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004162 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 return status;
4164}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004165
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4167{
Al Viro8687b632006-10-19 23:28:48 -07004168 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004169 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4173 goto xdr_error;
4174 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4175 goto xdr_error;
4176 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4177 goto xdr_error;
4178
4179 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4180 goto xdr_error;
4181 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4182 goto xdr_error;
4183 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4184 goto xdr_error;
4185 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4186 goto xdr_error;
4187 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4188 goto xdr_error;
4189 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4190 goto xdr_error;
4191
4192 status = verify_attr_len(xdr, savep, attrlen);
4193xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004194 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 return status;
4196}
4197
4198static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4199{
Al Viro8687b632006-10-19 23:28:48 -07004200 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004201 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4205 goto xdr_error;
4206 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4207 goto xdr_error;
4208 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4209 goto xdr_error;
4210
4211 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4212 goto xdr_error;
4213 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4214 goto xdr_error;
4215
4216 status = verify_attr_len(xdr, savep, attrlen);
4217xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004218 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 return status;
4220}
4221
Bryan Schumakerae42c702010-10-21 16:33:17 -04004222static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4223 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004224 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004225 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226{
Trond Myklebustbca79472009-03-11 14:10:26 -04004227 int status;
4228 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004229 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004230 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004232 status = decode_attr_type(xdr, bitmap, &type);
4233 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004235 fattr->mode = 0;
4236 if (status != 0) {
4237 fattr->mode |= nfs_type2fmt[type];
4238 fattr->valid |= status;
4239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004241 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4242 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004244 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004245
4246 status = decode_attr_size(xdr, bitmap, &fattr->size);
4247 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004249 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004250
4251 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4252 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004254 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004255
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004256 err = 0;
4257 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004258 if (status < 0)
4259 goto xdr_error;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004260 if (err == -NFS4ERR_WRONGSEC)
4261 nfs_fixup_secinfo_attributes(fattr, fh);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004262
4263 status = decode_attr_filehandle(xdr, bitmap, fh);
4264 if (status < 0)
4265 goto xdr_error;
4266
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004267 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4268 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004270 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004271
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004272 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004273 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004274 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004275 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004276
4277 status = decode_attr_mode(xdr, bitmap, &fmode);
4278 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004280 if (status != 0) {
4281 fattr->mode |= fmode;
4282 fattr->valid |= status;
4283 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004284
4285 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4286 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004288 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004289
Trond Myklebust6926afd2012-01-07 13:22:46 -05004290 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004291 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004293 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004294
Trond Myklebust6926afd2012-01-07 13:22:46 -05004295 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004296 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004298 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004299
4300 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4301 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004303 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004304
4305 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4306 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004308 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004309
4310 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4311 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004313 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004314
4315 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4316 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004318 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004319
4320 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4321 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004323 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004324
Trond Myklebust28331a42011-04-27 13:47:52 -04004325 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004326 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004327 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004328 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004329
Bryan Schumakerae42c702010-10-21 16:33:17 -04004330xdr_error:
4331 dprintk("%s: xdr returned %d\n", __func__, -status);
4332 return status;
4333}
4334
4335static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004336 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4337 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004338{
4339 __be32 *savep;
4340 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004341 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004342 int status;
4343
4344 status = decode_op_hdr(xdr, OP_GETATTR);
4345 if (status < 0)
4346 goto xdr_error;
4347
4348 status = decode_attr_bitmap(xdr, bitmap);
4349 if (status < 0)
4350 goto xdr_error;
4351
4352 status = decode_attr_length(xdr, &attrlen, &savep);
4353 if (status < 0)
4354 goto xdr_error;
4355
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004356 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004357 if (status < 0)
4358 goto xdr_error;
4359
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004360 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004362 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 return status;
4364}
4365
Bryan Schumakerae42c702010-10-21 16:33:17 -04004366static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004367 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004368{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004369 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004370}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
Andy Adamson504913f2010-10-20 00:17:57 -04004372/*
4373 * Decode potentially multiple layout types. Currently we only support
4374 * one layout driver per file system.
4375 */
4376static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4377 uint32_t *layouttype)
4378{
4379 uint32_t *p;
4380 int num;
4381
4382 p = xdr_inline_decode(xdr, 4);
4383 if (unlikely(!p))
4384 goto out_overflow;
4385 num = be32_to_cpup(p);
4386
4387 /* pNFS is not supported by the underlying file system */
4388 if (num == 0) {
4389 *layouttype = 0;
4390 return 0;
4391 }
4392 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004393 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4394 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004395
4396 /* Decode and set first layout type, move xdr->p past unused types */
4397 p = xdr_inline_decode(xdr, num * 4);
4398 if (unlikely(!p))
4399 goto out_overflow;
4400 *layouttype = be32_to_cpup(p);
4401 return 0;
4402out_overflow:
4403 print_overflow_msg(__func__, xdr);
4404 return -EIO;
4405}
4406
4407/*
4408 * The type of file system exported.
4409 * Note we must ensure that layouttype is set in any non-error case.
4410 */
4411static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4412 uint32_t *layouttype)
4413{
4414 int status = 0;
4415
4416 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4417 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4418 return -EIO;
4419 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4420 status = decode_first_pnfs_layout_type(xdr, layouttype);
4421 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4422 } else
4423 *layouttype = 0;
4424 return status;
4425}
4426
Fred Isamandae100c2011-07-30 20:52:37 -04004427/*
4428 * The prefered block size for layout directed io
4429 */
4430static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4431 uint32_t *res)
4432{
4433 __be32 *p;
4434
4435 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4436 *res = 0;
4437 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4438 p = xdr_inline_decode(xdr, 4);
4439 if (unlikely(!p)) {
4440 print_overflow_msg(__func__, xdr);
4441 return -EIO;
4442 }
4443 *res = be32_to_cpup(p);
4444 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4445 }
4446 return 0;
4447}
4448
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4450{
Al Viro8687b632006-10-19 23:28:48 -07004451 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004452 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 int status;
4454
4455 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4456 goto xdr_error;
4457 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4458 goto xdr_error;
4459 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4460 goto xdr_error;
4461
4462 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4463
4464 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4465 goto xdr_error;
4466 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4467 goto xdr_error;
4468 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4469 goto xdr_error;
4470 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4471 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4472 goto xdr_error;
4473 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004474 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4475 if (status != 0)
4476 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004477 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4478 if (status != 0)
4479 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004480 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4481 if (status)
4482 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
4484 status = verify_attr_len(xdr, savep, attrlen);
4485xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004486 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 return status;
4488}
4489
4490static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4491{
Al Viro8687b632006-10-19 23:28:48 -07004492 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 uint32_t len;
4494 int status;
4495
Trond Myklebust99367812007-07-17 21:52:41 -04004496 /* Zero handle first to allow comparisons */
4497 memset(fh, 0, sizeof(*fh));
4498
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 status = decode_op_hdr(xdr, OP_GETFH);
4500 if (status)
4501 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Benny Halevyc0eae662009-08-14 17:20:14 +03004503 p = xdr_inline_decode(xdr, 4);
4504 if (unlikely(!p))
4505 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004506 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 if (len > NFS4_FHSIZE)
4508 return -EIO;
4509 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004510 p = xdr_inline_decode(xdr, len);
4511 if (unlikely(!p))
4512 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004513 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004515out_overflow:
4516 print_overflow_msg(__func__, xdr);
4517 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518}
4519
4520static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4521{
4522 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 status = decode_op_hdr(xdr, OP_LINK);
4525 if (status)
4526 return status;
4527 return decode_change_info(xdr, cinfo);
4528}
4529
4530/*
4531 * We create the owner, so we know a proper owner.id length is 4.
4532 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004533static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004535 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004536 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004537 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004539 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004540 if (unlikely(!p))
4541 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004542 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004543 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004544 type = be32_to_cpup(p++); /* 4 byte read */
4545 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004546 fl->fl_start = (loff_t)offset;
4547 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4548 if (length == ~(uint64_t)0)
4549 fl->fl_end = OFFSET_MAX;
4550 fl->fl_type = F_WRLCK;
4551 if (type & 1)
4552 fl->fl_type = F_RDLCK;
4553 fl->fl_pid = 0;
4554 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004555 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4556 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4557 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004558 if (likely(p))
4559 return -NFS4ERR_DENIED;
4560out_overflow:
4561 print_overflow_msg(__func__, xdr);
4562 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563}
4564
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004565static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 int status;
4568
4569 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004570 if (status == -EIO)
4571 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004573 status = decode_stateid(xdr, &res->stateid);
4574 if (unlikely(status))
4575 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004577 status = decode_lock_denied(xdr, NULL);
4578 if (res->open_seqid != NULL)
4579 nfs_increment_open_seqid(status, res->open_seqid);
4580 nfs_increment_lock_seqid(status, res->lock_seqid);
4581out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 return status;
4583}
4584
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004585static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586{
4587 int status;
4588 status = decode_op_hdr(xdr, OP_LOCKT);
4589 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004590 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 return status;
4592}
4593
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004594static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 int status;
4597
4598 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004599 if (status != -EIO)
4600 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004601 if (status == 0)
4602 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 return status;
4604}
4605
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004606static int decode_release_lockowner(struct xdr_stream *xdr)
4607{
4608 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4609}
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611static int decode_lookup(struct xdr_stream *xdr)
4612{
4613 return decode_op_hdr(xdr, OP_LOOKUP);
4614}
4615
4616/* This is too sick! */
4617static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4618{
Andy Adamson05d564f2008-12-23 16:06:15 -05004619 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 uint32_t limit_type, nblocks, blocksize;
4621
Benny Halevyc0eae662009-08-14 17:20:14 +03004622 p = xdr_inline_decode(xdr, 12);
4623 if (unlikely(!p))
4624 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004625 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004627 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004628 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004629 break;
4630 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004631 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004632 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004633 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 }
4635 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004636out_overflow:
4637 print_overflow_msg(__func__, xdr);
4638 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
4640
4641static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4642{
Andy Adamson05d564f2008-12-23 16:06:15 -05004643 __be32 *p;
4644 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004645 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Benny Halevyc0eae662009-08-14 17:20:14 +03004647 p = xdr_inline_decode(xdr, 4);
4648 if (unlikely(!p))
4649 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004650 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4652 res->delegation_type = 0;
4653 return 0;
4654 }
Benny Halevy07d30432009-08-14 17:19:52 +03004655 status = decode_stateid(xdr, &res->delegation);
4656 if (unlikely(status))
4657 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004658 p = xdr_inline_decode(xdr, 4);
4659 if (unlikely(!p))
4660 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004661 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004664 case NFS4_OPEN_DELEGATE_READ:
4665 res->delegation_type = FMODE_READ;
4666 break;
4667 case NFS4_OPEN_DELEGATE_WRITE:
4668 res->delegation_type = FMODE_WRITE|FMODE_READ;
4669 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 return -EIO;
4671 }
David Howells7539bba2006-08-22 20:06:09 -04004672 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004673out_overflow:
4674 print_overflow_msg(__func__, xdr);
4675 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676}
4677
4678static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4679{
Andy Adamson05d564f2008-12-23 16:06:15 -05004680 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004681 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004682 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Andy Adamson05d564f2008-12-23 16:06:15 -05004684 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004685 if (status != -EIO)
4686 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004687 if (!status)
4688 status = decode_stateid(xdr, &res->stateid);
4689 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004690 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Andy Adamson05d564f2008-12-23 16:06:15 -05004692 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Benny Halevyc0eae662009-08-14 17:20:14 +03004694 p = xdr_inline_decode(xdr, 8);
4695 if (unlikely(!p))
4696 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004697 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004698 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004699 if (bmlen > 10)
4700 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Benny Halevyc0eae662009-08-14 17:20:14 +03004702 p = xdr_inline_decode(xdr, bmlen << 2);
4703 if (unlikely(!p))
4704 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004705 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4706 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004707 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004708 for (; i < NFS4_BITMAP_SIZE; i++)
4709 res->attrset[i] = 0;
4710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 return decode_delegation(xdr, res);
4712xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004713 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004715out_overflow:
4716 print_overflow_msg(__func__, xdr);
4717 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718}
4719
4720static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4721{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 int status;
4723
Andy Adamson05d564f2008-12-23 16:06:15 -05004724 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004725 if (status != -EIO)
4726 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004727 if (!status)
4728 status = decode_stateid(xdr, &res->stateid);
4729 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730}
4731
4732static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4733{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 int status;
4735
4736 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004737 if (status != -EIO)
4738 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004739 if (!status)
4740 status = decode_stateid(xdr, &res->stateid);
4741 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742}
4743
4744static int decode_putfh(struct xdr_stream *xdr)
4745{
4746 return decode_op_hdr(xdr, OP_PUTFH);
4747}
4748
4749static int decode_putrootfh(struct xdr_stream *xdr)
4750{
4751 return decode_op_hdr(xdr, OP_PUTROOTFH);
4752}
4753
4754static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4755{
4756 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07004757 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 uint32_t count, eof, recvd, hdrlen;
4759 int status;
4760
4761 status = decode_op_hdr(xdr, OP_READ);
4762 if (status)
4763 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004764 p = xdr_inline_decode(xdr, 8);
4765 if (unlikely(!p))
4766 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004767 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004768 count = be32_to_cpup(p);
Chuck Lever8111f372010-12-14 14:58:01 +00004769 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 recvd = req->rq_rcv_buf.len - hdrlen;
4771 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004772 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 "count %u > recvd %u\n", count, recvd);
4774 count = recvd;
4775 eof = 0;
4776 }
4777 xdr_read_pages(xdr, count);
4778 res->eof = eof;
4779 res->count = count;
4780 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004781out_overflow:
4782 print_overflow_msg(__func__, xdr);
4783 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784}
4785
4786static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4787{
4788 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004790 size_t hdrlen;
4791 u32 recvd, pglen = rcvbuf->page_len;
Chuck Leverbcecff72007-10-26 13:32:03 -04004792 int status;
Chuck Levercd937102012-03-02 17:14:31 -05004793 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
4795 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004796 if (!status)
4797 status = decode_verifier(xdr, readdir->verifier.data);
4798 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 return status;
Chuck Levercd937102012-03-02 17:14:31 -05004800 memcpy(verf, readdir->verifier.data, sizeof(verf));
Fred Isaman44109242008-04-02 15:21:15 +03004801 dprintk("%s: verifier = %08x:%08x\n",
Chuck Levercd937102012-03-02 17:14:31 -05004802 __func__, verf[0], verf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Benny Halevydb942bb2009-08-14 17:19:56 +03004804 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 recvd = rcvbuf->len - hdrlen;
4806 if (pglen > recvd)
4807 pglen = recvd;
4808 xdr_read_pages(xdr, pglen);
4809
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004810
Trond Myklebustac396122010-11-15 20:26:22 -05004811 return pglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812}
4813
4814static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4815{
4816 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
4817 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004818 size_t hdrlen;
4819 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004820 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 int status;
4822
4823 status = decode_op_hdr(xdr, OP_READLINK);
4824 if (status)
4825 return status;
4826
4827 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004828 p = xdr_inline_decode(xdr, 4);
4829 if (unlikely(!p))
4830 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004831 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004833 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 return -ENAMETOOLONG;
4835 }
4836 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
4837 recvd = req->rq_rcv_buf.len - hdrlen;
4838 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004839 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 "count %u > recvd %u\n", len, recvd);
4841 return -EIO;
4842 }
4843 xdr_read_pages(xdr, len);
4844 /*
4845 * The XDR encode routine has set things up so that
4846 * the link text will be copied directly into the
4847 * buffer. We just have to do overflow-checking,
4848 * and and null-terminate the text (the VFS expects
4849 * null-termination).
4850 */
Chuck Leverb4687da2010-09-21 16:55:48 -04004851 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004853out_overflow:
4854 print_overflow_msg(__func__, xdr);
4855 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856}
4857
4858static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4859{
4860 int status;
4861
4862 status = decode_op_hdr(xdr, OP_REMOVE);
4863 if (status)
4864 goto out;
4865 status = decode_change_info(xdr, cinfo);
4866out:
4867 return status;
4868}
4869
4870static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
4871 struct nfs4_change_info *new_cinfo)
4872{
4873 int status;
4874
4875 status = decode_op_hdr(xdr, OP_RENAME);
4876 if (status)
4877 goto out;
4878 if ((status = decode_change_info(xdr, old_cinfo)))
4879 goto out;
4880 status = decode_change_info(xdr, new_cinfo);
4881out:
4882 return status;
4883}
4884
4885static int decode_renew(struct xdr_stream *xdr)
4886{
4887 return decode_op_hdr(xdr, OP_RENEW);
4888}
4889
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004890static int
4891decode_restorefh(struct xdr_stream *xdr)
4892{
4893 return decode_op_hdr(xdr, OP_RESTOREFH);
4894}
4895
J. Bruce Fields029d1052005-06-22 17:16:22 +00004896static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05004897 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00004898{
Andy Adamsonbf118a32011-12-07 11:55:27 -05004899 __be32 *savep, *bm_p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004900 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004901 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00004902 struct kvec *iov = req->rq_rcv_buf.head;
4903 int status;
4904
Andy Adamsonbf118a32011-12-07 11:55:27 -05004905 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004906 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4907 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05004908 bm_p = xdr->p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004909 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4910 goto out;
4911 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4912 goto out;
4913
4914 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
4915 return -EIO;
4916 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04004917 size_t hdrlen;
4918 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004919
Andy Adamsonbf118a32011-12-07 11:55:27 -05004920 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
4921 * are stored with the acl data to handle the problem of
4922 * variable length bitmaps.*/
4923 xdr->p = bm_p;
4924 res->acl_data_offset = be32_to_cpup(bm_p) + 2;
4925 res->acl_data_offset <<= 2;
4926
J. Bruce Fields029d1052005-06-22 17:16:22 +00004927 /* We ignore &savep and don't do consistency checks on
4928 * the attr length. Let userspace figure it out.... */
4929 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
Andy Adamsonbf118a32011-12-07 11:55:27 -05004930 attrlen += res->acl_data_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004931 recvd = req->rq_rcv_buf.len - hdrlen;
4932 if (attrlen > recvd) {
Andy Adamsonbf118a32011-12-07 11:55:27 -05004933 if (res->acl_flags & NFS4_ACL_LEN_REQUEST) {
4934 /* getxattr interface called with a NULL buf */
4935 res->acl_len = attrlen;
4936 goto out;
4937 }
4938 dprintk("NFS: acl reply: attrlen %u > recvd %u\n",
J. Bruce Fields029d1052005-06-22 17:16:22 +00004939 attrlen, recvd);
4940 return -EINVAL;
4941 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04004942 xdr_read_pages(xdr, attrlen);
Andy Adamsonbf118a32011-12-07 11:55:27 -05004943 res->acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04004944 } else
4945 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004946
4947out:
4948 return status;
4949}
4950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951static int
4952decode_savefh(struct xdr_stream *xdr)
4953{
4954 return decode_op_hdr(xdr, OP_SAVEFH);
4955}
4956
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004957static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958{
Al Viro8687b632006-10-19 23:28:48 -07004959 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 uint32_t bmlen;
4961 int status;
4962
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 status = decode_op_hdr(xdr, OP_SETATTR);
4964 if (status)
4965 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004966 p = xdr_inline_decode(xdr, 4);
4967 if (unlikely(!p))
4968 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004969 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004970 p = xdr_inline_decode(xdr, bmlen << 2);
4971 if (likely(p))
4972 return 0;
4973out_overflow:
4974 print_overflow_msg(__func__, xdr);
4975 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976}
4977
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004978static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979{
Al Viro8687b632006-10-19 23:28:48 -07004980 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 uint32_t opnum;
4982 int32_t nfserr;
4983
Benny Halevyc0eae662009-08-14 17:20:14 +03004984 p = xdr_inline_decode(xdr, 8);
4985 if (unlikely(!p))
4986 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004987 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004989 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05004990 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 return -EIO;
4992 }
Benny Halevycccddf42009-08-14 17:20:19 +03004993 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004995 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
4996 if (unlikely(!p))
4997 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004998 p = xdr_decode_hyper(p, &res->clientid);
4999 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 } else if (nfserr == NFSERR_CLID_INUSE) {
5001 uint32_t len;
5002
5003 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005004 p = xdr_inline_decode(xdr, 4);
5005 if (unlikely(!p))
5006 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005007 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005008 p = xdr_inline_decode(xdr, len);
5009 if (unlikely(!p))
5010 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005013 p = xdr_inline_decode(xdr, 4);
5014 if (unlikely(!p))
5015 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005016 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005017 p = xdr_inline_decode(xdr, len);
5018 if (unlikely(!p))
5019 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 return -NFSERR_CLID_INUSE;
5021 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005022 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
5024 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005025out_overflow:
5026 print_overflow_msg(__func__, xdr);
5027 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028}
5029
5030static int decode_setclientid_confirm(struct xdr_stream *xdr)
5031{
5032 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5033}
5034
5035static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5036{
Al Viro8687b632006-10-19 23:28:48 -07005037 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 int status;
5039
5040 status = decode_op_hdr(xdr, OP_WRITE);
5041 if (status)
5042 return status;
5043
Benny Halevyc0eae662009-08-14 17:20:14 +03005044 p = xdr_inline_decode(xdr, 16);
5045 if (unlikely(!p))
5046 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005047 res->count = be32_to_cpup(p++);
5048 res->verf->committed = be32_to_cpup(p++);
Chuck Levercd937102012-03-02 17:14:31 -05005049 memcpy(res->verf->verifier, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005051out_overflow:
5052 print_overflow_msg(__func__, xdr);
5053 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054}
5055
5056static int decode_delegreturn(struct xdr_stream *xdr)
5057{
5058 return decode_op_hdr(xdr, OP_DELEGRETURN);
5059}
5060
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005061static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5062{
5063 __be32 *p;
5064
5065 p = xdr_inline_decode(xdr, 4);
5066 if (unlikely(!p))
5067 goto out_overflow;
5068 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5069 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5070 goto out_err;
5071
5072 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5073 if (unlikely(!p))
5074 goto out_overflow;
5075 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5076
5077 p = xdr_inline_decode(xdr, 8);
5078 if (unlikely(!p))
5079 goto out_overflow;
5080 flavor->gss.qop4 = be32_to_cpup(p++);
5081 flavor->gss.service = be32_to_cpup(p);
5082
5083 return 0;
5084
5085out_overflow:
5086 print_overflow_msg(__func__, xdr);
5087 return -EIO;
5088out_err:
5089 return -EINVAL;
5090}
5091
5092static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5093{
5094 struct nfs4_secinfo_flavor *sec_flavor;
5095 int status;
5096 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005097 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005098
5099 status = decode_op_hdr(xdr, OP_SECINFO);
Bryan Schumaker613e9012011-04-27 15:28:44 -04005100 if (status)
5101 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005102 p = xdr_inline_decode(xdr, 4);
5103 if (unlikely(!p))
5104 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005105
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005106 res->flavors->num_flavors = 0;
5107 num_flavors = be32_to_cpup(p);
5108
5109 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005110 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005111 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005112 break;
5113
5114 p = xdr_inline_decode(xdr, 4);
5115 if (unlikely(!p))
5116 goto out_overflow;
5117 sec_flavor->flavor = be32_to_cpup(p);
5118
5119 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005120 status = decode_secinfo_gss(xdr, sec_flavor);
5121 if (status)
5122 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005123 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005124 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005125 }
5126
Bryan Schumaker613e9012011-04-27 15:28:44 -04005127out:
5128 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005129out_overflow:
5130 print_overflow_msg(__func__, xdr);
5131 return -EIO;
5132}
5133
Benny Halevy99fe60d2009-04-01 09:22:29 -04005134#if defined(CONFIG_NFS_V4_1)
5135static int decode_exchange_id(struct xdr_stream *xdr,
5136 struct nfs41_exchange_id_res *res)
5137{
5138 __be32 *p;
5139 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005140 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005141 int status;
5142 struct nfs_client *clp = res->client;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005143 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005144
5145 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5146 if (status)
5147 return status;
5148
Benny Halevyc0eae662009-08-14 17:20:14 +03005149 p = xdr_inline_decode(xdr, 8);
5150 if (unlikely(!p))
5151 goto out_overflow;
Andy Adamson114f64b2011-03-09 13:13:45 -05005152 xdr_decode_hyper(p, &clp->cl_clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005153 p = xdr_inline_decode(xdr, 12);
5154 if (unlikely(!p))
5155 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005156 clp->cl_seqid = be32_to_cpup(p++);
5157 clp->cl_exchange_flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005158
5159 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005160 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005161 if (dummy != SP4_NONE)
5162 return -EIO;
5163
5164 /* Throw away minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005165 p = xdr_inline_decode(xdr, 8);
5166 if (unlikely(!p))
5167 goto out_overflow;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005168
5169 /* Throw away Major id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005170 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5171 if (unlikely(status))
5172 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005173
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005174 /* Save server_scope */
Benny Halevy2460ba52009-08-14 17:20:10 +03005175 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5176 if (unlikely(status))
5177 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005178
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005179 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5180 return -EIO;
5181
5182 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5183 res->server_scope->server_scope_sz = dummy;
5184
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005185 /* Implementation Id */
5186 p = xdr_inline_decode(xdr, 4);
5187 if (unlikely(!p))
5188 goto out_overflow;
5189 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005190
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005191 if (impl_id_count) {
5192 /* nii_domain */
5193 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5194 if (unlikely(status))
5195 return status;
5196 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5197 return -EIO;
5198 memcpy(res->impl_id->domain, dummy_str, dummy);
5199
5200 /* nii_name */
5201 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5202 if (unlikely(status))
5203 return status;
5204 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5205 return -EIO;
5206 memcpy(res->impl_id->name, dummy_str, dummy);
5207
5208 /* nii_date */
5209 p = xdr_inline_decode(xdr, 12);
5210 if (unlikely(!p))
5211 goto out_overflow;
5212 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5213 res->impl_id->date.nseconds = be32_to_cpup(p);
5214
5215 /* if there's more than one entry, ignore the rest */
5216 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005217 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005218out_overflow:
5219 print_overflow_msg(__func__, xdr);
5220 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005221}
Andy Adamsonfc931582009-04-01 09:22:31 -04005222
5223static int decode_chan_attrs(struct xdr_stream *xdr,
5224 struct nfs4_channel_attrs *attrs)
5225{
5226 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005227 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005228
Benny Halevyc0eae662009-08-14 17:20:14 +03005229 p = xdr_inline_decode(xdr, 28);
5230 if (unlikely(!p))
5231 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005232 val = be32_to_cpup(p++); /* headerpadsz */
5233 if (val)
5234 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005235 attrs->max_rqst_sz = be32_to_cpup(p++);
5236 attrs->max_resp_sz = be32_to_cpup(p++);
5237 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5238 attrs->max_ops = be32_to_cpup(p++);
5239 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005240 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005241 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005242 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5243 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005244 return -EINVAL;
5245 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005246 if (nr_attrs == 1) {
5247 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5248 if (unlikely(!p))
5249 goto out_overflow;
5250 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005251 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005252out_overflow:
5253 print_overflow_msg(__func__, xdr);
5254 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005255}
5256
Benny Halevye78291e2009-08-14 17:20:00 +03005257static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5258{
5259 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005260}
5261
5262static int decode_create_session(struct xdr_stream *xdr,
5263 struct nfs41_create_session_res *res)
5264{
5265 __be32 *p;
5266 int status;
5267 struct nfs_client *clp = res->client;
5268 struct nfs4_session *session = clp->cl_session;
5269
5270 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005271 if (!status)
5272 status = decode_sessionid(xdr, &session->sess_id);
5273 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005274 return status;
5275
Andy Adamsonfc931582009-04-01 09:22:31 -04005276 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005277 p = xdr_inline_decode(xdr, 8);
5278 if (unlikely(!p))
5279 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005280 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005281 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005282
5283 /* Channel attributes */
5284 status = decode_chan_attrs(xdr, &session->fc_attrs);
5285 if (!status)
5286 status = decode_chan_attrs(xdr, &session->bc_attrs);
5287 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005288out_overflow:
5289 print_overflow_msg(__func__, xdr);
5290 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005291}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005292
5293static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5294{
5295 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5296}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005297
5298static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5299{
5300 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5301}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005302#endif /* CONFIG_NFS_V4_1 */
5303
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005304static int decode_sequence(struct xdr_stream *xdr,
5305 struct nfs4_sequence_res *res,
5306 struct rpc_rqst *rqstp)
5307{
5308#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005309 struct nfs4_sessionid id;
5310 u32 dummy;
5311 int status;
5312 __be32 *p;
5313
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005314 if (!res->sr_session)
5315 return 0;
5316
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005317 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005318 if (!status)
5319 status = decode_sessionid(xdr, &id);
5320 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005321 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005322
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005323 /*
5324 * If the server returns different values for sessionID, slotID or
5325 * sequence number, the server is looney tunes.
5326 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005327 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005328
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005329 if (memcmp(id.data, res->sr_session->sess_id.data,
5330 NFS4_MAX_SESSIONID_LEN)) {
5331 dprintk("%s Invalid session id\n", __func__);
5332 goto out_err;
5333 }
Benny Halevye78291e2009-08-14 17:20:00 +03005334
Benny Halevyc0eae662009-08-14 17:20:14 +03005335 p = xdr_inline_decode(xdr, 20);
5336 if (unlikely(!p))
5337 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005338
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005339 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005340 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005341 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005342 dprintk("%s Invalid sequence number\n", __func__);
5343 goto out_err;
5344 }
5345 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005346 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005347 if (dummy != res->sr_slot - res->sr_session->fc_slot_table.slots) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005348 dprintk("%s Invalid slot id\n", __func__);
5349 goto out_err;
5350 }
5351 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005352 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005353 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005354 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005355 /* result flags */
5356 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005357 status = 0;
5358out_err:
5359 res->sr_status = status;
5360 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005361out_overflow:
5362 print_overflow_msg(__func__, xdr);
5363 status = -EIO;
5364 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005365#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005366 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005367#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005368}
5369
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005370#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005371/*
5372 * TODO: Need to handle case when EOF != true;
5373 */
5374static int decode_getdevicelist(struct xdr_stream *xdr,
5375 struct pnfs_devicelist *res)
5376{
5377 __be32 *p;
5378 int status, i;
5379 struct nfs_writeverf verftemp;
5380
5381 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5382 if (status)
5383 return status;
5384
5385 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5386 if (unlikely(!p))
5387 goto out_overflow;
5388
5389 /* TODO: Skip cookie for now */
5390 p += 2;
5391
5392 /* Read verifier */
Chuck Levercd937102012-03-02 17:14:31 -05005393 p = xdr_decode_opaque_fixed(p, verftemp.verifier, NFS4_VERIFIER_SIZE);
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005394
5395 res->num_devs = be32_to_cpup(p);
5396
5397 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5398
5399 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005400 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005401 __func__, res->num_devs);
5402 return -EIO;
5403 }
5404
5405 p = xdr_inline_decode(xdr,
5406 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5407 if (unlikely(!p))
5408 goto out_overflow;
5409 for (i = 0; i < res->num_devs; i++)
5410 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5411 NFS4_DEVICEID4_SIZE);
5412 res->eof = be32_to_cpup(p);
5413 return 0;
5414out_overflow:
5415 print_overflow_msg(__func__, xdr);
5416 return -EIO;
5417}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005418
5419static int decode_getdeviceinfo(struct xdr_stream *xdr,
5420 struct pnfs_device *pdev)
5421{
5422 __be32 *p;
5423 uint32_t len, type;
5424 int status;
5425
5426 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5427 if (status) {
5428 if (status == -ETOOSMALL) {
5429 p = xdr_inline_decode(xdr, 4);
5430 if (unlikely(!p))
5431 goto out_overflow;
5432 pdev->mincount = be32_to_cpup(p);
5433 dprintk("%s: Min count too small. mincnt = %u\n",
5434 __func__, pdev->mincount);
5435 }
5436 return status;
5437 }
5438
5439 p = xdr_inline_decode(xdr, 8);
5440 if (unlikely(!p))
5441 goto out_overflow;
5442 type = be32_to_cpup(p++);
5443 if (type != pdev->layout_type) {
5444 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5445 __func__, pdev->layout_type, type);
5446 return -EINVAL;
5447 }
5448 /*
5449 * Get the length of the opaque device_addr4. xdr_read_pages places
5450 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5451 * and places the remaining xdr data in xdr_buf->tail
5452 */
5453 pdev->mincount = be32_to_cpup(p);
5454 xdr_read_pages(xdr, pdev->mincount); /* include space for the length */
5455
5456 /* Parse notification bitmap, verifying that it is zero. */
5457 p = xdr_inline_decode(xdr, 4);
5458 if (unlikely(!p))
5459 goto out_overflow;
5460 len = be32_to_cpup(p);
5461 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005462 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005463
5464 p = xdr_inline_decode(xdr, 4 * len);
5465 if (unlikely(!p))
5466 goto out_overflow;
5467 for (i = 0; i < len; i++, p++) {
5468 if (be32_to_cpup(p)) {
5469 dprintk("%s: notifications not supported\n",
5470 __func__);
5471 return -EIO;
5472 }
5473 }
5474 }
5475 return 0;
5476out_overflow:
5477 print_overflow_msg(__func__, xdr);
5478 return -EIO;
5479}
5480
5481static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5482 struct nfs4_layoutget_res *res)
5483{
5484 __be32 *p;
5485 int status;
5486 u32 layout_count;
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005487 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
5488 struct kvec *iov = rcvbuf->head;
5489 u32 hdrlen, recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005490
5491 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5492 if (status)
5493 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005494 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005495 if (unlikely(!p))
5496 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005497 res->return_on_close = be32_to_cpup(p);
5498 decode_stateid(xdr, &res->stateid);
5499 p = xdr_inline_decode(xdr, 4);
5500 if (unlikely(!p))
5501 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005502 layout_count = be32_to_cpup(p);
5503 if (!layout_count) {
5504 dprintk("%s: server responded with empty layout array\n",
5505 __func__);
5506 return -EINVAL;
5507 }
5508
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005509 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005510 if (unlikely(!p))
5511 goto out_overflow;
5512 p = xdr_decode_hyper(p, &res->range.offset);
5513 p = xdr_decode_hyper(p, &res->range.length);
5514 res->range.iomode = be32_to_cpup(p++);
5515 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005516 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005517
5518 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5519 __func__,
5520 (unsigned long)res->range.offset,
5521 (unsigned long)res->range.length,
5522 res->range.iomode,
5523 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005524 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005525
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005526 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
5527 recvd = req->rq_rcv_buf.len - hdrlen;
5528 if (res->layoutp->len > recvd) {
5529 dprintk("NFS: server cheating in layoutget reply: "
5530 "layout len %u > recvd %u\n",
5531 res->layoutp->len, recvd);
5532 return -EINVAL;
5533 }
5534
5535 xdr_read_pages(xdr, res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005536
5537 if (layout_count > 1) {
5538 /* We only handle a length one array at the moment. Any
5539 * further entries are just ignored. Note that this means
5540 * the client may see a response that is less than the
5541 * minimum it requested.
5542 */
5543 dprintk("%s: server responded with %d layouts, dropping tail\n",
5544 __func__, layout_count);
5545 }
5546
5547 return 0;
5548out_overflow:
5549 print_overflow_msg(__func__, xdr);
5550 return -EIO;
5551}
Andy Adamson863a3c62011-03-23 13:27:54 +00005552
Benny Halevycbe82602011-05-22 19:52:37 +03005553static int decode_layoutreturn(struct xdr_stream *xdr,
5554 struct nfs4_layoutreturn_res *res)
5555{
5556 __be32 *p;
5557 int status;
5558
5559 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5560 if (status)
5561 return status;
5562 p = xdr_inline_decode(xdr, 4);
5563 if (unlikely(!p))
5564 goto out_overflow;
5565 res->lrs_present = be32_to_cpup(p);
5566 if (res->lrs_present)
5567 status = decode_stateid(xdr, &res->stateid);
5568 return status;
5569out_overflow:
5570 print_overflow_msg(__func__, xdr);
5571 return -EIO;
5572}
5573
Andy Adamson863a3c62011-03-23 13:27:54 +00005574static int decode_layoutcommit(struct xdr_stream *xdr,
5575 struct rpc_rqst *req,
5576 struct nfs4_layoutcommit_res *res)
5577{
5578 __be32 *p;
5579 __u32 sizechanged;
5580 int status;
5581
5582 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005583 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005584 if (status)
5585 return status;
5586
5587 p = xdr_inline_decode(xdr, 4);
5588 if (unlikely(!p))
5589 goto out_overflow;
5590 sizechanged = be32_to_cpup(p);
5591
5592 if (sizechanged) {
5593 /* throw away new size */
5594 p = xdr_inline_decode(xdr, 8);
5595 if (unlikely(!p))
5596 goto out_overflow;
5597 }
5598 return 0;
5599out_overflow:
5600 print_overflow_msg(__func__, xdr);
5601 return -EIO;
5602}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005603
5604static int decode_test_stateid(struct xdr_stream *xdr,
5605 struct nfs41_test_stateid_res *res)
5606{
5607 __be32 *p;
5608 int status;
5609 int num_res;
5610
5611 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5612 if (status)
5613 return status;
5614
5615 p = xdr_inline_decode(xdr, 4);
5616 if (unlikely(!p))
5617 goto out_overflow;
5618 num_res = be32_to_cpup(p++);
5619 if (num_res != 1)
5620 goto out;
5621
5622 p = xdr_inline_decode(xdr, 4);
5623 if (unlikely(!p))
5624 goto out_overflow;
5625 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005626
5627 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005628out_overflow:
5629 print_overflow_msg(__func__, xdr);
5630out:
5631 return -EIO;
5632}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005633
5634static int decode_free_stateid(struct xdr_stream *xdr,
5635 struct nfs41_free_stateid_res *res)
5636{
5637 __be32 *p;
5638 int status;
5639
5640 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5641 if (status)
5642 return status;
5643
5644 p = xdr_inline_decode(xdr, 4);
5645 if (unlikely(!p))
5646 goto out_overflow;
5647 res->status = be32_to_cpup(p++);
5648 return res->status;
5649out_overflow:
5650 print_overflow_msg(__func__, xdr);
5651 return -EIO;
5652}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005653#endif /* CONFIG_NFS_V4_1 */
5654
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655/*
Benny Halevy49c25592008-12-23 16:06:16 -05005656 * END OF "GENERIC" DECODE ROUTINES.
5657 */
5658
5659/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 * Decode OPEN_DOWNGRADE response
5661 */
Chuck Leverbf269552010-12-14 14:59:29 +00005662static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5663 struct xdr_stream *xdr,
5664 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665{
Andy Adamson05d564f2008-12-23 16:06:15 -05005666 struct compound_hdr hdr;
5667 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
Chuck Leverbf269552010-12-14 14:59:29 +00005669 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005670 if (status)
5671 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005672 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005673 if (status)
5674 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005675 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005676 if (status)
5677 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005678 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005679 if (status != 0)
5680 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005681 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005683 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684}
5685
5686/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 * Decode ACCESS response
5688 */
Chuck Leverbf269552010-12-14 14:59:29 +00005689static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5690 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692 struct compound_hdr hdr;
5693 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005694
Chuck Leverbf269552010-12-14 14:59:29 +00005695 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005696 if (status)
5697 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005698 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005699 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005701 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005702 if (status != 0)
5703 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005704 status = decode_access(xdr, res);
Trond Myklebust76b32992007-08-10 17:45:11 -04005705 if (status != 0)
5706 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005707 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708out:
5709 return status;
5710}
5711
5712/*
5713 * Decode LOOKUP response
5714 */
Chuck Leverbf269552010-12-14 14:59:29 +00005715static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5716 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718 struct compound_hdr hdr;
5719 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005720
Chuck Leverbf269552010-12-14 14:59:29 +00005721 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005722 if (status)
5723 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005724 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005725 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005727 status = decode_putfh(xdr);
5728 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005730 status = decode_lookup(xdr);
5731 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005733 status = decode_getfh(xdr, res->fh);
5734 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005736 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737out:
5738 return status;
5739}
5740
5741/*
5742 * Decode LOOKUP_ROOT response
5743 */
Chuck Leverbf269552010-12-14 14:59:29 +00005744static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5745 struct xdr_stream *xdr,
5746 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 struct compound_hdr hdr;
5749 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005750
Chuck Leverbf269552010-12-14 14:59:29 +00005751 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005752 if (status)
5753 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005754 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005755 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005757 status = decode_putrootfh(xdr);
5758 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005760 status = decode_getfh(xdr, res->fh);
5761 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005762 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763out:
5764 return status;
5765}
5766
5767/*
5768 * Decode REMOVE response
5769 */
Chuck Leverbf269552010-12-14 14:59:29 +00005770static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5771 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 struct compound_hdr hdr;
5774 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005775
Chuck Leverbf269552010-12-14 14:59:29 +00005776 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005777 if (status)
5778 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005779 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005780 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005782 status = decode_putfh(xdr);
5783 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005784 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005785 status = decode_remove(xdr, &res->cinfo);
5786 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005787 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005788 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789out:
5790 return status;
5791}
5792
5793/*
5794 * Decode RENAME response
5795 */
Chuck Leverbf269552010-12-14 14:59:29 +00005796static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5797 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 struct compound_hdr hdr;
5800 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005801
Chuck Leverbf269552010-12-14 14:59:29 +00005802 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005803 if (status)
5804 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005805 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005806 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005808 status = decode_putfh(xdr);
5809 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005811 status = decode_savefh(xdr);
5812 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005814 status = decode_putfh(xdr);
5815 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005817 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
5818 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005819 goto out;
5820 /* Current FH is target directory */
Trond Myklebust6926afd2012-01-07 13:22:46 -05005821 if (decode_getfattr(xdr, res->new_fattr, res->server))
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005822 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005823 status = decode_restorefh(xdr);
5824 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005825 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005826 decode_getfattr(xdr, res->old_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827out:
5828 return status;
5829}
5830
5831/*
5832 * Decode LINK response
5833 */
Chuck Leverbf269552010-12-14 14:59:29 +00005834static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5835 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837 struct compound_hdr hdr;
5838 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005839
Chuck Leverbf269552010-12-14 14:59:29 +00005840 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005841 if (status)
5842 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005843 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005844 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005846 status = decode_putfh(xdr);
5847 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005849 status = decode_savefh(xdr);
5850 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005852 status = decode_putfh(xdr);
5853 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005855 status = decode_link(xdr, &res->cinfo);
5856 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005857 goto out;
5858 /*
5859 * Note order: OP_LINK leaves the directory as the current
5860 * filehandle.
5861 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05005862 if (decode_getfattr(xdr, res->dir_attr, res->server))
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005863 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005864 status = decode_restorefh(xdr);
5865 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04005866 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005867 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868out:
5869 return status;
5870}
5871
5872/*
5873 * Decode CREATE response
5874 */
Chuck Leverbf269552010-12-14 14:59:29 +00005875static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5876 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878 struct compound_hdr hdr;
5879 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005880
Chuck Leverbf269552010-12-14 14:59:29 +00005881 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005882 if (status)
5883 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005884 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005885 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005887 status = decode_putfh(xdr);
5888 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005890 status = decode_savefh(xdr);
5891 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005892 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005893 status = decode_create(xdr, &res->dir_cinfo);
5894 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005896 status = decode_getfh(xdr, res->fh);
5897 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005899 if (decode_getfattr(xdr, res->fattr, res->server))
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005900 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005901 status = decode_restorefh(xdr);
5902 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005903 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005904 decode_getfattr(xdr, res->dir_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905out:
5906 return status;
5907}
5908
5909/*
5910 * Decode SYMLINK response
5911 */
Chuck Leverbf269552010-12-14 14:59:29 +00005912static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5913 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914{
Chuck Leverbf269552010-12-14 14:59:29 +00005915 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916}
5917
5918/*
5919 * Decode GETATTR response
5920 */
Chuck Leverbf269552010-12-14 14:59:29 +00005921static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5922 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 struct compound_hdr hdr;
5925 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005926
Chuck Leverbf269552010-12-14 14:59:29 +00005927 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928 if (status)
5929 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005930 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005931 if (status)
5932 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005933 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 if (status)
5935 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005936 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937out:
5938 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939}
5940
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005941/*
5942 * Encode an SETACL request
5943 */
Chuck Lever9f06c712010-12-14 14:59:18 +00005944static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
5945 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005946{
Andy Adamson05d564f2008-12-23 16:06:15 -05005947 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04005948 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05005949 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005950
Chuck Lever9f06c712010-12-14 14:59:18 +00005951 encode_compound_hdr(xdr, req, &hdr);
5952 encode_sequence(xdr, &args->seq_args, &hdr);
5953 encode_putfh(xdr, args->fh, &hdr);
5954 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05005955 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005956}
Andy Adamson05d564f2008-12-23 16:06:15 -05005957
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005958/*
5959 * Decode SETACL response
5960 */
5961static int
Chuck Leverbf269552010-12-14 14:59:29 +00005962nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04005963 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005964{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005965 struct compound_hdr hdr;
5966 int status;
5967
Chuck Leverbf269552010-12-14 14:59:29 +00005968 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005969 if (status)
5970 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005971 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005972 if (status)
5973 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005974 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005975 if (status)
5976 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005977 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005978out:
5979 return status;
5980}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00005983 * Decode GETACL response
5984 */
5985static int
Chuck Leverbf269552010-12-14 14:59:29 +00005986nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04005987 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005988{
J. Bruce Fields029d1052005-06-22 17:16:22 +00005989 struct compound_hdr hdr;
5990 int status;
5991
Trond Myklebust331818f2012-02-03 18:30:53 -05005992 if (res->acl_scratch != NULL) {
5993 void *p = page_address(res->acl_scratch);
5994 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
5995 }
Chuck Leverbf269552010-12-14 14:59:29 +00005996 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005997 if (status)
5998 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005999 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006000 if (status)
6001 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006002 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006003 if (status)
6004 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006005 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006006
6007out:
6008 return status;
6009}
6010
6011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 * Decode CLOSE response
6013 */
Chuck Leverbf269552010-12-14 14:59:29 +00006014static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6015 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016{
Andy Adamson05d564f2008-12-23 16:06:15 -05006017 struct compound_hdr hdr;
6018 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Chuck Leverbf269552010-12-14 14:59:29 +00006020 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006021 if (status)
6022 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006023 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006024 if (status)
6025 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006026 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006027 if (status)
6028 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006029 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006030 if (status != 0)
6031 goto out;
6032 /*
6033 * Note: Server may do delete on close for this file
6034 * in which case the getattr call will fail with
6035 * an ESTALE error. Shouldn't be a problem,
6036 * though, since fattr->valid will remain unset.
6037 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006038 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006040 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041}
6042
6043/*
6044 * Decode OPEN response
6045 */
Chuck Leverbf269552010-12-14 14:59:29 +00006046static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6047 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048{
Andy Adamson05d564f2008-12-23 16:06:15 -05006049 struct compound_hdr hdr;
6050 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Chuck Leverbf269552010-12-14 14:59:29 +00006052 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006053 if (status)
6054 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006055 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006056 if (status)
6057 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006058 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006059 if (status)
6060 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006061 status = decode_savefh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006062 if (status)
6063 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006064 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006065 if (status)
6066 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006067 if (decode_getfh(xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006069 if (decode_getfattr(xdr, res->f_attr, res->server) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006070 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006071 if (decode_restorefh(xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006072 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006073 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006075 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076}
6077
6078/*
6079 * Decode OPEN_CONFIRM response
6080 */
Chuck Leverbf269552010-12-14 14:59:29 +00006081static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6082 struct xdr_stream *xdr,
6083 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084{
Andy Adamson05d564f2008-12-23 16:06:15 -05006085 struct compound_hdr hdr;
6086 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087
Chuck Leverbf269552010-12-14 14:59:29 +00006088 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006089 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_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006096 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097}
6098
6099/*
6100 * Decode OPEN response
6101 */
Chuck Leverbf269552010-12-14 14:59:29 +00006102static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6103 struct xdr_stream *xdr,
6104 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105{
Andy Adamson05d564f2008-12-23 16:06:15 -05006106 struct compound_hdr hdr;
6107 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
Chuck Leverbf269552010-12-14 14:59:29 +00006109 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006110 if (status)
6111 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006112 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006113 if (status)
6114 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006115 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006116 if (status)
6117 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006118 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006119 if (status)
6120 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006121 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006123 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124}
6125
6126/*
6127 * Decode SETATTR response
6128 */
Chuck Leverbf269552010-12-14 14:59:29 +00006129static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6130 struct xdr_stream *xdr,
6131 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132{
Andy Adamson05d564f2008-12-23 16:06:15 -05006133 struct compound_hdr hdr;
6134 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135
Chuck Leverbf269552010-12-14 14:59:29 +00006136 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006137 if (status)
6138 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006139 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006140 if (status)
6141 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006142 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006143 if (status)
6144 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006145 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006146 if (status)
6147 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006148 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006150 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151}
6152
6153/*
6154 * Decode LOCK response
6155 */
Chuck Leverbf269552010-12-14 14:59:29 +00006156static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6157 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159 struct compound_hdr hdr;
6160 int status;
6161
Chuck Leverbf269552010-12-14 14:59:29 +00006162 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 if (status)
6164 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006165 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006166 if (status)
6167 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006168 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 if (status)
6170 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006171 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172out:
6173 return status;
6174}
6175
6176/*
6177 * Decode LOCKT response
6178 */
Chuck Leverbf269552010-12-14 14:59:29 +00006179static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6180 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182 struct compound_hdr hdr;
6183 int status;
6184
Chuck Leverbf269552010-12-14 14:59:29 +00006185 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186 if (status)
6187 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006188 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006189 if (status)
6190 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006191 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 if (status)
6193 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006194 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195out:
6196 return status;
6197}
6198
6199/*
6200 * Decode LOCKU response
6201 */
Chuck Leverbf269552010-12-14 14:59:29 +00006202static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6203 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 struct compound_hdr hdr;
6206 int status;
6207
Chuck Leverbf269552010-12-14 14:59:29 +00006208 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 if (status)
6210 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006211 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006212 if (status)
6213 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006214 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 if (status)
6216 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006217 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218out:
6219 return status;
6220}
6221
Chuck Leverbf269552010-12-14 14:59:29 +00006222static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6223 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006224{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006225 struct compound_hdr hdr;
6226 int status;
6227
Chuck Leverbf269552010-12-14 14:59:29 +00006228 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006229 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006230 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006231 return status;
6232}
6233
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234/*
6235 * Decode READLINK response
6236 */
Chuck Leverbf269552010-12-14 14:59:29 +00006237static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6238 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006239 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241 struct compound_hdr hdr;
6242 int status;
6243
Chuck Leverbf269552010-12-14 14:59:29 +00006244 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 if (status)
6246 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006247 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006248 if (status)
6249 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006250 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 if (status)
6252 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006253 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254out:
6255 return status;
6256}
6257
6258/*
6259 * Decode READDIR response
6260 */
Chuck Leverbf269552010-12-14 14:59:29 +00006261static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6262 struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 struct compound_hdr hdr;
6265 int status;
6266
Chuck Leverbf269552010-12-14 14:59:29 +00006267 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268 if (status)
6269 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006270 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006271 if (status)
6272 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006273 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274 if (status)
6275 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006276 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277out:
6278 return status;
6279}
6280
6281/*
6282 * Decode Read response
6283 */
Chuck Leverbf269552010-12-14 14:59:29 +00006284static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6285 struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287 struct compound_hdr hdr;
6288 int status;
6289
Chuck Leverbf269552010-12-14 14:59:29 +00006290 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291 if (status)
6292 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006293 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006294 if (status)
6295 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006296 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297 if (status)
6298 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006299 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 if (!status)
6301 status = res->count;
6302out:
6303 return status;
6304}
6305
6306/*
6307 * Decode WRITE response
6308 */
Chuck Leverbf269552010-12-14 14:59:29 +00006309static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6310 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 struct compound_hdr hdr;
6313 int status;
6314
Chuck Leverbf269552010-12-14 14:59:29 +00006315 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316 if (status)
6317 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006318 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006319 if (status)
6320 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006321 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322 if (status)
6323 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006324 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006325 if (status)
6326 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006327 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006328 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329 if (!status)
6330 status = res->count;
6331out:
6332 return status;
6333}
6334
6335/*
6336 * Decode COMMIT response
6337 */
Chuck Leverbf269552010-12-14 14:59:29 +00006338static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6339 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341 struct compound_hdr hdr;
6342 int status;
6343
Chuck Leverbf269552010-12-14 14:59:29 +00006344 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345 if (status)
6346 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006347 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006348 if (status)
6349 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006350 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351 if (status)
6352 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006353 status = decode_commit(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006354 if (status)
6355 goto out;
Fred Isaman988b6dc2011-03-23 13:27:52 +00006356 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006357 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358out:
6359 return status;
6360}
6361
6362/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006363 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364 */
Chuck Leverbf269552010-12-14 14:59:29 +00006365static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006366 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 struct compound_hdr hdr;
6369 int status;
6370
Chuck Leverbf269552010-12-14 14:59:29 +00006371 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006373 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006374 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006375 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006377 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378 return status;
6379}
6380
6381/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006382 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 */
Chuck Leverbf269552010-12-14 14:59:29 +00006384static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006385 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387 struct compound_hdr hdr;
6388 int status;
6389
Chuck Leverbf269552010-12-14 14:59:29 +00006390 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006392 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006393 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006394 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006396 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 return status;
6398}
6399
6400/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006401 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402 */
Chuck Leverbf269552010-12-14 14:59:29 +00006403static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006404 struct nfs4_statfs_res *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)
Chuck Leverbf269552010-12-14 14:59:29 +00006411 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006412 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006413 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006415 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 return status;
6417}
6418
6419/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006420 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 */
Chuck Leverbf269552010-12-14 14:59:29 +00006422static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6423 struct xdr_stream *xdr,
6424 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 struct compound_hdr hdr;
6427 int status;
6428
Chuck Leverbf269552010-12-14 14:59:29 +00006429 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006430 if (status)
6431 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006432 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006433 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006435 status = decode_putfh(xdr);
6436 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006438 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439out:
6440 return status;
6441}
6442
6443/*
6444 * Decode RENEW response
6445 */
Chuck Leverbf269552010-12-14 14:59:29 +00006446static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6447 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 struct compound_hdr hdr;
6450 int status;
6451
Chuck Leverbf269552010-12-14 14:59:29 +00006452 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006454 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 return status;
6456}
6457
6458/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006459 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460 */
Chuck Leverbf269552010-12-14 14:59:29 +00006461static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6462 struct xdr_stream *xdr,
6463 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 struct compound_hdr hdr;
6466 int status;
6467
Chuck Leverbf269552010-12-14 14:59:29 +00006468 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006470 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 return status;
6472}
6473
6474/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006475 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476 */
Chuck Leverbf269552010-12-14 14:59:29 +00006477static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6478 struct xdr_stream *xdr,
6479 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 struct compound_hdr hdr;
6482 int status;
6483
Chuck Leverbf269552010-12-14 14:59:29 +00006484 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006486 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006488 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006490 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 return status;
6492}
6493
6494/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006495 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 */
Chuck Leverbf269552010-12-14 14:59:29 +00006497static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6498 struct xdr_stream *xdr,
6499 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 struct compound_hdr hdr;
6502 int status;
6503
Chuck Leverbf269552010-12-14 14:59:29 +00006504 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006505 if (status)
6506 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006507 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006508 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006509 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006510 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006511 if (status != 0)
6512 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006513 status = decode_delegreturn(xdr);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006514 if (status != 0)
6515 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006516 decode_getfattr(xdr, res->fattr, res->server);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006517out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 return status;
6519}
6520
Trond Myklebust683b57b2006-06-09 09:34:22 -04006521/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006522 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006523 */
Chuck Leverbf269552010-12-14 14:59:29 +00006524static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6525 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006526 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006527{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006528 struct compound_hdr hdr;
6529 int status;
6530
Chuck Leverbf269552010-12-14 14:59:29 +00006531 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006532 if (status)
6533 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006534 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006535 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006536 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006537 status = decode_putfh(xdr);
6538 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006539 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006540 status = decode_lookup(xdr);
6541 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006542 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006543 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006544 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6545 NULL, res->fs_locations,
6546 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006547out:
6548 return status;
6549}
6550
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006551/*
6552 * Decode SECINFO response
6553 */
6554static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6555 struct xdr_stream *xdr,
6556 struct nfs4_secinfo_res *res)
6557{
6558 struct compound_hdr hdr;
6559 int status;
6560
6561 status = decode_compound_hdr(xdr, &hdr);
6562 if (status)
6563 goto out;
6564 status = decode_sequence(xdr, &res->seq_res, rqstp);
6565 if (status)
6566 goto out;
6567 status = decode_putfh(xdr);
6568 if (status)
6569 goto out;
6570 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006571out:
6572 return status;
6573}
6574
Benny Halevy99fe60d2009-04-01 09:22:29 -04006575#if defined(CONFIG_NFS_V4_1)
6576/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006577 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006578 */
Chuck Leverbf269552010-12-14 14:59:29 +00006579static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6580 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006581 void *res)
6582{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006583 struct compound_hdr hdr;
6584 int status;
6585
Chuck Leverbf269552010-12-14 14:59:29 +00006586 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006587 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006588 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006589 return status;
6590}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006591
6592/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006593 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006594 */
Chuck Leverbf269552010-12-14 14:59:29 +00006595static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6596 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006597 struct nfs41_create_session_res *res)
6598{
Andy Adamsonfc931582009-04-01 09:22:31 -04006599 struct compound_hdr hdr;
6600 int status;
6601
Chuck Leverbf269552010-12-14 14:59:29 +00006602 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006603 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006604 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006605 return status;
6606}
6607
6608/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006609 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006610 */
Chuck Leverbf269552010-12-14 14:59:29 +00006611static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6612 struct xdr_stream *xdr,
6613 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006614{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006615 struct compound_hdr hdr;
6616 int status;
6617
Chuck Leverbf269552010-12-14 14:59:29 +00006618 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006619 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006620 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006621 return status;
6622}
6623
6624/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006625 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006626 */
Chuck Leverbf269552010-12-14 14:59:29 +00006627static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6628 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006629 struct nfs4_sequence_res *res)
6630{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006631 struct compound_hdr hdr;
6632 int status;
6633
Chuck Leverbf269552010-12-14 14:59:29 +00006634 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006635 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006636 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006637 return status;
6638}
6639
6640/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006641 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006642 */
Chuck Leverbf269552010-12-14 14:59:29 +00006643static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6644 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006645 struct nfs4_get_lease_time_res *res)
6646{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006647 struct compound_hdr hdr;
6648 int status;
6649
Chuck Leverbf269552010-12-14 14:59:29 +00006650 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006651 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006652 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006653 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006654 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006655 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006656 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006657 return status;
6658}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006659
6660/*
6661 * Decode RECLAIM_COMPLETE response
6662 */
Chuck Leverbf269552010-12-14 14:59:29 +00006663static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6664 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006665 struct nfs41_reclaim_complete_res *res)
6666{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006667 struct compound_hdr hdr;
6668 int status;
6669
Chuck Leverbf269552010-12-14 14:59:29 +00006670 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006671 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006672 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006673 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006674 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006675 return status;
6676}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006677
6678/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006679 * Decode GETDEVICELIST response
6680 */
6681static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6682 struct xdr_stream *xdr,
6683 struct nfs4_getdevicelist_res *res)
6684{
6685 struct compound_hdr hdr;
6686 int status;
6687
6688 dprintk("encoding getdevicelist!\n");
6689
6690 status = decode_compound_hdr(xdr, &hdr);
6691 if (status != 0)
6692 goto out;
6693 status = decode_sequence(xdr, &res->seq_res, rqstp);
6694 if (status != 0)
6695 goto out;
6696 status = decode_putfh(xdr);
6697 if (status != 0)
6698 goto out;
6699 status = decode_getdevicelist(xdr, res->devlist);
6700out:
6701 return status;
6702}
6703
6704/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006705 * Decode GETDEVINFO response
6706 */
Chuck Leverbf269552010-12-14 14:59:29 +00006707static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6708 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006709 struct nfs4_getdeviceinfo_res *res)
6710{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006711 struct compound_hdr hdr;
6712 int status;
6713
Chuck Leverbf269552010-12-14 14:59:29 +00006714 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006715 if (status != 0)
6716 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006717 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006718 if (status != 0)
6719 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006720 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006721out:
6722 return status;
6723}
6724
6725/*
6726 * Decode LAYOUTGET response
6727 */
Chuck Leverbf269552010-12-14 14:59:29 +00006728static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6729 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006730 struct nfs4_layoutget_res *res)
6731{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006732 struct compound_hdr hdr;
6733 int status;
6734
Chuck Leverbf269552010-12-14 14:59:29 +00006735 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006736 if (status)
6737 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006738 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006739 if (status)
6740 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006741 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006742 if (status)
6743 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006744 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006745out:
6746 return status;
6747}
Andy Adamson863a3c62011-03-23 13:27:54 +00006748
6749/*
Benny Halevycbe82602011-05-22 19:52:37 +03006750 * Decode LAYOUTRETURN response
6751 */
6752static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6753 struct xdr_stream *xdr,
6754 struct nfs4_layoutreturn_res *res)
6755{
6756 struct compound_hdr hdr;
6757 int status;
6758
6759 status = decode_compound_hdr(xdr, &hdr);
6760 if (status)
6761 goto out;
6762 status = decode_sequence(xdr, &res->seq_res, rqstp);
6763 if (status)
6764 goto out;
6765 status = decode_putfh(xdr);
6766 if (status)
6767 goto out;
6768 status = decode_layoutreturn(xdr, res);
6769out:
6770 return status;
6771}
6772
6773/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006774 * Decode LAYOUTCOMMIT response
6775 */
6776static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6777 struct xdr_stream *xdr,
6778 struct nfs4_layoutcommit_res *res)
6779{
6780 struct compound_hdr hdr;
6781 int status;
6782
6783 status = decode_compound_hdr(xdr, &hdr);
6784 if (status)
6785 goto out;
6786 status = decode_sequence(xdr, &res->seq_res, rqstp);
6787 if (status)
6788 goto out;
6789 status = decode_putfh(xdr);
6790 if (status)
6791 goto out;
6792 status = decode_layoutcommit(xdr, rqstp, res);
6793 if (status)
6794 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006795 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00006796out:
6797 return status;
6798}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006799
6800/*
6801 * Decode SECINFO_NO_NAME response
6802 */
6803static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
6804 struct xdr_stream *xdr,
6805 struct nfs4_secinfo_res *res)
6806{
6807 struct compound_hdr hdr;
6808 int status;
6809
6810 status = decode_compound_hdr(xdr, &hdr);
6811 if (status)
6812 goto out;
6813 status = decode_sequence(xdr, &res->seq_res, rqstp);
6814 if (status)
6815 goto out;
6816 status = decode_putrootfh(xdr);
6817 if (status)
6818 goto out;
6819 status = decode_secinfo(xdr, res);
6820out:
6821 return status;
6822}
Bryan Schumaker7d974792011-06-02 14:59:08 -04006823
6824/*
6825 * Decode TEST_STATEID response
6826 */
6827static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
6828 struct xdr_stream *xdr,
6829 struct nfs41_test_stateid_res *res)
6830{
6831 struct compound_hdr hdr;
6832 int status;
6833
6834 status = decode_compound_hdr(xdr, &hdr);
6835 if (status)
6836 goto out;
6837 status = decode_sequence(xdr, &res->seq_res, rqstp);
6838 if (status)
6839 goto out;
6840 status = decode_test_stateid(xdr, res);
6841out:
6842 return status;
6843}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006844
6845/*
6846 * Decode FREE_STATEID response
6847 */
6848static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
6849 struct xdr_stream *xdr,
6850 struct nfs41_free_stateid_res *res)
6851{
6852 struct compound_hdr hdr;
6853 int status;
6854
6855 status = decode_compound_hdr(xdr, &hdr);
6856 if (status)
6857 goto out;
6858 status = decode_sequence(xdr, &res->seq_res, rqstp);
6859 if (status)
6860 goto out;
6861 status = decode_free_stateid(xdr, res);
6862out:
6863 return status;
6864}
Benny Halevy99fe60d2009-04-01 09:22:29 -04006865#endif /* CONFIG_NFS_V4_1 */
6866
Chuck Lever573c4e12010-12-14 14:58:11 +00006867/**
6868 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
6869 * the local page cache.
6870 * @xdr: XDR stream where entry resides
6871 * @entry: buffer to fill in with entry data
6872 * @plus: boolean indicating whether this should be a readdirplus entry
6873 *
6874 * Returns zero if successful, otherwise a negative errno value is
6875 * returned.
6876 *
6877 * This function is not invoked during READDIR reply decoding, but
6878 * rather whenever an application invokes the getdents(2) system call
6879 * on a directory already in our cache.
6880 */
6881int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
6882 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883{
Fred Isamandae100c2011-07-30 20:52:37 -04006884 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006886 __be32 *p = xdr_inline_decode(xdr, 4);
6887 if (unlikely(!p))
6888 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05006889 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006890 p = xdr_inline_decode(xdr, 4);
6891 if (unlikely(!p))
6892 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05006893 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00006894 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00006896 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 }
6898
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006899 p = xdr_inline_decode(xdr, 12);
6900 if (unlikely(!p))
6901 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 entry->prev_cookie = entry->cookie;
6903 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05006904 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006905
Trond Myklebust9af8c222010-10-24 11:52:55 -04006906 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006907 if (unlikely(!p))
6908 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
6911 /*
6912 * In case the server doesn't return an inode number,
6913 * we fake one here. (We don't use inode number 0,
6914 * since glibc seems to choke on it...)
6915 */
6916 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04006917 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918
Trond Myklebust9af8c222010-10-24 11:52:55 -04006919 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006920 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04006921
6922 if (decode_attr_length(xdr, &len, &p) < 0)
6923 goto out_overflow;
6924
Chuck Lever573c4e12010-12-14 14:58:11 +00006925 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006926 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04006927 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04006928 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
6929 entry->ino = entry->fattr->mounted_on_fileid;
6930 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04006931 entry->ino = entry->fattr->fileid;
6932
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05006933 entry->d_type = DT_UNKNOWN;
6934 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
6935 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
6936
Chuck Lever573c4e12010-12-14 14:58:11 +00006937 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04006938
6939out_overflow:
6940 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00006941 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942}
6943
6944/*
6945 * We need to translate between nfs status return values and
6946 * the local errno values which may not be the same.
6947 */
6948static struct {
6949 int stat;
6950 int errno;
6951} nfs_errtbl[] = {
6952 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03006953 { NFS4ERR_PERM, -EPERM },
6954 { NFS4ERR_NOENT, -ENOENT },
6955 { NFS4ERR_IO, -errno_NFSERR_IO},
6956 { NFS4ERR_NXIO, -ENXIO },
6957 { NFS4ERR_ACCESS, -EACCES },
6958 { NFS4ERR_EXIST, -EEXIST },
6959 { NFS4ERR_XDEV, -EXDEV },
6960 { NFS4ERR_NOTDIR, -ENOTDIR },
6961 { NFS4ERR_ISDIR, -EISDIR },
6962 { NFS4ERR_INVAL, -EINVAL },
6963 { NFS4ERR_FBIG, -EFBIG },
6964 { NFS4ERR_NOSPC, -ENOSPC },
6965 { NFS4ERR_ROFS, -EROFS },
6966 { NFS4ERR_MLINK, -EMLINK },
6967 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
6968 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
6969 { NFS4ERR_DQUOT, -EDQUOT },
6970 { NFS4ERR_STALE, -ESTALE },
6971 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03006972 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
6973 { NFS4ERR_NOTSUPP, -ENOTSUPP },
6974 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05006975 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03006976 { NFS4ERR_BADTYPE, -EBADTYPE },
6977 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03006978 { NFS4ERR_SYMLINK, -ELOOP },
6979 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
6980 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03006981 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982};
6983
6984/*
6985 * Convert an NFS error code to a local one.
6986 * This one is used jointly by NFSv2 and NFSv3.
6987 */
6988static int
David Howells0a8ea432006-08-22 20:06:08 -04006989nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990{
6991 int i;
6992 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
6993 if (nfs_errtbl[i].stat == stat)
6994 return nfs_errtbl[i].errno;
6995 }
6996 if (stat <= 10000 || stat > 10100) {
6997 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05006998 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999 }
7000 /* If we cannot translate the error, the recovery routines should
7001 * handle it.
7002 * Note: remaining NFSv4 error codes have values > 10000, so should
7003 * not conflict with native Linux error codes.
7004 */
Benny Halevy856dff32008-03-31 17:39:06 +03007005 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006}
7007
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008#define PROC(proc, argtype, restype) \
7009[NFSPROC4_CLNT_##proc] = { \
7010 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007011 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007012 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007013 .p_arglen = NFS4_##argtype##_sz, \
7014 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007015 .p_statidx = NFSPROC4_CLNT_##proc, \
7016 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
7019struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007020 PROC(READ, enc_read, dec_read),
7021 PROC(WRITE, enc_write, dec_write),
7022 PROC(COMMIT, enc_commit, dec_commit),
7023 PROC(OPEN, enc_open, dec_open),
7024 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7025 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7026 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7027 PROC(CLOSE, enc_close, dec_close),
7028 PROC(SETATTR, enc_setattr, dec_setattr),
7029 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7030 PROC(RENEW, enc_renew, dec_renew),
7031 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7032 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7033 PROC(LOCK, enc_lock, dec_lock),
7034 PROC(LOCKT, enc_lockt, dec_lockt),
7035 PROC(LOCKU, enc_locku, dec_locku),
7036 PROC(ACCESS, enc_access, dec_access),
7037 PROC(GETATTR, enc_getattr, dec_getattr),
7038 PROC(LOOKUP, enc_lookup, dec_lookup),
7039 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7040 PROC(REMOVE, enc_remove, dec_remove),
7041 PROC(RENAME, enc_rename, dec_rename),
7042 PROC(LINK, enc_link, dec_link),
7043 PROC(SYMLINK, enc_symlink, dec_symlink),
7044 PROC(CREATE, enc_create, dec_create),
7045 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7046 PROC(STATFS, enc_statfs, dec_statfs),
7047 PROC(READLINK, enc_readlink, dec_readlink),
7048 PROC(READDIR, enc_readdir, dec_readdir),
7049 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7050 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7051 PROC(GETACL, enc_getacl, dec_getacl),
7052 PROC(SETACL, enc_setacl, dec_setacl),
7053 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7054 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007055 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007056#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007057 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7058 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7059 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7060 PROC(SEQUENCE, enc_sequence, dec_sequence),
7061 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7062 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7063 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7064 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007065 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007066 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007067 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007068 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007069 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007070 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007071#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072};
7073
Trond Myklebusta613fa12012-01-20 13:53:56 -05007074const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007076 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077 .procs = nfs4_procedures
7078};
7079
7080/*
7081 * Local variables:
7082 * c-basic-offset: 8
7083 * End:
7084 */