blob: 3b38ca5bafe8e9ba76a9f4e086b196668d9ac9c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4xdr.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
Andy Adamson6c0195a2008-12-23 16:06:15 -050011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/param.h>
39#include <linux/time.h>
40#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/in.h>
44#include <linux/pagemap.h>
45#include <linux/proc_fs.h>
46#include <linux/kdev_t.h>
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -050047#include <linux/module.h>
48#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/sunrpc/clnt.h>
Alexandros Batsakis2449ea22009-12-05 13:36:55 -050050#include <linux/sunrpc/msg_prot.h>
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +000051#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/nfs.h>
53#include <linux/nfs4.h>
54#include <linux/nfs_fs.h>
55#include <linux/nfs_idmap.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000056#include "nfs4_fs.h"
Alexandros Batsakis4882ef72009-12-05 13:30:21 -050057#include "internal.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040058#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define NFSDBG_FACILITY NFSDBG_XDR
61
62/* Mapping from NFS error code to "errno" error code. */
63#define errno_NFSERR_IO EIO
64
David Howells0a8ea432006-08-22 20:06:08 -040065static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
68#ifdef DEBUG
69#define NFS4_MAXTAGLEN 20
70#else
71#define NFS4_MAXTAGLEN 0
72#endif
73
Andy Adamson6c0195a2008-12-23 16:06:15 -050074/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040075 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Trond Myklebustd035c362010-12-21 10:45:27 -050077#define open_owner_id_maxsz (1 + 1 + 4)
78#define lock_owner_id_maxsz (1 + 1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040079#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
81#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
82#define op_encode_hdr_maxsz (1)
83#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040084#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
85#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
86#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
87#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
89 (NFS4_FHSIZE >> 2))
90#define decode_putfh_maxsz (op_decode_hdr_maxsz)
91#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
92#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
93#define encode_getfh_maxsz (op_encode_hdr_maxsz)
94#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
95 ((3+NFS4_FHSIZE) >> 2))
Andy Adamsone5012d12011-07-11 17:17:42 -040096#define nfs4_fattr_bitmap_maxsz 4
J. Bruce Fields96928202005-06-22 17:16:22 +000097#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
99#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400100#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
101#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
J. Bruce Fields96928202005-06-22 17:16:22 +0000102/* This is based on getfattr, which uses the most attributes: */
103#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400104 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000105#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
106 nfs4_fattr_value_maxsz)
107#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400108#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
109 1 + 2 + 1 + \
110 nfs4_owner_maxsz + \
111 nfs4_group_maxsz + \
112 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define encode_savefh_maxsz (op_encode_hdr_maxsz)
114#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400115#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
116#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200117#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Fred Isamandae100c2011-07-30 20:52:37 -0400118/* The 5 accounts for the PNFS attributes, and assumes that at most three
119 * layout types will be returned.
120 */
121#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
122 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
124#define decode_renew_maxsz (op_decode_hdr_maxsz)
125#define encode_setclientid_maxsz \
126 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500127 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
128 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
129 1 /* sc_prog */ + \
130 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
131 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
132 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define decode_setclientid_maxsz \
134 (op_decode_hdr_maxsz + \
135 2 + \
136 1024) /* large value for CLID_INUSE */
137#define encode_setclientid_confirm_maxsz \
138 (op_encode_hdr_maxsz + \
139 3 + (NFS4_VERIFIER_SIZE >> 2))
140#define decode_setclientid_confirm_maxsz \
141 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400142#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
143#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400144#define encode_share_access_maxsz \
145 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500146#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400147#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
148#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
149#define encode_open_maxsz (op_encode_hdr_maxsz + \
150 2 + encode_share_access_maxsz + 2 + \
151 open_owner_id_maxsz + \
152 encode_opentype_maxsz + \
153 encode_claim_null_maxsz)
154#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400155#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400156 decode_ace_maxsz)
157#define decode_change_info_maxsz (5)
158#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400159 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400160 decode_change_info_maxsz + 1 + \
161 nfs4_fattr_bitmap_maxsz + \
162 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400163#define encode_open_confirm_maxsz \
164 (op_encode_hdr_maxsz + \
165 encode_stateid_maxsz + 1)
166#define decode_open_confirm_maxsz \
167 (op_decode_hdr_maxsz + \
168 decode_stateid_maxsz)
169#define encode_open_downgrade_maxsz \
170 (op_encode_hdr_maxsz + \
171 encode_stateid_maxsz + 1 + \
172 encode_share_access_maxsz)
173#define decode_open_downgrade_maxsz \
174 (op_decode_hdr_maxsz + \
175 decode_stateid_maxsz)
176#define encode_close_maxsz (op_encode_hdr_maxsz + \
177 1 + encode_stateid_maxsz)
178#define decode_close_maxsz (op_decode_hdr_maxsz + \
179 decode_stateid_maxsz)
180#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
181 encode_stateid_maxsz + \
182 encode_attrs_maxsz)
183#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
184 nfs4_fattr_bitmap_maxsz)
185#define encode_read_maxsz (op_encode_hdr_maxsz + \
186 encode_stateid_maxsz + 3)
187#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
188#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
189 2 + encode_verifier_maxsz + 5)
190#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
191 decode_verifier_maxsz)
192#define encode_readlink_maxsz (op_encode_hdr_maxsz)
193#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
194#define encode_write_maxsz (op_encode_hdr_maxsz + \
195 encode_stateid_maxsz + 4)
196#define decode_write_maxsz (op_decode_hdr_maxsz + \
197 2 + decode_verifier_maxsz)
198#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
199#define decode_commit_maxsz (op_decode_hdr_maxsz + \
200 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define encode_remove_maxsz (op_encode_hdr_maxsz + \
202 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400203#define decode_remove_maxsz (op_decode_hdr_maxsz + \
204 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define encode_rename_maxsz (op_encode_hdr_maxsz + \
206 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400207#define decode_rename_maxsz (op_decode_hdr_maxsz + \
208 decode_change_info_maxsz + \
209 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define encode_link_maxsz (op_encode_hdr_maxsz + \
211 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400212#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400213#define encode_lockowner_maxsz (7)
Trond Myklebust9104a552007-07-17 21:52:42 -0400214#define encode_lock_maxsz (op_encode_hdr_maxsz + \
215 7 + \
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400216 1 + encode_stateid_maxsz + 1 + \
217 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400218#define decode_lock_denied_maxsz \
219 (8 + decode_lockowner_maxsz)
220#define decode_lock_maxsz (op_decode_hdr_maxsz + \
221 decode_lock_denied_maxsz)
Trond Myklebustdaccbde2010-06-25 18:11:43 -0400222#define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
223 encode_lockowner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400224#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
225 decode_lock_denied_maxsz)
226#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
227 encode_stateid_maxsz + \
228 4)
229#define decode_locku_maxsz (op_decode_hdr_maxsz + \
230 decode_stateid_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400231#define encode_release_lockowner_maxsz \
232 (op_encode_hdr_maxsz + \
233 encode_lockowner_maxsz)
234#define decode_release_lockowner_maxsz \
235 (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400236#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
237#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
239 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400240 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000241 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
243#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400244 1 + 2 + nfs4_name_maxsz + \
245 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400246#define decode_create_maxsz (op_decode_hdr_maxsz + \
247 decode_change_info_maxsz + \
248 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400249#define encode_statfs_maxsz (encode_getattr_maxsz)
250#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
252#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400253#define encode_getacl_maxsz (encode_getattr_maxsz)
254#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
255 nfs4_fattr_bitmap_maxsz + 1)
256#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
257 encode_stateid_maxsz + 3)
258#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400259#define encode_fs_locations_maxsz \
260 (encode_getattr_maxsz)
261#define decode_fs_locations_maxsz \
262 (0)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000263#define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
Bryan Schumaker1650add2011-06-02 15:07:35 -0400264#define decode_secinfo_maxsz (op_decode_hdr_maxsz + 1 + ((NFS_MAX_SECFLAVORS * (16 + GSS_OID_MAX_LEN)) / 4))
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400265
266#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400267#define NFS4_MAX_MACHINE_NAME_LEN (64)
268
Benny Halevy99fe60d2009-04-01 09:22:29 -0400269#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
270 encode_verifier_maxsz + \
271 1 /* co_ownerid.len */ + \
272 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
273 1 /* flags */ + \
274 1 /* spa_how */ + \
275 0 /* SP4_NONE (for now) */ + \
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500276 1 /* implementation id array of size 1 */ + \
277 1 /* nii_domain */ + \
278 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
279 1 /* nii_name */ + \
280 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
281 3 /* nii_date */)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400282#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
283 2 /* eir_clientid */ + \
284 1 /* eir_sequenceid */ + \
285 1 /* eir_flags */ + \
286 1 /* spr_how */ + \
287 0 /* SP4_NONE (for now) */ + \
288 2 /* eir_server_owner.so_minor_id */ + \
289 /* eir_server_owner.so_major_id<> */ \
290 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
291 /* eir_server_scope<> */ \
292 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
293 1 /* eir_server_impl_id array length */ + \
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500294 1 /* nii_domain */ + \
295 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
296 1 /* nii_name */ + \
297 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
298 3 /* nii_date */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400299#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
300#define decode_channel_attrs_maxsz (6 + \
301 1 /* ca_rdma_ird.len */ + \
302 1 /* ca_rdma_ird */)
303#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
304 2 /* csa_clientid */ + \
305 1 /* csa_sequence */ + \
306 1 /* csa_flags */ + \
307 encode_channel_attrs_maxsz + \
308 encode_channel_attrs_maxsz + \
309 1 /* csa_cb_program */ + \
310 1 /* csa_sec_parms.len (1) */ + \
311 1 /* cb_secflavor (AUTH_SYS) */ + \
312 1 /* stamp */ + \
313 1 /* machinename.len */ + \
314 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
315 1 /* uid */ + \
316 1 /* gid */ + \
317 1 /* gids.len (0) */)
318#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
319 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
320 1 /* csr_sequence */ + \
321 1 /* csr_flags */ + \
322 decode_channel_attrs_maxsz + \
323 decode_channel_attrs_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400324#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
325#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400326#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
327 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
328#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
329 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500330#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
331#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400332#define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
333 encode_verifier_maxsz)
334#define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
335 2 /* nfs_cookie4 gdlr_cookie */ + \
336 decode_verifier_maxsz \
337 /* verifier4 gdlr_verifier */ + \
338 1 /* gdlr_deviceid_list count */ + \
339 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
340 NFS4_DEVICEID4_SIZE) \
341 /* gdlr_deviceid_list */ + \
342 1 /* bool gdlr_eof */)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400343#define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
344 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
345#define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
346 1 /* layout type */ + \
347 1 /* opaque devaddr4 length */ + \
348 /* devaddr4 payload is read into page */ \
349 1 /* notification bitmap length */ + \
350 1 /* notification bitmap */)
351#define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
352 encode_stateid_maxsz)
353#define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
354 decode_stateid_maxsz + \
355 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
Andy Adamson863a3c62011-03-23 13:27:54 +0000356#define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
357 2 /* offset */ + \
358 2 /* length */ + \
359 1 /* reclaim */ + \
360 encode_stateid_maxsz + \
361 1 /* new offset (true) */ + \
362 2 /* last byte written */ + \
363 1 /* nt_timechanged (false) */ + \
364 1 /* layoutupdate4 layout type */ + \
365 1 /* NULL filelayout layoutupdate4 payload */)
366#define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
Benny Halevycbe82602011-05-22 19:52:37 +0300367#define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
368 encode_stateid_maxsz + \
369 1 /* FIXME: opaque lrf_body always empty at the moment */)
370#define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
371 1 + decode_stateid_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400372#define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
373#define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
Bryan Schumaker7d974792011-06-02 14:59:08 -0400374#define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
375 XDR_QUADLEN(NFS4_STATEID_SIZE))
376#define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400377#define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
378 XDR_QUADLEN(NFS4_STATEID_SIZE))
379#define decode_free_stateid_maxsz (op_decode_hdr_maxsz + 1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400380#else /* CONFIG_NFS_V4_1 */
381#define encode_sequence_maxsz 0
382#define decode_sequence_maxsz 0
383#endif /* CONFIG_NFS_V4_1 */
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
386#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
387#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400388 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400390 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400392 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400394 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400396 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400398 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400400 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400402 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400404 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400406 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400408 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400410 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400412 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400414 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400415 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400417 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400419 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400420 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400422 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400424 encode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400425 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400427 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400429 decode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400430 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400432 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400433 encode_putfh_maxsz + \
434 encode_savefh_maxsz + \
435 encode_open_maxsz + \
436 encode_getfh_maxsz + \
437 encode_getattr_maxsz + \
438 encode_restorefh_maxsz + \
439 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400441 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400442 decode_putfh_maxsz + \
443 decode_savefh_maxsz + \
444 decode_open_maxsz + \
445 decode_getfh_maxsz + \
446 decode_getattr_maxsz + \
447 decode_restorefh_maxsz + \
448 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400449#define NFS4_enc_open_confirm_sz \
450 (compound_encode_hdr_maxsz + \
451 encode_putfh_maxsz + \
452 encode_open_confirm_maxsz)
453#define NFS4_dec_open_confirm_sz \
454 (compound_decode_hdr_maxsz + \
455 decode_putfh_maxsz + \
456 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400458 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400460 encode_open_maxsz + \
461 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400463 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400465 decode_open_maxsz + \
466 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#define NFS4_enc_open_downgrade_sz \
468 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400469 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400470 encode_putfh_maxsz + \
471 encode_open_downgrade_maxsz + \
472 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#define NFS4_dec_open_downgrade_sz \
474 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400475 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400476 decode_putfh_maxsz + \
477 decode_open_downgrade_maxsz + \
478 decode_getattr_maxsz)
479#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400480 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400481 encode_putfh_maxsz + \
482 encode_close_maxsz + \
483 encode_getattr_maxsz)
484#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400485 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400486 decode_putfh_maxsz + \
487 decode_close_maxsz + \
488 decode_getattr_maxsz)
489#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400490 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400491 encode_putfh_maxsz + \
492 encode_setattr_maxsz + \
493 encode_getattr_maxsz)
494#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400495 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400496 decode_putfh_maxsz + \
497 decode_setattr_maxsz + \
498 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400500 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 encode_putfh_maxsz + \
502 encode_fsinfo_maxsz)
503#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400504 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 decode_putfh_maxsz + \
506 decode_fsinfo_maxsz)
507#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
508 encode_renew_maxsz)
509#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
510 decode_renew_maxsz)
511#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
512 encode_setclientid_maxsz)
513#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
514 decode_setclientid_maxsz)
515#define NFS4_enc_setclientid_confirm_sz \
516 (compound_encode_hdr_maxsz + \
517 encode_setclientid_confirm_maxsz + \
518 encode_putrootfh_maxsz + \
519 encode_fsinfo_maxsz)
520#define NFS4_dec_setclientid_confirm_sz \
521 (compound_decode_hdr_maxsz + \
522 decode_setclientid_confirm_maxsz + \
523 decode_putrootfh_maxsz + \
524 decode_fsinfo_maxsz)
525#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400526 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400528 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400530 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400532 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400534 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400536 encode_lockt_maxsz)
537#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400538 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400539 decode_putfh_maxsz + \
540 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400542 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400544 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400546 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400548 decode_locku_maxsz)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -0400549#define NFS4_enc_release_lockowner_sz \
550 (compound_encode_hdr_maxsz + \
551 encode_lockowner_maxsz)
552#define NFS4_dec_release_lockowner_sz \
553 (compound_decode_hdr_maxsz + \
554 decode_lockowner_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400556 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400558 encode_access_maxsz + \
559 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400561 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400563 decode_access_maxsz + \
564 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400566 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 encode_putfh_maxsz + \
568 encode_getattr_maxsz)
569#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400570 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 decode_putfh_maxsz + \
572 decode_getattr_maxsz)
573#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400574 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 encode_putfh_maxsz + \
576 encode_lookup_maxsz + \
577 encode_getattr_maxsz + \
578 encode_getfh_maxsz)
579#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400580 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400582 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 decode_getattr_maxsz + \
584 decode_getfh_maxsz)
585#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400586 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 encode_putrootfh_maxsz + \
588 encode_getattr_maxsz + \
589 encode_getfh_maxsz)
590#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400591 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 decode_putrootfh_maxsz + \
593 decode_getattr_maxsz + \
594 decode_getfh_maxsz)
595#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400596 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 encode_putfh_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400598 encode_remove_maxsz + \
599 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400601 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 decode_putfh_maxsz + \
Benny Halevy6ce18392009-04-01 09:22:06 -0400603 decode_remove_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400604 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400606 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 encode_putfh_maxsz + \
608 encode_savefh_maxsz + \
609 encode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400610 encode_rename_maxsz + \
611 encode_getattr_maxsz + \
612 encode_restorefh_maxsz + \
613 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400615 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 decode_putfh_maxsz + \
617 decode_savefh_maxsz + \
618 decode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400619 decode_rename_maxsz + \
620 decode_getattr_maxsz + \
621 decode_restorefh_maxsz + \
622 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400624 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 encode_putfh_maxsz + \
626 encode_savefh_maxsz + \
627 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400628 encode_link_maxsz + \
629 decode_getattr_maxsz + \
630 encode_restorefh_maxsz + \
631 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400633 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 decode_putfh_maxsz + \
635 decode_savefh_maxsz + \
636 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400637 decode_link_maxsz + \
638 decode_getattr_maxsz + \
639 decode_restorefh_maxsz + \
640 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400642 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 encode_putfh_maxsz + \
644 encode_symlink_maxsz + \
645 encode_getattr_maxsz + \
646 encode_getfh_maxsz)
647#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400648 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 decode_putfh_maxsz + \
650 decode_symlink_maxsz + \
651 decode_getattr_maxsz + \
652 decode_getfh_maxsz)
653#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400654 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 encode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400656 encode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400658 encode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 encode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400660 encode_restorefh_maxsz + \
661 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400663 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 decode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400665 decode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400667 decode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 decode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400669 decode_restorefh_maxsz + \
670 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400672 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 encode_putfh_maxsz + \
674 encode_getattr_maxsz)
675#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400676 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 decode_putfh_maxsz + \
678 decode_getattr_maxsz)
679#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400680 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400682 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400684 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400686 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400688 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800689 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 encode_getattr_maxsz)
691#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400692 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800693 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 decode_getattr_maxsz)
695#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400696 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100698 encode_delegreturn_maxsz + \
699 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400701 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100702 decode_delegreturn_maxsz + \
703 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000704#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400705 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000706 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400707 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000708#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400709 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000710 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400711 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000712#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400713 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000714 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400715 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000716#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400717 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000718 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400719 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400720#define NFS4_enc_fs_locations_sz \
721 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400722 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400723 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400724 encode_lookup_maxsz + \
725 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400726#define NFS4_dec_fs_locations_sz \
727 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400728 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400729 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400730 decode_lookup_maxsz + \
731 decode_fs_locations_maxsz)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +0000732#define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
733 encode_sequence_maxsz + \
734 encode_putfh_maxsz + \
735 encode_secinfo_maxsz)
736#define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
737 decode_sequence_maxsz + \
738 decode_putfh_maxsz + \
739 decode_secinfo_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400740#if defined(CONFIG_NFS_V4_1)
741#define NFS4_enc_exchange_id_sz \
742 (compound_encode_hdr_maxsz + \
743 encode_exchange_id_maxsz)
744#define NFS4_dec_exchange_id_sz \
745 (compound_decode_hdr_maxsz + \
746 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400747#define NFS4_enc_create_session_sz \
748 (compound_encode_hdr_maxsz + \
749 encode_create_session_maxsz)
750#define NFS4_dec_create_session_sz \
751 (compound_decode_hdr_maxsz + \
752 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400753#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
754 encode_destroy_session_maxsz)
755#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
756 decode_destroy_session_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400757#define NFS4_enc_sequence_sz \
758 (compound_decode_hdr_maxsz + \
759 encode_sequence_maxsz)
760#define NFS4_dec_sequence_sz \
761 (compound_decode_hdr_maxsz + \
762 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400763#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
764 encode_sequence_maxsz + \
765 encode_putrootfh_maxsz + \
766 encode_fsinfo_maxsz)
767#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
768 decode_sequence_maxsz + \
769 decode_putrootfh_maxsz + \
770 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500771#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
772 encode_sequence_maxsz + \
773 encode_reclaim_complete_maxsz)
774#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
775 decode_sequence_maxsz + \
776 decode_reclaim_complete_maxsz)
Andy Adamson7f11d8d2011-07-30 20:52:35 -0400777#define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
778 encode_sequence_maxsz + \
779 encode_putfh_maxsz + \
780 encode_getdevicelist_maxsz)
781#define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
782 decode_sequence_maxsz + \
783 decode_putfh_maxsz + \
784 decode_getdevicelist_maxsz)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400785#define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
786 encode_sequence_maxsz +\
787 encode_getdeviceinfo_maxsz)
788#define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
789 decode_sequence_maxsz + \
790 decode_getdeviceinfo_maxsz)
791#define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
792 encode_sequence_maxsz + \
793 encode_putfh_maxsz + \
794 encode_layoutget_maxsz)
795#define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
796 decode_sequence_maxsz + \
797 decode_putfh_maxsz + \
798 decode_layoutget_maxsz)
Andy Adamson863a3c62011-03-23 13:27:54 +0000799#define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
800 encode_sequence_maxsz +\
801 encode_putfh_maxsz + \
802 encode_layoutcommit_maxsz + \
803 encode_getattr_maxsz)
804#define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
805 decode_sequence_maxsz + \
806 decode_putfh_maxsz + \
807 decode_layoutcommit_maxsz + \
808 decode_getattr_maxsz)
Benny Halevycbe82602011-05-22 19:52:37 +0300809#define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
810 encode_sequence_maxsz + \
811 encode_putfh_maxsz + \
812 encode_layoutreturn_maxsz)
813#define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
814 decode_sequence_maxsz + \
815 decode_putfh_maxsz + \
816 decode_layoutreturn_maxsz)
Bryan Schumakerfca78d62011-06-02 14:59:07 -0400817#define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
818 encode_sequence_maxsz + \
819 encode_putrootfh_maxsz +\
820 encode_secinfo_no_name_maxsz)
821#define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
822 decode_sequence_maxsz + \
823 decode_putrootfh_maxsz + \
824 decode_secinfo_no_name_maxsz)
Bryan Schumaker7d974792011-06-02 14:59:08 -0400825#define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
826 encode_sequence_maxsz + \
827 encode_test_stateid_maxsz)
828#define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
829 decode_sequence_maxsz + \
830 decode_test_stateid_maxsz)
Bryan Schumaker9aeda352011-06-02 14:59:09 -0400831#define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
832 encode_sequence_maxsz + \
833 encode_free_stateid_maxsz)
834#define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
835 decode_sequence_maxsz + \
836 decode_free_stateid_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500837
838const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
839 compound_encode_hdr_maxsz +
840 encode_sequence_maxsz +
841 encode_putfh_maxsz +
842 encode_getattr_maxsz) *
843 XDR_UNIT);
844
845const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
846 compound_decode_hdr_maxsz +
847 decode_sequence_maxsz +
848 decode_putfh_maxsz) *
849 XDR_UNIT);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400850#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -0500852static unsigned short send_implementation_id = 1;
853
854module_param(send_implementation_id, ushort, 0644);
855MODULE_PARM_DESC(send_implementation_id,
856 "Send implementation ID with NFSv4.1 exchange_id");
857
Trond Myklebustbca79472009-03-11 14:10:26 -0400858static const umode_t nfs_type2fmt[] = {
859 [NF4BAD] = 0,
860 [NF4REG] = S_IFREG,
861 [NF4DIR] = S_IFDIR,
862 [NF4BLK] = S_IFBLK,
863 [NF4CHR] = S_IFCHR,
864 [NF4LNK] = S_IFLNK,
865 [NF4SOCK] = S_IFSOCK,
866 [NF4FIFO] = S_IFIFO,
867 [NF4ATTRDIR] = 0,
868 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869};
870
871struct compound_hdr {
872 int32_t status;
873 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500874 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 uint32_t taglen;
876 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400877 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400878 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879};
880
Benny Halevy13c65ce2009-08-14 17:19:25 +0300881static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
882{
883 __be32 *p = xdr_reserve_space(xdr, nbytes);
884 BUG_ON(!p);
885 return p;
886}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Trond Myklebustcb17e552012-03-04 18:13:56 -0500888static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
889{
890 __be32 *p;
891
892 p = xdr_reserve_space(xdr, len);
893 xdr_encode_opaque_fixed(p, buf, len);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
897{
Al Viro8687b632006-10-19 23:28:48 -0700898 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500900 p = reserve_space(xdr, 4 + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 xdr_encode_opaque(p, str, len);
902}
903
Trond Myklebust4ade9822012-03-04 18:13:57 -0500904static void encode_uint32(struct xdr_stream *xdr, u32 n)
905{
906 __be32 *p;
907
908 p = reserve_space(xdr, 4);
909 *p = cpu_to_be32(n);
910}
911
912static void encode_nfs4_seqid(struct xdr_stream *xdr,
913 const struct nfs_seqid *seqid)
914{
915 encode_uint32(xdr, seqid->sequence->counter);
916}
917
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400918static void encode_compound_hdr(struct xdr_stream *xdr,
919 struct rpc_rqst *req,
920 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Al Viro8687b632006-10-19 23:28:48 -0700922 __be32 *p;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400923 struct rpc_auth *auth = req->rq_cred->cr_auth;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400924
925 /* initialize running count of expected bytes in reply.
926 * NOTE: the replied tag SHOULD be the same is the one sent,
927 * but this is not required as a MUST for the server to do so. */
928 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -0500931 encode_string(xdr, hdr->taglen, hdr->tag);
932 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300933 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500934 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300935 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500936}
937
938static void encode_nops(struct compound_hdr *hdr)
939{
Andy Adamsonfc931582009-04-01 09:22:31 -0400940 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500941 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500944static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
945{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500946 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -0500947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
950{
Trond Myklebustcb17e552012-03-04 18:13:56 -0500951 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500954static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 char owner_name[IDMAP_NAMESZ];
957 char owner_group[IDMAP_NAMESZ];
958 int owner_namelen = 0;
959 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700960 __be32 *p;
961 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 int len;
963 uint32_t bmval0 = 0;
964 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /*
967 * We reserve enough space to write the entire attribute buffer at once.
968 * In the worst-case, this would be
969 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
970 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000971 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
973 len = 16;
974
975 /* Sigh */
976 if (iap->ia_valid & ATTR_SIZE)
977 len += 8;
978 if (iap->ia_valid & ATTR_MODE)
979 len += 4;
980 if (iap->ia_valid & ATTR_UID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800981 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400983 dprintk("nfs: couldn't resolve uid %d to string\n",
984 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* XXX */
986 strcpy(owner_name, "nobody");
987 owner_namelen = sizeof("nobody") - 1;
988 /* goto out; */
989 }
990 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
991 }
992 if (iap->ia_valid & ATTR_GID) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -0800993 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400995 dprintk("nfs: couldn't resolve gid %d to string\n",
996 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 strcpy(owner_group, "nobody");
998 owner_grouplen = sizeof("nobody") - 1;
999 /* goto out; */
1000 }
1001 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1002 }
1003 if (iap->ia_valid & ATTR_ATIME_SET)
1004 len += 16;
1005 else if (iap->ia_valid & ATTR_ATIME)
1006 len += 4;
1007 if (iap->ia_valid & ATTR_MTIME_SET)
1008 len += 16;
1009 else if (iap->ia_valid & ATTR_MTIME)
1010 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001011 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /*
1014 * We write the bitmap length now, but leave the bitmap and the attribute
1015 * buffer length to be backfilled at the end of this routine.
1016 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001017 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 q = p;
1019 p += 3;
1020
1021 if (iap->ia_valid & ATTR_SIZE) {
1022 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +03001023 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025 if (iap->ia_valid & ATTR_MODE) {
1026 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001027 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 if (iap->ia_valid & ATTR_UID) {
1030 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +03001031 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 if (iap->ia_valid & ATTR_GID) {
1034 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +03001035 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037 if (iap->ia_valid & ATTR_ATIME_SET) {
1038 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001039 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1040 *p++ = cpu_to_be32(0);
Trond Myklebustd3f6baa2010-06-22 08:52:39 -04001041 *p++ = cpu_to_be32(iap->ia_atime.tv_sec);
1042 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044 else if (iap->ia_valid & ATTR_ATIME) {
1045 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001046 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048 if (iap->ia_valid & ATTR_MTIME_SET) {
1049 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001050 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1051 *p++ = cpu_to_be32(0);
1052 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
1053 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 else if (iap->ia_valid & ATTR_MTIME) {
1056 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001057 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * Now we backfill the bitmap and the attribute buffer length.
1062 */
1063 if (len != ((char *)p - (char *)q) + 4) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -05001064 printk(KERN_ERR "NFS: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 len, ((char *)p - (char *)q) + 4);
1066 BUG();
1067 }
1068 len = (char *)p - (char *)q - 12;
1069 *q++ = htonl(bmval0);
1070 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +03001071 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001076static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Al Viro8687b632006-10-19 23:28:48 -07001078 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Benny Halevy13c65ce2009-08-14 17:19:25 +03001080 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001081 *p++ = cpu_to_be32(OP_ACCESS);
Benny Halevy34558512009-08-14 17:19:30 +03001082 *p = cpu_to_be32(access);
Andy Adamsond0179312008-12-23 16:06:17 -05001083 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001084 hdr->replen += decode_access_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001087static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Al Viro8687b632006-10-19 23:28:48 -07001089 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Trond Myklebust4ade9822012-03-04 18:13:57 -05001091 p = reserve_space(xdr, 4);
1092 *p = cpu_to_be32(OP_CLOSE);
1093 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001094 encode_nfs4_stateid(xdr, arg->stateid);
Andy Adamsond0179312008-12-23 16:06:17 -05001095 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001096 hdr->replen += decode_close_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001099static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Al Viro8687b632006-10-19 23:28:48 -07001101 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001102
Benny Halevy13c65ce2009-08-14 17:19:25 +03001103 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001104 *p++ = cpu_to_be32(OP_COMMIT);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001105 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001106 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001107 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001108 hdr->replen += decode_commit_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001111static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Al Viro8687b632006-10-19 23:28:48 -07001113 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001114
Benny Halevy13c65ce2009-08-14 17:19:25 +03001115 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001116 *p++ = cpu_to_be32(OP_CREATE);
Benny Halevy34558512009-08-14 17:19:30 +03001117 *p = cpu_to_be32(create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 switch (create->ftype) {
1120 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001121 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001122 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -04001123 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125
1126 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +03001127 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001128 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +03001129 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
1131
1132 default:
1133 break;
1134 }
1135
Benny Halevy811652b2009-08-14 17:19:34 +03001136 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001137 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001138 hdr->replen += decode_create_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001140 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001143static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Andy Adamson05d564f2008-12-23 16:06:15 -05001145 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Benny Halevy13c65ce2009-08-14 17:19:25 +03001147 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001148 *p++ = cpu_to_be32(OP_GETATTR);
1149 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001150 *p = cpu_to_be32(bitmap);
Andy Adamsond0179312008-12-23 16:06:17 -05001151 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001152 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001155static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Andy Adamson05d564f2008-12-23 16:06:15 -05001157 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Benny Halevy13c65ce2009-08-14 17:19:25 +03001159 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001160 *p++ = cpu_to_be32(OP_GETATTR);
1161 *p++ = cpu_to_be32(2);
1162 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +03001163 *p = cpu_to_be32(bm1);
Andy Adamsond0179312008-12-23 16:06:17 -05001164 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001165 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Fred Isamandae100c2011-07-30 20:52:37 -04001168static void
1169encode_getattr_three(struct xdr_stream *xdr,
1170 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1171 struct compound_hdr *hdr)
1172{
1173 __be32 *p;
1174
1175 p = reserve_space(xdr, 4);
1176 *p = cpu_to_be32(OP_GETATTR);
1177 if (bm2) {
1178 p = reserve_space(xdr, 16);
1179 *p++ = cpu_to_be32(3);
1180 *p++ = cpu_to_be32(bm0);
1181 *p++ = cpu_to_be32(bm1);
1182 *p = cpu_to_be32(bm2);
1183 } else if (bm1) {
1184 p = reserve_space(xdr, 12);
1185 *p++ = cpu_to_be32(2);
1186 *p++ = cpu_to_be32(bm0);
1187 *p = cpu_to_be32(bm1);
1188 } else {
1189 p = reserve_space(xdr, 8);
1190 *p++ = cpu_to_be32(1);
1191 *p = cpu_to_be32(bm0);
1192 }
1193 hdr->nops++;
1194 hdr->replen += decode_getattr_maxsz;
1195}
1196
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001197static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001199 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1200 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001203static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Fred Isamandae100c2011-07-30 20:52:37 -04001205 encode_getattr_three(xdr,
1206 bitmask[0] & nfs4_fsinfo_bitmap[0],
1207 bitmask[1] & nfs4_fsinfo_bitmap[1],
1208 bitmask[2] & nfs4_fsinfo_bitmap[2],
1209 hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001212static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001213{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001214 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1215 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001216}
1217
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001218static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Al Viro8687b632006-10-19 23:28:48 -07001220 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Benny Halevy13c65ce2009-08-14 17:19:25 +03001222 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001223 *p = cpu_to_be32(OP_GETFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001224 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001225 hdr->replen += decode_getfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001228static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Al Viro8687b632006-10-19 23:28:48 -07001230 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001232 p = reserve_space(xdr, 4);
1233 *p = cpu_to_be32(OP_LINK);
1234 encode_string(xdr, name->len, name->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001235 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001236 hdr->replen += decode_link_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001239static inline int nfs4_lock_type(struct file_lock *fl, int block)
1240{
1241 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
1242 return block ? NFS4_READW_LT : NFS4_READ_LT;
1243 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1244}
1245
1246static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1247{
1248 if (fl->fl_end == OFFSET_MAX)
1249 return ~(uint64_t)0;
1250 return fl->fl_end - fl->fl_start + 1;
1251}
1252
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001253static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1254{
1255 __be32 *p;
1256
Trond Myklebustd035c362010-12-21 10:45:27 -05001257 p = reserve_space(xdr, 32);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001258 p = xdr_encode_hyper(p, lowner->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001259 *p++ = cpu_to_be32(20);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001260 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001261 *p++ = cpu_to_be32(lowner->s_dev);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001262 xdr_encode_hyper(p, lowner->id);
1263}
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265/*
1266 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1267 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1268 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001269static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Al Viro8687b632006-10-19 23:28:48 -07001271 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Benny Halevy13c65ce2009-08-14 17:19:25 +03001273 p = reserve_space(xdr, 32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001274 *p++ = cpu_to_be32(OP_LOCK);
1275 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1276 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001277 p = xdr_encode_hyper(p, args->fl->fl_start);
1278 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001279 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001280 if (args->new_lock_owner){
Trond Myklebust4ade9822012-03-04 18:13:57 -05001281 encode_nfs4_seqid(xdr, args->open_seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001282 encode_nfs4_stateid(xdr, args->open_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001283 encode_nfs4_seqid(xdr, args->lock_seqid);
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001284 encode_lockowner(xdr, &args->lock_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 else {
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001287 encode_nfs4_stateid(xdr, args->lock_stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001288 encode_nfs4_seqid(xdr, args->lock_seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Andy Adamsond0179312008-12-23 16:06:17 -05001290 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001291 hdr->replen += decode_lock_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001294static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Al Viro8687b632006-10-19 23:28:48 -07001296 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001298 p = reserve_space(xdr, 24);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001299 *p++ = cpu_to_be32(OP_LOCKT);
1300 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001301 p = xdr_encode_hyper(p, args->fl->fl_start);
1302 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Trond Myklebustdaccbde2010-06-25 18:11:43 -04001303 encode_lockowner(xdr, &args->lock_owner);
Andy Adamsond0179312008-12-23 16:06:17 -05001304 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001305 hdr->replen += decode_lockt_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001308static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Al Viro8687b632006-10-19 23:28:48 -07001310 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Trond Myklebust4ade9822012-03-04 18:13:57 -05001312 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001313 *p++ = cpu_to_be32(OP_LOCKU);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001314 *p = cpu_to_be32(nfs4_lock_type(args->fl, 0));
1315 encode_nfs4_seqid(xdr, args->seqid);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001316 encode_nfs4_stateid(xdr, args->stateid);
1317 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001318 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001319 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Andy Adamsond0179312008-12-23 16:06:17 -05001320 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001321 hdr->replen += decode_locku_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04001324static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1325{
1326 __be32 *p;
1327
1328 p = reserve_space(xdr, 4);
1329 *p = cpu_to_be32(OP_RELEASE_LOCKOWNER);
1330 encode_lockowner(xdr, lowner);
1331 hdr->nops++;
1332 hdr->replen += decode_release_lockowner_maxsz;
1333}
1334
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001335static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Al Viro8687b632006-10-19 23:28:48 -07001337 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001339 p = reserve_space(xdr, 4);
1340 *p = cpu_to_be32(OP_LOOKUP);
1341 encode_string(xdr, name->len, name->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001342 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001343 hdr->replen += decode_lookup_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001346static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Al Viro8687b632006-10-19 23:28:48 -07001348 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Benny Halevy13c65ce2009-08-14 17:19:25 +03001350 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001351 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001352 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001353 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001354 break;
1355 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001356 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001357 break;
1358 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001359 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001360 break;
1361 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001362 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
Benny Halevy34558512009-08-14 17:19:30 +03001364 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
1367static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1368{
Al Viro8687b632006-10-19 23:28:48 -07001369 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /*
1371 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1372 * owner 4 = 32
1373 */
Trond Myklebust4ade9822012-03-04 18:13:57 -05001374 p = reserve_space(xdr, 4);
1375 *p = cpu_to_be32(OP_OPEN);
1376 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001377 encode_share_access(xdr, arg->fmode);
Trond Myklebustd035c362010-12-21 10:45:27 -05001378 p = reserve_space(xdr, 32);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001379 p = xdr_encode_hyper(p, arg->clientid);
Trond Myklebustd035c362010-12-21 10:45:27 -05001380 *p++ = cpu_to_be32(20);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001381 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Trond Myklebustd035c362010-12-21 10:45:27 -05001382 *p++ = cpu_to_be32(arg->server->s_dev);
Benny Halevy34558512009-08-14 17:19:30 +03001383 xdr_encode_hyper(p, arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1387{
Al Viro8687b632006-10-19 23:28:48 -07001388 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001389 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Benny Halevy13c65ce2009-08-14 17:19:25 +03001391 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001393 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001394 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001395 encode_attrs(xdr, arg->u.attrs, arg->server);
1396 break;
1397 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001398 clp = arg->server->nfs_client;
Trond Myklebusta4432342010-06-16 09:52:27 -04001399 if (clp->cl_mvops->minor_version > 0) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001400 if (nfs4_has_persistent_session(clp)) {
1401 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1402 encode_attrs(xdr, arg->u.attrs, arg->server);
1403 } else {
1404 struct iattr dummy;
1405
1406 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1407 encode_nfs4_verifier(xdr, &arg->u.verifier);
1408 dummy.ia_valid = 0;
1409 encode_attrs(xdr, &dummy, arg->server);
1410 }
1411 } else {
1412 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1413 encode_nfs4_verifier(xdr, &arg->u.verifier);
1414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416}
1417
1418static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1419{
Al Viro8687b632006-10-19 23:28:48 -07001420 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Benny Halevy13c65ce2009-08-14 17:19:25 +03001422 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001424 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001425 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001426 break;
1427 default:
1428 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001429 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001430 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432}
1433
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001434static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Al Viro8687b632006-10-19 23:28:48 -07001436 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Benny Halevy13c65ce2009-08-14 17:19:25 +03001438 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001440 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001441 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001442 break;
1443 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001444 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001445 break;
1446 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001447 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001448 break;
1449 default:
1450 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452}
1453
1454static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1455{
Al Viro8687b632006-10-19 23:28:48 -07001456 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Benny Halevy13c65ce2009-08-14 17:19:25 +03001458 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001459 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 encode_string(xdr, name->len, name->name);
1461}
1462
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001463static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Al Viro8687b632006-10-19 23:28:48 -07001465 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Benny Halevy13c65ce2009-08-14 17:19:25 +03001467 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001468 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 encode_delegation_type(xdr, type);
1470}
1471
1472static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1473{
Al Viro8687b632006-10-19 23:28:48 -07001474 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001476 p = reserve_space(xdr, 4);
1477 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1478 encode_nfs4_stateid(xdr, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 encode_string(xdr, name->len, name->name);
1480}
1481
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001482static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
1484 encode_openhdr(xdr, arg);
1485 encode_opentype(xdr, arg);
1486 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001487 case NFS4_OPEN_CLAIM_NULL:
1488 encode_claim_null(xdr, arg->name);
1489 break;
1490 case NFS4_OPEN_CLAIM_PREVIOUS:
1491 encode_claim_previous(xdr, arg->u.delegation_type);
1492 break;
1493 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1494 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1495 break;
1496 default:
1497 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
Andy Adamsond0179312008-12-23 16:06:17 -05001499 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001500 hdr->replen += decode_open_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001503static 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 -07001504{
Al Viro8687b632006-10-19 23:28:48 -07001505 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001507 p = reserve_space(xdr, 4);
1508 *p = cpu_to_be32(OP_OPEN_CONFIRM);
1509 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001510 encode_nfs4_seqid(xdr, arg->seqid);
Andy Adamsond0179312008-12-23 16:06:17 -05001511 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001512 hdr->replen += decode_open_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001515static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Al Viro8687b632006-10-19 23:28:48 -07001517 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001519 p = reserve_space(xdr, 4);
1520 *p = cpu_to_be32(OP_OPEN_DOWNGRADE);
1521 encode_nfs4_stateid(xdr, arg->stateid);
Trond Myklebust4ade9822012-03-04 18:13:57 -05001522 encode_nfs4_seqid(xdr, arg->seqid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001523 encode_share_access(xdr, arg->fmode);
Andy Adamsond0179312008-12-23 16:06:17 -05001524 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001525 hdr->replen += decode_open_downgrade_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001528static void
Andy Adamsond0179312008-12-23 16:06:17 -05001529encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Al Viro8687b632006-10-19 23:28:48 -07001531 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001533 p = reserve_space(xdr, 4);
1534 *p = cpu_to_be32(OP_PUTFH);
1535 encode_string(xdr, fh->size, fh->data);
Andy Adamsond0179312008-12-23 16:06:17 -05001536 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001537 hdr->replen += decode_putfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001540static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Andy Adamson05d564f2008-12-23 16:06:15 -05001542 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001543
Benny Halevy13c65ce2009-08-14 17:19:25 +03001544 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001545 *p = cpu_to_be32(OP_PUTROOTFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001546 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001547 hdr->replen += decode_putrootfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001550static void encode_open_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx, const struct nfs_lock_context *l_ctx, int zero_seqid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 nfs4_stateid stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (ctx->state != NULL) {
Trond Myklebust1e3987c2012-03-04 18:13:56 -05001555 nfs4_select_rw_stateid(&stateid, ctx->state, l_ctx->lockowner, l_ctx->pid);
Andy Adamson89d1ea62011-03-01 01:34:09 +00001556 if (zero_seqid)
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05001557 stateid.seqid = 0;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001558 encode_nfs4_stateid(xdr, &stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 } else
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001560 encode_nfs4_stateid(xdr, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001563static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Al Viro8687b632006-10-19 23:28:48 -07001565 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Benny Halevy13c65ce2009-08-14 17:19:25 +03001567 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001568 *p = cpu_to_be32(OP_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001570 encode_open_stateid(xdr, args->context, args->lock_context,
Andy Adamson89d1ea62011-03-01 01:34:09 +00001571 hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Benny Halevy13c65ce2009-08-14 17:19:25 +03001573 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001574 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001575 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001576 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001577 hdr->replen += decode_read_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001580static 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 -07001581{
Trond Myklebust28331a42011-04-27 13:47:52 -04001582 uint32_t attrs[2] = {
1583 FATTR4_WORD0_RDATTR_ERROR,
1584 FATTR4_WORD1_MOUNTED_ON_FILEID,
1585 };
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001586 uint32_t dircount = readdir->count >> 1;
Al Viro8687b632006-10-19 23:28:48 -07001587 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001589 if (readdir->plus) {
1590 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
Trond Myklebust28331a42011-04-27 13:47:52 -04001591 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001592 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1593 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1594 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1595 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001596 dircount >>= 1;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001597 }
Trond Myklebust28331a42011-04-27 13:47:52 -04001598 /* Use mounted_on_fileid only if the server supports it */
1599 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1600 attrs[0] |= FATTR4_WORD0_FILEID;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001601
Benny Halevy13c65ce2009-08-14 17:19:25 +03001602 p = reserve_space(xdr, 12+NFS4_VERIFIER_SIZE+20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001603 *p++ = cpu_to_be32(OP_READDIR);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001604 p = xdr_encode_hyper(p, readdir->cookie);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001605 p = xdr_encode_opaque_fixed(p, readdir->verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebust6f7a35b2010-10-24 12:11:42 -04001606 *p++ = cpu_to_be32(dircount);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001607 *p++ = cpu_to_be32(readdir->count);
1608 *p++ = cpu_to_be32(2);
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001609
Benny Halevye75bc1c2009-08-14 17:18:54 +03001610 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001611 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Andy Adamsond0179312008-12-23 16:06:17 -05001612 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001613 hdr->replen += decode_readdir_maxsz;
Fred Isaman44109242008-04-02 15:21:15 +03001614 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1615 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001616 (unsigned long long)readdir->cookie,
1617 ((u32 *)readdir->verifier.data)[0],
1618 ((u32 *)readdir->verifier.data)[1],
1619 attrs[0] & readdir->bitmask[0],
1620 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001623static 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 -07001624{
Al Viro8687b632006-10-19 23:28:48 -07001625 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Benny Halevy13c65ce2009-08-14 17:19:25 +03001627 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001628 *p = cpu_to_be32(OP_READLINK);
Andy Adamsond0179312008-12-23 16:06:17 -05001629 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001630 hdr->replen += decode_readlink_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001633static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Al Viro8687b632006-10-19 23:28:48 -07001635 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001637 p = reserve_space(xdr, 4);
1638 *p = cpu_to_be32(OP_REMOVE);
1639 encode_string(xdr, name->len, name->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001640 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001641 hdr->replen += decode_remove_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001644static 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 -07001645{
Al Viro8687b632006-10-19 23:28:48 -07001646 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Benny Halevy811652b2009-08-14 17:19:34 +03001648 p = reserve_space(xdr, 4);
1649 *p = cpu_to_be32(OP_RENAME);
1650 encode_string(xdr, oldname->len, oldname->name);
1651 encode_string(xdr, newname->len, newname->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001652 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001653 hdr->replen += decode_rename_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Chuck Leverbb4dae52012-03-01 17:01:48 -05001656static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1657 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Al Viro8687b632006-10-19 23:28:48 -07001659 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Benny Halevy13c65ce2009-08-14 17:19:25 +03001661 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001662 *p++ = cpu_to_be32(OP_RENEW);
Chuck Leverbb4dae52012-03-01 17:01:48 -05001663 xdr_encode_hyper(p, clid);
Andy Adamsond0179312008-12-23 16:06:17 -05001664 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001665 hdr->replen += decode_renew_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001668static void
Andy Adamsond0179312008-12-23 16:06:17 -05001669encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001670{
Al Viro8687b632006-10-19 23:28:48 -07001671 __be32 *p;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001672
Benny Halevy13c65ce2009-08-14 17:19:25 +03001673 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001674 *p = cpu_to_be32(OP_RESTOREFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001675 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001676 hdr->replen += decode_restorefh_maxsz;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001677}
1678
Chuck Lever9f06c712010-12-14 14:59:18 +00001679static void
Andy Adamsond0179312008-12-23 16:06:17 -05001680encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001681{
Al Viro8687b632006-10-19 23:28:48 -07001682 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001683
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001684 p = reserve_space(xdr, 4);
1685 *p = cpu_to_be32(OP_SETATTR);
1686 encode_nfs4_stateid(xdr, &zero_stateid);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001687 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001688 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001689 *p = cpu_to_be32(FATTR4_WORD0_ACL);
Chuck Lever9f06c712010-12-14 14:59:18 +00001690 BUG_ON(arg->acl_len % 4);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001691 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001692 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001693 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05001694 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001695 hdr->replen += decode_setacl_maxsz;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001696}
1697
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001698static void
Andy Adamsond0179312008-12-23 16:06:17 -05001699encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Al Viro8687b632006-10-19 23:28:48 -07001701 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Benny Halevy13c65ce2009-08-14 17:19:25 +03001703 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001704 *p = cpu_to_be32(OP_SAVEFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001705 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001706 hdr->replen += decode_savefh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001709static 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 -07001710{
Al Viro8687b632006-10-19 23:28:48 -07001711 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001712
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001713 p = reserve_space(xdr, 4);
1714 *p = cpu_to_be32(OP_SETATTR);
1715 encode_nfs4_stateid(xdr, &arg->stateid);
Andy Adamsond0179312008-12-23 16:06:17 -05001716 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001717 hdr->replen += decode_setattr_maxsz;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001718 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001721static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Al Viro8687b632006-10-19 23:28:48 -07001723 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Benny Halevy13c65ce2009-08-14 17:19:25 +03001725 p = reserve_space(xdr, 4 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001726 *p++ = cpu_to_be32(OP_SETCLIENTID);
Benny Halevy34558512009-08-14 17:19:30 +03001727 xdr_encode_opaque_fixed(p, setclientid->sc_verifier->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001730 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001731 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1733 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001734 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001735 *p = cpu_to_be32(setclientid->sc_cb_ident);
Andy Adamsond0179312008-12-23 16:06:17 -05001736 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001737 hdr->replen += decode_setclientid_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738}
1739
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001740static 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 -07001741{
Andy Adamson05d564f2008-12-23 16:06:15 -05001742 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Benny Halevy13c65ce2009-08-14 17:19:25 +03001744 p = reserve_space(xdr, 12 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001745 *p++ = cpu_to_be32(OP_SETCLIENTID_CONFIRM);
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04001746 p = xdr_encode_hyper(p, arg->clientid);
1747 xdr_encode_opaque_fixed(p, arg->confirm.data, NFS4_VERIFIER_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001748 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001749 hdr->replen += decode_setclientid_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001752static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Al Viro8687b632006-10-19 23:28:48 -07001754 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Benny Halevy13c65ce2009-08-14 17:19:25 +03001756 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001757 *p = cpu_to_be32(OP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Trond Myklebustd0b496d2012-03-04 18:13:56 -05001759 encode_open_stateid(xdr, args->context, args->lock_context,
Andy Adamson89d1ea62011-03-01 01:34:09 +00001760 hdr->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Benny Halevy13c65ce2009-08-14 17:19:25 +03001762 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001763 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001764 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001765 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001768 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001769 hdr->replen += decode_write_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001772static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Al Viro8687b632006-10-19 23:28:48 -07001774 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Trond Myklebustea9d23f2012-03-04 18:13:56 -05001776 p = reserve_space(xdr, 4);
1777 *p = cpu_to_be32(OP_DELEGRETURN);
1778 encode_nfs4_stateid(xdr, stateid);
Andy Adamsond0179312008-12-23 16:06:17 -05001779 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001780 hdr->replen += decode_delegreturn_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001782
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001783static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1784{
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001785 __be32 *p;
1786
Trond Myklebust6fdfb0bc2012-03-04 18:13:57 -05001787 p = reserve_space(xdr, 4);
1788 *p = cpu_to_be32(OP_SECINFO);
1789 encode_string(xdr, name->len, name->name);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00001790 hdr->nops++;
1791 hdr->replen += decode_secinfo_maxsz;
1792}
1793
Benny Halevy99fe60d2009-04-01 09:22:29 -04001794#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001795/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001796static void encode_exchange_id(struct xdr_stream *xdr,
1797 struct nfs41_exchange_id_args *args,
1798 struct compound_hdr *hdr)
1799{
1800 __be32 *p;
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001801 char impl_name[NFS4_OPAQUE_LIMIT];
1802 int len = 0;
Benny Halevy99fe60d2009-04-01 09:22:29 -04001803
Benny Halevy13c65ce2009-08-14 17:19:25 +03001804 p = reserve_space(xdr, 4 + sizeof(args->verifier->data));
Benny Halevye75bc1c2009-08-14 17:18:54 +03001805 *p++ = cpu_to_be32(OP_EXCHANGE_ID);
Benny Halevy34558512009-08-14 17:19:30 +03001806 xdr_encode_opaque_fixed(p, args->verifier->data, sizeof(args->verifier->data));
Benny Halevy99fe60d2009-04-01 09:22:29 -04001807
1808 encode_string(xdr, args->id_len, args->id);
1809
Benny Halevy13c65ce2009-08-14 17:19:25 +03001810 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001811 *p++ = cpu_to_be32(args->flags);
1812 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Weston Andros Adamsondb8ac8b2012-02-17 15:20:24 -05001813
1814 if (send_implementation_id &&
1815 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1816 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1817 <= NFS4_OPAQUE_LIMIT + 1)
1818 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1819 utsname()->sysname, utsname()->release,
1820 utsname()->version, utsname()->machine);
1821
1822 if (len > 0) {
1823 *p = cpu_to_be32(1); /* implementation id array length=1 */
1824
1825 encode_string(xdr,
1826 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1827 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1828 encode_string(xdr, len, impl_name);
1829 /* just send zeros for nii_date - the date is in nii_name */
1830 p = reserve_space(xdr, 12);
1831 p = xdr_encode_hyper(p, 0);
1832 *p = cpu_to_be32(0);
1833 } else
1834 *p = cpu_to_be32(0); /* implementation id array length=0 */
1835
Benny Halevy99fe60d2009-04-01 09:22:29 -04001836 hdr->nops++;
1837 hdr->replen += decode_exchange_id_maxsz;
1838}
Andy Adamsonfc931582009-04-01 09:22:31 -04001839
1840static void encode_create_session(struct xdr_stream *xdr,
1841 struct nfs41_create_session_args *args,
1842 struct compound_hdr *hdr)
1843{
1844 __be32 *p;
1845 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1846 uint32_t len;
1847 struct nfs_client *clp = args->client;
Mike Sager8e0d46e2009-12-17 12:06:26 -05001848 u32 max_resp_sz_cached;
1849
1850 /*
1851 * Assumes OPEN is the biggest non-idempotent compound.
1852 * 2 is the verifier.
1853 */
1854 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1855 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001856
Andy Adamsonfc931582009-04-01 09:22:31 -04001857 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1858 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001859
Benny Halevy13c65ce2009-08-14 17:19:25 +03001860 p = reserve_space(xdr, 20 + 2*28 + 20 + len + 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001861 *p++ = cpu_to_be32(OP_CREATE_SESSION);
Andy Adamson114f64b2011-03-09 13:13:45 -05001862 p = xdr_encode_hyper(p, clp->cl_clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001863 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1864 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001865
Andy Adamsonfc931582009-04-01 09:22:31 -04001866 /* Fore Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001867 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001868 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1869 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001870 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001871 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1872 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1873 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001874
1875 /* Back Channel */
Benny Halevyc9c30dd2011-06-11 17:08:39 -04001876 *p++ = cpu_to_be32(0); /* header padding size */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001877 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1878 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1879 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1880 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1881 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1882 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001883
Benny Halevye75bc1c2009-08-14 17:18:54 +03001884 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001885 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001886 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001887
1888 /* authsys_parms rfc1831 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001889 *p++ = cpu_to_be32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001890 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001891 *p++ = cpu_to_be32(0); /* UID */
1892 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001893 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001894 hdr->nops++;
1895 hdr->replen += decode_create_session_maxsz;
1896}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001897
1898static void encode_destroy_session(struct xdr_stream *xdr,
1899 struct nfs4_session *session,
1900 struct compound_hdr *hdr)
1901{
1902 __be32 *p;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001903 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001904 *p++ = cpu_to_be32(OP_DESTROY_SESSION);
Benny Halevy34558512009-08-14 17:19:30 +03001905 xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001906 hdr->nops++;
1907 hdr->replen += decode_destroy_session_maxsz;
1908}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001909
1910static void encode_reclaim_complete(struct xdr_stream *xdr,
1911 struct nfs41_reclaim_complete_args *args,
1912 struct compound_hdr *hdr)
1913{
1914 __be32 *p;
1915
1916 p = reserve_space(xdr, 8);
1917 *p++ = cpu_to_be32(OP_RECLAIM_COMPLETE);
1918 *p++ = cpu_to_be32(args->one_fs);
1919 hdr->nops++;
1920 hdr->replen += decode_reclaim_complete_maxsz;
1921}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001922#endif /* CONFIG_NFS_V4_1 */
1923
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001924static void encode_sequence(struct xdr_stream *xdr,
1925 const struct nfs4_sequence_args *args,
1926 struct compound_hdr *hdr)
1927{
1928#if defined(CONFIG_NFS_V4_1)
1929 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001930 struct nfs4_slot_table *tp;
1931 struct nfs4_slot *slot;
1932 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001933
1934 if (!session)
1935 return;
1936
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001937 tp = &session->fc_slot_table;
1938
1939 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1940 slot = tp->slots + args->sa_slotid;
1941
Benny Halevy13c65ce2009-08-14 17:19:25 +03001942 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001943 *p++ = cpu_to_be32(OP_SEQUENCE);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001944
1945 /*
1946 * Sessionid + seqid + slotid + max slotid + cache_this
1947 */
1948 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1949 "max_slotid=%d cache_this=%d\n",
1950 __func__,
1951 ((u32 *)session->sess_id.data)[0],
1952 ((u32 *)session->sess_id.data)[1],
1953 ((u32 *)session->sess_id.data)[2],
1954 ((u32 *)session->sess_id.data)[3],
1955 slot->seq_nr, args->sa_slotid,
1956 tp->highest_used_slotid, args->sa_cache_this);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001957 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001958 *p++ = cpu_to_be32(slot->seq_nr);
1959 *p++ = cpu_to_be32(args->sa_slotid);
1960 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001961 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001962 hdr->nops++;
1963 hdr->replen += decode_sequence_maxsz;
1964#endif /* CONFIG_NFS_V4_1 */
1965}
1966
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001967#ifdef CONFIG_NFS_V4_1
1968static void
Andy Adamson7f11d8d2011-07-30 20:52:35 -04001969encode_getdevicelist(struct xdr_stream *xdr,
1970 const struct nfs4_getdevicelist_args *args,
1971 struct compound_hdr *hdr)
1972{
1973 __be32 *p;
1974 nfs4_verifier dummy = {
1975 .data = "dummmmmy",
1976 };
1977
1978 p = reserve_space(xdr, 20);
1979 *p++ = cpu_to_be32(OP_GETDEVICELIST);
1980 *p++ = cpu_to_be32(args->layoutclass);
1981 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1982 xdr_encode_hyper(p, 0ULL); /* cookie */
1983 encode_nfs4_verifier(xdr, &dummy);
1984 hdr->nops++;
1985 hdr->replen += decode_getdevicelist_maxsz;
1986}
1987
1988static void
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001989encode_getdeviceinfo(struct xdr_stream *xdr,
1990 const struct nfs4_getdeviceinfo_args *args,
1991 struct compound_hdr *hdr)
1992{
1993 __be32 *p;
1994
1995 p = reserve_space(xdr, 16 + NFS4_DEVICEID4_SIZE);
1996 *p++ = cpu_to_be32(OP_GETDEVICEINFO);
1997 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1998 NFS4_DEVICEID4_SIZE);
1999 *p++ = cpu_to_be32(args->pdev->layout_type);
2000 *p++ = cpu_to_be32(args->pdev->pglen); /* gdia_maxcount */
2001 *p++ = cpu_to_be32(0); /* bitmap length 0 */
2002 hdr->nops++;
2003 hdr->replen += decode_getdeviceinfo_maxsz;
2004}
2005
2006static void
2007encode_layoutget(struct xdr_stream *xdr,
2008 const struct nfs4_layoutget_args *args,
2009 struct compound_hdr *hdr)
2010{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002011 __be32 *p;
2012
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002013 p = reserve_space(xdr, 40);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002014 *p++ = cpu_to_be32(OP_LAYOUTGET);
2015 *p++ = cpu_to_be32(0); /* Signal layout available */
2016 *p++ = cpu_to_be32(args->type);
2017 *p++ = cpu_to_be32(args->range.iomode);
2018 p = xdr_encode_hyper(p, args->range.offset);
2019 p = xdr_encode_hyper(p, args->range.length);
2020 p = xdr_encode_hyper(p, args->minlength);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002021 encode_nfs4_stateid(xdr, &args->stateid);
2022 p = reserve_space(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002023 *p = cpu_to_be32(args->maxcount);
2024
2025 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
2026 __func__,
2027 args->type,
2028 args->range.iomode,
2029 (unsigned long)args->range.offset,
2030 (unsigned long)args->range.length,
2031 args->maxcount);
2032 hdr->nops++;
2033 hdr->replen += decode_layoutget_maxsz;
2034}
Andy Adamson863a3c62011-03-23 13:27:54 +00002035
2036static int
2037encode_layoutcommit(struct xdr_stream *xdr,
Benny Halevyac7db722011-05-22 19:53:48 +03002038 struct inode *inode,
Andy Adamson863a3c62011-03-23 13:27:54 +00002039 const struct nfs4_layoutcommit_args *args,
2040 struct compound_hdr *hdr)
2041{
2042 __be32 *p;
2043
2044 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
2045 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
2046
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002047 p = reserve_space(xdr, 24);
Andy Adamson863a3c62011-03-23 13:27:54 +00002048 *p++ = cpu_to_be32(OP_LAYOUTCOMMIT);
2049 /* Only whole file layouts */
2050 p = xdr_encode_hyper(p, 0); /* offset */
Peng Tao3557c6c2011-07-30 20:52:34 -04002051 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002052 *p = cpu_to_be32(0); /* reclaim */
2053 encode_nfs4_stateid(xdr, &args->stateid);
2054 p = reserve_space(xdr, 20);
Andy Adamson863a3c62011-03-23 13:27:54 +00002055 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
2056 p = xdr_encode_hyper(p, args->lastbytewritten);
2057 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
2058 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
Benny Halevyac7db722011-05-22 19:53:48 +03002059
2060 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
2061 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
2062 NFS_I(inode)->layout, xdr, args);
2063 else {
2064 p = reserve_space(xdr, 4);
2065 *p = cpu_to_be32(0); /* no layout-type payload */
2066 }
Andy Adamson863a3c62011-03-23 13:27:54 +00002067
2068 hdr->nops++;
2069 hdr->replen += decode_layoutcommit_maxsz;
2070 return 0;
2071}
Benny Halevycbe82602011-05-22 19:52:37 +03002072
2073static void
2074encode_layoutreturn(struct xdr_stream *xdr,
2075 const struct nfs4_layoutreturn_args *args,
2076 struct compound_hdr *hdr)
2077{
2078 __be32 *p;
2079
2080 p = reserve_space(xdr, 20);
2081 *p++ = cpu_to_be32(OP_LAYOUTRETURN);
2082 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
2083 *p++ = cpu_to_be32(args->layout_type);
2084 *p++ = cpu_to_be32(IOMODE_ANY);
2085 *p = cpu_to_be32(RETURN_FILE);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002086 p = reserve_space(xdr, 16);
Benny Halevycbe82602011-05-22 19:52:37 +03002087 p = xdr_encode_hyper(p, 0);
2088 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
2089 spin_lock(&args->inode->i_lock);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002090 encode_nfs4_stateid(xdr, &args->stateid);
Benny Halevycbe82602011-05-22 19:52:37 +03002091 spin_unlock(&args->inode->i_lock);
Andy Adamson04a55542011-05-22 19:53:10 +03002092 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
2093 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
2094 NFS_I(args->inode)->layout, xdr, args);
2095 } else {
2096 p = reserve_space(xdr, 4);
2097 *p = cpu_to_be32(0);
2098 }
Benny Halevycbe82602011-05-22 19:52:37 +03002099 hdr->nops++;
2100 hdr->replen += decode_layoutreturn_maxsz;
2101}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002102
2103static int
2104encode_secinfo_no_name(struct xdr_stream *xdr,
2105 const struct nfs41_secinfo_no_name_args *args,
2106 struct compound_hdr *hdr)
2107{
2108 __be32 *p;
2109 p = reserve_space(xdr, 8);
2110 *p++ = cpu_to_be32(OP_SECINFO_NO_NAME);
2111 *p++ = cpu_to_be32(args->style);
2112 hdr->nops++;
2113 hdr->replen += decode_secinfo_no_name_maxsz;
2114 return 0;
2115}
Bryan Schumaker7d974792011-06-02 14:59:08 -04002116
2117static void encode_test_stateid(struct xdr_stream *xdr,
2118 struct nfs41_test_stateid_args *args,
2119 struct compound_hdr *hdr)
2120{
2121 __be32 *p;
2122
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002123 p = reserve_space(xdr, 8);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002124 *p++ = cpu_to_be32(OP_TEST_STATEID);
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002125 *p = cpu_to_be32(1);
2126 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker7d974792011-06-02 14:59:08 -04002127 hdr->nops++;
2128 hdr->replen += decode_test_stateid_maxsz;
2129}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002130
2131static void encode_free_stateid(struct xdr_stream *xdr,
2132 struct nfs41_free_stateid_args *args,
2133 struct compound_hdr *hdr)
2134{
2135 __be32 *p;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05002136 p = reserve_space(xdr, 4);
2137 *p = cpu_to_be32(OP_FREE_STATEID);
2138 encode_nfs4_stateid(xdr, args->stateid);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04002139 hdr->nops++;
2140 hdr->replen += decode_free_stateid_maxsz;
2141}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002142#endif /* CONFIG_NFS_V4_1 */
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144/*
2145 * END OF "GENERIC" ENCODE ROUTINES.
2146 */
2147
Benny Halevy66cc0422009-04-01 09:22:10 -04002148static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2149{
2150#if defined(CONFIG_NFS_V4_1)
2151 if (args->sa_session)
Trond Myklebusta4432342010-06-16 09:52:27 -04002152 return args->sa_session->clp->cl_mvops->minor_version;
Benny Halevy66cc0422009-04-01 09:22:10 -04002153#endif /* CONFIG_NFS_V4_1 */
2154 return 0;
2155}
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157/*
2158 * Encode an ACCESS request
2159 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002160static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2161 const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002164 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Chuck Lever9f06c712010-12-14 14:59:18 +00002167 encode_compound_hdr(xdr, req, &hdr);
2168 encode_sequence(xdr, &args->seq_args, &hdr);
2169 encode_putfh(xdr, args->fh, &hdr);
2170 encode_access(xdr, args->access, &hdr);
2171 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002172 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173}
2174
2175/*
2176 * Encode LOOKUP request
2177 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002178static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2179 const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002182 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Chuck Lever9f06c712010-12-14 14:59:18 +00002185 encode_compound_hdr(xdr, req, &hdr);
2186 encode_sequence(xdr, &args->seq_args, &hdr);
2187 encode_putfh(xdr, args->dir_fh, &hdr);
2188 encode_lookup(xdr, args->name, &hdr);
2189 encode_getfh(xdr, &hdr);
2190 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002191 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
2194/*
2195 * Encode LOOKUP_ROOT request
2196 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002197static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2198 struct xdr_stream *xdr,
2199 const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002202 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Chuck Lever9f06c712010-12-14 14:59:18 +00002205 encode_compound_hdr(xdr, req, &hdr);
2206 encode_sequence(xdr, &args->seq_args, &hdr);
2207 encode_putrootfh(xdr, &hdr);
2208 encode_getfh(xdr, &hdr);
2209 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002210 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212
2213/*
2214 * Encode REMOVE request
2215 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002216static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2217 const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002220 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Chuck Lever9f06c712010-12-14 14:59:18 +00002223 encode_compound_hdr(xdr, req, &hdr);
2224 encode_sequence(xdr, &args->seq_args, &hdr);
2225 encode_putfh(xdr, args->fh, &hdr);
2226 encode_remove(xdr, &args->name, &hdr);
2227 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002228 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/*
2232 * Encode RENAME request
2233 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002234static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2235 const struct nfs_renameargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002238 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Chuck Lever9f06c712010-12-14 14:59:18 +00002241 encode_compound_hdr(xdr, req, &hdr);
2242 encode_sequence(xdr, &args->seq_args, &hdr);
2243 encode_putfh(xdr, args->old_dir, &hdr);
2244 encode_savefh(xdr, &hdr);
2245 encode_putfh(xdr, args->new_dir, &hdr);
2246 encode_rename(xdr, args->old_name, args->new_name, &hdr);
2247 encode_getfattr(xdr, args->bitmask, &hdr);
2248 encode_restorefh(xdr, &hdr);
2249 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002250 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
2253/*
2254 * Encode LINK request
2255 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002256static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2257 const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002260 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Chuck Lever9f06c712010-12-14 14:59:18 +00002263 encode_compound_hdr(xdr, req, &hdr);
2264 encode_sequence(xdr, &args->seq_args, &hdr);
2265 encode_putfh(xdr, args->fh, &hdr);
2266 encode_savefh(xdr, &hdr);
2267 encode_putfh(xdr, args->dir_fh, &hdr);
2268 encode_link(xdr, args->name, &hdr);
2269 encode_getfattr(xdr, args->bitmask, &hdr);
2270 encode_restorefh(xdr, &hdr);
2271 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002272 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275/*
2276 * Encode CREATE request
2277 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002278static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2279 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002282 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Chuck Lever9f06c712010-12-14 14:59:18 +00002285 encode_compound_hdr(xdr, req, &hdr);
2286 encode_sequence(xdr, &args->seq_args, &hdr);
2287 encode_putfh(xdr, args->dir_fh, &hdr);
2288 encode_savefh(xdr, &hdr);
2289 encode_create(xdr, args, &hdr);
2290 encode_getfh(xdr, &hdr);
2291 encode_getfattr(xdr, args->bitmask, &hdr);
2292 encode_restorefh(xdr, &hdr);
2293 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002294 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
2297/*
2298 * Encode SYMLINK request
2299 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002300static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2301 const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Chuck Lever9f06c712010-12-14 14:59:18 +00002303 nfs4_xdr_enc_create(req, xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
2306/*
2307 * Encode GETATTR request
2308 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002309static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2310 const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002313 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Chuck Lever9f06c712010-12-14 14:59:18 +00002316 encode_compound_hdr(xdr, req, &hdr);
2317 encode_sequence(xdr, &args->seq_args, &hdr);
2318 encode_putfh(xdr, args->fh, &hdr);
2319 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002320 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
2323/*
2324 * Encode a CLOSE request
2325 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002326static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2327 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328{
Andy Adamson05d564f2008-12-23 16:06:15 -05002329 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002330 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002331 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Chuck Lever9f06c712010-12-14 14:59:18 +00002333 encode_compound_hdr(xdr, req, &hdr);
2334 encode_sequence(xdr, &args->seq_args, &hdr);
2335 encode_putfh(xdr, args->fh, &hdr);
2336 encode_close(xdr, args, &hdr);
2337 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002338 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
2341/*
2342 * Encode an OPEN request
2343 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002344static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2345 struct nfs_openargs *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_savefh(xdr, &hdr);
2355 encode_open(xdr, args, &hdr);
2356 encode_getfh(xdr, &hdr);
2357 encode_getfattr(xdr, args->bitmask, &hdr);
2358 encode_restorefh(xdr, &hdr);
Trond Myklebust6926afd2012-01-07 13:22:46 -05002359 encode_getfattr(xdr, args->dir_bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002360 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
2363/*
2364 * Encode an OPEN_CONFIRM request
2365 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002366static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2367 struct xdr_stream *xdr,
2368 struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002371 .nops = 0,
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_putfh(xdr, args->fh, &hdr);
2376 encode_open_confirm(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002377 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380/*
2381 * Encode an OPEN request with no attributes.
2382 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002383static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2384 struct xdr_stream *xdr,
2385 struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002388 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Chuck Lever9f06c712010-12-14 14:59:18 +00002391 encode_compound_hdr(xdr, req, &hdr);
2392 encode_sequence(xdr, &args->seq_args, &hdr);
2393 encode_putfh(xdr, args->fh, &hdr);
2394 encode_open(xdr, args, &hdr);
2395 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002396 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397}
2398
2399/*
2400 * Encode an OPEN_DOWNGRADE request
2401 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002402static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2403 struct xdr_stream *xdr,
2404 struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002407 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Chuck Lever9f06c712010-12-14 14:59:18 +00002410 encode_compound_hdr(xdr, req, &hdr);
2411 encode_sequence(xdr, &args->seq_args, &hdr);
2412 encode_putfh(xdr, args->fh, &hdr);
2413 encode_open_downgrade(xdr, args, &hdr);
2414 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002415 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416}
2417
2418/*
2419 * Encode a LOCK request
2420 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002421static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2422 struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002425 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Chuck Lever9f06c712010-12-14 14:59:18 +00002428 encode_compound_hdr(xdr, req, &hdr);
2429 encode_sequence(xdr, &args->seq_args, &hdr);
2430 encode_putfh(xdr, args->fh, &hdr);
2431 encode_lock(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002432 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
2435/*
2436 * Encode a LOCKT request
2437 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002438static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2439 struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002442 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Chuck Lever9f06c712010-12-14 14:59:18 +00002445 encode_compound_hdr(xdr, req, &hdr);
2446 encode_sequence(xdr, &args->seq_args, &hdr);
2447 encode_putfh(xdr, args->fh, &hdr);
2448 encode_lockt(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002449 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
2452/*
2453 * Encode a LOCKU request
2454 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002455static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2456 struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002459 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Chuck Lever9f06c712010-12-14 14:59:18 +00002462 encode_compound_hdr(xdr, req, &hdr);
2463 encode_sequence(xdr, &args->seq_args, &hdr);
2464 encode_putfh(xdr, args->fh, &hdr);
2465 encode_locku(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002466 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
2468
Chuck Lever9f06c712010-12-14 14:59:18 +00002469static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2470 struct xdr_stream *xdr,
2471 struct nfs_release_lockowner_args *args)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002472{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002473 struct compound_hdr hdr = {
2474 .minorversion = 0,
2475 };
2476
Chuck Lever9f06c712010-12-14 14:59:18 +00002477 encode_compound_hdr(xdr, req, &hdr);
2478 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002479 encode_nops(&hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04002480}
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482/*
2483 * Encode a READLINK request
2484 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002485static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2486 const struct nfs4_readlink *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_readlink(xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002496
Benny Halevy28f56692009-04-01 09:22:09 -04002497 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002498 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002499 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
2502/*
2503 * Encode a READDIR request
2504 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002505static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2506 const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002509 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Chuck Lever9f06c712010-12-14 14:59:18 +00002512 encode_compound_hdr(xdr, req, &hdr);
2513 encode_sequence(xdr, &args->seq_args, &hdr);
2514 encode_putfh(xdr, args->fh, &hdr);
2515 encode_readdir(xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002516
Benny Halevy28f56692009-04-01 09:22:09 -04002517 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002518 args->pgbase, args->count);
2519 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002520 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002521 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002522 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
2525/*
2526 * Encode a READ request
2527 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002528static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2529 struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002532 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Chuck Lever9f06c712010-12-14 14:59:18 +00002535 encode_compound_hdr(xdr, req, &hdr);
2536 encode_sequence(xdr, &args->seq_args, &hdr);
2537 encode_putfh(xdr, args->fh, &hdr);
2538 encode_read(xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Benny Halevy28f56692009-04-01 09:22:09 -04002540 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002542 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002543 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
2546/*
2547 * Encode an SETATTR request
2548 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002549static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2550 struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Andy Adamson05d564f2008-12-23 16:06:15 -05002552 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002553 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002554 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Chuck Lever9f06c712010-12-14 14:59:18 +00002556 encode_compound_hdr(xdr, req, &hdr);
2557 encode_sequence(xdr, &args->seq_args, &hdr);
2558 encode_putfh(xdr, args->fh, &hdr);
2559 encode_setattr(xdr, args, args->server, &hdr);
2560 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002561 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
2564/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002565 * Encode a GETACL request
2566 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002567static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2568 struct nfs_getaclargs *args)
J. Bruce Fields029d1052005-06-22 17:16:22 +00002569{
J. Bruce Fields029d1052005-06-22 17:16:22 +00002570 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002571 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002572 };
Benny Halevy28f56692009-04-01 09:22:09 -04002573 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002574
Chuck Lever9f06c712010-12-14 14:59:18 +00002575 encode_compound_hdr(xdr, req, &hdr);
2576 encode_sequence(xdr, &args->seq_args, &hdr);
2577 encode_putfh(xdr, args->fh, &hdr);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002578 replen = hdr.replen + op_decode_hdr_maxsz + 1;
Chuck Lever9f06c712010-12-14 14:59:18 +00002579 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002580
Benny Halevy28f56692009-04-01 09:22:09 -04002581 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002582 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsonbf118a32011-12-07 11:55:27 -05002583
Andy Adamsond0179312008-12-23 16:06:17 -05002584 encode_nops(&hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00002585}
2586
2587/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 * Encode a WRITE request
2589 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002590static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2591 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002594 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Chuck Lever9f06c712010-12-14 14:59:18 +00002597 encode_compound_hdr(xdr, req, &hdr);
2598 encode_sequence(xdr, &args->seq_args, &hdr);
2599 encode_putfh(xdr, args->fh, &hdr);
2600 encode_write(xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002601 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Fred Isaman7ffd1062011-03-03 15:13:46 +00002602 if (args->bitmask)
2603 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002604 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
2607/*
2608 * a COMMIT request
2609 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002610static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
2611 struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002614 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Chuck Lever9f06c712010-12-14 14:59:18 +00002617 encode_compound_hdr(xdr, req, &hdr);
2618 encode_sequence(xdr, &args->seq_args, &hdr);
2619 encode_putfh(xdr, args->fh, &hdr);
2620 encode_commit(xdr, args, &hdr);
Fred Isaman988b6dc2011-03-23 13:27:52 +00002621 if (args->bitmask)
2622 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002623 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
2626/*
2627 * FSINFO request
2628 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002629static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2630 struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002633 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Chuck Lever9f06c712010-12-14 14:59:18 +00002636 encode_compound_hdr(xdr, req, &hdr);
2637 encode_sequence(xdr, &args->seq_args, &hdr);
2638 encode_putfh(xdr, args->fh, &hdr);
2639 encode_fsinfo(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002640 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
2643/*
2644 * a PATHCONF request
2645 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002646static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2647 const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002650 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Chuck Lever9f06c712010-12-14 14:59:18 +00002653 encode_compound_hdr(xdr, req, &hdr);
2654 encode_sequence(xdr, &args->seq_args, &hdr);
2655 encode_putfh(xdr, args->fh, &hdr);
2656 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002657 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002658 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
2661/*
2662 * a STATFS request
2663 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002664static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2665 const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002668 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Chuck Lever9f06c712010-12-14 14:59:18 +00002671 encode_compound_hdr(xdr, req, &hdr);
2672 encode_sequence(xdr, &args->seq_args, &hdr);
2673 encode_putfh(xdr, args->fh, &hdr);
2674 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002675 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002676 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
2679/*
2680 * GETATTR_BITMAP request
2681 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002682static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2683 struct xdr_stream *xdr,
2684 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002687 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Chuck Lever9f06c712010-12-14 14:59:18 +00002690 encode_compound_hdr(xdr, req, &hdr);
2691 encode_sequence(xdr, &args->seq_args, &hdr);
2692 encode_putfh(xdr, args->fhandle, &hdr);
2693 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
Chuck Lever264e6352012-03-01 17:02:05 -05002694 FATTR4_WORD0_FH_EXPIRE_TYPE|
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002695 FATTR4_WORD0_LINK_SUPPORT|
2696 FATTR4_WORD0_SYMLINK_SUPPORT|
2697 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002698 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699}
2700
2701/*
2702 * a RENEW request
2703 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002704static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2705 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002708 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 };
2710
Chuck Lever9f06c712010-12-14 14:59:18 +00002711 encode_compound_hdr(xdr, req, &hdr);
Chuck Leverbb4dae52012-03-01 17:01:48 -05002712 encode_renew(xdr, clp->cl_clientid, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002713 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
2715
2716/*
2717 * a SETCLIENTID request
2718 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002719static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2720 struct xdr_stream *xdr,
2721 struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002724 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 };
2726
Chuck Lever9f06c712010-12-14 14:59:18 +00002727 encode_compound_hdr(xdr, req, &hdr);
2728 encode_setclientid(xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002729 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
2732/*
2733 * a SETCLIENTID_CONFIRM request
2734 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002735static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2736 struct xdr_stream *xdr,
2737 struct nfs4_setclientid_res *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002740 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 };
Fred Isamandae100c2011-07-30 20:52:37 -04002742 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Chuck Lever9f06c712010-12-14 14:59:18 +00002744 encode_compound_hdr(xdr, req, &hdr);
2745 encode_setclientid_confirm(xdr, arg, &hdr);
2746 encode_putrootfh(xdr, &hdr);
2747 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002748 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749}
2750
2751/*
2752 * DELEGRETURN request
2753 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002754static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2755 struct xdr_stream *xdr,
2756 const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002759 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Chuck Lever9f06c712010-12-14 14:59:18 +00002762 encode_compound_hdr(xdr, req, &hdr);
2763 encode_sequence(xdr, &args->seq_args, &hdr);
2764 encode_putfh(xdr, args->fhandle, &hdr);
2765 encode_delegreturn(xdr, args->stateid, &hdr);
2766 encode_getfattr(xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002767 encode_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
2770/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002771 * Encode FS_LOCATIONS request
2772 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002773static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2774 struct xdr_stream *xdr,
2775 struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002776{
Trond Myklebust683b57b2006-06-09 09:34:22 -04002777 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002778 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002779 };
Benny Halevy28f56692009-04-01 09:22:09 -04002780 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002781
Chuck Lever9f06c712010-12-14 14:59:18 +00002782 encode_compound_hdr(xdr, req, &hdr);
2783 encode_sequence(xdr, &args->seq_args, &hdr);
2784 encode_putfh(xdr, args->dir_fh, &hdr);
2785 encode_lookup(xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002786 replen = hdr.replen; /* get the attribute into args->page */
Chuck Lever9f06c712010-12-14 14:59:18 +00002787 encode_fs_locations(xdr, args->bitmask, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002788
Benny Halevy28f56692009-04-01 09:22:09 -04002789 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002790 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002791 encode_nops(&hdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002792}
2793
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00002794/*
2795 * Encode SECINFO request
2796 */
2797static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2798 struct xdr_stream *xdr,
2799 struct nfs4_secinfo_arg *args)
2800{
2801 struct compound_hdr hdr = {
2802 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2803 };
2804
2805 encode_compound_hdr(xdr, req, &hdr);
2806 encode_sequence(xdr, &args->seq_args, &hdr);
2807 encode_putfh(xdr, args->dir_fh, &hdr);
2808 encode_secinfo(xdr, args->name, &hdr);
2809 encode_nops(&hdr);
2810}
2811
Benny Halevy99fe60d2009-04-01 09:22:29 -04002812#if defined(CONFIG_NFS_V4_1)
2813/*
2814 * EXCHANGE_ID request
2815 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002816static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2817 struct xdr_stream *xdr,
2818 struct nfs41_exchange_id_args *args)
Benny Halevy99fe60d2009-04-01 09:22:29 -04002819{
Benny Halevy99fe60d2009-04-01 09:22:29 -04002820 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002821 .minorversion = args->client->cl_mvops->minor_version,
Benny Halevy99fe60d2009-04-01 09:22:29 -04002822 };
2823
Chuck Lever9f06c712010-12-14 14:59:18 +00002824 encode_compound_hdr(xdr, req, &hdr);
2825 encode_exchange_id(xdr, args, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002826 encode_nops(&hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04002827}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002828
2829/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002830 * a CREATE_SESSION request
2831 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002832static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2833 struct xdr_stream *xdr,
2834 struct nfs41_create_session_args *args)
Andy Adamsonfc931582009-04-01 09:22:31 -04002835{
Andy Adamsonfc931582009-04-01 09:22:31 -04002836 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002837 .minorversion = args->client->cl_mvops->minor_version,
Andy Adamsonfc931582009-04-01 09:22:31 -04002838 };
2839
Chuck Lever9f06c712010-12-14 14:59:18 +00002840 encode_compound_hdr(xdr, req, &hdr);
2841 encode_create_session(xdr, args, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002842 encode_nops(&hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04002843}
2844
2845/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002846 * a DESTROY_SESSION request
2847 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002848static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2849 struct xdr_stream *xdr,
2850 struct nfs4_session *session)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002851{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002852 struct compound_hdr hdr = {
Trond Myklebusta4432342010-06-16 09:52:27 -04002853 .minorversion = session->clp->cl_mvops->minor_version,
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002854 };
2855
Chuck Lever9f06c712010-12-14 14:59:18 +00002856 encode_compound_hdr(xdr, req, &hdr);
2857 encode_destroy_session(xdr, session, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002858 encode_nops(&hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002859}
2860
2861/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002862 * a SEQUENCE request
2863 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002864static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2865 struct nfs4_sequence_args *args)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002866{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002867 struct compound_hdr hdr = {
2868 .minorversion = nfs4_xdr_minorversion(args),
2869 };
2870
Chuck Lever9f06c712010-12-14 14:59:18 +00002871 encode_compound_hdr(xdr, req, &hdr);
2872 encode_sequence(xdr, args, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002873 encode_nops(&hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002874}
2875
2876/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002877 * a GET_LEASE_TIME request
2878 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002879static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2880 struct xdr_stream *xdr,
2881 struct nfs4_get_lease_time_args *args)
Andy Adamson2050f0c2009-04-01 09:22:30 -04002882{
Andy Adamson2050f0c2009-04-01 09:22:30 -04002883 struct compound_hdr hdr = {
2884 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2885 };
Fred Isamandae100c2011-07-30 20:52:37 -04002886 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
Andy Adamson2050f0c2009-04-01 09:22:30 -04002887
Chuck Lever9f06c712010-12-14 14:59:18 +00002888 encode_compound_hdr(xdr, req, &hdr);
2889 encode_sequence(xdr, &args->la_seq_args, &hdr);
2890 encode_putrootfh(xdr, &hdr);
2891 encode_fsinfo(xdr, lease_bitmap, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002892 encode_nops(&hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04002893}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002894
2895/*
2896 * a RECLAIM_COMPLETE request
2897 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002898static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2899 struct xdr_stream *xdr,
2900 struct nfs41_reclaim_complete_args *args)
Ricardo Labiaga180197532009-12-05 16:08:40 -05002901{
Ricardo Labiaga180197532009-12-05 16:08:40 -05002902 struct compound_hdr hdr = {
2903 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2904 };
2905
Chuck Lever9f06c712010-12-14 14:59:18 +00002906 encode_compound_hdr(xdr, req, &hdr);
2907 encode_sequence(xdr, &args->seq_args, &hdr);
2908 encode_reclaim_complete(xdr, args, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002909 encode_nops(&hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05002910}
2911
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002912/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04002913 * Encode GETDEVICELIST request
2914 */
2915static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2916 struct xdr_stream *xdr,
2917 struct nfs4_getdevicelist_args *args)
2918{
2919 struct compound_hdr hdr = {
2920 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2921 };
2922
2923 encode_compound_hdr(xdr, req, &hdr);
2924 encode_sequence(xdr, &args->seq_args, &hdr);
2925 encode_putfh(xdr, args->fh, &hdr);
2926 encode_getdevicelist(xdr, args, &hdr);
2927 encode_nops(&hdr);
2928}
2929
2930/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002931 * Encode GETDEVICEINFO request
2932 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002933static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2934 struct xdr_stream *xdr,
2935 struct nfs4_getdeviceinfo_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002936{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002937 struct compound_hdr hdr = {
2938 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2939 };
2940
Chuck Lever9f06c712010-12-14 14:59:18 +00002941 encode_compound_hdr(xdr, req, &hdr);
2942 encode_sequence(xdr, &args->seq_args, &hdr);
2943 encode_getdeviceinfo(xdr, args, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002944
2945 /* set up reply kvec. Subtract notification bitmap max size (2)
2946 * so that notification bitmap is put in xdr_buf tail */
2947 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2948 args->pdev->pages, args->pdev->pgbase,
2949 args->pdev->pglen);
2950
2951 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002952}
2953
2954/*
2955 * Encode LAYOUTGET request
2956 */
Chuck Lever9f06c712010-12-14 14:59:18 +00002957static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2958 struct xdr_stream *xdr,
2959 struct nfs4_layoutget_args *args)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002960{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002961 struct compound_hdr hdr = {
2962 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2963 };
2964
Chuck Lever9f06c712010-12-14 14:59:18 +00002965 encode_compound_hdr(xdr, req, &hdr);
2966 encode_sequence(xdr, &args->seq_args, &hdr);
2967 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2968 encode_layoutget(xdr, args, &hdr);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04002969
2970 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2971 args->layout.pages, 0, args->layout.pglen);
2972
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002973 encode_nops(&hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04002974}
Andy Adamson863a3c62011-03-23 13:27:54 +00002975
2976/*
2977 * Encode LAYOUTCOMMIT request
2978 */
Benny Halevycbe82602011-05-22 19:52:37 +03002979static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2980 struct xdr_stream *xdr,
2981 struct nfs4_layoutcommit_args *args)
Andy Adamson863a3c62011-03-23 13:27:54 +00002982{
Benny Halevyac7db722011-05-22 19:53:48 +03002983 struct nfs4_layoutcommit_data *data =
2984 container_of(args, struct nfs4_layoutcommit_data, args);
Andy Adamson863a3c62011-03-23 13:27:54 +00002985 struct compound_hdr hdr = {
2986 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2987 };
2988
2989 encode_compound_hdr(xdr, req, &hdr);
2990 encode_sequence(xdr, &args->seq_args, &hdr);
2991 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
Benny Halevyac7db722011-05-22 19:53:48 +03002992 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00002993 encode_getfattr(xdr, args->bitmask, &hdr);
2994 encode_nops(&hdr);
Benny Halevycbe82602011-05-22 19:52:37 +03002995}
2996
2997/*
2998 * Encode LAYOUTRETURN request
2999 */
3000static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
3001 struct xdr_stream *xdr,
3002 struct nfs4_layoutreturn_args *args)
3003{
3004 struct compound_hdr hdr = {
3005 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3006 };
3007
3008 encode_compound_hdr(xdr, req, &hdr);
3009 encode_sequence(xdr, &args->seq_args, &hdr);
3010 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
3011 encode_layoutreturn(xdr, args, &hdr);
3012 encode_nops(&hdr);
Andy Adamson863a3c62011-03-23 13:27:54 +00003013}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04003014
3015/*
3016 * Encode SECINFO_NO_NAME request
3017 */
3018static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
3019 struct xdr_stream *xdr,
3020 struct nfs41_secinfo_no_name_args *args)
3021{
3022 struct compound_hdr hdr = {
3023 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3024 };
3025
3026 encode_compound_hdr(xdr, req, &hdr);
3027 encode_sequence(xdr, &args->seq_args, &hdr);
3028 encode_putrootfh(xdr, &hdr);
3029 encode_secinfo_no_name(xdr, args, &hdr);
3030 encode_nops(&hdr);
3031 return 0;
3032}
Bryan Schumaker7d974792011-06-02 14:59:08 -04003033
3034/*
3035 * Encode TEST_STATEID request
3036 */
3037static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
3038 struct xdr_stream *xdr,
3039 struct nfs41_test_stateid_args *args)
3040{
3041 struct compound_hdr hdr = {
3042 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3043 };
3044
3045 encode_compound_hdr(xdr, req, &hdr);
3046 encode_sequence(xdr, &args->seq_args, &hdr);
3047 encode_test_stateid(xdr, args, &hdr);
3048 encode_nops(&hdr);
3049}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04003050
3051/*
3052 * Encode FREE_STATEID request
3053 */
3054static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
3055 struct xdr_stream *xdr,
3056 struct nfs41_free_stateid_args *args)
3057{
3058 struct compound_hdr hdr = {
3059 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3060 };
3061
3062 encode_compound_hdr(xdr, req, &hdr);
3063 encode_sequence(xdr, &args->seq_args, &hdr);
3064 encode_free_stateid(xdr, args, &hdr);
3065 encode_nops(&hdr);
3066}
Benny Halevy99fe60d2009-04-01 09:22:29 -04003067#endif /* CONFIG_NFS_V4_1 */
3068
Benny Halevy686841b2009-08-14 17:19:48 +03003069static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
3070{
3071 dprintk("nfs: %s: prematurely hit end of receive buffer. "
3072 "Remaining buffer length is %tu words.\n",
3073 func, xdr->end - xdr->p);
3074}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Trond Myklebust683b57b2006-06-09 09:34:22 -04003076static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
Al Viro8687b632006-10-19 23:28:48 -07003078 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Benny Halevyc0eae662009-08-14 17:20:14 +03003080 p = xdr_inline_decode(xdr, 4);
3081 if (unlikely(!p))
3082 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003083 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003084 p = xdr_inline_decode(xdr, *len);
3085 if (unlikely(!p))
3086 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 *string = (char *)p;
3088 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003089out_overflow:
3090 print_overflow_msg(__func__, xdr);
3091 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092}
3093
3094static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
3095{
Al Viro8687b632006-10-19 23:28:48 -07003096 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Benny Halevyc0eae662009-08-14 17:20:14 +03003098 p = xdr_inline_decode(xdr, 8);
3099 if (unlikely(!p))
3100 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003101 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003102 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05003103
Benny Halevyc0eae662009-08-14 17:20:14 +03003104 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3105 if (unlikely(!p))
3106 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 hdr->tag = (char *)p;
3108 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03003109 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05003110 if (unlikely(hdr->nops < 1))
3111 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003113out_overflow:
3114 print_overflow_msg(__func__, xdr);
3115 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116}
3117
3118static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3119{
Al Viro8687b632006-10-19 23:28:48 -07003120 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 uint32_t opnum;
3122 int32_t nfserr;
3123
Benny Halevyc0eae662009-08-14 17:20:14 +03003124 p = xdr_inline_decode(xdr, 8);
3125 if (unlikely(!p))
3126 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003127 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003129 dprintk("nfs: Server returned operation"
3130 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 opnum, expected);
3132 return -EIO;
3133 }
Benny Halevycccddf42009-08-14 17:20:19 +03003134 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03003136 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003138out_overflow:
3139 print_overflow_msg(__func__, xdr);
3140 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141}
3142
3143/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04003144static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Al Viro8687b632006-10-19 23:28:48 -07003146 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003147 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 char *str;
3149
Benny Halevyc0eae662009-08-14 17:20:14 +03003150 p = xdr_inline_decode(xdr, 12);
3151 if (likely(p))
3152 return decode_opaque_inline(xdr, &strlen, &str);
3153 print_overflow_msg(__func__, xdr);
3154 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155}
3156
3157static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3158{
Al Viro8687b632006-10-19 23:28:48 -07003159 uint32_t bmlen;
3160 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Benny Halevyc0eae662009-08-14 17:20:14 +03003162 p = xdr_inline_decode(xdr, 4);
3163 if (unlikely(!p))
3164 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003165 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Fred Isamandae100c2011-07-30 20:52:37 -04003167 bitmap[0] = bitmap[1] = bitmap[2] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003168 p = xdr_inline_decode(xdr, (bmlen << 2));
3169 if (unlikely(!p))
3170 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03003172 bitmap[0] = be32_to_cpup(p++);
Fred Isamandae100c2011-07-30 20:52:37 -04003173 if (bmlen > 1) {
3174 bitmap[1] = be32_to_cpup(p++);
3175 if (bmlen > 2)
3176 bitmap[2] = be32_to_cpup(p);
3177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 }
3179 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003180out_overflow:
3181 print_overflow_msg(__func__, xdr);
3182 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
3184
Al Viro8687b632006-10-19 23:28:48 -07003185static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
Al Viro8687b632006-10-19 23:28:48 -07003187 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Benny Halevyc0eae662009-08-14 17:20:14 +03003189 p = xdr_inline_decode(xdr, 4);
3190 if (unlikely(!p))
3191 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003192 *attrlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 *savep = xdr->p;
3194 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003195out_overflow:
3196 print_overflow_msg(__func__, xdr);
3197 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198}
3199
3200static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3201{
3202 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
Roman Borisov3388bff2010-10-13 16:54:51 +04003203 int ret;
3204 ret = decode_attr_bitmap(xdr, bitmask);
3205 if (unlikely(ret < 0))
3206 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3208 } else
Fred Isamandae100c2011-07-30 20:52:37 -04003209 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3210 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3211 bitmask[0], bitmask[1], bitmask[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 return 0;
3213}
3214
3215static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3216{
Al Viro8687b632006-10-19 23:28:48 -07003217 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003218 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 *type = 0;
3221 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3222 return -EIO;
3223 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003224 p = xdr_inline_decode(xdr, 4);
3225 if (unlikely(!p))
3226 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003227 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07003229 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 return -EIO;
3231 }
3232 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003233 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 }
Trond Myklebustbca79472009-03-11 14:10:26 -04003235 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04003236 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003237out_overflow:
3238 print_overflow_msg(__func__, xdr);
3239 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240}
3241
Chuck Lever264e6352012-03-01 17:02:05 -05003242static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3243 uint32_t *bitmap, uint32_t *type)
3244{
3245 __be32 *p;
3246
3247 *type = 0;
3248 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3249 return -EIO;
3250 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3251 p = xdr_inline_decode(xdr, 4);
3252 if (unlikely(!p))
3253 goto out_overflow;
3254 *type = be32_to_cpup(p);
3255 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3256 }
3257 dprintk("%s: expire type=0x%x\n", __func__, *type);
3258 return 0;
3259out_overflow:
3260 print_overflow_msg(__func__, xdr);
3261 return -EIO;
3262}
3263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3265{
Al Viro8687b632006-10-19 23:28:48 -07003266 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003267 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 *change = 0;
3270 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3271 return -EIO;
3272 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003273 p = xdr_inline_decode(xdr, 8);
3274 if (unlikely(!p))
3275 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003276 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003278 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003280 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04003282 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003283out_overflow:
3284 print_overflow_msg(__func__, xdr);
3285 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286}
3287
3288static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3289{
Al Viro8687b632006-10-19 23:28:48 -07003290 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003291 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
3293 *size = 0;
3294 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3295 return -EIO;
3296 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003297 p = xdr_inline_decode(xdr, 8);
3298 if (unlikely(!p))
3299 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003300 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003302 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003304 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04003305 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003306out_overflow:
3307 print_overflow_msg(__func__, xdr);
3308 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310
3311static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3312{
Al Viro8687b632006-10-19 23:28:48 -07003313 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315 *res = 0;
3316 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3317 return -EIO;
3318 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003319 p = xdr_inline_decode(xdr, 4);
3320 if (unlikely(!p))
3321 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003322 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3324 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003325 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003327out_overflow:
3328 print_overflow_msg(__func__, xdr);
3329 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330}
3331
3332static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3333{
Al Viro8687b632006-10-19 23:28:48 -07003334 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
3336 *res = 0;
3337 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3338 return -EIO;
3339 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003340 p = xdr_inline_decode(xdr, 4);
3341 if (unlikely(!p))
3342 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003343 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3345 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003346 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003348out_overflow:
3349 print_overflow_msg(__func__, xdr);
3350 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351}
3352
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04003353static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
Al Viro8687b632006-10-19 23:28:48 -07003355 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003356 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358 fsid->major = 0;
3359 fsid->minor = 0;
3360 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3361 return -EIO;
3362 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003363 p = xdr_inline_decode(xdr, 16);
3364 if (unlikely(!p))
3365 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003366 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03003367 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003369 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003371 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 (unsigned long long)fsid->major,
3373 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003374 return ret;
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_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3381{
Al Viro8687b632006-10-19 23:28:48 -07003382 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
3384 *res = 60;
3385 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3386 return -EIO;
3387 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003388 p = xdr_inline_decode(xdr, 4);
3389 if (unlikely(!p))
3390 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003391 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3393 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003394 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003396out_overflow:
3397 print_overflow_msg(__func__, xdr);
3398 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399}
3400
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003401static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
Bryan Schumakerae42c702010-10-21 16:33:17 -04003402{
3403 __be32 *p;
3404
3405 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3406 return -EIO;
3407 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3408 p = xdr_inline_decode(xdr, 4);
3409 if (unlikely(!p))
3410 goto out_overflow;
3411 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04003412 *res = -be32_to_cpup(p);
Bryan Schumakerae42c702010-10-21 16:33:17 -04003413 }
3414 return 0;
3415out_overflow:
3416 print_overflow_msg(__func__, xdr);
3417 return -EIO;
3418}
3419
3420static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3421{
3422 __be32 *p;
3423 int len;
3424
Trond Myklebust7ad07352010-10-23 15:34:20 -04003425 if (fh != NULL)
3426 memset(fh, 0, sizeof(*fh));
Bryan Schumakerae42c702010-10-21 16:33:17 -04003427
3428 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3429 return -EIO;
3430 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3431 p = xdr_inline_decode(xdr, 4);
3432 if (unlikely(!p))
3433 goto out_overflow;
3434 len = be32_to_cpup(p);
3435 if (len > NFS4_FHSIZE)
3436 return -EIO;
Bryan Schumakerae42c702010-10-21 16:33:17 -04003437 p = xdr_inline_decode(xdr, len);
3438 if (unlikely(!p))
3439 goto out_overflow;
Trond Myklebust7ad07352010-10-23 15:34:20 -04003440 if (fh != NULL) {
3441 memcpy(fh->data, p, len);
3442 fh->size = len;
3443 }
Bryan Schumakerae42c702010-10-21 16:33:17 -04003444 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3445 }
3446 return 0;
3447out_overflow:
3448 print_overflow_msg(__func__, xdr);
3449 return -EIO;
3450}
3451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3453{
Al Viro8687b632006-10-19 23:28:48 -07003454 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
3457 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3458 return -EIO;
3459 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003460 p = xdr_inline_decode(xdr, 4);
3461 if (unlikely(!p))
3462 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003463 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3465 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003466 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003468out_overflow:
3469 print_overflow_msg(__func__, xdr);
3470 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471}
3472
3473static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3474{
Al Viro8687b632006-10-19 23:28:48 -07003475 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003476 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478 *fileid = 0;
3479 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3480 return -EIO;
3481 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003482 p = xdr_inline_decode(xdr, 8);
3483 if (unlikely(!p))
3484 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003485 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04003487 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003489 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003490 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003491out_overflow:
3492 print_overflow_msg(__func__, xdr);
3493 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494}
3495
Manoj Naik99baf622006-06-09 09:34:24 -04003496static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3497{
Al Viro8687b632006-10-19 23:28:48 -07003498 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003499 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003500
3501 *fileid = 0;
3502 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3503 return -EIO;
3504 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003505 p = xdr_inline_decode(xdr, 8);
3506 if (unlikely(!p))
3507 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003508 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04003509 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust28331a42011-04-27 13:47:52 -04003510 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04003511 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003512 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003513 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003514out_overflow:
3515 print_overflow_msg(__func__, xdr);
3516 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04003517}
3518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3520{
Al Viro8687b632006-10-19 23:28:48 -07003521 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 int status = 0;
3523
3524 *res = 0;
3525 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3526 return -EIO;
3527 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003528 p = xdr_inline_decode(xdr, 8);
3529 if (unlikely(!p))
3530 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003531 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3533 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003534 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003536out_overflow:
3537 print_overflow_msg(__func__, xdr);
3538 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539}
3540
3541static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3542{
Al Viro8687b632006-10-19 23:28:48 -07003543 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 int status = 0;
3545
3546 *res = 0;
3547 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3548 return -EIO;
3549 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003550 p = xdr_inline_decode(xdr, 8);
3551 if (unlikely(!p))
3552 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003553 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3555 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003556 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003558out_overflow:
3559 print_overflow_msg(__func__, xdr);
3560 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561}
3562
3563static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3564{
Al Viro8687b632006-10-19 23:28:48 -07003565 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 int status = 0;
3567
3568 *res = 0;
3569 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3570 return -EIO;
3571 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003572 p = xdr_inline_decode(xdr, 8);
3573 if (unlikely(!p))
3574 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003575 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3577 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003578 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003580out_overflow:
3581 print_overflow_msg(__func__, xdr);
3582 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583}
3584
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003585static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3586{
Chuck Lever464ad6b2007-10-26 13:32:08 -04003587 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07003588 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003589 int status = 0;
3590
Benny Halevyc0eae662009-08-14 17:20:14 +03003591 p = xdr_inline_decode(xdr, 4);
3592 if (unlikely(!p))
3593 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003594 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04003595 if (n == 0)
3596 goto root_path;
Chuck Lever02a29762012-03-01 17:00:31 -05003597 dprintk("pathname4: ");
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003598 path->ncomponents = 0;
3599 while (path->ncomponents < n) {
3600 struct nfs4_string *component = &path->components[path->ncomponents];
3601 status = decode_opaque_inline(xdr, &component->len, &component->data);
3602 if (unlikely(status != 0))
3603 goto out_eio;
Chuck Lever02a29762012-03-01 17:00:31 -05003604 if (unlikely(nfs_debug & NFSDBG_XDR))
3605 pr_cont("%s%.*s ",
3606 (path->ncomponents != n ? "/ " : ""),
3607 component->len, component->data);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003608 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
3609 path->ncomponents++;
3610 else {
3611 dprintk("cannot parse %d components in path\n", n);
3612 goto out_eio;
3613 }
3614 }
3615out:
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003616 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04003617root_path:
3618/* a root pathname is sent as a zero component4 */
3619 path->ncomponents = 1;
3620 path->components[0].len=0;
3621 path->components[0].data=NULL;
Chuck Lever02a29762012-03-01 17:00:31 -05003622 dprintk("pathname4: /\n");
Andy Adamson33a43f22006-06-09 09:34:30 -04003623 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003624out_eio:
3625 dprintk(" status %d", status);
3626 status = -EIO;
3627 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003628out_overflow:
3629 print_overflow_msg(__func__, xdr);
3630 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003631}
3632
3633static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003634{
3635 int n;
Al Viro8687b632006-10-19 23:28:48 -07003636 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003637 int status = -EIO;
3638
3639 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3640 goto out;
3641 status = 0;
3642 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3643 goto out;
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05003644 status = -EIO;
3645 /* Ignore borken servers that return unrequested attrs */
3646 if (unlikely(res == NULL))
3647 goto out;
Chuck Lever02a29762012-03-01 17:00:31 -05003648 dprintk("%s: fsroot:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003649 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003650 if (unlikely(status != 0))
3651 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003652 p = xdr_inline_decode(xdr, 4);
3653 if (unlikely(!p))
3654 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003655 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003656 if (n <= 0)
3657 goto out_eio;
3658 res->nlocations = 0;
3659 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003660 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003661 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003662
Benny Halevyc0eae662009-08-14 17:20:14 +03003663 p = xdr_inline_decode(xdr, 4);
3664 if (unlikely(!p))
3665 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003666 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003667
3668 loc->nservers = 0;
Chuck Lever02a29762012-03-01 17:00:31 -05003669 dprintk("%s: servers:\n", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003670 while (loc->nservers < m) {
3671 struct nfs4_string *server = &loc->servers[loc->nservers];
3672 status = decode_opaque_inline(xdr, &server->len, &server->data);
3673 if (unlikely(status != 0))
3674 goto out_eio;
3675 dprintk("%s ", server->data);
3676 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3677 loc->nservers++;
3678 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003679 unsigned int i;
3680 dprintk("%s: using first %u of %u servers "
3681 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003682 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003683 NFS4_FS_LOCATION_MAXSERVERS,
3684 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003685 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003686 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003687 char *data;
3688 status = decode_opaque_inline(xdr, &len, &data);
3689 if (unlikely(status != 0))
3690 goto out_eio;
3691 }
3692 }
3693 }
3694 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003695 if (unlikely(status != 0))
3696 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003697 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003698 res->nlocations++;
3699 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003700 if (res->nlocations != 0)
Chuck Lever81934dd2012-03-01 17:01:57 -05003701 status = NFS_ATTR_FATTR_V4_LOCATIONS;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003702out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003703 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003704 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003705out_overflow:
3706 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003707out_eio:
3708 status = -EIO;
3709 goto out;
3710}
3711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3713{
Al Viro8687b632006-10-19 23:28:48 -07003714 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 int status = 0;
3716
3717 *res = 0;
3718 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3719 return -EIO;
3720 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003721 p = xdr_inline_decode(xdr, 8);
3722 if (unlikely(!p))
3723 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003724 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3726 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003727 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003729out_overflow:
3730 print_overflow_msg(__func__, xdr);
3731 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732}
3733
3734static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3735{
Al Viro8687b632006-10-19 23:28:48 -07003736 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 int status = 0;
3738
3739 *maxlink = 1;
3740 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3741 return -EIO;
3742 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003743 p = xdr_inline_decode(xdr, 4);
3744 if (unlikely(!p))
3745 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003746 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3748 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003749 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003751out_overflow:
3752 print_overflow_msg(__func__, xdr);
3753 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754}
3755
3756static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3757{
Al Viro8687b632006-10-19 23:28:48 -07003758 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 int status = 0;
3760
3761 *maxname = 1024;
3762 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3763 return -EIO;
3764 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003765 p = xdr_inline_decode(xdr, 4);
3766 if (unlikely(!p))
3767 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003768 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3770 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003771 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003773out_overflow:
3774 print_overflow_msg(__func__, xdr);
3775 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776}
3777
3778static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3779{
Al Viro8687b632006-10-19 23:28:48 -07003780 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 int status = 0;
3782
3783 *res = 1024;
3784 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3785 return -EIO;
3786 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3787 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003788 p = xdr_inline_decode(xdr, 8);
3789 if (unlikely(!p))
3790 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003791 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 if (maxread > 0x7FFFFFFF)
3793 maxread = 0x7FFFFFFF;
3794 *res = (uint32_t)maxread;
3795 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3796 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003797 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003799out_overflow:
3800 print_overflow_msg(__func__, xdr);
3801 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802}
3803
3804static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3805{
Al Viro8687b632006-10-19 23:28:48 -07003806 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 int status = 0;
3808
3809 *res = 1024;
3810 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3811 return -EIO;
3812 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3813 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003814 p = xdr_inline_decode(xdr, 8);
3815 if (unlikely(!p))
3816 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003817 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 if (maxwrite > 0x7FFFFFFF)
3819 maxwrite = 0x7FFFFFFF;
3820 *res = (uint32_t)maxwrite;
3821 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3822 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003823 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003825out_overflow:
3826 print_overflow_msg(__func__, xdr);
3827 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828}
3829
Trond Myklebustbca79472009-03-11 14:10:26 -04003830static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831{
Trond Myklebustbca79472009-03-11 14:10:26 -04003832 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003833 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003834 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836 *mode = 0;
3837 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3838 return -EIO;
3839 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003840 p = xdr_inline_decode(xdr, 4);
3841 if (unlikely(!p))
3842 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003843 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003844 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003846 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003848 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003849 return ret;
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_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3856{
Al Viro8687b632006-10-19 23:28:48 -07003857 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003858 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
3860 *nlink = 1;
3861 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3862 return -EIO;
3863 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003864 p = xdr_inline_decode(xdr, 4);
3865 if (unlikely(!p))
3866 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003867 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003869 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003871 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003872 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003873out_overflow:
3874 print_overflow_msg(__func__, xdr);
3875 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}
3877
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003878static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003879 const struct nfs_server *server, uint32_t *uid,
3880 struct nfs4_string *owner_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Al Viro8687b632006-10-19 23:28:48 -07003882 uint32_t len;
3883 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003884 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
3886 *uid = -2;
3887 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3888 return -EIO;
3889 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003890 p = xdr_inline_decode(xdr, 4);
3891 if (unlikely(!p))
3892 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003893 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003894 p = xdr_inline_decode(xdr, len);
3895 if (unlikely(!p))
3896 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003897 if (owner_name != NULL) {
3898 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3899 if (owner_name->data != NULL) {
3900 owner_name->len = len;
3901 ret = NFS_ATTR_FATTR_OWNER_NAME;
3902 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003903 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003904 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003905 ret = NFS_ATTR_FATTR_OWNER;
3906 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003908 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003910 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003911 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3913 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003914 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003915 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003916out_overflow:
3917 print_overflow_msg(__func__, xdr);
3918 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919}
3920
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003921static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
Trond Myklebust6926afd2012-01-07 13:22:46 -05003922 const struct nfs_server *server, uint32_t *gid,
3923 struct nfs4_string *group_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
Al Viro8687b632006-10-19 23:28:48 -07003925 uint32_t len;
3926 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003927 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
3929 *gid = -2;
3930 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3931 return -EIO;
3932 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003933 p = xdr_inline_decode(xdr, 4);
3934 if (unlikely(!p))
3935 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003936 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003937 p = xdr_inline_decode(xdr, len);
3938 if (unlikely(!p))
3939 goto out_overflow;
Trond Myklebust6926afd2012-01-07 13:22:46 -05003940 if (group_name != NULL) {
3941 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3942 if (group_name->data != NULL) {
3943 group_name->len = len;
3944 ret = NFS_ATTR_FATTR_GROUP_NAME;
3945 }
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003946 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebuste4fd72a2011-02-22 15:44:31 -08003947 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
Trond Myklebust409924e2009-03-11 14:10:27 -04003948 ret = NFS_ATTR_FATTR_GROUP;
3949 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003951 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003953 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003954 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3956 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003957 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003958 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003959out_overflow:
3960 print_overflow_msg(__func__, xdr);
3961 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962}
3963
3964static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3965{
Al Viro8687b632006-10-19 23:28:48 -07003966 uint32_t major = 0, minor = 0;
3967 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003968 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
3970 *rdev = MKDEV(0,0);
3971 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3972 return -EIO;
3973 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3974 dev_t tmp;
3975
Benny Halevyc0eae662009-08-14 17:20:14 +03003976 p = xdr_inline_decode(xdr, 8);
3977 if (unlikely(!p))
3978 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003979 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003980 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 tmp = MKDEV(major, minor);
3982 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3983 *rdev = tmp;
3984 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003985 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003987 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003988 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003989out_overflow:
3990 print_overflow_msg(__func__, xdr);
3991 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992}
3993
3994static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3995{
Al Viro8687b632006-10-19 23:28:48 -07003996 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 int status = 0;
3998
3999 *res = 0;
4000 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
4001 return -EIO;
4002 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004003 p = xdr_inline_decode(xdr, 8);
4004 if (unlikely(!p))
4005 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004006 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
4008 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004009 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004011out_overflow:
4012 print_overflow_msg(__func__, xdr);
4013 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014}
4015
4016static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4017{
Al Viro8687b632006-10-19 23:28:48 -07004018 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 int status = 0;
4020
4021 *res = 0;
4022 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
4023 return -EIO;
4024 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004025 p = xdr_inline_decode(xdr, 8);
4026 if (unlikely(!p))
4027 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004028 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
4030 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004031 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004033out_overflow:
4034 print_overflow_msg(__func__, xdr);
4035 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036}
4037
4038static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4039{
Al Viro8687b632006-10-19 23:28:48 -07004040 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 int status = 0;
4042
4043 *res = 0;
4044 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
4045 return -EIO;
4046 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004047 p = xdr_inline_decode(xdr, 8);
4048 if (unlikely(!p))
4049 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004050 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
4052 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004053 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004055out_overflow:
4056 print_overflow_msg(__func__, xdr);
4057 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
4060static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
4061{
Al Viro8687b632006-10-19 23:28:48 -07004062 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04004063 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
4065 *used = 0;
4066 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
4067 return -EIO;
4068 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004069 p = xdr_inline_decode(xdr, 8);
4070 if (unlikely(!p))
4071 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004072 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04004074 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004076 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04004078 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03004079out_overflow:
4080 print_overflow_msg(__func__, xdr);
4081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082}
4083
4084static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
4085{
Al Viro8687b632006-10-19 23:28:48 -07004086 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 uint64_t sec;
4088 uint32_t nsec;
4089
Benny Halevyc0eae662009-08-14 17:20:14 +03004090 p = xdr_inline_decode(xdr, 12);
4091 if (unlikely(!p))
4092 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004093 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03004094 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 time->tv_sec = (time_t)sec;
4096 time->tv_nsec = (long)nsec;
4097 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004098out_overflow:
4099 print_overflow_msg(__func__, xdr);
4100 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101}
4102
4103static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4104{
4105 int status = 0;
4106
4107 time->tv_sec = 0;
4108 time->tv_nsec = 0;
4109 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4110 return -EIO;
4111 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4112 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004113 if (status == 0)
4114 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4116 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004117 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 return status;
4119}
4120
4121static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4122{
4123 int status = 0;
4124
4125 time->tv_sec = 0;
4126 time->tv_nsec = 0;
4127 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4128 return -EIO;
4129 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4130 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004131 if (status == 0)
4132 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4134 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004135 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 return status;
4137}
4138
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004139static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4140 struct timespec *time)
4141{
4142 int status = 0;
4143
4144 time->tv_sec = 0;
4145 time->tv_nsec = 0;
4146 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4147 return -EIO;
4148 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4149 status = decode_attr_time(xdr, time);
4150 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4151 }
4152 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4153 (long)time->tv_nsec);
4154 return status;
4155}
4156
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4158{
4159 int status = 0;
4160
4161 time->tv_sec = 0;
4162 time->tv_nsec = 0;
4163 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4164 return -EIO;
4165 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4166 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04004167 if (status == 0)
4168 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4170 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07004171 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 return status;
4173}
4174
Al Viro8687b632006-10-19 23:28:48 -07004175static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176{
4177 unsigned int attrwords = XDR_QUADLEN(attrlen);
4178 unsigned int nwords = xdr->p - savep;
4179
4180 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004181 dprintk("%s: server returned incorrect attribute length: "
4182 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07004183 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 attrwords << 2,
4185 (attrwords < nwords) ? '<' : '>',
4186 nwords << 2);
4187 return -EIO;
4188 }
4189 return 0;
4190}
4191
4192static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4193{
Al Viro8687b632006-10-19 23:28:48 -07004194 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Benny Halevyc0eae662009-08-14 17:20:14 +03004196 p = xdr_inline_decode(xdr, 20);
4197 if (unlikely(!p))
4198 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004199 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004200 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03004201 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004203out_overflow:
4204 print_overflow_msg(__func__, xdr);
4205 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206}
4207
4208static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
4209{
Al Viro8687b632006-10-19 23:28:48 -07004210 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 uint32_t supp, acc;
4212 int status;
4213
4214 status = decode_op_hdr(xdr, OP_ACCESS);
4215 if (status)
4216 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004217 p = xdr_inline_decode(xdr, 8);
4218 if (unlikely(!p))
4219 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004220 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004221 acc = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 access->supported = supp;
4223 access->access = acc;
4224 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004225out_overflow:
4226 print_overflow_msg(__func__, xdr);
4227 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Benny Halevy07d30432009-08-14 17:19:52 +03004230static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231{
Al Viro8687b632006-10-19 23:28:48 -07004232 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03004233
4234 p = xdr_inline_decode(xdr, len);
4235 if (likely(p)) {
4236 memcpy(buf, p, len);
4237 return 0;
4238 }
4239 print_overflow_msg(__func__, xdr);
4240 return -EIO;
4241}
4242
4243static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4244{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05004245 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246}
4247
4248static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4249{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 int status;
4251
4252 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004253 if (status != -EIO)
4254 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004255 if (!status)
4256 status = decode_stateid(xdr, &res->stateid);
4257 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258}
4259
Benny Halevydb942bb2009-08-14 17:19:56 +03004260static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4261{
4262 return decode_opaque_fixed(xdr, verifier, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263}
4264
4265static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
4266{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 int status;
4268
4269 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03004270 if (!status)
4271 status = decode_verifier(xdr, res->verf->verifier);
4272 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273}
4274
4275static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4276{
Al Viro8687b632006-10-19 23:28:48 -07004277 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 uint32_t bmlen;
4279 int status;
4280
4281 status = decode_op_hdr(xdr, OP_CREATE);
4282 if (status)
4283 return status;
4284 if ((status = decode_change_info(xdr, cinfo)))
4285 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004286 p = xdr_inline_decode(xdr, 4);
4287 if (unlikely(!p))
4288 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004289 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004290 p = xdr_inline_decode(xdr, bmlen << 2);
4291 if (likely(p))
4292 return 0;
4293out_overflow:
4294 print_overflow_msg(__func__, xdr);
4295 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296}
4297
4298static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4299{
Al Viro8687b632006-10-19 23:28:48 -07004300 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004301 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 int status;
4303
4304 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4305 goto xdr_error;
4306 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4307 goto xdr_error;
4308 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4309 goto xdr_error;
4310 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4311 goto xdr_error;
Chuck Lever264e6352012-03-01 17:02:05 -05004312 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4313 &res->fh_expire_type)) != 0)
4314 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4316 goto xdr_error;
4317 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4318 goto xdr_error;
4319 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4320 goto xdr_error;
4321 status = verify_attr_len(xdr, savep, attrlen);
4322xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004323 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return status;
4325}
Andy Adamson6c0195a2008-12-23 16:06:15 -05004326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4328{
Al Viro8687b632006-10-19 23:28:48 -07004329 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004330 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004332
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4334 goto xdr_error;
4335 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4336 goto xdr_error;
4337 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4338 goto xdr_error;
4339
4340 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4341 goto xdr_error;
4342 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4343 goto xdr_error;
4344 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4345 goto xdr_error;
4346 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4347 goto xdr_error;
4348 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4349 goto xdr_error;
4350 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4351 goto xdr_error;
4352
4353 status = verify_attr_len(xdr, savep, attrlen);
4354xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004355 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 return status;
4357}
4358
4359static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4360{
Al Viro8687b632006-10-19 23:28:48 -07004361 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004362 uint32_t attrlen, bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4366 goto xdr_error;
4367 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4368 goto xdr_error;
4369 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4370 goto xdr_error;
4371
4372 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4373 goto xdr_error;
4374 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4375 goto xdr_error;
4376
4377 status = verify_attr_len(xdr, savep, attrlen);
4378xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004379 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 return status;
4381}
4382
Bryan Schumakerae42c702010-10-21 16:33:17 -04004383static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4384 struct nfs_fattr *fattr, struct nfs_fh *fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004385 struct nfs4_fs_locations *fs_loc,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004386 const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387{
Trond Myklebustbca79472009-03-11 14:10:26 -04004388 int status;
4389 umode_t fmode = 0;
Bryan Schumakerae42c702010-10-21 16:33:17 -04004390 uint32_t type;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004391 int32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004393 status = decode_attr_type(xdr, bitmap, &type);
4394 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004396 fattr->mode = 0;
4397 if (status != 0) {
4398 fattr->mode |= nfs_type2fmt[type];
4399 fattr->valid |= status;
4400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004402 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4403 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004405 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004406
4407 status = decode_attr_size(xdr, bitmap, &fattr->size);
4408 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004410 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004411
4412 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4413 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004415 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004416
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004417 err = 0;
4418 status = decode_attr_error(xdr, bitmap, &err);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004419 if (status < 0)
4420 goto xdr_error;
Trond Myklebustee7b75f2011-06-16 13:15:41 -04004421 if (err == -NFS4ERR_WRONGSEC)
4422 nfs_fixup_secinfo_attributes(fattr, fh);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004423
4424 status = decode_attr_filehandle(xdr, bitmap, fh);
4425 if (status < 0)
4426 goto xdr_error;
4427
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004428 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4429 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004431 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004432
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004433 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004434 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004435 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004436 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004437
4438 status = decode_attr_mode(xdr, bitmap, &fmode);
4439 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004441 if (status != 0) {
4442 fattr->mode |= fmode;
4443 fattr->valid |= status;
4444 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004445
4446 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4447 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004449 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004450
Trond Myklebust6926afd2012-01-07 13:22:46 -05004451 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004452 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004454 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004455
Trond Myklebust6926afd2012-01-07 13:22:46 -05004456 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004457 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004459 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004460
4461 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4462 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004464 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004465
4466 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4467 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004469 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004470
4471 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4472 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004474 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004475
4476 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4477 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004479 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004480
4481 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4482 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04004484 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004485
Trond Myklebust28331a42011-04-27 13:47:52 -04004486 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004487 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04004488 goto xdr_error;
Trond Myklebust28331a42011-04-27 13:47:52 -04004489 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004490
Bryan Schumakerae42c702010-10-21 16:33:17 -04004491xdr_error:
4492 dprintk("%s: xdr returned %d\n", __func__, -status);
4493 return status;
4494}
4495
4496static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004497 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4498 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004499{
4500 __be32 *savep;
4501 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04004502 bitmap[3] = {0};
Bryan Schumakerae42c702010-10-21 16:33:17 -04004503 int status;
4504
4505 status = decode_op_hdr(xdr, OP_GETATTR);
4506 if (status < 0)
4507 goto xdr_error;
4508
4509 status = decode_attr_bitmap(xdr, bitmap);
4510 if (status < 0)
4511 goto xdr_error;
4512
4513 status = decode_attr_length(xdr, &attrlen, &savep);
4514 if (status < 0)
4515 goto xdr_error;
4516
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004517 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004518 if (status < 0)
4519 goto xdr_error;
4520
Trond Myklebustf26c7a72009-03-11 14:10:26 -04004521 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004523 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 return status;
4525}
4526
Bryan Schumakerae42c702010-10-21 16:33:17 -04004527static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
Trond Myklebust6926afd2012-01-07 13:22:46 -05004528 const struct nfs_server *server)
Bryan Schumakerae42c702010-10-21 16:33:17 -04004529{
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05004530 return decode_getfattr_generic(xdr, fattr, NULL, NULL, server);
Bryan Schumakerae42c702010-10-21 16:33:17 -04004531}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Andy Adamson504913f2010-10-20 00:17:57 -04004533/*
4534 * Decode potentially multiple layout types. Currently we only support
4535 * one layout driver per file system.
4536 */
4537static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4538 uint32_t *layouttype)
4539{
4540 uint32_t *p;
4541 int num;
4542
4543 p = xdr_inline_decode(xdr, 4);
4544 if (unlikely(!p))
4545 goto out_overflow;
4546 num = be32_to_cpup(p);
4547
4548 /* pNFS is not supported by the underlying file system */
4549 if (num == 0) {
4550 *layouttype = 0;
4551 return 0;
4552 }
4553 if (num > 1)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004554 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4555 "drivers per filesystem not supported\n", __func__);
Andy Adamson504913f2010-10-20 00:17:57 -04004556
4557 /* Decode and set first layout type, move xdr->p past unused types */
4558 p = xdr_inline_decode(xdr, num * 4);
4559 if (unlikely(!p))
4560 goto out_overflow;
4561 *layouttype = be32_to_cpup(p);
4562 return 0;
4563out_overflow:
4564 print_overflow_msg(__func__, xdr);
4565 return -EIO;
4566}
4567
4568/*
4569 * The type of file system exported.
4570 * Note we must ensure that layouttype is set in any non-error case.
4571 */
4572static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4573 uint32_t *layouttype)
4574{
4575 int status = 0;
4576
4577 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4578 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4579 return -EIO;
4580 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4581 status = decode_first_pnfs_layout_type(xdr, layouttype);
4582 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4583 } else
4584 *layouttype = 0;
4585 return status;
4586}
4587
Fred Isamandae100c2011-07-30 20:52:37 -04004588/*
4589 * The prefered block size for layout directed io
4590 */
4591static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4592 uint32_t *res)
4593{
4594 __be32 *p;
4595
4596 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4597 *res = 0;
4598 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4599 p = xdr_inline_decode(xdr, 4);
4600 if (unlikely(!p)) {
4601 print_overflow_msg(__func__, xdr);
4602 return -EIO;
4603 }
4604 *res = be32_to_cpup(p);
4605 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4606 }
4607 return 0;
4608}
4609
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4611{
Al Viro8687b632006-10-19 23:28:48 -07004612 __be32 *savep;
Fred Isamandae100c2011-07-30 20:52:37 -04004613 uint32_t attrlen, bitmap[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 int status;
4615
4616 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4617 goto xdr_error;
4618 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4619 goto xdr_error;
4620 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4621 goto xdr_error;
4622
4623 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4624
4625 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4626 goto xdr_error;
4627 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4628 goto xdr_error;
4629 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4630 goto xdr_error;
4631 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4632 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4633 goto xdr_error;
4634 fsinfo->wtpref = fsinfo->wtmax;
Ricardo Labiaga55b6e772010-10-12 16:30:06 -07004635 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4636 if (status != 0)
4637 goto xdr_error;
Andy Adamson504913f2010-10-20 00:17:57 -04004638 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4639 if (status != 0)
4640 goto xdr_error;
Fred Isamandae100c2011-07-30 20:52:37 -04004641 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4642 if (status)
4643 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
4645 status = verify_attr_len(xdr, savep, attrlen);
4646xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004647 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 return status;
4649}
4650
4651static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4652{
Al Viro8687b632006-10-19 23:28:48 -07004653 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 uint32_t len;
4655 int status;
4656
Trond Myklebust99367812007-07-17 21:52:41 -04004657 /* Zero handle first to allow comparisons */
4658 memset(fh, 0, sizeof(*fh));
4659
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 status = decode_op_hdr(xdr, OP_GETFH);
4661 if (status)
4662 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Benny Halevyc0eae662009-08-14 17:20:14 +03004664 p = xdr_inline_decode(xdr, 4);
4665 if (unlikely(!p))
4666 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004667 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 if (len > NFS4_FHSIZE)
4669 return -EIO;
4670 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03004671 p = xdr_inline_decode(xdr, len);
4672 if (unlikely(!p))
4673 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03004674 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004676out_overflow:
4677 print_overflow_msg(__func__, xdr);
4678 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679}
4680
4681static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4682{
4683 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 status = decode_op_hdr(xdr, OP_LINK);
4686 if (status)
4687 return status;
4688 return decode_change_info(xdr, cinfo);
4689}
4690
4691/*
4692 * We create the owner, so we know a proper owner.id length is 4.
4693 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004694static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004696 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07004697 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004698 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004700 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
Benny Halevyc0eae662009-08-14 17:20:14 +03004701 if (unlikely(!p))
4702 goto out_overflow;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004703 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004704 p = xdr_decode_hyper(p, &length);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004705 type = be32_to_cpup(p++); /* 4 byte read */
4706 if (fl != NULL) { /* manipulate file lock */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004707 fl->fl_start = (loff_t)offset;
4708 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4709 if (length == ~(uint64_t)0)
4710 fl->fl_end = OFFSET_MAX;
4711 fl->fl_type = F_WRLCK;
4712 if (type & 1)
4713 fl->fl_type = F_RDLCK;
4714 fl->fl_pid = 0;
4715 }
Bryan Schumakerbabddc72010-10-20 15:44:29 -04004716 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4717 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4718 p = xdr_inline_decode(xdr, namelen); /* variable size field */
Benny Halevyc0eae662009-08-14 17:20:14 +03004719 if (likely(p))
4720 return -NFS4ERR_DENIED;
4721out_overflow:
4722 print_overflow_msg(__func__, xdr);
4723 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724}
4725
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004726static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 int status;
4729
4730 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004731 if (status == -EIO)
4732 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03004734 status = decode_stateid(xdr, &res->stateid);
4735 if (unlikely(status))
4736 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04004738 status = decode_lock_denied(xdr, NULL);
4739 if (res->open_seqid != NULL)
4740 nfs_increment_open_seqid(status, res->open_seqid);
4741 nfs_increment_lock_seqid(status, res->lock_seqid);
4742out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 return status;
4744}
4745
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004746static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747{
4748 int status;
4749 status = decode_op_hdr(xdr, OP_LOCKT);
4750 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004751 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 return status;
4753}
4754
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004755static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 int status;
4758
4759 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004760 if (status != -EIO)
4761 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004762 if (status == 0)
4763 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 return status;
4765}
4766
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004767static int decode_release_lockowner(struct xdr_stream *xdr)
4768{
4769 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4770}
4771
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772static int decode_lookup(struct xdr_stream *xdr)
4773{
4774 return decode_op_hdr(xdr, OP_LOOKUP);
4775}
4776
4777/* This is too sick! */
4778static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4779{
Andy Adamson05d564f2008-12-23 16:06:15 -05004780 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 uint32_t limit_type, nblocks, blocksize;
4782
Benny Halevyc0eae662009-08-14 17:20:14 +03004783 p = xdr_inline_decode(xdr, 12);
4784 if (unlikely(!p))
4785 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004786 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004788 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03004789 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05004790 break;
4791 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03004792 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004793 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004794 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 }
4796 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004797out_overflow:
4798 print_overflow_msg(__func__, xdr);
4799 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
4801
4802static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4803{
Andy Adamson05d564f2008-12-23 16:06:15 -05004804 __be32 *p;
4805 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004806 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Benny Halevyc0eae662009-08-14 17:20:14 +03004808 p = xdr_inline_decode(xdr, 4);
4809 if (unlikely(!p))
4810 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004811 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4813 res->delegation_type = 0;
4814 return 0;
4815 }
Benny Halevy07d30432009-08-14 17:19:52 +03004816 status = decode_stateid(xdr, &res->delegation);
4817 if (unlikely(status))
4818 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004819 p = xdr_inline_decode(xdr, 4);
4820 if (unlikely(!p))
4821 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004822 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004825 case NFS4_OPEN_DELEGATE_READ:
4826 res->delegation_type = FMODE_READ;
4827 break;
4828 case NFS4_OPEN_DELEGATE_WRITE:
4829 res->delegation_type = FMODE_WRITE|FMODE_READ;
4830 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 return -EIO;
4832 }
David Howells7539bba2006-08-22 20:06:09 -04004833 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004834out_overflow:
4835 print_overflow_msg(__func__, xdr);
4836 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837}
4838
4839static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4840{
Andy Adamson05d564f2008-12-23 16:06:15 -05004841 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004842 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004843 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844
Andy Adamson05d564f2008-12-23 16:06:15 -05004845 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004846 if (status != -EIO)
4847 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004848 if (!status)
4849 status = decode_stateid(xdr, &res->stateid);
4850 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004851 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
Andy Adamson05d564f2008-12-23 16:06:15 -05004853 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
Benny Halevyc0eae662009-08-14 17:20:14 +03004855 p = xdr_inline_decode(xdr, 8);
4856 if (unlikely(!p))
4857 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004858 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004859 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004860 if (bmlen > 10)
4861 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
Benny Halevyc0eae662009-08-14 17:20:14 +03004863 p = xdr_inline_decode(xdr, bmlen << 2);
4864 if (unlikely(!p))
4865 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004866 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4867 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004868 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004869 for (; i < NFS4_BITMAP_SIZE; i++)
4870 res->attrset[i] = 0;
4871
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 return decode_delegation(xdr, res);
4873xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004874 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004876out_overflow:
4877 print_overflow_msg(__func__, xdr);
4878 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879}
4880
4881static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4882{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 int status;
4884
Andy Adamson05d564f2008-12-23 16:06:15 -05004885 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004886 if (status != -EIO)
4887 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004888 if (!status)
4889 status = decode_stateid(xdr, &res->stateid);
4890 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891}
4892
4893static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 int status;
4896
4897 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004898 if (status != -EIO)
4899 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004900 if (!status)
4901 status = decode_stateid(xdr, &res->stateid);
4902 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903}
4904
4905static int decode_putfh(struct xdr_stream *xdr)
4906{
4907 return decode_op_hdr(xdr, OP_PUTFH);
4908}
4909
4910static int decode_putrootfh(struct xdr_stream *xdr)
4911{
4912 return decode_op_hdr(xdr, OP_PUTROOTFH);
4913}
4914
4915static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4916{
4917 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07004918 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 uint32_t count, eof, recvd, hdrlen;
4920 int status;
4921
4922 status = decode_op_hdr(xdr, OP_READ);
4923 if (status)
4924 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004925 p = xdr_inline_decode(xdr, 8);
4926 if (unlikely(!p))
4927 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004928 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004929 count = be32_to_cpup(p);
Chuck Lever8111f372010-12-14 14:58:01 +00004930 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 recvd = req->rq_rcv_buf.len - hdrlen;
4932 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004933 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 "count %u > recvd %u\n", count, recvd);
4935 count = recvd;
4936 eof = 0;
4937 }
4938 xdr_read_pages(xdr, count);
4939 res->eof = eof;
4940 res->count = count;
4941 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004942out_overflow:
4943 print_overflow_msg(__func__, xdr);
4944 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945}
4946
4947static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4948{
4949 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004951 size_t hdrlen;
4952 u32 recvd, pglen = rcvbuf->page_len;
Chuck Leverbcecff72007-10-26 13:32:03 -04004953 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
4955 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004956 if (!status)
4957 status = decode_verifier(xdr, readdir->verifier.data);
4958 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 return status;
Fred Isaman44109242008-04-02 15:21:15 +03004960 dprintk("%s: verifier = %08x:%08x\n",
4961 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00004962 ((u32 *)readdir->verifier.data)[0],
4963 ((u32 *)readdir->verifier.data)[1]);
4964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
Benny Halevydb942bb2009-08-14 17:19:56 +03004966 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 recvd = rcvbuf->len - hdrlen;
4968 if (pglen > recvd)
4969 pglen = recvd;
4970 xdr_read_pages(xdr, pglen);
4971
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004972
Trond Myklebustac396122010-11-15 20:26:22 -05004973 return pglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974}
4975
4976static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4977{
4978 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
4979 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004980 size_t hdrlen;
4981 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004982 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 int status;
4984
4985 status = decode_op_hdr(xdr, OP_READLINK);
4986 if (status)
4987 return status;
4988
4989 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004990 p = xdr_inline_decode(xdr, 4);
4991 if (unlikely(!p))
4992 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004993 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004995 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 return -ENAMETOOLONG;
4997 }
4998 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
4999 recvd = req->rq_rcv_buf.len - hdrlen;
5000 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005001 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 "count %u > recvd %u\n", len, recvd);
5003 return -EIO;
5004 }
5005 xdr_read_pages(xdr, len);
5006 /*
5007 * The XDR encode routine has set things up so that
5008 * the link text will be copied directly into the
5009 * buffer. We just have to do overflow-checking,
5010 * and and null-terminate the text (the VFS expects
5011 * null-termination).
5012 */
Chuck Leverb4687da2010-09-21 16:55:48 -04005013 xdr_terminate_string(rcvbuf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005015out_overflow:
5016 print_overflow_msg(__func__, xdr);
5017 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
5019
5020static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5021{
5022 int status;
5023
5024 status = decode_op_hdr(xdr, OP_REMOVE);
5025 if (status)
5026 goto out;
5027 status = decode_change_info(xdr, cinfo);
5028out:
5029 return status;
5030}
5031
5032static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5033 struct nfs4_change_info *new_cinfo)
5034{
5035 int status;
5036
5037 status = decode_op_hdr(xdr, OP_RENAME);
5038 if (status)
5039 goto out;
5040 if ((status = decode_change_info(xdr, old_cinfo)))
5041 goto out;
5042 status = decode_change_info(xdr, new_cinfo);
5043out:
5044 return status;
5045}
5046
5047static int decode_renew(struct xdr_stream *xdr)
5048{
5049 return decode_op_hdr(xdr, OP_RENEW);
5050}
5051
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005052static int
5053decode_restorefh(struct xdr_stream *xdr)
5054{
5055 return decode_op_hdr(xdr, OP_RESTOREFH);
5056}
5057
J. Bruce Fields029d1052005-06-22 17:16:22 +00005058static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
Andy Adamsonbf118a32011-12-07 11:55:27 -05005059 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005060{
Andy Adamsonbf118a32011-12-07 11:55:27 -05005061 __be32 *savep, *bm_p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005062 uint32_t attrlen,
Fred Isamandae100c2011-07-30 20:52:37 -04005063 bitmap[3] = {0};
J. Bruce Fields029d1052005-06-22 17:16:22 +00005064 struct kvec *iov = req->rq_rcv_buf.head;
5065 int status;
5066
Andy Adamsonbf118a32011-12-07 11:55:27 -05005067 res->acl_len = 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005068 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5069 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05005070 bm_p = xdr->p;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005071 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5072 goto out;
5073 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5074 goto out;
5075
5076 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5077 return -EIO;
5078 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04005079 size_t hdrlen;
5080 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005081
Andy Adamsonbf118a32011-12-07 11:55:27 -05005082 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5083 * are stored with the acl data to handle the problem of
5084 * variable length bitmaps.*/
5085 xdr->p = bm_p;
5086 res->acl_data_offset = be32_to_cpup(bm_p) + 2;
5087 res->acl_data_offset <<= 2;
5088
J. Bruce Fields029d1052005-06-22 17:16:22 +00005089 /* We ignore &savep and don't do consistency checks on
5090 * the attr length. Let userspace figure it out.... */
5091 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
Andy Adamsonbf118a32011-12-07 11:55:27 -05005092 attrlen += res->acl_data_offset;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005093 recvd = req->rq_rcv_buf.len - hdrlen;
5094 if (attrlen > recvd) {
Andy Adamsonbf118a32011-12-07 11:55:27 -05005095 if (res->acl_flags & NFS4_ACL_LEN_REQUEST) {
5096 /* getxattr interface called with a NULL buf */
5097 res->acl_len = attrlen;
5098 goto out;
5099 }
5100 dprintk("NFS: acl reply: attrlen %u > recvd %u\n",
J. Bruce Fields029d1052005-06-22 17:16:22 +00005101 attrlen, recvd);
5102 return -EINVAL;
5103 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04005104 xdr_read_pages(xdr, attrlen);
Andy Adamsonbf118a32011-12-07 11:55:27 -05005105 res->acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04005106 } else
5107 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005108
5109out:
5110 return status;
5111}
5112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113static int
5114decode_savefh(struct xdr_stream *xdr)
5115{
5116 return decode_op_hdr(xdr, OP_SAVEFH);
5117}
5118
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005119static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120{
Al Viro8687b632006-10-19 23:28:48 -07005121 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 uint32_t bmlen;
5123 int status;
5124
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 status = decode_op_hdr(xdr, OP_SETATTR);
5126 if (status)
5127 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005128 p = xdr_inline_decode(xdr, 4);
5129 if (unlikely(!p))
5130 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005131 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005132 p = xdr_inline_decode(xdr, bmlen << 2);
5133 if (likely(p))
5134 return 0;
5135out_overflow:
5136 print_overflow_msg(__func__, xdr);
5137 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138}
5139
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005140static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141{
Al Viro8687b632006-10-19 23:28:48 -07005142 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 uint32_t opnum;
5144 int32_t nfserr;
5145
Benny Halevyc0eae662009-08-14 17:20:14 +03005146 p = xdr_inline_decode(xdr, 8);
5147 if (unlikely(!p))
5148 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005149 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04005151 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05005152 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 return -EIO;
5154 }
Benny Halevycccddf42009-08-14 17:20:19 +03005155 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03005157 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5158 if (unlikely(!p))
5159 goto out_overflow;
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005160 p = xdr_decode_hyper(p, &res->clientid);
5161 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 } else if (nfserr == NFSERR_CLID_INUSE) {
5163 uint32_t len;
5164
5165 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005166 p = xdr_inline_decode(xdr, 4);
5167 if (unlikely(!p))
5168 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005169 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005170 p = xdr_inline_decode(xdr, len);
5171 if (unlikely(!p))
5172 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
5174 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03005175 p = xdr_inline_decode(xdr, 4);
5176 if (unlikely(!p))
5177 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03005178 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03005179 p = xdr_inline_decode(xdr, len);
5180 if (unlikely(!p))
5181 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 return -NFSERR_CLID_INUSE;
5183 } else
Benny Halevy856dff32008-03-31 17:39:06 +03005184 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
5186 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005187out_overflow:
5188 print_overflow_msg(__func__, xdr);
5189 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190}
5191
5192static int decode_setclientid_confirm(struct xdr_stream *xdr)
5193{
5194 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5195}
5196
5197static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5198{
Al Viro8687b632006-10-19 23:28:48 -07005199 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200 int status;
5201
5202 status = decode_op_hdr(xdr, OP_WRITE);
5203 if (status)
5204 return status;
5205
Benny Halevyc0eae662009-08-14 17:20:14 +03005206 p = xdr_inline_decode(xdr, 16);
5207 if (unlikely(!p))
5208 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005209 res->count = be32_to_cpup(p++);
5210 res->verf->committed = be32_to_cpup(p++);
Benny Halevy99398d02009-08-14 17:20:05 +03005211 memcpy(res->verf->verifier, p, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005213out_overflow:
5214 print_overflow_msg(__func__, xdr);
5215 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216}
5217
5218static int decode_delegreturn(struct xdr_stream *xdr)
5219{
5220 return decode_op_hdr(xdr, OP_DELEGRETURN);
5221}
5222
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005223static int decode_secinfo_gss(struct xdr_stream *xdr, struct nfs4_secinfo_flavor *flavor)
5224{
5225 __be32 *p;
5226
5227 p = xdr_inline_decode(xdr, 4);
5228 if (unlikely(!p))
5229 goto out_overflow;
5230 flavor->gss.sec_oid4.len = be32_to_cpup(p);
5231 if (flavor->gss.sec_oid4.len > GSS_OID_MAX_LEN)
5232 goto out_err;
5233
5234 p = xdr_inline_decode(xdr, flavor->gss.sec_oid4.len);
5235 if (unlikely(!p))
5236 goto out_overflow;
5237 memcpy(flavor->gss.sec_oid4.data, p, flavor->gss.sec_oid4.len);
5238
5239 p = xdr_inline_decode(xdr, 8);
5240 if (unlikely(!p))
5241 goto out_overflow;
5242 flavor->gss.qop4 = be32_to_cpup(p++);
5243 flavor->gss.service = be32_to_cpup(p);
5244
5245 return 0;
5246
5247out_overflow:
5248 print_overflow_msg(__func__, xdr);
5249 return -EIO;
5250out_err:
5251 return -EINVAL;
5252}
5253
5254static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5255{
5256 struct nfs4_secinfo_flavor *sec_flavor;
5257 int status;
5258 __be32 *p;
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005259 int i, num_flavors;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005260
5261 status = decode_op_hdr(xdr, OP_SECINFO);
Bryan Schumaker613e9012011-04-27 15:28:44 -04005262 if (status)
5263 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005264 p = xdr_inline_decode(xdr, 4);
5265 if (unlikely(!p))
5266 goto out_overflow;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005267
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005268 res->flavors->num_flavors = 0;
5269 num_flavors = be32_to_cpup(p);
5270
5271 for (i = 0; i < num_flavors; i++) {
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005272 sec_flavor = &res->flavors->flavors[i];
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005273 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005274 break;
5275
5276 p = xdr_inline_decode(xdr, 4);
5277 if (unlikely(!p))
5278 goto out_overflow;
5279 sec_flavor->flavor = be32_to_cpup(p);
5280
5281 if (sec_flavor->flavor == RPC_AUTH_GSS) {
Bryan Schumaker613e9012011-04-27 15:28:44 -04005282 status = decode_secinfo_gss(xdr, sec_flavor);
5283 if (status)
5284 goto out;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005285 }
Bryan Schumakerc3dfc282011-04-13 14:31:31 -04005286 res->flavors->num_flavors++;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005287 }
5288
Bryan Schumaker613e9012011-04-27 15:28:44 -04005289out:
5290 return status;
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005291out_overflow:
5292 print_overflow_msg(__func__, xdr);
5293 return -EIO;
5294}
5295
Benny Halevy99fe60d2009-04-01 09:22:29 -04005296#if defined(CONFIG_NFS_V4_1)
5297static int decode_exchange_id(struct xdr_stream *xdr,
5298 struct nfs41_exchange_id_res *res)
5299{
5300 __be32 *p;
5301 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03005302 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005303 int status;
5304 struct nfs_client *clp = res->client;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005305 uint32_t impl_id_count;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005306
5307 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5308 if (status)
5309 return status;
5310
Benny Halevyc0eae662009-08-14 17:20:14 +03005311 p = xdr_inline_decode(xdr, 8);
5312 if (unlikely(!p))
5313 goto out_overflow;
Andy Adamson114f64b2011-03-09 13:13:45 -05005314 xdr_decode_hyper(p, &clp->cl_clientid);
Benny Halevyc0eae662009-08-14 17:20:14 +03005315 p = xdr_inline_decode(xdr, 12);
5316 if (unlikely(!p))
5317 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005318 clp->cl_seqid = be32_to_cpup(p++);
5319 clp->cl_exchange_flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005320
5321 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03005322 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005323 if (dummy != SP4_NONE)
5324 return -EIO;
5325
5326 /* Throw away minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03005327 p = xdr_inline_decode(xdr, 8);
5328 if (unlikely(!p))
5329 goto out_overflow;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005330
5331 /* Throw away Major id */
Benny Halevy2460ba52009-08-14 17:20:10 +03005332 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5333 if (unlikely(status))
5334 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005335
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005336 /* Save server_scope */
Benny Halevy2460ba52009-08-14 17:20:10 +03005337 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5338 if (unlikely(status))
5339 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005340
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005341 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5342 return -EIO;
5343
5344 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5345 res->server_scope->server_scope_sz = dummy;
5346
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005347 /* Implementation Id */
5348 p = xdr_inline_decode(xdr, 4);
5349 if (unlikely(!p))
5350 goto out_overflow;
5351 impl_id_count = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005352
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005353 if (impl_id_count) {
5354 /* nii_domain */
5355 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5356 if (unlikely(status))
5357 return status;
5358 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5359 return -EIO;
5360 memcpy(res->impl_id->domain, dummy_str, dummy);
5361
5362 /* nii_name */
5363 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5364 if (unlikely(status))
5365 return status;
5366 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5367 return -EIO;
5368 memcpy(res->impl_id->name, dummy_str, dummy);
5369
5370 /* nii_date */
5371 p = xdr_inline_decode(xdr, 12);
5372 if (unlikely(!p))
5373 goto out_overflow;
5374 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5375 res->impl_id->date.nseconds = be32_to_cpup(p);
5376
5377 /* if there's more than one entry, ignore the rest */
5378 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04005379 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005380out_overflow:
5381 print_overflow_msg(__func__, xdr);
5382 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005383}
Andy Adamsonfc931582009-04-01 09:22:31 -04005384
5385static int decode_chan_attrs(struct xdr_stream *xdr,
5386 struct nfs4_channel_attrs *attrs)
5387{
5388 __be32 *p;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005389 u32 nr_attrs, val;
Andy Adamsonfc931582009-04-01 09:22:31 -04005390
Benny Halevyc0eae662009-08-14 17:20:14 +03005391 p = xdr_inline_decode(xdr, 28);
5392 if (unlikely(!p))
5393 goto out_overflow;
Benny Halevyc9c30dd2011-06-11 17:08:39 -04005394 val = be32_to_cpup(p++); /* headerpadsz */
5395 if (val)
5396 return -EINVAL; /* no support for header padding yet */
Benny Halevy6f723f72009-08-14 17:19:37 +03005397 attrs->max_rqst_sz = be32_to_cpup(p++);
5398 attrs->max_resp_sz = be32_to_cpup(p++);
5399 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5400 attrs->max_ops = be32_to_cpup(p++);
5401 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005402 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005403 if (unlikely(nr_attrs > 1)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005404 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5405 "count %u\n", __func__, nr_attrs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005406 return -EINVAL;
5407 }
Benny Halevyc0eae662009-08-14 17:20:14 +03005408 if (nr_attrs == 1) {
5409 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5410 if (unlikely(!p))
5411 goto out_overflow;
5412 }
Andy Adamsonfc931582009-04-01 09:22:31 -04005413 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03005414out_overflow:
5415 print_overflow_msg(__func__, xdr);
5416 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005417}
5418
Benny Halevye78291e2009-08-14 17:20:00 +03005419static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5420{
5421 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005422}
5423
5424static int decode_create_session(struct xdr_stream *xdr,
5425 struct nfs41_create_session_res *res)
5426{
5427 __be32 *p;
5428 int status;
5429 struct nfs_client *clp = res->client;
5430 struct nfs4_session *session = clp->cl_session;
5431
5432 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03005433 if (!status)
5434 status = decode_sessionid(xdr, &session->sess_id);
5435 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04005436 return status;
5437
Andy Adamsonfc931582009-04-01 09:22:31 -04005438 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03005439 p = xdr_inline_decode(xdr, 8);
5440 if (unlikely(!p))
5441 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03005442 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03005443 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04005444
5445 /* Channel attributes */
5446 status = decode_chan_attrs(xdr, &session->fc_attrs);
5447 if (!status)
5448 status = decode_chan_attrs(xdr, &session->bc_attrs);
5449 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005450out_overflow:
5451 print_overflow_msg(__func__, xdr);
5452 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04005453}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005454
5455static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5456{
5457 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5458}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005459
5460static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5461{
5462 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5463}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005464#endif /* CONFIG_NFS_V4_1 */
5465
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005466static int decode_sequence(struct xdr_stream *xdr,
5467 struct nfs4_sequence_res *res,
5468 struct rpc_rqst *rqstp)
5469{
5470#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005471 struct nfs4_sessionid id;
5472 u32 dummy;
5473 int status;
5474 __be32 *p;
5475
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005476 if (!res->sr_session)
5477 return 0;
5478
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005479 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03005480 if (!status)
5481 status = decode_sessionid(xdr, &id);
5482 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005483 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005484
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005485 /*
5486 * If the server returns different values for sessionID, slotID or
5487 * sequence number, the server is looney tunes.
5488 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005489 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005490
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005491 if (memcmp(id.data, res->sr_session->sess_id.data,
5492 NFS4_MAX_SESSIONID_LEN)) {
5493 dprintk("%s Invalid session id\n", __func__);
5494 goto out_err;
5495 }
Benny Halevye78291e2009-08-14 17:20:00 +03005496
Benny Halevyc0eae662009-08-14 17:20:14 +03005497 p = xdr_inline_decode(xdr, 20);
5498 if (unlikely(!p))
5499 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03005500
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005501 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03005502 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005503 if (dummy != res->sr_slot->seq_nr) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005504 dprintk("%s Invalid sequence number\n", __func__);
5505 goto out_err;
5506 }
5507 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03005508 dummy = be32_to_cpup(p++);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005509 if (dummy != res->sr_slot - res->sr_session->fc_slot_table.slots) {
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005510 dprintk("%s Invalid slot id\n", __func__);
5511 goto out_err;
5512 }
5513 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005514 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005515 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03005516 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05005517 /* result flags */
5518 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005519 status = 0;
5520out_err:
5521 res->sr_status = status;
5522 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03005523out_overflow:
5524 print_overflow_msg(__func__, xdr);
5525 status = -EIO;
5526 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005527#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005528 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005529#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005530}
5531
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005532#if defined(CONFIG_NFS_V4_1)
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005533/*
5534 * TODO: Need to handle case when EOF != true;
5535 */
5536static int decode_getdevicelist(struct xdr_stream *xdr,
5537 struct pnfs_devicelist *res)
5538{
5539 __be32 *p;
5540 int status, i;
5541 struct nfs_writeverf verftemp;
5542
5543 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5544 if (status)
5545 return status;
5546
5547 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5548 if (unlikely(!p))
5549 goto out_overflow;
5550
5551 /* TODO: Skip cookie for now */
5552 p += 2;
5553
5554 /* Read verifier */
5555 p = xdr_decode_opaque_fixed(p, verftemp.verifier, 8);
5556
5557 res->num_devs = be32_to_cpup(p);
5558
5559 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5560
5561 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -05005562 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
Andy Adamson7f11d8d2011-07-30 20:52:35 -04005563 __func__, res->num_devs);
5564 return -EIO;
5565 }
5566
5567 p = xdr_inline_decode(xdr,
5568 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5569 if (unlikely(!p))
5570 goto out_overflow;
5571 for (i = 0; i < res->num_devs; i++)
5572 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5573 NFS4_DEVICEID4_SIZE);
5574 res->eof = be32_to_cpup(p);
5575 return 0;
5576out_overflow:
5577 print_overflow_msg(__func__, xdr);
5578 return -EIO;
5579}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005580
5581static int decode_getdeviceinfo(struct xdr_stream *xdr,
5582 struct pnfs_device *pdev)
5583{
5584 __be32 *p;
5585 uint32_t len, type;
5586 int status;
5587
5588 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5589 if (status) {
5590 if (status == -ETOOSMALL) {
5591 p = xdr_inline_decode(xdr, 4);
5592 if (unlikely(!p))
5593 goto out_overflow;
5594 pdev->mincount = be32_to_cpup(p);
5595 dprintk("%s: Min count too small. mincnt = %u\n",
5596 __func__, pdev->mincount);
5597 }
5598 return status;
5599 }
5600
5601 p = xdr_inline_decode(xdr, 8);
5602 if (unlikely(!p))
5603 goto out_overflow;
5604 type = be32_to_cpup(p++);
5605 if (type != pdev->layout_type) {
5606 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5607 __func__, pdev->layout_type, type);
5608 return -EINVAL;
5609 }
5610 /*
5611 * Get the length of the opaque device_addr4. xdr_read_pages places
5612 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5613 * and places the remaining xdr data in xdr_buf->tail
5614 */
5615 pdev->mincount = be32_to_cpup(p);
5616 xdr_read_pages(xdr, pdev->mincount); /* include space for the length */
5617
5618 /* Parse notification bitmap, verifying that it is zero. */
5619 p = xdr_inline_decode(xdr, 4);
5620 if (unlikely(!p))
5621 goto out_overflow;
5622 len = be32_to_cpup(p);
5623 if (len) {
Chuck Leveread00592010-12-14 14:58:21 +00005624 uint32_t i;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005625
5626 p = xdr_inline_decode(xdr, 4 * len);
5627 if (unlikely(!p))
5628 goto out_overflow;
5629 for (i = 0; i < len; i++, p++) {
5630 if (be32_to_cpup(p)) {
5631 dprintk("%s: notifications not supported\n",
5632 __func__);
5633 return -EIO;
5634 }
5635 }
5636 }
5637 return 0;
5638out_overflow:
5639 print_overflow_msg(__func__, xdr);
5640 return -EIO;
5641}
5642
5643static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5644 struct nfs4_layoutget_res *res)
5645{
5646 __be32 *p;
5647 int status;
5648 u32 layout_count;
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005649 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
5650 struct kvec *iov = rcvbuf->head;
5651 u32 hdrlen, recvd;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005652
5653 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5654 if (status)
5655 return status;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005656 p = xdr_inline_decode(xdr, 4);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005657 if (unlikely(!p))
5658 goto out_overflow;
Trond Myklebustea9d23f2012-03-04 18:13:56 -05005659 res->return_on_close = be32_to_cpup(p);
5660 decode_stateid(xdr, &res->stateid);
5661 p = xdr_inline_decode(xdr, 4);
5662 if (unlikely(!p))
5663 goto out_overflow;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005664 layout_count = be32_to_cpup(p);
5665 if (!layout_count) {
5666 dprintk("%s: server responded with empty layout array\n",
5667 __func__);
5668 return -EINVAL;
5669 }
5670
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005671 p = xdr_inline_decode(xdr, 28);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005672 if (unlikely(!p))
5673 goto out_overflow;
5674 p = xdr_decode_hyper(p, &res->range.offset);
5675 p = xdr_decode_hyper(p, &res->range.length);
5676 res->range.iomode = be32_to_cpup(p++);
5677 res->type = be32_to_cpup(p++);
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005678 res->layoutp->len = be32_to_cpup(p);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005679
5680 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5681 __func__,
5682 (unsigned long)res->range.offset,
5683 (unsigned long)res->range.length,
5684 res->range.iomode,
5685 res->type,
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005686 res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005687
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005688 hdrlen = (u8 *) xdr->p - (u8 *) iov->iov_base;
5689 recvd = req->rq_rcv_buf.len - hdrlen;
5690 if (res->layoutp->len > recvd) {
5691 dprintk("NFS: server cheating in layoutget reply: "
5692 "layout len %u > recvd %u\n",
5693 res->layoutp->len, recvd);
5694 return -EINVAL;
5695 }
5696
5697 xdr_read_pages(xdr, res->layoutp->len);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005698
5699 if (layout_count > 1) {
5700 /* We only handle a length one array at the moment. Any
5701 * further entries are just ignored. Note that this means
5702 * the client may see a response that is less than the
5703 * minimum it requested.
5704 */
5705 dprintk("%s: server responded with %d layouts, dropping tail\n",
5706 __func__, layout_count);
5707 }
5708
5709 return 0;
5710out_overflow:
5711 print_overflow_msg(__func__, xdr);
5712 return -EIO;
5713}
Andy Adamson863a3c62011-03-23 13:27:54 +00005714
Benny Halevycbe82602011-05-22 19:52:37 +03005715static int decode_layoutreturn(struct xdr_stream *xdr,
5716 struct nfs4_layoutreturn_res *res)
5717{
5718 __be32 *p;
5719 int status;
5720
5721 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5722 if (status)
5723 return status;
5724 p = xdr_inline_decode(xdr, 4);
5725 if (unlikely(!p))
5726 goto out_overflow;
5727 res->lrs_present = be32_to_cpup(p);
5728 if (res->lrs_present)
5729 status = decode_stateid(xdr, &res->stateid);
5730 return status;
5731out_overflow:
5732 print_overflow_msg(__func__, xdr);
5733 return -EIO;
5734}
5735
Andy Adamson863a3c62011-03-23 13:27:54 +00005736static int decode_layoutcommit(struct xdr_stream *xdr,
5737 struct rpc_rqst *req,
5738 struct nfs4_layoutcommit_res *res)
5739{
5740 __be32 *p;
5741 __u32 sizechanged;
5742 int status;
5743
5744 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
Andy Adamsondb29c082011-07-30 20:52:38 -04005745 res->status = status;
Andy Adamson863a3c62011-03-23 13:27:54 +00005746 if (status)
5747 return status;
5748
5749 p = xdr_inline_decode(xdr, 4);
5750 if (unlikely(!p))
5751 goto out_overflow;
5752 sizechanged = be32_to_cpup(p);
5753
5754 if (sizechanged) {
5755 /* throw away new size */
5756 p = xdr_inline_decode(xdr, 8);
5757 if (unlikely(!p))
5758 goto out_overflow;
5759 }
5760 return 0;
5761out_overflow:
5762 print_overflow_msg(__func__, xdr);
5763 return -EIO;
5764}
Bryan Schumaker7d974792011-06-02 14:59:08 -04005765
5766static int decode_test_stateid(struct xdr_stream *xdr,
5767 struct nfs41_test_stateid_res *res)
5768{
5769 __be32 *p;
5770 int status;
5771 int num_res;
5772
5773 status = decode_op_hdr(xdr, OP_TEST_STATEID);
5774 if (status)
5775 return status;
5776
5777 p = xdr_inline_decode(xdr, 4);
5778 if (unlikely(!p))
5779 goto out_overflow;
5780 num_res = be32_to_cpup(p++);
5781 if (num_res != 1)
5782 goto out;
5783
5784 p = xdr_inline_decode(xdr, 4);
5785 if (unlikely(!p))
5786 goto out_overflow;
5787 res->status = be32_to_cpup(p++);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05005788
5789 return status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04005790out_overflow:
5791 print_overflow_msg(__func__, xdr);
5792out:
5793 return -EIO;
5794}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04005795
5796static int decode_free_stateid(struct xdr_stream *xdr,
5797 struct nfs41_free_stateid_res *res)
5798{
5799 __be32 *p;
5800 int status;
5801
5802 status = decode_op_hdr(xdr, OP_FREE_STATEID);
5803 if (status)
5804 return status;
5805
5806 p = xdr_inline_decode(xdr, 4);
5807 if (unlikely(!p))
5808 goto out_overflow;
5809 res->status = be32_to_cpup(p++);
5810 return res->status;
5811out_overflow:
5812 print_overflow_msg(__func__, xdr);
5813 return -EIO;
5814}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005815#endif /* CONFIG_NFS_V4_1 */
5816
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817/*
Benny Halevy49c25592008-12-23 16:06:16 -05005818 * END OF "GENERIC" DECODE ROUTINES.
5819 */
5820
5821/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 * Decode OPEN_DOWNGRADE response
5823 */
Chuck Leverbf269552010-12-14 14:59:29 +00005824static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
5825 struct xdr_stream *xdr,
5826 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827{
Andy Adamson05d564f2008-12-23 16:06:15 -05005828 struct compound_hdr hdr;
5829 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Chuck Leverbf269552010-12-14 14:59:29 +00005831 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005832 if (status)
5833 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005834 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005835 if (status)
5836 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005837 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005838 if (status)
5839 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005840 status = decode_open_downgrade(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005841 if (status != 0)
5842 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005843 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005845 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846}
5847
5848/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849 * Decode ACCESS response
5850 */
Chuck Leverbf269552010-12-14 14:59:29 +00005851static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5852 struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 struct compound_hdr hdr;
5855 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005856
Chuck Leverbf269552010-12-14 14:59:29 +00005857 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005858 if (status)
5859 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005860 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005861 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005863 status = decode_putfh(xdr);
Trond Myklebust76b32992007-08-10 17:45:11 -04005864 if (status != 0)
5865 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005866 status = decode_access(xdr, res);
Trond Myklebust76b32992007-08-10 17:45:11 -04005867 if (status != 0)
5868 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005869 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870out:
5871 return status;
5872}
5873
5874/*
5875 * Decode LOOKUP response
5876 */
Chuck Leverbf269552010-12-14 14:59:29 +00005877static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5878 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 struct compound_hdr hdr;
5881 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005882
Chuck Leverbf269552010-12-14 14:59:29 +00005883 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005884 if (status)
5885 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005886 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005887 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005889 status = decode_putfh(xdr);
5890 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005892 status = decode_lookup(xdr);
5893 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005895 status = decode_getfh(xdr, res->fh);
5896 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005898 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899out:
5900 return status;
5901}
5902
5903/*
5904 * Decode LOOKUP_ROOT response
5905 */
Chuck Leverbf269552010-12-14 14:59:29 +00005906static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
5907 struct xdr_stream *xdr,
5908 struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 struct compound_hdr hdr;
5911 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005912
Chuck Leverbf269552010-12-14 14:59:29 +00005913 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005914 if (status)
5915 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005916 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005917 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005919 status = decode_putrootfh(xdr);
5920 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005922 status = decode_getfh(xdr, res->fh);
5923 if (status == 0)
Trond Myklebust6926afd2012-01-07 13:22:46 -05005924 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925out:
5926 return status;
5927}
5928
5929/*
5930 * Decode REMOVE response
5931 */
Chuck Leverbf269552010-12-14 14:59:29 +00005932static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5933 struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 struct compound_hdr hdr;
5936 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005937
Chuck Leverbf269552010-12-14 14:59:29 +00005938 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005939 if (status)
5940 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005941 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005942 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005944 status = decode_putfh(xdr);
5945 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005946 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005947 status = decode_remove(xdr, &res->cinfo);
5948 if (status)
Trond Myklebust16e42952005-10-27 22:12:44 -04005949 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005950 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951out:
5952 return status;
5953}
5954
5955/*
5956 * Decode RENAME response
5957 */
Chuck Leverbf269552010-12-14 14:59:29 +00005958static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5959 struct nfs_renameres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 struct compound_hdr hdr;
5962 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05005963
Chuck Leverbf269552010-12-14 14:59:29 +00005964 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005965 if (status)
5966 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005967 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005968 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005970 status = decode_putfh(xdr);
5971 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005973 status = decode_savefh(xdr);
5974 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005976 status = decode_putfh(xdr);
5977 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005979 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
5980 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005981 goto out;
5982 /* Current FH is target directory */
Trond Myklebust6926afd2012-01-07 13:22:46 -05005983 if (decode_getfattr(xdr, res->new_fattr, res->server))
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005984 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00005985 status = decode_restorefh(xdr);
5986 if (status)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04005987 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05005988 decode_getfattr(xdr, res->old_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989out:
5990 return status;
5991}
5992
5993/*
5994 * Decode LINK response
5995 */
Chuck Leverbf269552010-12-14 14:59:29 +00005996static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
5997 struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 struct compound_hdr hdr;
6000 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006001
Chuck Leverbf269552010-12-14 14:59:29 +00006002 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006003 if (status)
6004 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006005 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006006 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006008 status = decode_putfh(xdr);
6009 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006011 status = decode_savefh(xdr);
6012 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006014 status = decode_putfh(xdr);
6015 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006017 status = decode_link(xdr, &res->cinfo);
6018 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006019 goto out;
6020 /*
6021 * Note order: OP_LINK leaves the directory as the current
6022 * filehandle.
6023 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006024 if (decode_getfattr(xdr, res->dir_attr, res->server))
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006025 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006026 status = decode_restorefh(xdr);
6027 if (status)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04006028 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006029 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030out:
6031 return status;
6032}
6033
6034/*
6035 * Decode CREATE response
6036 */
Chuck Leverbf269552010-12-14 14:59:29 +00006037static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6038 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 struct compound_hdr hdr;
6041 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006042
Chuck Leverbf269552010-12-14 14:59:29 +00006043 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006044 if (status)
6045 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006046 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006047 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006049 status = decode_putfh(xdr);
6050 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006052 status = decode_savefh(xdr);
6053 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006054 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006055 status = decode_create(xdr, &res->dir_cinfo);
6056 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006058 status = decode_getfh(xdr, res->fh);
6059 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006061 if (decode_getfattr(xdr, res->fattr, res->server))
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006062 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006063 status = decode_restorefh(xdr);
6064 if (status)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006065 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006066 decode_getfattr(xdr, res->dir_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067out:
6068 return status;
6069}
6070
6071/*
6072 * Decode SYMLINK response
6073 */
Chuck Leverbf269552010-12-14 14:59:29 +00006074static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6075 struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076{
Chuck Leverbf269552010-12-14 14:59:29 +00006077 return nfs4_xdr_dec_create(rqstp, xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078}
6079
6080/*
6081 * Decode GETATTR response
6082 */
Chuck Leverbf269552010-12-14 14:59:29 +00006083static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6084 struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086 struct compound_hdr hdr;
6087 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05006088
Chuck Leverbf269552010-12-14 14:59:29 +00006089 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 if (status)
6091 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006092 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006093 if (status)
6094 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006095 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096 if (status)
6097 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006098 status = decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099out:
6100 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101}
6102
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006103/*
6104 * Encode an SETACL request
6105 */
Chuck Lever9f06c712010-12-14 14:59:18 +00006106static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6107 struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006108{
Andy Adamson05d564f2008-12-23 16:06:15 -05006109 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04006110 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05006111 };
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006112
Chuck Lever9f06c712010-12-14 14:59:18 +00006113 encode_compound_hdr(xdr, req, &hdr);
6114 encode_sequence(xdr, &args->seq_args, &hdr);
6115 encode_putfh(xdr, args->fh, &hdr);
6116 encode_setacl(xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05006117 encode_nops(&hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006118}
Andy Adamson05d564f2008-12-23 16:06:15 -05006119
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006120/*
6121 * Decode SETACL response
6122 */
6123static int
Chuck Leverbf269552010-12-14 14:59:29 +00006124nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy73c403a2009-04-01 09:22:01 -04006125 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006126{
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006127 struct compound_hdr hdr;
6128 int status;
6129
Chuck Leverbf269552010-12-14 14:59:29 +00006130 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006131 if (status)
6132 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006133 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006134 if (status)
6135 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006136 status = decode_putfh(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006137 if (status)
6138 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006139 status = decode_setattr(xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00006140out:
6141 return status;
6142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
6144/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00006145 * Decode GETACL response
6146 */
6147static int
Chuck Leverbf269552010-12-14 14:59:29 +00006148nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
Benny Halevy663c79b2009-04-01 09:21:59 -04006149 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00006150{
J. Bruce Fields029d1052005-06-22 17:16:22 +00006151 struct compound_hdr hdr;
6152 int status;
6153
Trond Myklebust331818f2012-02-03 18:30:53 -05006154 if (res->acl_scratch != NULL) {
6155 void *p = page_address(res->acl_scratch);
6156 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6157 }
Chuck Leverbf269552010-12-14 14:59:29 +00006158 status = decode_compound_hdr(xdr, &hdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006159 if (status)
6160 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006161 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006162 if (status)
6163 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006164 status = decode_putfh(xdr);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006165 if (status)
6166 goto out;
Andy Adamsonbf118a32011-12-07 11:55:27 -05006167 status = decode_getacl(xdr, rqstp, res);
J. Bruce Fields029d1052005-06-22 17:16:22 +00006168
6169out:
6170 return status;
6171}
6172
6173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174 * Decode CLOSE response
6175 */
Chuck Leverbf269552010-12-14 14:59:29 +00006176static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6177 struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178{
Andy Adamson05d564f2008-12-23 16:06:15 -05006179 struct compound_hdr hdr;
6180 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
Chuck Leverbf269552010-12-14 14:59:29 +00006182 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006183 if (status)
6184 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006185 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006186 if (status)
6187 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006188 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006189 if (status)
6190 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006191 status = decode_close(xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04006192 if (status != 0)
6193 goto out;
6194 /*
6195 * Note: Server may do delete on close for this file
6196 * in which case the getattr call will fail with
6197 * an ESTALE error. Shouldn't be a problem,
6198 * though, since fattr->valid will remain unset.
6199 */
Trond Myklebust6926afd2012-01-07 13:22:46 -05006200 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006202 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203}
6204
6205/*
6206 * Decode OPEN response
6207 */
Chuck Leverbf269552010-12-14 14:59:29 +00006208static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6209 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210{
Andy Adamson05d564f2008-12-23 16:06:15 -05006211 struct compound_hdr hdr;
6212 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Chuck Leverbf269552010-12-14 14:59:29 +00006214 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006215 if (status)
6216 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006217 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006218 if (status)
6219 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006220 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006221 if (status)
6222 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006223 status = decode_savefh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006224 if (status)
6225 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006226 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006227 if (status)
6228 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006229 if (decode_getfh(xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006231 if (decode_getfattr(xdr, res->f_attr, res->server) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006232 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006233 if (decode_restorefh(xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04006234 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006235 decode_getfattr(xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006237 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238}
6239
6240/*
6241 * Decode OPEN_CONFIRM response
6242 */
Chuck Leverbf269552010-12-14 14:59:29 +00006243static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6244 struct xdr_stream *xdr,
6245 struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246{
Andy Adamson05d564f2008-12-23 16:06:15 -05006247 struct compound_hdr hdr;
6248 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
Chuck Leverbf269552010-12-14 14:59:29 +00006250 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006251 if (status)
6252 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006253 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006254 if (status)
6255 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006256 status = decode_open_confirm(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006258 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259}
6260
6261/*
6262 * Decode OPEN response
6263 */
Chuck Leverbf269552010-12-14 14:59:29 +00006264static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6265 struct xdr_stream *xdr,
6266 struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267{
Andy Adamson05d564f2008-12-23 16:06:15 -05006268 struct compound_hdr hdr;
6269 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270
Chuck Leverbf269552010-12-14 14:59:29 +00006271 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006272 if (status)
6273 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006274 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006275 if (status)
6276 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006277 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006278 if (status)
6279 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006280 status = decode_open(xdr, res);
Andy Adamson05d564f2008-12-23 16:06:15 -05006281 if (status)
6282 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006283 decode_getfattr(xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006285 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286}
6287
6288/*
6289 * Decode SETATTR response
6290 */
Chuck Leverbf269552010-12-14 14:59:29 +00006291static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6292 struct xdr_stream *xdr,
6293 struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294{
Andy Adamson05d564f2008-12-23 16:06:15 -05006295 struct compound_hdr hdr;
6296 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Chuck Leverbf269552010-12-14 14:59:29 +00006298 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006299 if (status)
6300 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006301 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006302 if (status)
6303 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006304 status = decode_putfh(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006305 if (status)
6306 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006307 status = decode_setattr(xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05006308 if (status)
6309 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006310 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311out:
Andy Adamson05d564f2008-12-23 16:06:15 -05006312 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313}
6314
6315/*
6316 * Decode LOCK response
6317 */
Chuck Leverbf269552010-12-14 14:59:29 +00006318static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6319 struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321 struct compound_hdr hdr;
6322 int status;
6323
Chuck Leverbf269552010-12-14 14:59:29 +00006324 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325 if (status)
6326 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006327 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006328 if (status)
6329 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006330 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331 if (status)
6332 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006333 status = decode_lock(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334out:
6335 return status;
6336}
6337
6338/*
6339 * Decode LOCKT response
6340 */
Chuck Leverbf269552010-12-14 14:59:29 +00006341static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6342 struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344 struct compound_hdr hdr;
6345 int status;
6346
Chuck Leverbf269552010-12-14 14:59:29 +00006347 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348 if (status)
6349 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006350 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006351 if (status)
6352 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006353 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354 if (status)
6355 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006356 status = decode_lockt(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357out:
6358 return status;
6359}
6360
6361/*
6362 * Decode LOCKU response
6363 */
Chuck Leverbf269552010-12-14 14:59:29 +00006364static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6365 struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367 struct compound_hdr hdr;
6368 int status;
6369
Chuck Leverbf269552010-12-14 14:59:29 +00006370 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371 if (status)
6372 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006373 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006374 if (status)
6375 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006376 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 if (status)
6378 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006379 status = decode_locku(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380out:
6381 return status;
6382}
6383
Chuck Leverbf269552010-12-14 14:59:29 +00006384static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6385 struct xdr_stream *xdr, void *dummy)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006386{
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006387 struct compound_hdr hdr;
6388 int status;
6389
Chuck Leverbf269552010-12-14 14:59:29 +00006390 status = decode_compound_hdr(xdr, &hdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006391 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006392 status = decode_release_lockowner(xdr);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006393 return status;
6394}
6395
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396/*
6397 * Decode READLINK response
6398 */
Chuck Leverbf269552010-12-14 14:59:29 +00006399static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6400 struct xdr_stream *xdr,
Benny Halevyf50c7002009-04-01 09:21:55 -04006401 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403 struct compound_hdr hdr;
6404 int status;
6405
Chuck Leverbf269552010-12-14 14:59:29 +00006406 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 if (status)
6408 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006409 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006410 if (status)
6411 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006412 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413 if (status)
6414 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006415 status = decode_readlink(xdr, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416out:
6417 return status;
6418}
6419
6420/*
6421 * Decode READDIR response
6422 */
Chuck Leverbf269552010-12-14 14:59:29 +00006423static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6424 struct nfs4_readdir_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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 if (status)
6431 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006432 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006433 if (status)
6434 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006435 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436 if (status)
6437 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006438 status = decode_readdir(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439out:
6440 return status;
6441}
6442
6443/*
6444 * Decode Read response
6445 */
Chuck Leverbf269552010-12-14 14:59:29 +00006446static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6447 struct nfs_readres *res)
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)
6454 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006455 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006456 if (status)
6457 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006458 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 if (status)
6460 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006461 status = decode_read(xdr, rqstp, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 if (!status)
6463 status = res->count;
6464out:
6465 return status;
6466}
6467
6468/*
6469 * Decode WRITE response
6470 */
Chuck Leverbf269552010-12-14 14:59:29 +00006471static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6472 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 struct compound_hdr hdr;
6475 int status;
6476
Chuck Leverbf269552010-12-14 14:59:29 +00006477 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478 if (status)
6479 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006480 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006481 if (status)
6482 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006483 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 if (status)
6485 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006486 status = decode_write(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006487 if (status)
6488 goto out;
Fred Isaman7ffd1062011-03-03 15:13:46 +00006489 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006490 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 if (!status)
6492 status = res->count;
6493out:
6494 return status;
6495}
6496
6497/*
6498 * Decode COMMIT response
6499 */
Chuck Leverbf269552010-12-14 14:59:29 +00006500static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6501 struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 struct compound_hdr hdr;
6504 int status;
6505
Chuck Leverbf269552010-12-14 14:59:29 +00006506 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 if (status)
6508 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006509 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006510 if (status)
6511 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006512 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513 if (status)
6514 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006515 status = decode_commit(xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04006516 if (status)
6517 goto out;
Fred Isaman988b6dc2011-03-23 13:27:52 +00006518 if (res->fattr)
Trond Myklebust6926afd2012-01-07 13:22:46 -05006519 decode_getfattr(xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520out:
6521 return status;
6522}
6523
6524/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006525 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526 */
Chuck Leverbf269552010-12-14 14:59:29 +00006527static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy3dda5e42009-04-01 09:21:57 -04006528 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 struct compound_hdr hdr;
6531 int status;
6532
Chuck Leverbf269552010-12-14 14:59:29 +00006533 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006535 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006536 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006537 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006539 status = decode_fsinfo(xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 return status;
6541}
6542
6543/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006544 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 */
Chuck Leverbf269552010-12-14 14:59:29 +00006546static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevyd45b2982009-04-01 09:21:58 -04006547 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549 struct compound_hdr hdr;
6550 int status;
6551
Chuck Leverbf269552010-12-14 14:59:29 +00006552 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006554 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006555 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006556 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006558 status = decode_pathconf(xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 return status;
6560}
6561
6562/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006563 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564 */
Chuck Leverbf269552010-12-14 14:59:29 +00006565static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
Benny Halevy24ad1482009-04-01 09:21:56 -04006566 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 struct compound_hdr hdr;
6569 int status;
6570
Chuck Leverbf269552010-12-14 14:59:29 +00006571 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006573 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006574 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006575 status = decode_putfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006577 status = decode_statfs(xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 return status;
6579}
6580
6581/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006582 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 */
Chuck Leverbf269552010-12-14 14:59:29 +00006584static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6585 struct xdr_stream *xdr,
6586 struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 struct compound_hdr hdr;
6589 int status;
6590
Chuck Leverbf269552010-12-14 14:59:29 +00006591 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006592 if (status)
6593 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006594 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006595 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006597 status = decode_putfh(xdr);
6598 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006600 status = decode_server_caps(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601out:
6602 return status;
6603}
6604
6605/*
6606 * Decode RENEW response
6607 */
Chuck Leverbf269552010-12-14 14:59:29 +00006608static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6609 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611 struct compound_hdr hdr;
6612 int status;
6613
Chuck Leverbf269552010-12-14 14:59:29 +00006614 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006616 status = decode_renew(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617 return status;
6618}
6619
6620/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006621 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 */
Chuck Leverbf269552010-12-14 14:59:29 +00006623static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6624 struct xdr_stream *xdr,
6625 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 struct compound_hdr hdr;
6628 int status;
6629
Chuck Leverbf269552010-12-14 14:59:29 +00006630 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006632 status = decode_setclientid(xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633 return status;
6634}
6635
6636/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006637 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 */
Chuck Leverbf269552010-12-14 14:59:29 +00006639static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6640 struct xdr_stream *xdr,
6641 struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 struct compound_hdr hdr;
6644 int status;
6645
Chuck Leverbf269552010-12-14 14:59:29 +00006646 status = decode_compound_hdr(xdr, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006648 status = decode_setclientid_confirm(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006650 status = decode_putrootfh(xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006652 status = decode_fsinfo(xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006653 return status;
6654}
6655
6656/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006657 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658 */
Chuck Leverbf269552010-12-14 14:59:29 +00006659static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6660 struct xdr_stream *xdr,
6661 struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 struct compound_hdr hdr;
6664 int status;
6665
Chuck Leverbf269552010-12-14 14:59:29 +00006666 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006667 if (status)
6668 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006669 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006670 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01006671 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006672 status = decode_putfh(xdr);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006673 if (status != 0)
6674 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006675 status = decode_delegreturn(xdr);
Jeff Layton556ae3b2010-03-21 12:10:36 -04006676 if (status != 0)
6677 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006678 decode_getfattr(xdr, res->fattr, res->server);
Trond Myklebustfa178f22006-01-03 09:55:38 +01006679out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680 return status;
6681}
6682
Trond Myklebust683b57b2006-06-09 09:34:22 -04006683/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006684 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04006685 */
Chuck Leverbf269552010-12-14 14:59:29 +00006686static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6687 struct xdr_stream *xdr,
Benny Halevy22958462009-04-01 09:22:02 -04006688 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006689{
Trond Myklebust683b57b2006-06-09 09:34:22 -04006690 struct compound_hdr hdr;
6691 int status;
6692
Chuck Leverbf269552010-12-14 14:59:29 +00006693 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006694 if (status)
6695 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006696 status = decode_sequence(xdr, &res->seq_res, req);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04006697 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006698 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006699 status = decode_putfh(xdr);
6700 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006701 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006702 status = decode_lookup(xdr);
6703 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006704 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006705 xdr_enter_page(xdr, PAGE_SIZE);
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05006706 status = decode_getfattr_generic(xdr, &res->fs_locations->fattr,
6707 NULL, res->fs_locations,
6708 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006709out:
6710 return status;
6711}
6712
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006713/*
6714 * Decode SECINFO response
6715 */
6716static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6717 struct xdr_stream *xdr,
6718 struct nfs4_secinfo_res *res)
6719{
6720 struct compound_hdr hdr;
6721 int status;
6722
6723 status = decode_compound_hdr(xdr, &hdr);
6724 if (status)
6725 goto out;
6726 status = decode_sequence(xdr, &res->seq_res, rqstp);
6727 if (status)
6728 goto out;
6729 status = decode_putfh(xdr);
6730 if (status)
6731 goto out;
6732 status = decode_secinfo(xdr, res);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00006733out:
6734 return status;
6735}
6736
Benny Halevy99fe60d2009-04-01 09:22:29 -04006737#if defined(CONFIG_NFS_V4_1)
6738/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006739 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04006740 */
Chuck Leverbf269552010-12-14 14:59:29 +00006741static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6742 struct xdr_stream *xdr,
Benny Halevy99fe60d2009-04-01 09:22:29 -04006743 void *res)
6744{
Benny Halevy99fe60d2009-04-01 09:22:29 -04006745 struct compound_hdr hdr;
6746 int status;
6747
Chuck Leverbf269552010-12-14 14:59:29 +00006748 status = decode_compound_hdr(xdr, &hdr);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006749 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006750 status = decode_exchange_id(xdr, res);
Benny Halevy99fe60d2009-04-01 09:22:29 -04006751 return status;
6752}
Andy Adamson2050f0c2009-04-01 09:22:30 -04006753
6754/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006755 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04006756 */
Chuck Leverbf269552010-12-14 14:59:29 +00006757static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6758 struct xdr_stream *xdr,
Andy Adamsonfc931582009-04-01 09:22:31 -04006759 struct nfs41_create_session_res *res)
6760{
Andy Adamsonfc931582009-04-01 09:22:31 -04006761 struct compound_hdr hdr;
6762 int status;
6763
Chuck Leverbf269552010-12-14 14:59:29 +00006764 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc931582009-04-01 09:22:31 -04006765 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006766 status = decode_create_session(xdr, res);
Andy Adamsonfc931582009-04-01 09:22:31 -04006767 return status;
6768}
6769
6770/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006771 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006772 */
Chuck Leverbf269552010-12-14 14:59:29 +00006773static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
6774 struct xdr_stream *xdr,
6775 void *res)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006776{
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006777 struct compound_hdr hdr;
6778 int status;
6779
Chuck Leverbf269552010-12-14 14:59:29 +00006780 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006781 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006782 status = decode_destroy_session(xdr, res);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04006783 return status;
6784}
6785
6786/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006787 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006788 */
Chuck Leverbf269552010-12-14 14:59:29 +00006789static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
6790 struct xdr_stream *xdr,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006791 struct nfs4_sequence_res *res)
6792{
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006793 struct compound_hdr hdr;
6794 int status;
6795
Chuck Leverbf269552010-12-14 14:59:29 +00006796 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006797 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006798 status = decode_sequence(xdr, res, rqstp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006799 return status;
6800}
6801
6802/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05006803 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04006804 */
Chuck Leverbf269552010-12-14 14:59:29 +00006805static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
6806 struct xdr_stream *xdr,
Andy Adamson2050f0c2009-04-01 09:22:30 -04006807 struct nfs4_get_lease_time_res *res)
6808{
Andy Adamson2050f0c2009-04-01 09:22:30 -04006809 struct compound_hdr hdr;
6810 int status;
6811
Chuck Leverbf269552010-12-14 14:59:29 +00006812 status = decode_compound_hdr(xdr, &hdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006813 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006814 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006815 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006816 status = decode_putrootfh(xdr);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006817 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006818 status = decode_fsinfo(xdr, res->lr_fsinfo);
Andy Adamson2050f0c2009-04-01 09:22:30 -04006819 return status;
6820}
Ricardo Labiaga180197532009-12-05 16:08:40 -05006821
6822/*
6823 * Decode RECLAIM_COMPLETE response
6824 */
Chuck Leverbf269552010-12-14 14:59:29 +00006825static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
6826 struct xdr_stream *xdr,
Ricardo Labiaga180197532009-12-05 16:08:40 -05006827 struct nfs41_reclaim_complete_res *res)
6828{
Ricardo Labiaga180197532009-12-05 16:08:40 -05006829 struct compound_hdr hdr;
6830 int status;
6831
Chuck Leverbf269552010-12-14 14:59:29 +00006832 status = decode_compound_hdr(xdr, &hdr);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006833 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006834 status = decode_sequence(xdr, &res->seq_res, rqstp);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006835 if (!status)
Chuck Leverbf269552010-12-14 14:59:29 +00006836 status = decode_reclaim_complete(xdr, (void *)NULL);
Ricardo Labiaga180197532009-12-05 16:08:40 -05006837 return status;
6838}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006839
6840/*
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006841 * Decode GETDEVICELIST response
6842 */
6843static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
6844 struct xdr_stream *xdr,
6845 struct nfs4_getdevicelist_res *res)
6846{
6847 struct compound_hdr hdr;
6848 int status;
6849
6850 dprintk("encoding getdevicelist!\n");
6851
6852 status = decode_compound_hdr(xdr, &hdr);
6853 if (status != 0)
6854 goto out;
6855 status = decode_sequence(xdr, &res->seq_res, rqstp);
6856 if (status != 0)
6857 goto out;
6858 status = decode_putfh(xdr);
6859 if (status != 0)
6860 goto out;
6861 status = decode_getdevicelist(xdr, res->devlist);
6862out:
6863 return status;
6864}
6865
6866/*
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006867 * Decode GETDEVINFO response
6868 */
Chuck Leverbf269552010-12-14 14:59:29 +00006869static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
6870 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006871 struct nfs4_getdeviceinfo_res *res)
6872{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006873 struct compound_hdr hdr;
6874 int status;
6875
Chuck Leverbf269552010-12-14 14:59:29 +00006876 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006877 if (status != 0)
6878 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006879 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006880 if (status != 0)
6881 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006882 status = decode_getdeviceinfo(xdr, res->pdev);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006883out:
6884 return status;
6885}
6886
6887/*
6888 * Decode LAYOUTGET response
6889 */
Chuck Leverbf269552010-12-14 14:59:29 +00006890static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
6891 struct xdr_stream *xdr,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006892 struct nfs4_layoutget_res *res)
6893{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006894 struct compound_hdr hdr;
6895 int status;
6896
Chuck Leverbf269552010-12-14 14:59:29 +00006897 status = decode_compound_hdr(xdr, &hdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006898 if (status)
6899 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006900 status = decode_sequence(xdr, &res->seq_res, rqstp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006901 if (status)
6902 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006903 status = decode_putfh(xdr);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006904 if (status)
6905 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +00006906 status = decode_layoutget(xdr, rqstp, res);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006907out:
6908 return status;
6909}
Andy Adamson863a3c62011-03-23 13:27:54 +00006910
6911/*
Benny Halevycbe82602011-05-22 19:52:37 +03006912 * Decode LAYOUTRETURN response
6913 */
6914static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
6915 struct xdr_stream *xdr,
6916 struct nfs4_layoutreturn_res *res)
6917{
6918 struct compound_hdr hdr;
6919 int status;
6920
6921 status = decode_compound_hdr(xdr, &hdr);
6922 if (status)
6923 goto out;
6924 status = decode_sequence(xdr, &res->seq_res, rqstp);
6925 if (status)
6926 goto out;
6927 status = decode_putfh(xdr);
6928 if (status)
6929 goto out;
6930 status = decode_layoutreturn(xdr, res);
6931out:
6932 return status;
6933}
6934
6935/*
Andy Adamson863a3c62011-03-23 13:27:54 +00006936 * Decode LAYOUTCOMMIT response
6937 */
6938static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
6939 struct xdr_stream *xdr,
6940 struct nfs4_layoutcommit_res *res)
6941{
6942 struct compound_hdr hdr;
6943 int status;
6944
6945 status = decode_compound_hdr(xdr, &hdr);
6946 if (status)
6947 goto out;
6948 status = decode_sequence(xdr, &res->seq_res, rqstp);
6949 if (status)
6950 goto out;
6951 status = decode_putfh(xdr);
6952 if (status)
6953 goto out;
6954 status = decode_layoutcommit(xdr, rqstp, res);
6955 if (status)
6956 goto out;
Trond Myklebust6926afd2012-01-07 13:22:46 -05006957 decode_getfattr(xdr, res->fattr, res->server);
Andy Adamson863a3c62011-03-23 13:27:54 +00006958out:
6959 return status;
6960}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006961
6962/*
6963 * Decode SECINFO_NO_NAME response
6964 */
6965static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
6966 struct xdr_stream *xdr,
6967 struct nfs4_secinfo_res *res)
6968{
6969 struct compound_hdr hdr;
6970 int status;
6971
6972 status = decode_compound_hdr(xdr, &hdr);
6973 if (status)
6974 goto out;
6975 status = decode_sequence(xdr, &res->seq_res, rqstp);
6976 if (status)
6977 goto out;
6978 status = decode_putrootfh(xdr);
6979 if (status)
6980 goto out;
6981 status = decode_secinfo(xdr, res);
6982out:
6983 return status;
6984}
Bryan Schumaker7d974792011-06-02 14:59:08 -04006985
6986/*
6987 * Decode TEST_STATEID response
6988 */
6989static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
6990 struct xdr_stream *xdr,
6991 struct nfs41_test_stateid_res *res)
6992{
6993 struct compound_hdr hdr;
6994 int status;
6995
6996 status = decode_compound_hdr(xdr, &hdr);
6997 if (status)
6998 goto out;
6999 status = decode_sequence(xdr, &res->seq_res, rqstp);
7000 if (status)
7001 goto out;
7002 status = decode_test_stateid(xdr, res);
7003out:
7004 return status;
7005}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007006
7007/*
7008 * Decode FREE_STATEID response
7009 */
7010static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7011 struct xdr_stream *xdr,
7012 struct nfs41_free_stateid_res *res)
7013{
7014 struct compound_hdr hdr;
7015 int status;
7016
7017 status = decode_compound_hdr(xdr, &hdr);
7018 if (status)
7019 goto out;
7020 status = decode_sequence(xdr, &res->seq_res, rqstp);
7021 if (status)
7022 goto out;
7023 status = decode_free_stateid(xdr, res);
7024out:
7025 return status;
7026}
Benny Halevy99fe60d2009-04-01 09:22:29 -04007027#endif /* CONFIG_NFS_V4_1 */
7028
Chuck Lever573c4e12010-12-14 14:58:11 +00007029/**
7030 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7031 * the local page cache.
7032 * @xdr: XDR stream where entry resides
7033 * @entry: buffer to fill in with entry data
7034 * @plus: boolean indicating whether this should be a readdirplus entry
7035 *
7036 * Returns zero if successful, otherwise a negative errno value is
7037 * returned.
7038 *
7039 * This function is not invoked during READDIR reply decoding, but
7040 * rather whenever an application invokes the getdents(2) system call
7041 * on a directory already in our cache.
7042 */
7043int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7044 int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045{
Fred Isamandae100c2011-07-30 20:52:37 -04007046 uint32_t bitmap[3] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047 uint32_t len;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007048 __be32 *p = xdr_inline_decode(xdr, 4);
7049 if (unlikely(!p))
7050 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007051 if (*p == xdr_zero) {
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007052 p = xdr_inline_decode(xdr, 4);
7053 if (unlikely(!p))
7054 goto out_overflow;
Chuck Leverc08e76d2011-01-28 12:40:55 -05007055 if (*p == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +00007056 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +00007058 return -EBADCOOKIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059 }
7060
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007061 p = xdr_inline_decode(xdr, 12);
7062 if (unlikely(!p))
7063 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064 entry->prev_cookie = entry->cookie;
7065 p = xdr_decode_hyper(p, &entry->cookie);
Chuck Leverc08e76d2011-01-28 12:40:55 -05007066 entry->len = be32_to_cpup(p);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007067
Trond Myklebust9af8c222010-10-24 11:52:55 -04007068 p = xdr_inline_decode(xdr, entry->len);
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007069 if (unlikely(!p))
7070 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071 entry->name = (const char *) p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
7073 /*
7074 * In case the server doesn't return an inode number,
7075 * we fake one here. (We don't use inode number 0,
7076 * since glibc seems to choke on it...)
7077 */
7078 entry->ino = 1;
Trond Myklebust4f082222010-10-24 13:14:02 -04007079 entry->fattr->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080
Trond Myklebust9af8c222010-10-24 11:52:55 -04007081 if (decode_attr_bitmap(xdr, bitmap) < 0)
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007082 goto out_overflow;
Trond Myklebust9af8c222010-10-24 11:52:55 -04007083
7084 if (decode_attr_length(xdr, &len, &p) < 0)
7085 goto out_overflow;
7086
Chuck Lever573c4e12010-12-14 14:58:11 +00007087 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
Trond Myklebust8b7e3f42012-01-30 15:43:56 -05007088 NULL, entry->server) < 0)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007089 goto out_overflow;
Trond Myklebust28331a42011-04-27 13:47:52 -04007090 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7091 entry->ino = entry->fattr->mounted_on_fileid;
7092 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
Trond Myklebust9af8c222010-10-24 11:52:55 -04007093 entry->ino = entry->fattr->fileid;
7094
Trond Myklebust0b26a0b2010-11-20 14:26:44 -05007095 entry->d_type = DT_UNKNOWN;
7096 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7097 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7098
Chuck Lever573c4e12010-12-14 14:58:11 +00007099 return 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -04007100
7101out_overflow:
7102 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +00007103 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104}
7105
7106/*
7107 * We need to translate between nfs status return values and
7108 * the local errno values which may not be the same.
7109 */
7110static struct {
7111 int stat;
7112 int errno;
7113} nfs_errtbl[] = {
7114 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03007115 { NFS4ERR_PERM, -EPERM },
7116 { NFS4ERR_NOENT, -ENOENT },
7117 { NFS4ERR_IO, -errno_NFSERR_IO},
7118 { NFS4ERR_NXIO, -ENXIO },
7119 { NFS4ERR_ACCESS, -EACCES },
7120 { NFS4ERR_EXIST, -EEXIST },
7121 { NFS4ERR_XDEV, -EXDEV },
7122 { NFS4ERR_NOTDIR, -ENOTDIR },
7123 { NFS4ERR_ISDIR, -EISDIR },
7124 { NFS4ERR_INVAL, -EINVAL },
7125 { NFS4ERR_FBIG, -EFBIG },
7126 { NFS4ERR_NOSPC, -ENOSPC },
7127 { NFS4ERR_ROFS, -EROFS },
7128 { NFS4ERR_MLINK, -EMLINK },
7129 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7130 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7131 { NFS4ERR_DQUOT, -EDQUOT },
7132 { NFS4ERR_STALE, -ESTALE },
7133 { NFS4ERR_BADHANDLE, -EBADHANDLE },
Benny Halevy856dff32008-03-31 17:39:06 +03007134 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7135 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7136 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007137 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03007138 { NFS4ERR_BADTYPE, -EBADTYPE },
7139 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03007140 { NFS4ERR_SYMLINK, -ELOOP },
7141 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7142 { NFS4ERR_DEADLOCK, -EDEADLK },
Benny Halevy856dff32008-03-31 17:39:06 +03007143 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144};
7145
7146/*
7147 * Convert an NFS error code to a local one.
7148 * This one is used jointly by NFSv2 and NFSv3.
7149 */
7150static int
David Howells0a8ea432006-08-22 20:06:08 -04007151nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152{
7153 int i;
7154 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7155 if (nfs_errtbl[i].stat == stat)
7156 return nfs_errtbl[i].errno;
7157 }
7158 if (stat <= 10000 || stat > 10100) {
7159 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05007160 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 }
7162 /* If we cannot translate the error, the recovery routines should
7163 * handle it.
7164 * Note: remaining NFSv4 error codes have values > 10000, so should
7165 * not conflict with native Linux error codes.
7166 */
Benny Halevy856dff32008-03-31 17:39:06 +03007167 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168}
7169
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170#define PROC(proc, argtype, restype) \
7171[NFSPROC4_CLNT_##proc] = { \
7172 .p_proc = NFSPROC4_COMPOUND, \
Chuck Lever9f06c712010-12-14 14:59:18 +00007173 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
Chuck Leverbf269552010-12-14 14:59:29 +00007174 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04007175 .p_arglen = NFS4_##argtype##_sz, \
7176 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05007177 .p_statidx = NFSPROC4_CLNT_##proc, \
7178 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05007179}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007180
7181struct rpc_procinfo nfs4_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00007182 PROC(READ, enc_read, dec_read),
7183 PROC(WRITE, enc_write, dec_write),
7184 PROC(COMMIT, enc_commit, dec_commit),
7185 PROC(OPEN, enc_open, dec_open),
7186 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7187 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7188 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7189 PROC(CLOSE, enc_close, dec_close),
7190 PROC(SETATTR, enc_setattr, dec_setattr),
7191 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7192 PROC(RENEW, enc_renew, dec_renew),
7193 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7194 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7195 PROC(LOCK, enc_lock, dec_lock),
7196 PROC(LOCKT, enc_lockt, dec_lockt),
7197 PROC(LOCKU, enc_locku, dec_locku),
7198 PROC(ACCESS, enc_access, dec_access),
7199 PROC(GETATTR, enc_getattr, dec_getattr),
7200 PROC(LOOKUP, enc_lookup, dec_lookup),
7201 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7202 PROC(REMOVE, enc_remove, dec_remove),
7203 PROC(RENAME, enc_rename, dec_rename),
7204 PROC(LINK, enc_link, dec_link),
7205 PROC(SYMLINK, enc_symlink, dec_symlink),
7206 PROC(CREATE, enc_create, dec_create),
7207 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7208 PROC(STATFS, enc_statfs, dec_statfs),
7209 PROC(READLINK, enc_readlink, dec_readlink),
7210 PROC(READDIR, enc_readdir, dec_readdir),
7211 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7212 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7213 PROC(GETACL, enc_getacl, dec_getacl),
7214 PROC(SETACL, enc_setacl, dec_setacl),
7215 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7216 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007217 PROC(SECINFO, enc_secinfo, dec_secinfo),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007218#if defined(CONFIG_NFS_V4_1)
Chuck Lever7d93bd712010-12-14 14:57:42 +00007219 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7220 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7221 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7222 PROC(SEQUENCE, enc_sequence, dec_sequence),
7223 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7224 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7225 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7226 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
Andy Adamson863a3c62011-03-23 13:27:54 +00007227 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
Benny Halevycbe82602011-05-22 19:52:37 +03007228 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
Bryan Schumakerfca78d62011-06-02 14:59:07 -04007229 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
Bryan Schumaker7d974792011-06-02 14:59:08 -04007230 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
Bryan Schumaker9aeda352011-06-02 14:59:09 -04007231 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
Andy Adamson7f11d8d2011-07-30 20:52:35 -04007232 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007233#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007234};
7235
Trond Myklebusta613fa12012-01-20 13:53:56 -05007236const struct rpc_version nfs_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08007238 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239 .procs = nfs4_procedures
7240};
7241
7242/*
7243 * Local variables:
7244 * c-basic-offset: 8
7245 * End:
7246 */