blob: 7a243a2cf0bee99f3932b0f426fc409d5e662b2d [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>
41#include <linux/slab.h>
42#include <linux/utsname.h>
43#include <linux/errno.h>
44#include <linux/string.h>
45#include <linux/in.h>
46#include <linux/pagemap.h>
47#include <linux/proc_fs.h>
48#include <linux/kdev_t.h>
49#include <linux/sunrpc/clnt.h>
50#include <linux/nfs.h>
51#include <linux/nfs4.h>
52#include <linux/nfs_fs.h>
53#include <linux/nfs_idmap.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000054#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define NFSDBG_FACILITY NFSDBG_XDR
57
58/* Mapping from NFS error code to "errno" error code. */
59#define errno_NFSERR_IO EIO
60
David Howells0a8ea432006-08-22 20:06:08 -040061static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
64#ifdef DEBUG
65#define NFS4_MAXTAGLEN 20
66#else
67#define NFS4_MAXTAGLEN 0
68#endif
69
Andy Adamson6c0195a2008-12-23 16:06:15 -050070/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040071 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
Trond Myklebust9f958ab2007-07-02 13:58:33 -040073#define open_owner_id_maxsz (1 + 4)
74#define lock_owner_id_maxsz (1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040075#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
77#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
78#define op_encode_hdr_maxsz (1)
79#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040080#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
81#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
82#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
83#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
85 (NFS4_FHSIZE >> 2))
86#define decode_putfh_maxsz (op_decode_hdr_maxsz)
87#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
88#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
89#define encode_getfh_maxsz (op_encode_hdr_maxsz)
90#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
91 ((3+NFS4_FHSIZE) >> 2))
J. Bruce Fields96928202005-06-22 17:16:22 +000092#define nfs4_fattr_bitmap_maxsz 3
93#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
95#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -040096#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
97#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
J. Bruce Fields96928202005-06-22 17:16:22 +000098/* This is based on getfattr, which uses the most attributes: */
99#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400100 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000101#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
102 nfs4_fattr_value_maxsz)
103#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400104#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
105 1 + 2 + 1 + \
106 nfs4_owner_maxsz + \
107 nfs4_group_maxsz + \
108 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define encode_savefh_maxsz (op_encode_hdr_maxsz)
110#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400111#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
112#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200113#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + 11)
115#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
116#define decode_renew_maxsz (op_decode_hdr_maxsz)
117#define encode_setclientid_maxsz \
118 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500119 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
120 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
121 1 /* sc_prog */ + \
122 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
123 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
124 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define decode_setclientid_maxsz \
126 (op_decode_hdr_maxsz + \
127 2 + \
128 1024) /* large value for CLID_INUSE */
129#define encode_setclientid_confirm_maxsz \
130 (op_encode_hdr_maxsz + \
131 3 + (NFS4_VERIFIER_SIZE >> 2))
132#define decode_setclientid_confirm_maxsz \
133 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400134#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
135#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400136#define encode_share_access_maxsz \
137 (2)
Trond Myklebust9104a552007-07-17 21:52:42 -0400138#define encode_createmode_maxsz (1 + encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400139#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
140#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
141#define encode_open_maxsz (op_encode_hdr_maxsz + \
142 2 + encode_share_access_maxsz + 2 + \
143 open_owner_id_maxsz + \
144 encode_opentype_maxsz + \
145 encode_claim_null_maxsz)
146#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400147#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400148 decode_ace_maxsz)
149#define decode_change_info_maxsz (5)
150#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400151 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400152 decode_change_info_maxsz + 1 + \
153 nfs4_fattr_bitmap_maxsz + \
154 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400155#define encode_open_confirm_maxsz \
156 (op_encode_hdr_maxsz + \
157 encode_stateid_maxsz + 1)
158#define decode_open_confirm_maxsz \
159 (op_decode_hdr_maxsz + \
160 decode_stateid_maxsz)
161#define encode_open_downgrade_maxsz \
162 (op_encode_hdr_maxsz + \
163 encode_stateid_maxsz + 1 + \
164 encode_share_access_maxsz)
165#define decode_open_downgrade_maxsz \
166 (op_decode_hdr_maxsz + \
167 decode_stateid_maxsz)
168#define encode_close_maxsz (op_encode_hdr_maxsz + \
169 1 + encode_stateid_maxsz)
170#define decode_close_maxsz (op_decode_hdr_maxsz + \
171 decode_stateid_maxsz)
172#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
173 encode_stateid_maxsz + \
174 encode_attrs_maxsz)
175#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
176 nfs4_fattr_bitmap_maxsz)
177#define encode_read_maxsz (op_encode_hdr_maxsz + \
178 encode_stateid_maxsz + 3)
179#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
180#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
181 2 + encode_verifier_maxsz + 5)
182#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
183 decode_verifier_maxsz)
184#define encode_readlink_maxsz (op_encode_hdr_maxsz)
185#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
186#define encode_write_maxsz (op_encode_hdr_maxsz + \
187 encode_stateid_maxsz + 4)
188#define decode_write_maxsz (op_decode_hdr_maxsz + \
189 2 + decode_verifier_maxsz)
190#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
191#define decode_commit_maxsz (op_decode_hdr_maxsz + \
192 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#define encode_remove_maxsz (op_encode_hdr_maxsz + \
194 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400195#define decode_remove_maxsz (op_decode_hdr_maxsz + \
196 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define encode_rename_maxsz (op_encode_hdr_maxsz + \
198 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400199#define decode_rename_maxsz (op_decode_hdr_maxsz + \
200 decode_change_info_maxsz + \
201 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define encode_link_maxsz (op_encode_hdr_maxsz + \
203 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400204#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400205#define encode_lock_maxsz (op_encode_hdr_maxsz + \
206 7 + \
207 1 + encode_stateid_maxsz + 8)
208#define decode_lock_denied_maxsz \
209 (8 + decode_lockowner_maxsz)
210#define decode_lock_maxsz (op_decode_hdr_maxsz + \
211 decode_lock_denied_maxsz)
212#define encode_lockt_maxsz (op_encode_hdr_maxsz + 12)
213#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
214 decode_lock_denied_maxsz)
215#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
216 encode_stateid_maxsz + \
217 4)
218#define decode_locku_maxsz (op_decode_hdr_maxsz + \
219 decode_stateid_maxsz)
220#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
221#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
223 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400224 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000225 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
227#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400228 1 + 2 + nfs4_name_maxsz + \
229 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400230#define decode_create_maxsz (op_decode_hdr_maxsz + \
231 decode_change_info_maxsz + \
232 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400233#define encode_statfs_maxsz (encode_getattr_maxsz)
234#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
236#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400237#define encode_getacl_maxsz (encode_getattr_maxsz)
238#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
239 nfs4_fattr_bitmap_maxsz + 1)
240#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
241 encode_stateid_maxsz + 3)
242#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400243#define encode_fs_locations_maxsz \
244 (encode_getattr_maxsz)
245#define decode_fs_locations_maxsz \
246 (0)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400247
248#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400249#define NFS4_MAX_MACHINE_NAME_LEN (64)
250
Benny Halevy99fe60d2009-04-01 09:22:29 -0400251#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
252 encode_verifier_maxsz + \
253 1 /* co_ownerid.len */ + \
254 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
255 1 /* flags */ + \
256 1 /* spa_how */ + \
257 0 /* SP4_NONE (for now) */ + \
258 1 /* zero implemetation id array */)
259#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
260 2 /* eir_clientid */ + \
261 1 /* eir_sequenceid */ + \
262 1 /* eir_flags */ + \
263 1 /* spr_how */ + \
264 0 /* SP4_NONE (for now) */ + \
265 2 /* eir_server_owner.so_minor_id */ + \
266 /* eir_server_owner.so_major_id<> */ \
267 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
268 /* eir_server_scope<> */ \
269 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
270 1 /* eir_server_impl_id array length */ + \
271 0 /* ignored eir_server_impl_id contents */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400272#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
273#define decode_channel_attrs_maxsz (6 + \
274 1 /* ca_rdma_ird.len */ + \
275 1 /* ca_rdma_ird */)
276#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
277 2 /* csa_clientid */ + \
278 1 /* csa_sequence */ + \
279 1 /* csa_flags */ + \
280 encode_channel_attrs_maxsz + \
281 encode_channel_attrs_maxsz + \
282 1 /* csa_cb_program */ + \
283 1 /* csa_sec_parms.len (1) */ + \
284 1 /* cb_secflavor (AUTH_SYS) */ + \
285 1 /* stamp */ + \
286 1 /* machinename.len */ + \
287 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
288 1 /* uid */ + \
289 1 /* gid */ + \
290 1 /* gids.len (0) */)
291#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
292 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
293 1 /* csr_sequence */ + \
294 1 /* csr_flags */ + \
295 decode_channel_attrs_maxsz + \
296 decode_channel_attrs_maxsz)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400297#define encode_sequence_maxsz 0 /* stub */
298#define decode_sequence_maxsz 0 /* stub */
299#else /* CONFIG_NFS_V4_1 */
300#define encode_sequence_maxsz 0
301#define decode_sequence_maxsz 0
302#endif /* CONFIG_NFS_V4_1 */
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
305#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
306#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400307 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400309 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400311 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400313 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400315 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400317 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400319 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400321 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400323 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400325 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400327 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400329 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400331 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400333 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400334 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400336 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400338 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400339 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400341 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400343 encode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400344 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400346 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400348 decode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400349 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400351 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400352 encode_putfh_maxsz + \
353 encode_savefh_maxsz + \
354 encode_open_maxsz + \
355 encode_getfh_maxsz + \
356 encode_getattr_maxsz + \
357 encode_restorefh_maxsz + \
358 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400360 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400361 decode_putfh_maxsz + \
362 decode_savefh_maxsz + \
363 decode_open_maxsz + \
364 decode_getfh_maxsz + \
365 decode_getattr_maxsz + \
366 decode_restorefh_maxsz + \
367 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400368#define NFS4_enc_open_confirm_sz \
369 (compound_encode_hdr_maxsz + \
370 encode_putfh_maxsz + \
371 encode_open_confirm_maxsz)
372#define NFS4_dec_open_confirm_sz \
373 (compound_decode_hdr_maxsz + \
374 decode_putfh_maxsz + \
375 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400377 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400379 encode_open_maxsz + \
380 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400382 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400384 decode_open_maxsz + \
385 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#define NFS4_enc_open_downgrade_sz \
387 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400388 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400389 encode_putfh_maxsz + \
390 encode_open_downgrade_maxsz + \
391 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#define NFS4_dec_open_downgrade_sz \
393 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400394 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400395 decode_putfh_maxsz + \
396 decode_open_downgrade_maxsz + \
397 decode_getattr_maxsz)
398#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400399 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400400 encode_putfh_maxsz + \
401 encode_close_maxsz + \
402 encode_getattr_maxsz)
403#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400404 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400405 decode_putfh_maxsz + \
406 decode_close_maxsz + \
407 decode_getattr_maxsz)
408#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400409 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400410 encode_putfh_maxsz + \
411 encode_setattr_maxsz + \
412 encode_getattr_maxsz)
413#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400414 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400415 decode_putfh_maxsz + \
416 decode_setattr_maxsz + \
417 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400419 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 encode_putfh_maxsz + \
421 encode_fsinfo_maxsz)
422#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400423 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 decode_putfh_maxsz + \
425 decode_fsinfo_maxsz)
426#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
427 encode_renew_maxsz)
428#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
429 decode_renew_maxsz)
430#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
431 encode_setclientid_maxsz)
432#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
433 decode_setclientid_maxsz)
434#define NFS4_enc_setclientid_confirm_sz \
435 (compound_encode_hdr_maxsz + \
436 encode_setclientid_confirm_maxsz + \
437 encode_putrootfh_maxsz + \
438 encode_fsinfo_maxsz)
439#define NFS4_dec_setclientid_confirm_sz \
440 (compound_decode_hdr_maxsz + \
441 decode_setclientid_confirm_maxsz + \
442 decode_putrootfh_maxsz + \
443 decode_fsinfo_maxsz)
444#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400445 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400447 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400449 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400451 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400453 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400455 encode_lockt_maxsz)
456#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400457 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400458 decode_putfh_maxsz + \
459 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400461 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400463 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400465 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400467 decode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400469 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400471 encode_access_maxsz + \
472 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400474 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400476 decode_access_maxsz + \
477 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400479 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 encode_putfh_maxsz + \
481 encode_getattr_maxsz)
482#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400483 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 decode_putfh_maxsz + \
485 decode_getattr_maxsz)
486#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400487 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 encode_putfh_maxsz + \
489 encode_lookup_maxsz + \
490 encode_getattr_maxsz + \
491 encode_getfh_maxsz)
492#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400493 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400495 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 decode_getattr_maxsz + \
497 decode_getfh_maxsz)
498#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400499 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 encode_putrootfh_maxsz + \
501 encode_getattr_maxsz + \
502 encode_getfh_maxsz)
503#define NFS4_dec_lookup_root_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_putrootfh_maxsz + \
506 decode_getattr_maxsz + \
507 decode_getfh_maxsz)
508#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400509 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 encode_putfh_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400511 encode_remove_maxsz + \
512 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400514 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 decode_putfh_maxsz + \
Benny Halevy6ce18392009-04-01 09:22:06 -0400516 decode_remove_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400517 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400519 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 encode_putfh_maxsz + \
521 encode_savefh_maxsz + \
522 encode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400523 encode_rename_maxsz + \
524 encode_getattr_maxsz + \
525 encode_restorefh_maxsz + \
526 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400528 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 decode_putfh_maxsz + \
530 decode_savefh_maxsz + \
531 decode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400532 decode_rename_maxsz + \
533 decode_getattr_maxsz + \
534 decode_restorefh_maxsz + \
535 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400537 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 encode_putfh_maxsz + \
539 encode_savefh_maxsz + \
540 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400541 encode_link_maxsz + \
542 decode_getattr_maxsz + \
543 encode_restorefh_maxsz + \
544 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#define NFS4_dec_link_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 + \
548 decode_savefh_maxsz + \
549 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400550 decode_link_maxsz + \
551 decode_getattr_maxsz + \
552 decode_restorefh_maxsz + \
553 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400555 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 encode_putfh_maxsz + \
557 encode_symlink_maxsz + \
558 encode_getattr_maxsz + \
559 encode_getfh_maxsz)
560#define NFS4_dec_symlink_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 + \
563 decode_symlink_maxsz + \
564 decode_getattr_maxsz + \
565 decode_getfh_maxsz)
566#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400567 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 encode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400569 encode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400571 encode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 encode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400573 encode_restorefh_maxsz + \
574 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400576 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 decode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400578 decode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400580 decode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 decode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400582 decode_restorefh_maxsz + \
583 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400585 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 encode_putfh_maxsz + \
587 encode_getattr_maxsz)
588#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400589 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 decode_putfh_maxsz + \
591 decode_getattr_maxsz)
592#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400593 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400595 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400597 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400599 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400601 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800602 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 encode_getattr_maxsz)
604#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400605 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800606 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 decode_getattr_maxsz)
608#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400609 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100611 encode_delegreturn_maxsz + \
612 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400614 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100615 decode_delegreturn_maxsz + \
616 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000617#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400618 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000619 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400620 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000621#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400622 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000623 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400624 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000625#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400626 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000627 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400628 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000629#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400630 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000631 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400632 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400633#define NFS4_enc_fs_locations_sz \
634 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400635 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400636 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400637 encode_lookup_maxsz + \
638 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400639#define NFS4_dec_fs_locations_sz \
640 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400641 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400642 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400643 decode_lookup_maxsz + \
644 decode_fs_locations_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400645#if defined(CONFIG_NFS_V4_1)
646#define NFS4_enc_exchange_id_sz \
647 (compound_encode_hdr_maxsz + \
648 encode_exchange_id_maxsz)
649#define NFS4_dec_exchange_id_sz \
650 (compound_decode_hdr_maxsz + \
651 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400652#define NFS4_enc_create_session_sz \
653 (compound_encode_hdr_maxsz + \
654 encode_create_session_maxsz)
655#define NFS4_dec_create_session_sz \
656 (compound_decode_hdr_maxsz + \
657 decode_create_session_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400658#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
659 encode_sequence_maxsz + \
660 encode_putrootfh_maxsz + \
661 encode_fsinfo_maxsz)
662#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
663 decode_sequence_maxsz + \
664 decode_putrootfh_maxsz + \
665 decode_fsinfo_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400666#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Trond Myklebustbca79472009-03-11 14:10:26 -0400668static const umode_t nfs_type2fmt[] = {
669 [NF4BAD] = 0,
670 [NF4REG] = S_IFREG,
671 [NF4DIR] = S_IFDIR,
672 [NF4BLK] = S_IFBLK,
673 [NF4CHR] = S_IFCHR,
674 [NF4LNK] = S_IFLNK,
675 [NF4SOCK] = S_IFSOCK,
676 [NF4FIFO] = S_IFIFO,
677 [NF4ATTRDIR] = 0,
678 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679};
680
681struct compound_hdr {
682 int32_t status;
683 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500684 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 uint32_t taglen;
686 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400687 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400688 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689};
690
691/*
692 * START OF "GENERIC" ENCODE ROUTINES.
693 * These may look a little ugly since they are imported from a "generic"
694 * set of XDR encode/decode routines which are intended to be shared by
695 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
696 *
697 * If the pain of reading these is too great, it should be a straightforward
698 * task to translate them into Linux-specific versions which are more
699 * consistent with the style used in NFSv2/v3...
700 */
701#define WRITE32(n) *p++ = htonl(n)
702#define WRITE64(n) do { \
703 *p++ = htonl((uint32_t)((n) >> 32)); \
704 *p++ = htonl((uint32_t)(n)); \
705} while (0)
706#define WRITEMEM(ptr,nbytes) do { \
707 p = xdr_encode_opaque_fixed(p, ptr, nbytes); \
708} while (0)
709
710#define RESERVE_SPACE(nbytes) do { \
711 p = xdr_reserve_space(xdr, nbytes); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 BUG_ON(!p); \
713} while (0)
714
715static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
716{
Al Viro8687b632006-10-19 23:28:48 -0700717 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 p = xdr_reserve_space(xdr, 4 + len);
720 BUG_ON(p == NULL);
721 xdr_encode_opaque(p, str, len);
722}
723
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400724static void encode_compound_hdr(struct xdr_stream *xdr,
725 struct rpc_rqst *req,
726 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Al Viro8687b632006-10-19 23:28:48 -0700728 __be32 *p;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400729 struct rpc_auth *auth = req->rq_task->tk_msg.rpc_cred->cr_auth;
730
731 /* initialize running count of expected bytes in reply.
732 * NOTE: the replied tag SHOULD be the same is the one sent,
733 * but this is not required as a MUST for the server to do so. */
734 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag);
737 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
738 RESERVE_SPACE(12+(XDR_QUADLEN(hdr->taglen)<<2));
739 WRITE32(hdr->taglen);
740 WRITEMEM(hdr->tag, hdr->taglen);
Benny Halevy66cc0422009-04-01 09:22:10 -0400741 WRITE32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500742 hdr->nops_p = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 WRITE32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500744}
745
746static void encode_nops(struct compound_hdr *hdr)
747{
Andy Adamsonfc931582009-04-01 09:22:31 -0400748 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500749 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
753{
Al Viro8687b632006-10-19 23:28:48 -0700754 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
757 BUG_ON(p == NULL);
758 xdr_encode_opaque_fixed(p, verf->data, NFS4_VERIFIER_SIZE);
759}
760
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500761static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 char owner_name[IDMAP_NAMESZ];
764 char owner_group[IDMAP_NAMESZ];
765 int owner_namelen = 0;
766 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700767 __be32 *p;
768 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int len;
770 uint32_t bmval0 = 0;
771 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /*
774 * We reserve enough space to write the entire attribute buffer at once.
775 * In the worst-case, this would be
776 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
777 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000778 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
780 len = 16;
781
782 /* Sigh */
783 if (iap->ia_valid & ATTR_SIZE)
784 len += 8;
785 if (iap->ia_valid & ATTR_MODE)
786 len += 4;
787 if (iap->ia_valid & ATTR_UID) {
David Howells7539bba2006-08-22 20:06:09 -0400788 owner_namelen = nfs_map_uid_to_name(server->nfs_client, iap->ia_uid, owner_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400790 dprintk("nfs: couldn't resolve uid %d to string\n",
791 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* XXX */
793 strcpy(owner_name, "nobody");
794 owner_namelen = sizeof("nobody") - 1;
795 /* goto out; */
796 }
797 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
798 }
799 if (iap->ia_valid & ATTR_GID) {
David Howells7539bba2006-08-22 20:06:09 -0400800 owner_grouplen = nfs_map_gid_to_group(server->nfs_client, iap->ia_gid, owner_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400802 dprintk("nfs: couldn't resolve gid %d to string\n",
803 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 strcpy(owner_group, "nobody");
805 owner_grouplen = sizeof("nobody") - 1;
806 /* goto out; */
807 }
808 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
809 }
810 if (iap->ia_valid & ATTR_ATIME_SET)
811 len += 16;
812 else if (iap->ia_valid & ATTR_ATIME)
813 len += 4;
814 if (iap->ia_valid & ATTR_MTIME_SET)
815 len += 16;
816 else if (iap->ia_valid & ATTR_MTIME)
817 len += 4;
818 RESERVE_SPACE(len);
819
820 /*
821 * We write the bitmap length now, but leave the bitmap and the attribute
822 * buffer length to be backfilled at the end of this routine.
823 */
824 WRITE32(2);
825 q = p;
826 p += 3;
827
828 if (iap->ia_valid & ATTR_SIZE) {
829 bmval0 |= FATTR4_WORD0_SIZE;
830 WRITE64(iap->ia_size);
831 }
832 if (iap->ia_valid & ATTR_MODE) {
833 bmval1 |= FATTR4_WORD1_MODE;
Trond Myklebustcf3fff52006-01-03 09:55:53 +0100834 WRITE32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 if (iap->ia_valid & ATTR_UID) {
837 bmval1 |= FATTR4_WORD1_OWNER;
838 WRITE32(owner_namelen);
839 WRITEMEM(owner_name, owner_namelen);
840 }
841 if (iap->ia_valid & ATTR_GID) {
842 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
843 WRITE32(owner_grouplen);
844 WRITEMEM(owner_group, owner_grouplen);
845 }
846 if (iap->ia_valid & ATTR_ATIME_SET) {
847 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
848 WRITE32(NFS4_SET_TO_CLIENT_TIME);
849 WRITE32(0);
850 WRITE32(iap->ia_mtime.tv_sec);
851 WRITE32(iap->ia_mtime.tv_nsec);
852 }
853 else if (iap->ia_valid & ATTR_ATIME) {
854 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
855 WRITE32(NFS4_SET_TO_SERVER_TIME);
856 }
857 if (iap->ia_valid & ATTR_MTIME_SET) {
858 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
859 WRITE32(NFS4_SET_TO_CLIENT_TIME);
860 WRITE32(0);
861 WRITE32(iap->ia_mtime.tv_sec);
862 WRITE32(iap->ia_mtime.tv_nsec);
863 }
864 else if (iap->ia_valid & ATTR_MTIME) {
865 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
866 WRITE32(NFS4_SET_TO_SERVER_TIME);
867 }
Andy Adamson6c0195a2008-12-23 16:06:15 -0500868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Now we backfill the bitmap and the attribute buffer length.
871 */
872 if (len != ((char *)p - (char *)q) + 4) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400873 printk(KERN_ERR "nfs: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 len, ((char *)p - (char *)q) + 4);
875 BUG();
876 }
877 len = (char *)p - (char *)q - 12;
878 *q++ = htonl(bmval0);
879 *q++ = htonl(bmval1);
880 *q++ = htonl(len);
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500885static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Al Viro8687b632006-10-19 23:28:48 -0700887 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 RESERVE_SPACE(8);
890 WRITE32(OP_ACCESS);
891 WRITE32(access);
Andy Adamsond0179312008-12-23 16:06:17 -0500892 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400893 hdr->replen += decode_access_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500896static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Al Viro8687b632006-10-19 23:28:48 -0700898 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Trond Myklebust8ae20ab2007-05-14 16:50:45 -0400900 RESERVE_SPACE(8+NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 WRITE32(OP_CLOSE);
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700902 WRITE32(arg->seqid->sequence->counter);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -0400903 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -0500904 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400905 hdr->replen += decode_close_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500908static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Al Viro8687b632006-10-19 23:28:48 -0700910 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500911
Andy Adamson05d564f2008-12-23 16:06:15 -0500912 RESERVE_SPACE(16);
913 WRITE32(OP_COMMIT);
914 WRITE64(args->offset);
915 WRITE32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -0500916 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400917 hdr->replen += decode_commit_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500920static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Al Viro8687b632006-10-19 23:28:48 -0700922 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 RESERVE_SPACE(8);
925 WRITE32(OP_CREATE);
926 WRITE32(create->ftype);
927
928 switch (create->ftype) {
929 case NF4LNK:
Chuck Lever94a6d752006-08-22 20:06:23 -0400930 RESERVE_SPACE(4);
931 WRITE32(create->u.symlink.len);
932 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 break;
934
935 case NF4BLK: case NF4CHR:
936 RESERVE_SPACE(8);
937 WRITE32(create->u.device.specdata1);
938 WRITE32(create->u.device.specdata2);
939 break;
940
941 default:
942 break;
943 }
944
945 RESERVE_SPACE(4 + create->name->len);
946 WRITE32(create->name->len);
947 WRITEMEM(create->name->name, create->name->len);
Andy Adamsond0179312008-12-23 16:06:17 -0500948 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400949 hdr->replen += decode_create_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500951 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500954static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Andy Adamson05d564f2008-12-23 16:06:15 -0500956 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Andy Adamson05d564f2008-12-23 16:06:15 -0500958 RESERVE_SPACE(12);
959 WRITE32(OP_GETATTR);
960 WRITE32(1);
961 WRITE32(bitmap);
Andy Adamsond0179312008-12-23 16:06:17 -0500962 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400963 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500966static 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 -0700967{
Andy Adamson05d564f2008-12-23 16:06:15 -0500968 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Andy Adamson05d564f2008-12-23 16:06:15 -0500970 RESERVE_SPACE(16);
971 WRITE32(OP_GETATTR);
972 WRITE32(2);
973 WRITE32(bm0);
974 WRITE32(bm1);
Andy Adamsond0179312008-12-23 16:06:17 -0500975 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400976 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500979static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500981 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
982 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500985static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500987 encode_getattr_two(xdr, bitmask[0] & nfs4_fsinfo_bitmap[0],
988 bitmask[1] & nfs4_fsinfo_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500991static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -0400992{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500993 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
994 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -0400995}
996
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500997static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Al Viro8687b632006-10-19 23:28:48 -0700999 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 RESERVE_SPACE(4);
1002 WRITE32(OP_GETFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001003 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001004 hdr->replen += decode_getfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001007static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Al Viro8687b632006-10-19 23:28:48 -07001009 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 RESERVE_SPACE(8 + name->len);
1012 WRITE32(OP_LINK);
1013 WRITE32(name->len);
1014 WRITEMEM(name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001015 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001016 hdr->replen += decode_link_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001019static inline int nfs4_lock_type(struct file_lock *fl, int block)
1020{
1021 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
1022 return block ? NFS4_READW_LT : NFS4_READ_LT;
1023 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1024}
1025
1026static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1027{
1028 if (fl->fl_end == OFFSET_MAX)
1029 return ~(uint64_t)0;
1030 return fl->fl_end - fl->fl_start + 1;
1031}
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/*
1034 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1035 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1036 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001037static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Al Viro8687b632006-10-19 23:28:48 -07001039 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 RESERVE_SPACE(32);
1042 WRITE32(OP_LOCK);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001043 WRITE32(nfs4_lock_type(args->fl, args->block));
1044 WRITE32(args->reclaim);
1045 WRITE64(args->fl->fl_start);
1046 WRITE64(nfs4_lock_length(args->fl));
1047 WRITE32(args->new_lock_owner);
1048 if (args->new_lock_owner){
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001049 RESERVE_SPACE(4+NFS4_STATEID_SIZE+32);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001050 WRITE32(args->open_seqid->sequence->counter);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001051 WRITEMEM(args->open_stateid->data, NFS4_STATEID_SIZE);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001052 WRITE32(args->lock_seqid->sequence->counter);
1053 WRITE64(args->lock_owner.clientid);
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001054 WRITE32(16);
1055 WRITEMEM("lock id:", 8);
1056 WRITE64(args->lock_owner.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 else {
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001059 RESERVE_SPACE(NFS4_STATEID_SIZE+4);
1060 WRITEMEM(args->lock_stateid->data, NFS4_STATEID_SIZE);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001061 WRITE32(args->lock_seqid->sequence->counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
Andy Adamsond0179312008-12-23 16:06:17 -05001063 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001064 hdr->replen += decode_lock_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001067static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Al Viro8687b632006-10-19 23:28:48 -07001069 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001071 RESERVE_SPACE(52);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 WRITE32(OP_LOCKT);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001073 WRITE32(nfs4_lock_type(args->fl, 0));
1074 WRITE64(args->fl->fl_start);
1075 WRITE64(nfs4_lock_length(args->fl));
1076 WRITE64(args->lock_owner.clientid);
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001077 WRITE32(16);
1078 WRITEMEM("lock id:", 8);
1079 WRITE64(args->lock_owner.id);
Andy Adamsond0179312008-12-23 16:06:17 -05001080 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001081 hdr->replen += decode_lockt_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001084static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Al Viro8687b632006-10-19 23:28:48 -07001086 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001088 RESERVE_SPACE(12+NFS4_STATEID_SIZE+16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 WRITE32(OP_LOCKU);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001090 WRITE32(nfs4_lock_type(args->fl, 0));
1091 WRITE32(args->seqid->sequence->counter);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001092 WRITEMEM(args->stateid->data, NFS4_STATEID_SIZE);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001093 WRITE64(args->fl->fl_start);
1094 WRITE64(nfs4_lock_length(args->fl));
Andy Adamsond0179312008-12-23 16:06:17 -05001095 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001096 hdr->replen += decode_locku_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001099static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 int len = name->len;
Al Viro8687b632006-10-19 23:28:48 -07001102 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 RESERVE_SPACE(8 + len);
1105 WRITE32(OP_LOOKUP);
1106 WRITE32(len);
1107 WRITEMEM(name->name, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001108 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001109 hdr->replen += decode_lookup_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001112static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Al Viro8687b632006-10-19 23:28:48 -07001114 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 RESERVE_SPACE(8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001117 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001118 case FMODE_READ:
1119 WRITE32(NFS4_SHARE_ACCESS_READ);
1120 break;
1121 case FMODE_WRITE:
1122 WRITE32(NFS4_SHARE_ACCESS_WRITE);
1123 break;
1124 case FMODE_READ|FMODE_WRITE:
1125 WRITE32(NFS4_SHARE_ACCESS_BOTH);
1126 break;
1127 default:
1128 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
1130 WRITE32(0); /* for linux, share_deny = 0 always */
1131}
1132
1133static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1134{
Al Viro8687b632006-10-19 23:28:48 -07001135 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /*
1137 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1138 * owner 4 = 32
1139 */
1140 RESERVE_SPACE(8);
1141 WRITE32(OP_OPEN);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001142 WRITE32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001143 encode_share_access(xdr, arg->fmode);
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001144 RESERVE_SPACE(28);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 WRITE64(arg->clientid);
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001146 WRITE32(16);
1147 WRITEMEM("open id:", 8);
1148 WRITE64(arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1152{
Al Viro8687b632006-10-19 23:28:48 -07001153 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 RESERVE_SPACE(4);
1156 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001157 case 0:
1158 WRITE32(NFS4_CREATE_UNCHECKED);
1159 encode_attrs(xdr, arg->u.attrs, arg->server);
1160 break;
1161 default:
1162 WRITE32(NFS4_CREATE_EXCLUSIVE);
1163 encode_nfs4_verifier(xdr, &arg->u.verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165}
1166
1167static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1168{
Al Viro8687b632006-10-19 23:28:48 -07001169 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 RESERVE_SPACE(4);
1172 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001173 case 0:
1174 WRITE32(NFS4_OPEN_NOCREATE);
1175 break;
1176 default:
1177 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
1178 WRITE32(NFS4_OPEN_CREATE);
1179 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181}
1182
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001183static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Al Viro8687b632006-10-19 23:28:48 -07001185 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 RESERVE_SPACE(4);
1188 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001189 case 0:
1190 WRITE32(NFS4_OPEN_DELEGATE_NONE);
1191 break;
1192 case FMODE_READ:
1193 WRITE32(NFS4_OPEN_DELEGATE_READ);
1194 break;
1195 case FMODE_WRITE|FMODE_READ:
1196 WRITE32(NFS4_OPEN_DELEGATE_WRITE);
1197 break;
1198 default:
1199 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201}
1202
1203static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1204{
Al Viro8687b632006-10-19 23:28:48 -07001205 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 RESERVE_SPACE(4);
1208 WRITE32(NFS4_OPEN_CLAIM_NULL);
1209 encode_string(xdr, name->len, name->name);
1210}
1211
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001212static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Al Viro8687b632006-10-19 23:28:48 -07001214 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 RESERVE_SPACE(4);
1217 WRITE32(NFS4_OPEN_CLAIM_PREVIOUS);
1218 encode_delegation_type(xdr, type);
1219}
1220
1221static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1222{
Al Viro8687b632006-10-19 23:28:48 -07001223 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001225 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 WRITE32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001227 WRITEMEM(stateid->data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 encode_string(xdr, name->len, name->name);
1229}
1230
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001231static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
1233 encode_openhdr(xdr, arg);
1234 encode_opentype(xdr, arg);
1235 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001236 case NFS4_OPEN_CLAIM_NULL:
1237 encode_claim_null(xdr, arg->name);
1238 break;
1239 case NFS4_OPEN_CLAIM_PREVIOUS:
1240 encode_claim_previous(xdr, arg->u.delegation_type);
1241 break;
1242 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1243 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1244 break;
1245 default:
1246 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Andy Adamsond0179312008-12-23 16:06:17 -05001248 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001249 hdr->replen += decode_open_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001252static 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 -07001253{
Al Viro8687b632006-10-19 23:28:48 -07001254 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001256 RESERVE_SPACE(4+NFS4_STATEID_SIZE+4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 WRITE32(OP_OPEN_CONFIRM);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001258 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001259 WRITE32(arg->seqid->sequence->counter);
Andy Adamsond0179312008-12-23 16:06:17 -05001260 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001261 hdr->replen += decode_open_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001264static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Al Viro8687b632006-10-19 23:28:48 -07001266 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001268 RESERVE_SPACE(4+NFS4_STATEID_SIZE+4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 WRITE32(OP_OPEN_DOWNGRADE);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001270 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001271 WRITE32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001272 encode_share_access(xdr, arg->fmode);
Andy Adamsond0179312008-12-23 16:06:17 -05001273 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001274 hdr->replen += decode_open_downgrade_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001277static void
Andy Adamsond0179312008-12-23 16:06:17 -05001278encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 int len = fh->size;
Al Viro8687b632006-10-19 23:28:48 -07001281 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 RESERVE_SPACE(8 + len);
1284 WRITE32(OP_PUTFH);
1285 WRITE32(len);
1286 WRITEMEM(fh->data, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001287 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001288 hdr->replen += decode_putfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001291static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Andy Adamson05d564f2008-12-23 16:06:15 -05001293 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001294
Andy Adamson05d564f2008-12-23 16:06:15 -05001295 RESERVE_SPACE(4);
1296 WRITE32(OP_PUTROOTFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001297 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001298 hdr->replen += decode_putrootfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301static void encode_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx)
1302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 nfs4_stateid stateid;
Al Viro8687b632006-10-19 23:28:48 -07001304 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001306 RESERVE_SPACE(NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (ctx->state != NULL) {
1308 nfs4_copy_stateid(&stateid, ctx->state, ctx->lockowner);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001309 WRITEMEM(stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 } else
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001311 WRITEMEM(zero_stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001314static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Al Viro8687b632006-10-19 23:28:48 -07001316 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 RESERVE_SPACE(4);
1319 WRITE32(OP_READ);
1320
1321 encode_stateid(xdr, args->context);
1322
1323 RESERVE_SPACE(12);
1324 WRITE64(args->offset);
1325 WRITE32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001326 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001327 hdr->replen += decode_read_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001330static 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 -07001331{
Manoj Naik97d312d2005-06-22 17:16:39 +00001332 uint32_t attrs[2] = {
1333 FATTR4_WORD0_RDATTR_ERROR|FATTR4_WORD0_FILEID,
1334 FATTR4_WORD1_MOUNTED_ON_FILEID,
1335 };
Al Viro8687b632006-10-19 23:28:48 -07001336 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001338 RESERVE_SPACE(12+NFS4_VERIFIER_SIZE+20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 WRITE32(OP_READDIR);
1340 WRITE64(readdir->cookie);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001341 WRITEMEM(readdir->verifier.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 WRITE32(readdir->count >> 1); /* We're not doing readdirplus */
1343 WRITE32(readdir->count);
1344 WRITE32(2);
Manoj Naik97d312d2005-06-22 17:16:39 +00001345 /* Switch to mounted_on_fileid if the server supports it */
1346 if (readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
1347 attrs[0] &= ~FATTR4_WORD0_FILEID;
1348 else
1349 attrs[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
1350 WRITE32(attrs[0] & readdir->bitmask[0]);
1351 WRITE32(attrs[1] & readdir->bitmask[1]);
Andy Adamsond0179312008-12-23 16:06:17 -05001352 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001353 hdr->replen += decode_readdir_maxsz;
Fred Isaman44109242008-04-02 15:21:15 +03001354 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1355 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001356 (unsigned long long)readdir->cookie,
1357 ((u32 *)readdir->verifier.data)[0],
1358 ((u32 *)readdir->verifier.data)[1],
1359 attrs[0] & readdir->bitmask[0],
1360 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001363static 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 -07001364{
Al Viro8687b632006-10-19 23:28:48 -07001365 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 RESERVE_SPACE(4);
1368 WRITE32(OP_READLINK);
Andy Adamsond0179312008-12-23 16:06:17 -05001369 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001370 hdr->replen += decode_readlink_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001373static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Al Viro8687b632006-10-19 23:28:48 -07001375 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 RESERVE_SPACE(8 + name->len);
1378 WRITE32(OP_REMOVE);
1379 WRITE32(name->len);
1380 WRITEMEM(name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001381 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001382 hdr->replen += decode_remove_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001385static 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 -07001386{
Al Viro8687b632006-10-19 23:28:48 -07001387 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 RESERVE_SPACE(8 + oldname->len);
1390 WRITE32(OP_RENAME);
1391 WRITE32(oldname->len);
1392 WRITEMEM(oldname->name, oldname->len);
Andy Adamson6c0195a2008-12-23 16:06:15 -05001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 RESERVE_SPACE(4 + newname->len);
1395 WRITE32(newname->len);
1396 WRITEMEM(newname->name, newname->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001397 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001398 hdr->replen += decode_rename_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001401static void encode_renew(struct xdr_stream *xdr, const struct nfs_client *client_stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Al Viro8687b632006-10-19 23:28:48 -07001403 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 RESERVE_SPACE(12);
1406 WRITE32(OP_RENEW);
1407 WRITE64(client_stateid->cl_clientid);
Andy Adamsond0179312008-12-23 16:06:17 -05001408 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001409 hdr->replen += decode_renew_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001412static void
Andy Adamsond0179312008-12-23 16:06:17 -05001413encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001414{
Al Viro8687b632006-10-19 23:28:48 -07001415 __be32 *p;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001416
1417 RESERVE_SPACE(4);
1418 WRITE32(OP_RESTOREFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001419 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001420 hdr->replen += decode_restorefh_maxsz;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001421}
1422
1423static int
Andy Adamsond0179312008-12-23 16:06:17 -05001424encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001425{
Al Viro8687b632006-10-19 23:28:48 -07001426 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001427
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001428 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001429 WRITE32(OP_SETATTR);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001430 WRITEMEM(zero_stateid.data, NFS4_STATEID_SIZE);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001431 RESERVE_SPACE(2*4);
1432 WRITE32(1);
1433 WRITE32(FATTR4_WORD0_ACL);
1434 if (arg->acl_len % 4)
1435 return -EINVAL;
1436 RESERVE_SPACE(4);
1437 WRITE32(arg->acl_len);
1438 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05001439 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001440 hdr->replen += decode_setacl_maxsz;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001441 return 0;
1442}
1443
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001444static void
Andy Adamsond0179312008-12-23 16:06:17 -05001445encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Al Viro8687b632006-10-19 23:28:48 -07001447 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 RESERVE_SPACE(4);
1450 WRITE32(OP_SAVEFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001451 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001452 hdr->replen += decode_savefh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001455static 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 -07001456{
Al Viro8687b632006-10-19 23:28:48 -07001457 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001458
Andy Adamson05d564f2008-12-23 16:06:15 -05001459 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
1460 WRITE32(OP_SETATTR);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001461 WRITEMEM(arg->stateid.data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001462 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001463 hdr->replen += decode_setattr_maxsz;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001464 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001467static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Al Viro8687b632006-10-19 23:28:48 -07001469 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001471 RESERVE_SPACE(4 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 WRITE32(OP_SETCLIENTID);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001473 WRITEMEM(setclientid->sc_verifier->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
1476 RESERVE_SPACE(4);
1477 WRITE32(setclientid->sc_prog);
1478 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1479 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
1480 RESERVE_SPACE(4);
1481 WRITE32(setclientid->sc_cb_ident);
Andy Adamsond0179312008-12-23 16:06:17 -05001482 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001483 hdr->replen += decode_setclientid_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001486static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs_client *client_state, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Andy Adamson05d564f2008-12-23 16:06:15 -05001488 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Andy Adamson05d564f2008-12-23 16:06:15 -05001490 RESERVE_SPACE(12 + NFS4_VERIFIER_SIZE);
1491 WRITE32(OP_SETCLIENTID_CONFIRM);
1492 WRITE64(client_state->cl_clientid);
1493 WRITEMEM(client_state->cl_confirm.data, NFS4_VERIFIER_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001494 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001495 hdr->replen += decode_setclientid_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001498static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Al Viro8687b632006-10-19 23:28:48 -07001500 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 RESERVE_SPACE(4);
1503 WRITE32(OP_WRITE);
1504
1505 encode_stateid(xdr, args->context);
1506
1507 RESERVE_SPACE(16);
1508 WRITE64(args->offset);
1509 WRITE32(args->stable);
1510 WRITE32(args->count);
1511
1512 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001513 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001514 hdr->replen += decode_write_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001517static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Al Viro8687b632006-10-19 23:28:48 -07001519 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001521 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 WRITE32(OP_DELEGRETURN);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04001524 WRITEMEM(stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001525 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001526 hdr->replen += decode_delegreturn_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001528
Benny Halevy99fe60d2009-04-01 09:22:29 -04001529#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001530/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001531static void encode_exchange_id(struct xdr_stream *xdr,
1532 struct nfs41_exchange_id_args *args,
1533 struct compound_hdr *hdr)
1534{
1535 __be32 *p;
1536
1537 RESERVE_SPACE(4 + sizeof(args->verifier->data));
1538 WRITE32(OP_EXCHANGE_ID);
1539 WRITEMEM(args->verifier->data, sizeof(args->verifier->data));
1540
1541 encode_string(xdr, args->id_len, args->id);
1542
1543 RESERVE_SPACE(12);
1544 WRITE32(args->flags);
1545 WRITE32(0); /* zero length state_protect4_a */
1546 WRITE32(0); /* zero length implementation id array */
1547 hdr->nops++;
1548 hdr->replen += decode_exchange_id_maxsz;
1549}
Andy Adamsonfc931582009-04-01 09:22:31 -04001550
1551static void encode_create_session(struct xdr_stream *xdr,
1552 struct nfs41_create_session_args *args,
1553 struct compound_hdr *hdr)
1554{
1555 __be32 *p;
1556 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1557 uint32_t len;
1558 struct nfs_client *clp = args->client;
1559
1560 RESERVE_SPACE(4);
1561 WRITE32(OP_CREATE_SESSION);
1562
1563 RESERVE_SPACE(8);
1564 WRITE64(clp->cl_ex_clid);
1565
1566 RESERVE_SPACE(8);
1567 WRITE32(clp->cl_seqid); /*Sequence id */
1568 WRITE32(args->flags); /*flags */
1569
1570 RESERVE_SPACE(2*28); /* 2 channel_attrs */
1571 /* Fore Channel */
1572 WRITE32(args->fc_attrs.headerpadsz); /* header padding size */
1573 WRITE32(args->fc_attrs.max_rqst_sz); /* max req size */
1574 WRITE32(args->fc_attrs.max_resp_sz); /* max resp size */
1575 WRITE32(args->fc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1576 WRITE32(args->fc_attrs.max_ops); /* max operations */
1577 WRITE32(args->fc_attrs.max_reqs); /* max requests */
1578 WRITE32(0); /* rdmachannel_attrs */
1579
1580 /* Back Channel */
1581 WRITE32(args->fc_attrs.headerpadsz); /* header padding size */
1582 WRITE32(args->bc_attrs.max_rqst_sz); /* max req size */
1583 WRITE32(args->bc_attrs.max_resp_sz); /* max resp size */
1584 WRITE32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1585 WRITE32(args->bc_attrs.max_ops); /* max operations */
1586 WRITE32(args->bc_attrs.max_reqs); /* max requests */
1587 WRITE32(0); /* rdmachannel_attrs */
1588
1589 RESERVE_SPACE(4);
1590 WRITE32(args->cb_program); /* cb_program */
1591
1592 RESERVE_SPACE(4); /* # of security flavors */
1593 WRITE32(1);
1594
1595 RESERVE_SPACE(4);
1596 WRITE32(RPC_AUTH_UNIX); /* auth_sys */
1597
1598 /* authsys_parms rfc1831 */
1599 RESERVE_SPACE(4);
1600 WRITE32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
1601 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1602 clp->cl_ipaddr);
1603 RESERVE_SPACE(16 + len);
1604 WRITE32(len);
1605 WRITEMEM(machine_name, len);
1606 WRITE32(0); /* UID */
1607 WRITE32(0); /* GID */
1608 WRITE32(0); /* No more gids */
1609 hdr->nops++;
1610 hdr->replen += decode_create_session_maxsz;
1611}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001612#endif /* CONFIG_NFS_V4_1 */
1613
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001614static void encode_sequence(struct xdr_stream *xdr,
1615 const struct nfs4_sequence_args *args,
1616 struct compound_hdr *hdr)
1617{
1618#if defined(CONFIG_NFS_V4_1)
1619 struct nfs4_session *session = args->sa_session;
1620
1621 if (!session)
1622 return;
1623
1624 /* stub */
1625 hdr->nops++;
1626 hdr->replen += decode_sequence_maxsz;
1627#endif /* CONFIG_NFS_V4_1 */
1628}
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630/*
1631 * END OF "GENERIC" ENCODE ROUTINES.
1632 */
1633
Benny Halevy66cc0422009-04-01 09:22:10 -04001634static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
1635{
1636#if defined(CONFIG_NFS_V4_1)
1637 if (args->sa_session)
1638 return args->sa_session->clp->cl_minorversion;
1639#endif /* CONFIG_NFS_V4_1 */
1640 return 0;
1641}
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643/*
1644 * Encode an ACCESS request
1645 */
Al Viro8687b632006-10-19 23:28:48 -07001646static int nfs4_xdr_enc_access(struct rpc_rqst *req, __be32 *p, const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 struct xdr_stream xdr;
1649 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001650 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001654 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001655 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001656 encode_putfh(&xdr, args->fh, &hdr);
1657 encode_access(&xdr, args->access, &hdr);
1658 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001659 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
1663/*
1664 * Encode LOOKUP request
1665 */
Al Viro8687b632006-10-19 23:28:48 -07001666static int nfs4_xdr_enc_lookup(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct xdr_stream xdr;
1669 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001670 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001674 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001675 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001676 encode_putfh(&xdr, args->dir_fh, &hdr);
1677 encode_lookup(&xdr, args->name, &hdr);
1678 encode_getfh(&xdr, &hdr);
1679 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001680 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001681 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
1684/*
1685 * Encode LOOKUP_ROOT request
1686 */
Al Viro8687b632006-10-19 23:28:48 -07001687static int nfs4_xdr_enc_lookup_root(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
1689 struct xdr_stream xdr;
1690 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001691 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001695 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001696 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001697 encode_putrootfh(&xdr, &hdr);
1698 encode_getfh(&xdr, &hdr);
1699 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001700 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704/*
1705 * Encode REMOVE request
1706 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001707static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
1709 struct xdr_stream xdr;
1710 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001711 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001715 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001716 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001717 encode_putfh(&xdr, args->fh, &hdr);
1718 encode_remove(&xdr, &args->name, &hdr);
1719 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001720 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724/*
1725 * Encode RENAME request
1726 */
Al Viro8687b632006-10-19 23:28:48 -07001727static int nfs4_xdr_enc_rename(struct rpc_rqst *req, __be32 *p, const struct nfs4_rename_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 struct xdr_stream xdr;
1730 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001731 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001735 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001736 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001737 encode_putfh(&xdr, args->old_dir, &hdr);
1738 encode_savefh(&xdr, &hdr);
1739 encode_putfh(&xdr, args->new_dir, &hdr);
1740 encode_rename(&xdr, args->old_name, args->new_name, &hdr);
1741 encode_getfattr(&xdr, args->bitmask, &hdr);
1742 encode_restorefh(&xdr, &hdr);
1743 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001744 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
1748/*
1749 * Encode LINK request
1750 */
Al Viro8687b632006-10-19 23:28:48 -07001751static int nfs4_xdr_enc_link(struct rpc_rqst *req, __be32 *p, const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 struct xdr_stream xdr;
1754 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001755 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001759 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001760 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001761 encode_putfh(&xdr, args->fh, &hdr);
1762 encode_savefh(&xdr, &hdr);
1763 encode_putfh(&xdr, args->dir_fh, &hdr);
1764 encode_link(&xdr, args->name, &hdr);
1765 encode_getfattr(&xdr, args->bitmask, &hdr);
1766 encode_restorefh(&xdr, &hdr);
1767 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001768 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
1772/*
1773 * Encode CREATE request
1774 */
Al Viro8687b632006-10-19 23:28:48 -07001775static int nfs4_xdr_enc_create(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 struct xdr_stream xdr;
1778 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001779 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001783 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001784 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001785 encode_putfh(&xdr, args->dir_fh, &hdr);
1786 encode_savefh(&xdr, &hdr);
1787 encode_create(&xdr, args, &hdr);
1788 encode_getfh(&xdr, &hdr);
1789 encode_getfattr(&xdr, args->bitmask, &hdr);
1790 encode_restorefh(&xdr, &hdr);
1791 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001792 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
1796/*
1797 * Encode SYMLINK request
1798 */
Al Viro8687b632006-10-19 23:28:48 -07001799static int nfs4_xdr_enc_symlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
1801 return nfs4_xdr_enc_create(req, p, args);
1802}
1803
1804/*
1805 * Encode GETATTR request
1806 */
Al Viro8687b632006-10-19 23:28:48 -07001807static int nfs4_xdr_enc_getattr(struct rpc_rqst *req, __be32 *p, const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 struct xdr_stream xdr;
1810 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001811 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001815 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001816 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001817 encode_putfh(&xdr, args->fh, &hdr);
1818 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001819 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
1823/*
1824 * Encode a CLOSE request
1825 */
Al Viro8687b632006-10-19 23:28:48 -07001826static int nfs4_xdr_enc_close(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Andy Adamson05d564f2008-12-23 16:06:15 -05001828 struct xdr_stream xdr;
1829 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001830 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05001831 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Andy Adamson05d564f2008-12-23 16:06:15 -05001833 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001834 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001835 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001836 encode_putfh(&xdr, args->fh, &hdr);
1837 encode_close(&xdr, args, &hdr);
1838 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001839 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843/*
1844 * Encode an OPEN request
1845 */
Al Viro8687b632006-10-19 23:28:48 -07001846static int nfs4_xdr_enc_open(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
1848 struct xdr_stream xdr;
1849 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001850 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001854 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001855 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001856 encode_putfh(&xdr, args->fh, &hdr);
1857 encode_savefh(&xdr, &hdr);
1858 encode_open(&xdr, args, &hdr);
1859 encode_getfh(&xdr, &hdr);
1860 encode_getfattr(&xdr, args->bitmask, &hdr);
1861 encode_restorefh(&xdr, &hdr);
1862 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001863 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
1867/*
1868 * Encode an OPEN_CONFIRM request
1869 */
Al Viro8687b632006-10-19 23:28:48 -07001870static int nfs4_xdr_enc_open_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 struct xdr_stream xdr;
1873 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05001874 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001878 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001879 encode_putfh(&xdr, args->fh, &hdr);
1880 encode_open_confirm(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001881 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001882 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885/*
1886 * Encode an OPEN request with no attributes.
1887 */
Al Viro8687b632006-10-19 23:28:48 -07001888static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
1890 struct xdr_stream xdr;
1891 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001892 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001896 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001897 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001898 encode_putfh(&xdr, args->fh, &hdr);
1899 encode_open(&xdr, args, &hdr);
1900 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001901 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
1905/*
1906 * Encode an OPEN_DOWNGRADE request
1907 */
Al Viro8687b632006-10-19 23:28:48 -07001908static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct xdr_stream xdr;
1911 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001912 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001916 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001917 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001918 encode_putfh(&xdr, args->fh, &hdr);
1919 encode_open_downgrade(&xdr, args, &hdr);
1920 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001921 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
1925/*
1926 * Encode a LOCK request
1927 */
Al Viro8687b632006-10-19 23:28:48 -07001928static int nfs4_xdr_enc_lock(struct rpc_rqst *req, __be32 *p, struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
1930 struct xdr_stream xdr;
1931 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001932 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001936 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001937 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001938 encode_putfh(&xdr, args->fh, &hdr);
1939 encode_lock(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001940 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
1944/*
1945 * Encode a LOCKT request
1946 */
Al Viro8687b632006-10-19 23:28:48 -07001947static int nfs4_xdr_enc_lockt(struct rpc_rqst *req, __be32 *p, struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 struct xdr_stream xdr;
1950 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001951 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001955 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001956 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001957 encode_putfh(&xdr, args->fh, &hdr);
1958 encode_lockt(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001959 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961}
1962
1963/*
1964 * Encode a LOCKU request
1965 */
Al Viro8687b632006-10-19 23:28:48 -07001966static int nfs4_xdr_enc_locku(struct rpc_rqst *req, __be32 *p, struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 struct xdr_stream xdr;
1969 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001970 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001974 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001975 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001976 encode_putfh(&xdr, args->fh, &hdr);
1977 encode_locku(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001978 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001979 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981
1982/*
1983 * Encode a READLINK request
1984 */
Al Viro8687b632006-10-19 23:28:48 -07001985static int nfs4_xdr_enc_readlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 struct xdr_stream xdr;
1988 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001989 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001993 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001994 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001995 encode_putfh(&xdr, args->fh, &hdr);
1996 encode_readlink(&xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04001997
Benny Halevy28f56692009-04-01 09:22:09 -04001998 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04001999 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002000 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002001 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002}
2003
2004/*
2005 * Encode a READDIR request
2006 */
Al Viro8687b632006-10-19 23:28:48 -07002007static int nfs4_xdr_enc_readdir(struct rpc_rqst *req, __be32 *p, const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 struct xdr_stream xdr;
2010 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002011 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002015 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002016 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002017 encode_putfh(&xdr, args->fh, &hdr);
2018 encode_readdir(&xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002019
Benny Halevy28f56692009-04-01 09:22:09 -04002020 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002021 args->pgbase, args->count);
2022 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002023 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002024 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002025 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
2029/*
2030 * Encode a READ request
2031 */
Al Viro8687b632006-10-19 23:28:48 -07002032static int nfs4_xdr_enc_read(struct rpc_rqst *req, __be32 *p, struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 struct xdr_stream xdr;
2035 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002036 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002040 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002041 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002042 encode_putfh(&xdr, args->fh, &hdr);
2043 encode_read(&xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Benny Halevy28f56692009-04-01 09:22:09 -04002045 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002047 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002048 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053 * Encode an SETATTR request
2054 */
Al Viro8687b632006-10-19 23:28:48 -07002055static int nfs4_xdr_enc_setattr(struct rpc_rqst *req, __be32 *p, struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Andy Adamson05d564f2008-12-23 16:06:15 -05002057 struct xdr_stream xdr;
2058 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002059 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002060 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Andy Adamson05d564f2008-12-23 16:06:15 -05002062 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002063 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002064 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002065 encode_putfh(&xdr, args->fh, &hdr);
2066 encode_setattr(&xdr, args, args->server, &hdr);
2067 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002068 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002069 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
2072/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002073 * Encode a GETACL request
2074 */
2075static int
Al Viro8687b632006-10-19 23:28:48 -07002076nfs4_xdr_enc_getacl(struct rpc_rqst *req, __be32 *p,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002077 struct nfs_getaclargs *args)
2078{
2079 struct xdr_stream xdr;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002080 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002081 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002082 };
Benny Halevy28f56692009-04-01 09:22:09 -04002083 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002084
2085 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002086 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002087 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002088 encode_putfh(&xdr, args->fh, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002089 replen = hdr.replen + nfs4_fattr_bitmap_maxsz + 1;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002090 encode_getattr_two(&xdr, FATTR4_WORD0_ACL, 0, &hdr);
2091
Benny Halevy28f56692009-04-01 09:22:09 -04002092 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002093 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05002094 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002095 return 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002096}
2097
2098/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 * Encode a WRITE request
2100 */
Al Viro8687b632006-10-19 23:28:48 -07002101static int nfs4_xdr_enc_write(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 struct xdr_stream xdr;
2104 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002105 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002109 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002110 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002111 encode_putfh(&xdr, args->fh, &hdr);
2112 encode_write(&xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002113 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002114 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002115 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119/*
2120 * a COMMIT request
2121 */
Al Viro8687b632006-10-19 23:28:48 -07002122static int nfs4_xdr_enc_commit(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 struct xdr_stream xdr;
2125 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002126 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002130 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002131 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002132 encode_putfh(&xdr, args->fh, &hdr);
2133 encode_commit(&xdr, args, &hdr);
2134 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002135 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139/*
2140 * FSINFO request
2141 */
Al Viro8687b632006-10-19 23:28:48 -07002142static int nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, __be32 *p, struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
2144 struct xdr_stream xdr;
2145 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002146 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002150 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002151 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002152 encode_putfh(&xdr, args->fh, &hdr);
2153 encode_fsinfo(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002154 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158/*
2159 * a PATHCONF request
2160 */
Al Viro8687b632006-10-19 23:28:48 -07002161static int nfs4_xdr_enc_pathconf(struct rpc_rqst *req, __be32 *p, const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 struct xdr_stream xdr;
2164 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002165 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002169 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002170 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002171 encode_putfh(&xdr, args->fh, &hdr);
2172 encode_getattr_one(&xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2173 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002174 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
2178/*
2179 * a STATFS request
2180 */
Al Viro8687b632006-10-19 23:28:48 -07002181static int nfs4_xdr_enc_statfs(struct rpc_rqst *req, __be32 *p, const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 struct xdr_stream xdr;
2184 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002185 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002189 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002190 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002191 encode_putfh(&xdr, args->fh, &hdr);
2192 encode_getattr_two(&xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
2193 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002194 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
2197
2198/*
2199 * GETATTR_BITMAP request
2200 */
Benny Halevy43652ad2009-04-01 09:21:54 -04002201static int nfs4_xdr_enc_server_caps(struct rpc_rqst *req, __be32 *p,
2202 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 struct xdr_stream xdr;
2205 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002206 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002210 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002211 encode_sequence(&xdr, &args->seq_args, &hdr);
Benny Halevy43652ad2009-04-01 09:21:54 -04002212 encode_putfh(&xdr, args->fhandle, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002213 encode_getattr_one(&xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
2214 FATTR4_WORD0_LINK_SUPPORT|
2215 FATTR4_WORD0_SYMLINK_SUPPORT|
2216 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002217 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
2221/*
2222 * a RENEW request
2223 */
Al Viro8687b632006-10-19 23:28:48 -07002224static int nfs4_xdr_enc_renew(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 struct xdr_stream xdr;
2227 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002228 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 };
2230
2231 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002232 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002233 encode_renew(&xdr, clp, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002234 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
2238/*
2239 * a SETCLIENTID request
2240 */
Al Viro8687b632006-10-19 23:28:48 -07002241static int nfs4_xdr_enc_setclientid(struct rpc_rqst *req, __be32 *p, struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242{
2243 struct xdr_stream xdr;
2244 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002245 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 };
2247
2248 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002249 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002250 encode_setclientid(&xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002251 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
2255/*
2256 * a SETCLIENTID_CONFIRM request
2257 */
Al Viro8687b632006-10-19 23:28:48 -07002258static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 struct xdr_stream xdr;
2261 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002262 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 };
2264 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002267 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002268 encode_setclientid_confirm(&xdr, clp, &hdr);
2269 encode_putrootfh(&xdr, &hdr);
2270 encode_fsinfo(&xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002271 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275/*
2276 * DELEGRETURN request
2277 */
Al Viro8687b632006-10-19 23:28:48 -07002278static int nfs4_xdr_enc_delegreturn(struct rpc_rqst *req, __be32 *p, const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
2280 struct xdr_stream xdr;
2281 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
2285 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002286 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002287 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002288 encode_putfh(&xdr, args->fhandle, &hdr);
2289 encode_delegreturn(&xdr, args->stateid, &hdr);
2290 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002291 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
2295/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002296 * Encode FS_LOCATIONS request
2297 */
Al Viro8687b632006-10-19 23:28:48 -07002298static int nfs4_xdr_enc_fs_locations(struct rpc_rqst *req, __be32 *p, struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002299{
2300 struct xdr_stream xdr;
2301 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002302 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002303 };
Benny Halevy28f56692009-04-01 09:22:09 -04002304 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002305
2306 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002307 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002308 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002309 encode_putfh(&xdr, args->dir_fh, &hdr);
2310 encode_lookup(&xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002311 replen = hdr.replen; /* get the attribute into args->page */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002312 encode_fs_locations(&xdr, args->bitmask, &hdr);
2313
Benny Halevy28f56692009-04-01 09:22:09 -04002314 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002315 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002316 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002317 return 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002318}
2319
Benny Halevy99fe60d2009-04-01 09:22:29 -04002320#if defined(CONFIG_NFS_V4_1)
2321/*
2322 * EXCHANGE_ID request
2323 */
2324static int nfs4_xdr_enc_exchange_id(struct rpc_rqst *req, uint32_t *p,
2325 struct nfs41_exchange_id_args *args)
2326{
2327 struct xdr_stream xdr;
2328 struct compound_hdr hdr = {
2329 .minorversion = args->client->cl_minorversion,
2330 };
2331
2332 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2333 encode_compound_hdr(&xdr, req, &hdr);
2334 encode_exchange_id(&xdr, args, &hdr);
2335 encode_nops(&hdr);
2336 return 0;
2337}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002338
2339/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002340 * a CREATE_SESSION request
2341 */
2342static int nfs4_xdr_enc_create_session(struct rpc_rqst *req, uint32_t *p,
2343 struct nfs41_create_session_args *args)
2344{
2345 struct xdr_stream xdr;
2346 struct compound_hdr hdr = {
2347 .minorversion = args->client->cl_minorversion,
2348 };
2349
2350 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2351 encode_compound_hdr(&xdr, req, &hdr);
2352 encode_create_session(&xdr, args, &hdr);
2353 encode_nops(&hdr);
2354 return 0;
2355}
2356
2357/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002358 * a GET_LEASE_TIME request
2359 */
2360static int nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req, uint32_t *p,
2361 struct nfs4_get_lease_time_args *args)
2362{
2363 struct xdr_stream xdr;
2364 struct compound_hdr hdr = {
2365 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2366 };
2367 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
2368
2369 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2370 encode_compound_hdr(&xdr, req, &hdr);
2371 encode_sequence(&xdr, &args->la_seq_args, &hdr);
2372 encode_putrootfh(&xdr, &hdr);
2373 encode_fsinfo(&xdr, lease_bitmap, &hdr);
2374 encode_nops(&hdr);
2375 return 0;
2376}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002377#endif /* CONFIG_NFS_V4_1 */
2378
Trond Myklebust683b57b2006-06-09 09:34:22 -04002379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 * START OF "GENERIC" DECODE ROUTINES.
2381 * These may look a little ugly since they are imported from a "generic"
2382 * set of XDR encode/decode routines which are intended to be shared by
2383 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
2384 *
2385 * If the pain of reading these is too great, it should be a straightforward
2386 * task to translate them into Linux-specific versions which are more
2387 * consistent with the style used in NFSv2/v3...
2388 */
2389#define READ32(x) (x) = ntohl(*p++)
2390#define READ64(x) do { \
2391 (x) = (u64)ntohl(*p++) << 32; \
2392 (x) |= ntohl(*p++); \
2393} while (0)
2394#define READTIME(x) do { \
2395 p++; \
2396 (x.tv_sec) = ntohl(*p++); \
2397 (x.tv_nsec) = ntohl(*p++); \
2398} while (0)
2399#define COPYMEM(x,nbytes) do { \
2400 memcpy((x), p, nbytes); \
2401 p += XDR_QUADLEN(nbytes); \
2402} while (0)
2403
2404#define READ_BUF(nbytes) do { \
2405 p = xdr_inline_decode(xdr, nbytes); \
Chuck Levere4cc6ee2007-05-08 18:23:28 -04002406 if (unlikely(!p)) { \
Chuck Leverfe82a182007-09-11 18:01:10 -04002407 dprintk("nfs: %s: prematurely hit end of receive" \
Harvey Harrison3110ff82008-05-02 13:42:44 -07002408 " buffer\n", __func__); \
Chuck Leverfe82a182007-09-11 18:01:10 -04002409 dprintk("nfs: %s: xdr->p=%p, bytes=%u, xdr->end=%p\n", \
Harvey Harrison3110ff82008-05-02 13:42:44 -07002410 __func__, xdr->p, nbytes, xdr->end); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return -EIO; \
2412 } \
2413} while (0)
2414
Trond Myklebust683b57b2006-06-09 09:34:22 -04002415static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Al Viro8687b632006-10-19 23:28:48 -07002417 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 READ_BUF(4);
2420 READ32(*len);
2421 READ_BUF(*len);
2422 *string = (char *)p;
2423 return 0;
2424}
2425
2426static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2427{
Al Viro8687b632006-10-19 23:28:48 -07002428 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 READ_BUF(8);
2431 READ32(hdr->status);
2432 READ32(hdr->taglen);
Andy Adamson6c0195a2008-12-23 16:06:15 -05002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 READ_BUF(hdr->taglen + 4);
2435 hdr->tag = (char *)p;
2436 p += XDR_QUADLEN(hdr->taglen);
2437 READ32(hdr->nops);
Benny Halevyaadf6152008-12-23 16:06:13 -05002438 if (unlikely(hdr->nops < 1))
2439 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return 0;
2441}
2442
2443static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2444{
Al Viro8687b632006-10-19 23:28:48 -07002445 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 uint32_t opnum;
2447 int32_t nfserr;
2448
2449 READ_BUF(8);
2450 READ32(opnum);
2451 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04002452 dprintk("nfs: Server returned operation"
2453 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 opnum, expected);
2455 return -EIO;
2456 }
2457 READ32(nfserr);
2458 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03002459 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return 0;
2461}
2462
2463/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04002464static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Al Viro8687b632006-10-19 23:28:48 -07002466 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002467 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 char *str;
2469
2470 READ_BUF(12);
2471 return decode_opaque_inline(xdr, &strlen, &str);
2472}
2473
2474static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2475{
Al Viro8687b632006-10-19 23:28:48 -07002476 uint32_t bmlen;
2477 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 READ_BUF(4);
2480 READ32(bmlen);
2481
2482 bitmap[0] = bitmap[1] = 0;
2483 READ_BUF((bmlen << 2));
2484 if (bmlen > 0) {
2485 READ32(bitmap[0]);
2486 if (bmlen > 1)
2487 READ32(bitmap[1]);
2488 }
2489 return 0;
2490}
2491
Al Viro8687b632006-10-19 23:28:48 -07002492static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Al Viro8687b632006-10-19 23:28:48 -07002494 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 READ_BUF(4);
2497 READ32(*attrlen);
2498 *savep = xdr->p;
2499 return 0;
2500}
2501
2502static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
2503{
2504 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
2505 decode_attr_bitmap(xdr, bitmask);
2506 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
2507 } else
2508 bitmask[0] = bitmask[1] = 0;
Fred Isaman44109242008-04-02 15:21:15 +03002509 dprintk("%s: bitmask=%08x:%08x\n", __func__, bitmask[0], bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return 0;
2511}
2512
2513static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
2514{
Al Viro8687b632006-10-19 23:28:48 -07002515 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002516 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 *type = 0;
2519 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
2520 return -EIO;
2521 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
2522 READ_BUF(4);
2523 READ32(*type);
2524 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002525 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return -EIO;
2527 }
2528 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002529 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
Trond Myklebustbca79472009-03-11 14:10:26 -04002531 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04002532 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533}
2534
2535static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
2536{
Al Viro8687b632006-10-19 23:28:48 -07002537 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002538 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 *change = 0;
2541 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
2542 return -EIO;
2543 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
2544 READ_BUF(8);
2545 READ64(*change);
2546 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002547 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002549 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04002551 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
2554static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
2555{
Al Viro8687b632006-10-19 23:28:48 -07002556 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002557 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 *size = 0;
2560 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
2561 return -EIO;
2562 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
2563 READ_BUF(8);
2564 READ64(*size);
2565 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002566 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002568 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04002569 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571
2572static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2573{
Al Viro8687b632006-10-19 23:28:48 -07002574 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 *res = 0;
2577 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
2578 return -EIO;
2579 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
2580 READ_BUF(4);
2581 READ32(*res);
2582 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
2583 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002584 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 return 0;
2586}
2587
2588static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2589{
Al Viro8687b632006-10-19 23:28:48 -07002590 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 *res = 0;
2593 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
2594 return -EIO;
2595 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
2596 READ_BUF(4);
2597 READ32(*res);
2598 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
2599 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002600 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return 0;
2602}
2603
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04002604static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Al Viro8687b632006-10-19 23:28:48 -07002606 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002607 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 fsid->major = 0;
2610 fsid->minor = 0;
2611 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
2612 return -EIO;
2613 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
2614 READ_BUF(16);
2615 READ64(fsid->major);
2616 READ64(fsid->minor);
2617 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002618 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002620 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 (unsigned long long)fsid->major,
2622 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04002623 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
2626static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2627{
Al Viro8687b632006-10-19 23:28:48 -07002628 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630 *res = 60;
2631 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
2632 return -EIO;
2633 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
2634 READ_BUF(4);
2635 READ32(*res);
2636 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
2637 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002638 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return 0;
2640}
2641
2642static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2643{
Al Viro8687b632006-10-19 23:28:48 -07002644 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
2647 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
2648 return -EIO;
2649 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
2650 READ_BUF(4);
2651 READ32(*res);
2652 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
2653 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002654 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 return 0;
2656}
2657
2658static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2659{
Al Viro8687b632006-10-19 23:28:48 -07002660 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002661 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 *fileid = 0;
2664 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
2665 return -EIO;
2666 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
2667 READ_BUF(8);
2668 READ64(*fileid);
2669 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002670 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002672 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Manoj Naik99baf622006-06-09 09:34:24 -04002676static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2677{
Al Viro8687b632006-10-19 23:28:48 -07002678 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002679 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04002680
2681 *fileid = 0;
2682 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
2683 return -EIO;
2684 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
2685 READ_BUF(8);
2686 READ64(*fileid);
2687 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002688 ret = NFS_ATTR_FATTR_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04002689 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002690 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002691 return ret;
Manoj Naik99baf622006-06-09 09:34:24 -04002692}
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2695{
Al Viro8687b632006-10-19 23:28:48 -07002696 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 int status = 0;
2698
2699 *res = 0;
2700 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
2701 return -EIO;
2702 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
2703 READ_BUF(8);
2704 READ64(*res);
2705 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
2706 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002707 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return status;
2709}
2710
2711static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2712{
Al Viro8687b632006-10-19 23:28:48 -07002713 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 int status = 0;
2715
2716 *res = 0;
2717 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
2718 return -EIO;
2719 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
2720 READ_BUF(8);
2721 READ64(*res);
2722 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
2723 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002724 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 return status;
2726}
2727
2728static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2729{
Al Viro8687b632006-10-19 23:28:48 -07002730 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 int status = 0;
2732
2733 *res = 0;
2734 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
2735 return -EIO;
2736 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
2737 READ_BUF(8);
2738 READ64(*res);
2739 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
2740 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002741 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 return status;
2743}
2744
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002745static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
2746{
Chuck Lever464ad6b2007-10-26 13:32:08 -04002747 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07002748 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002749 int status = 0;
2750
2751 READ_BUF(4);
2752 READ32(n);
Andy Adamson33a43f22006-06-09 09:34:30 -04002753 if (n == 0)
2754 goto root_path;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002755 dprintk("path ");
2756 path->ncomponents = 0;
2757 while (path->ncomponents < n) {
2758 struct nfs4_string *component = &path->components[path->ncomponents];
2759 status = decode_opaque_inline(xdr, &component->len, &component->data);
2760 if (unlikely(status != 0))
2761 goto out_eio;
2762 if (path->ncomponents != n)
2763 dprintk("/");
2764 dprintk("%s", component->data);
2765 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
2766 path->ncomponents++;
2767 else {
2768 dprintk("cannot parse %d components in path\n", n);
2769 goto out_eio;
2770 }
2771 }
2772out:
2773 dprintk("\n");
2774 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04002775root_path:
2776/* a root pathname is sent as a zero component4 */
2777 path->ncomponents = 1;
2778 path->components[0].len=0;
2779 path->components[0].data=NULL;
2780 dprintk("path /\n");
2781 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002782out_eio:
2783 dprintk(" status %d", status);
2784 status = -EIO;
2785 goto out;
2786}
2787
2788static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002789{
2790 int n;
Al Viro8687b632006-10-19 23:28:48 -07002791 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002792 int status = -EIO;
2793
2794 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
2795 goto out;
2796 status = 0;
2797 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
2798 goto out;
Harvey Harrison3110ff82008-05-02 13:42:44 -07002799 dprintk("%s: fsroot ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002800 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002801 if (unlikely(status != 0))
2802 goto out;
2803 READ_BUF(4);
2804 READ32(n);
2805 if (n <= 0)
2806 goto out_eio;
2807 res->nlocations = 0;
2808 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04002809 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002810 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04002811
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002812 READ_BUF(4);
2813 READ32(m);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002814
2815 loc->nservers = 0;
Harvey Harrison3110ff82008-05-02 13:42:44 -07002816 dprintk("%s: servers ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002817 while (loc->nservers < m) {
2818 struct nfs4_string *server = &loc->servers[loc->nservers];
2819 status = decode_opaque_inline(xdr, &server->len, &server->data);
2820 if (unlikely(status != 0))
2821 goto out_eio;
2822 dprintk("%s ", server->data);
2823 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
2824 loc->nservers++;
2825 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04002826 unsigned int i;
2827 dprintk("%s: using first %u of %u servers "
2828 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07002829 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04002830 NFS4_FS_LOCATION_MAXSERVERS,
2831 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002832 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04002833 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002834 char *data;
2835 status = decode_opaque_inline(xdr, &len, &data);
2836 if (unlikely(status != 0))
2837 goto out_eio;
2838 }
2839 }
2840 }
2841 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002842 if (unlikely(status != 0))
2843 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002844 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002845 res->nlocations++;
2846 }
Trond Myklebust409924e2009-03-11 14:10:27 -04002847 if (res->nlocations != 0)
2848 status = NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002849out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07002850 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002851 return status;
2852out_eio:
2853 status = -EIO;
2854 goto out;
2855}
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2858{
Al Viro8687b632006-10-19 23:28:48 -07002859 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 int status = 0;
2861
2862 *res = 0;
2863 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
2864 return -EIO;
2865 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
2866 READ_BUF(8);
2867 READ64(*res);
2868 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
2869 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002870 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 return status;
2872}
2873
2874static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
2875{
Al Viro8687b632006-10-19 23:28:48 -07002876 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 int status = 0;
2878
2879 *maxlink = 1;
2880 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
2881 return -EIO;
2882 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
2883 READ_BUF(4);
2884 READ32(*maxlink);
2885 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
2886 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002887 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 return status;
2889}
2890
2891static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
2892{
Al Viro8687b632006-10-19 23:28:48 -07002893 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 int status = 0;
2895
2896 *maxname = 1024;
2897 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
2898 return -EIO;
2899 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
2900 READ_BUF(4);
2901 READ32(*maxname);
2902 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
2903 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002904 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 return status;
2906}
2907
2908static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2909{
Al Viro8687b632006-10-19 23:28:48 -07002910 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 int status = 0;
2912
2913 *res = 1024;
2914 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
2915 return -EIO;
2916 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
2917 uint64_t maxread;
2918 READ_BUF(8);
2919 READ64(maxread);
2920 if (maxread > 0x7FFFFFFF)
2921 maxread = 0x7FFFFFFF;
2922 *res = (uint32_t)maxread;
2923 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
2924 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002925 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 return status;
2927}
2928
2929static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2930{
Al Viro8687b632006-10-19 23:28:48 -07002931 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 int status = 0;
2933
2934 *res = 1024;
2935 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
2936 return -EIO;
2937 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
2938 uint64_t maxwrite;
2939 READ_BUF(8);
2940 READ64(maxwrite);
2941 if (maxwrite > 0x7FFFFFFF)
2942 maxwrite = 0x7FFFFFFF;
2943 *res = (uint32_t)maxwrite;
2944 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
2945 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002946 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 return status;
2948}
2949
Trond Myklebustbca79472009-03-11 14:10:26 -04002950static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
Trond Myklebustbca79472009-03-11 14:10:26 -04002952 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07002953 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002954 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 *mode = 0;
2957 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
2958 return -EIO;
2959 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
2960 READ_BUF(4);
Trond Myklebustbca79472009-03-11 14:10:26 -04002961 READ32(tmp);
2962 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002964 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002966 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04002967 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968}
2969
2970static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
2971{
Al Viro8687b632006-10-19 23:28:48 -07002972 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002973 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 *nlink = 1;
2976 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
2977 return -EIO;
2978 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
2979 READ_BUF(4);
2980 READ32(*nlink);
2981 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04002982 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002984 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04002985 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04002988static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Al Viro8687b632006-10-19 23:28:48 -07002990 uint32_t len;
2991 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002992 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994 *uid = -2;
2995 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
2996 return -EIO;
2997 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
2998 READ_BUF(4);
2999 READ32(len);
3000 READ_BUF(len);
3001 if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003002 if (nfs_map_name_to_uid(clp, (char *)p, len, uid) == 0)
3003 ret = NFS_ATTR_FATTR_OWNER;
3004 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003006 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003008 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003009 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3011 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003012 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003013 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014}
3015
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003016static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Al Viro8687b632006-10-19 23:28:48 -07003018 uint32_t len;
3019 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003020 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
3022 *gid = -2;
3023 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3024 return -EIO;
3025 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
3026 READ_BUF(4);
3027 READ32(len);
3028 READ_BUF(len);
3029 if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003030 if (nfs_map_group_to_gid(clp, (char *)p, len, gid) == 0)
3031 ret = NFS_ATTR_FATTR_GROUP;
3032 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003034 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003036 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003037 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3039 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003040 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003041 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
3044static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3045{
Al Viro8687b632006-10-19 23:28:48 -07003046 uint32_t major = 0, minor = 0;
3047 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003048 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 *rdev = MKDEV(0,0);
3051 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3052 return -EIO;
3053 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3054 dev_t tmp;
3055
3056 READ_BUF(8);
3057 READ32(major);
3058 READ32(minor);
3059 tmp = MKDEV(major, minor);
3060 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3061 *rdev = tmp;
3062 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003063 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003065 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003066 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
3069static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3070{
Al Viro8687b632006-10-19 23:28:48 -07003071 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 int status = 0;
3073
3074 *res = 0;
3075 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3076 return -EIO;
3077 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
3078 READ_BUF(8);
3079 READ64(*res);
3080 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3081 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003082 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 return status;
3084}
3085
3086static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3087{
Al Viro8687b632006-10-19 23:28:48 -07003088 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 int status = 0;
3090
3091 *res = 0;
3092 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3093 return -EIO;
3094 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
3095 READ_BUF(8);
3096 READ64(*res);
3097 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3098 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003099 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 return status;
3101}
3102
3103static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3104{
Al Viro8687b632006-10-19 23:28:48 -07003105 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 int status = 0;
3107
3108 *res = 0;
3109 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3110 return -EIO;
3111 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
3112 READ_BUF(8);
3113 READ64(*res);
3114 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3115 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003116 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return status;
3118}
3119
3120static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3121{
Al Viro8687b632006-10-19 23:28:48 -07003122 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003123 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125 *used = 0;
3126 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3127 return -EIO;
3128 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
3129 READ_BUF(8);
3130 READ64(*used);
3131 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003132 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003134 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003136 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
3139static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3140{
Al Viro8687b632006-10-19 23:28:48 -07003141 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 uint64_t sec;
3143 uint32_t nsec;
3144
3145 READ_BUF(12);
3146 READ64(sec);
3147 READ32(nsec);
3148 time->tv_sec = (time_t)sec;
3149 time->tv_nsec = (long)nsec;
3150 return 0;
3151}
3152
3153static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3154{
3155 int status = 0;
3156
3157 time->tv_sec = 0;
3158 time->tv_nsec = 0;
3159 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
3160 return -EIO;
3161 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
3162 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003163 if (status == 0)
3164 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
3166 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003167 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 return status;
3169}
3170
3171static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3172{
3173 int status = 0;
3174
3175 time->tv_sec = 0;
3176 time->tv_nsec = 0;
3177 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
3178 return -EIO;
3179 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
3180 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003181 if (status == 0)
3182 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
3184 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003185 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return status;
3187}
3188
3189static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3190{
3191 int status = 0;
3192
3193 time->tv_sec = 0;
3194 time->tv_nsec = 0;
3195 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
3196 return -EIO;
3197 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
3198 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003199 if (status == 0)
3200 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
3202 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003203 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 return status;
3205}
3206
Al Viro8687b632006-10-19 23:28:48 -07003207static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
3209 unsigned int attrwords = XDR_QUADLEN(attrlen);
3210 unsigned int nwords = xdr->p - savep;
3211
3212 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003213 dprintk("%s: server returned incorrect attribute length: "
3214 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003215 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 attrwords << 2,
3217 (attrwords < nwords) ? '<' : '>',
3218 nwords << 2);
3219 return -EIO;
3220 }
3221 return 0;
3222}
3223
3224static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3225{
Al Viro8687b632006-10-19 23:28:48 -07003226 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
3228 READ_BUF(20);
3229 READ32(cinfo->atomic);
3230 READ64(cinfo->before);
3231 READ64(cinfo->after);
3232 return 0;
3233}
3234
3235static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
3236{
Al Viro8687b632006-10-19 23:28:48 -07003237 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 uint32_t supp, acc;
3239 int status;
3240
3241 status = decode_op_hdr(xdr, OP_ACCESS);
3242 if (status)
3243 return status;
3244 READ_BUF(8);
3245 READ32(supp);
3246 READ32(acc);
3247 access->supported = supp;
3248 access->access = acc;
3249 return 0;
3250}
3251
3252static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
3253{
Al Viro8687b632006-10-19 23:28:48 -07003254 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 int status;
3256
3257 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003258 if (status != -EIO)
3259 nfs_increment_open_seqid(status, res->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 if (status)
3261 return status;
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04003262 READ_BUF(NFS4_STATEID_SIZE);
3263 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 return 0;
3265}
3266
3267static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
3268{
Al Viro8687b632006-10-19 23:28:48 -07003269 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 int status;
3271
3272 status = decode_op_hdr(xdr, OP_COMMIT);
3273 if (status)
3274 return status;
3275 READ_BUF(8);
3276 COPYMEM(res->verf->verifier, 8);
3277 return 0;
3278}
3279
3280static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3281{
Al Viro8687b632006-10-19 23:28:48 -07003282 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 uint32_t bmlen;
3284 int status;
3285
3286 status = decode_op_hdr(xdr, OP_CREATE);
3287 if (status)
3288 return status;
3289 if ((status = decode_change_info(xdr, cinfo)))
3290 return status;
3291 READ_BUF(4);
3292 READ32(bmlen);
3293 READ_BUF(bmlen << 2);
3294 return 0;
3295}
3296
3297static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
3298{
Al Viro8687b632006-10-19 23:28:48 -07003299 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003300 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 int status;
3302
3303 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3304 goto xdr_error;
3305 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3306 goto xdr_error;
3307 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3308 goto xdr_error;
3309 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
3310 goto xdr_error;
3311 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
3312 goto xdr_error;
3313 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
3314 goto xdr_error;
3315 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
3316 goto xdr_error;
3317 status = verify_attr_len(xdr, savep, attrlen);
3318xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003319 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 return status;
3321}
Andy Adamson6c0195a2008-12-23 16:06:15 -05003322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
3324{
Al Viro8687b632006-10-19 23:28:48 -07003325 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003326 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3330 goto xdr_error;
3331 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3332 goto xdr_error;
3333 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3334 goto xdr_error;
3335
3336 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
3337 goto xdr_error;
3338 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
3339 goto xdr_error;
3340 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
3341 goto xdr_error;
3342 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
3343 goto xdr_error;
3344 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
3345 goto xdr_error;
3346 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
3347 goto xdr_error;
3348
3349 status = verify_attr_len(xdr, savep, attrlen);
3350xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003351 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 return status;
3353}
3354
3355static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
3356{
Al Viro8687b632006-10-19 23:28:48 -07003357 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003358 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003360
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3362 goto xdr_error;
3363 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3364 goto xdr_error;
3365 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3366 goto xdr_error;
3367
3368 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
3369 goto xdr_error;
3370 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
3371 goto xdr_error;
3372
3373 status = verify_attr_len(xdr, savep, attrlen);
3374xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003375 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 return status;
3377}
3378
3379static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, const struct nfs_server *server)
3380{
Al Viro8687b632006-10-19 23:28:48 -07003381 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 uint32_t attrlen,
3383 bitmap[2] = {0},
3384 type;
Trond Myklebustbca79472009-03-11 14:10:26 -04003385 int status;
3386 umode_t fmode = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003387 uint64_t fileid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003389 status = decode_op_hdr(xdr, OP_GETATTR);
3390 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 goto xdr_error;
3392
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003393 status = decode_attr_bitmap(xdr, bitmap);
3394 if (status < 0)
3395 goto xdr_error;
3396
3397 status = decode_attr_length(xdr, &attrlen, &savep);
3398 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 goto xdr_error;
3400
3401
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003402 status = decode_attr_type(xdr, bitmap, &type);
3403 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003405 fattr->mode = 0;
3406 if (status != 0) {
3407 fattr->mode |= nfs_type2fmt[type];
3408 fattr->valid |= status;
3409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003411 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
3412 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003414 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003415
3416 status = decode_attr_size(xdr, bitmap, &fattr->size);
3417 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003419 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003420
3421 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
3422 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003424 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003425
3426 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
3427 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003429 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003430
3431 status = decode_attr_fs_locations(xdr, bitmap, container_of(fattr,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003432 struct nfs4_fs_locations,
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003433 fattr));
3434 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003435 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003436 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003437
3438 status = decode_attr_mode(xdr, bitmap, &fmode);
3439 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003441 if (status != 0) {
3442 fattr->mode |= fmode;
3443 fattr->valid |= status;
3444 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003445
3446 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
3447 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003449 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003450
3451 status = decode_attr_owner(xdr, bitmap, server->nfs_client, &fattr->uid);
3452 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003454 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003455
3456 status = decode_attr_group(xdr, bitmap, server->nfs_client, &fattr->gid);
3457 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003459 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003460
3461 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
3462 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003464 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003465
3466 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
3467 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003469 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003470
3471 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
3472 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003474 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003475
3476 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
3477 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003479 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003480
3481 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
3482 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003484 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003485
3486 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fileid);
3487 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04003488 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003489 if (status != 0 && !(fattr->valid & status)) {
Manoj Naik99baf622006-06-09 09:34:24 -04003490 fattr->fileid = fileid;
Trond Myklebust409924e2009-03-11 14:10:27 -04003491 fattr->valid |= status;
3492 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003493
3494 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003496 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 return status;
3498}
3499
3500
3501static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
3502{
Al Viro8687b632006-10-19 23:28:48 -07003503 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 uint32_t attrlen, bitmap[2];
3505 int status;
3506
3507 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3508 goto xdr_error;
3509 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3510 goto xdr_error;
3511 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3512 goto xdr_error;
3513
3514 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
3515
3516 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
3517 goto xdr_error;
3518 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
3519 goto xdr_error;
3520 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
3521 goto xdr_error;
3522 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
3523 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
3524 goto xdr_error;
3525 fsinfo->wtpref = fsinfo->wtmax;
3526
3527 status = verify_attr_len(xdr, savep, attrlen);
3528xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003529 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 return status;
3531}
3532
3533static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
3534{
Al Viro8687b632006-10-19 23:28:48 -07003535 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 uint32_t len;
3537 int status;
3538
Trond Myklebust99367812007-07-17 21:52:41 -04003539 /* Zero handle first to allow comparisons */
3540 memset(fh, 0, sizeof(*fh));
3541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 status = decode_op_hdr(xdr, OP_GETFH);
3543 if (status)
3544 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
3546 READ_BUF(4);
3547 READ32(len);
3548 if (len > NFS4_FHSIZE)
3549 return -EIO;
3550 fh->size = len;
3551 READ_BUF(len);
3552 COPYMEM(fh->data, len);
3553 return 0;
3554}
3555
3556static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3557{
3558 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 status = decode_op_hdr(xdr, OP_LINK);
3561 if (status)
3562 return status;
3563 return decode_change_info(xdr, cinfo);
3564}
3565
3566/*
3567 * We create the owner, so we know a proper owner.id length is 4.
3568 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003569static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003571 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07003572 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003573 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
3575 READ_BUF(32);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003576 READ64(offset);
3577 READ64(length);
3578 READ32(type);
3579 if (fl != NULL) {
3580 fl->fl_start = (loff_t)offset;
3581 fl->fl_end = fl->fl_start + (loff_t)length - 1;
3582 if (length == ~(uint64_t)0)
3583 fl->fl_end = OFFSET_MAX;
3584 fl->fl_type = F_WRLCK;
3585 if (type & 1)
3586 fl->fl_type = F_RDLCK;
3587 fl->fl_pid = 0;
3588 }
3589 READ64(clientid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 READ32(namelen);
3591 READ_BUF(namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 return -NFS4ERR_DENIED;
3593}
3594
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003595static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
Al Viro8687b632006-10-19 23:28:48 -07003597 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 int status;
3599
3600 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003601 if (status == -EIO)
3602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 if (status == 0) {
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04003604 READ_BUF(NFS4_STATEID_SIZE);
3605 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04003607 status = decode_lock_denied(xdr, NULL);
3608 if (res->open_seqid != NULL)
3609 nfs_increment_open_seqid(status, res->open_seqid);
3610 nfs_increment_lock_seqid(status, res->lock_seqid);
3611out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 return status;
3613}
3614
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003615static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616{
3617 int status;
3618 status = decode_op_hdr(xdr, OP_LOCKT);
3619 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003620 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 return status;
3622}
3623
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003624static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625{
Al Viro8687b632006-10-19 23:28:48 -07003626 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 int status;
3628
3629 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003630 if (status != -EIO)
3631 nfs_increment_lock_seqid(status, res->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 if (status == 0) {
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04003633 READ_BUF(NFS4_STATEID_SIZE);
3634 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 }
3636 return status;
3637}
3638
3639static int decode_lookup(struct xdr_stream *xdr)
3640{
3641 return decode_op_hdr(xdr, OP_LOOKUP);
3642}
3643
3644/* This is too sick! */
3645static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
3646{
Andy Adamson05d564f2008-12-23 16:06:15 -05003647 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 uint32_t limit_type, nblocks, blocksize;
3649
3650 READ_BUF(12);
3651 READ32(limit_type);
3652 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05003653 case 1:
3654 READ64(*maxsize);
3655 break;
3656 case 2:
3657 READ32(nblocks);
3658 READ32(blocksize);
3659 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 }
3661 return 0;
3662}
3663
3664static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
3665{
Andy Adamson05d564f2008-12-23 16:06:15 -05003666 __be32 *p;
3667 uint32_t delegation_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
3669 READ_BUF(4);
3670 READ32(delegation_type);
3671 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
3672 res->delegation_type = 0;
3673 return 0;
3674 }
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04003675 READ_BUF(NFS4_STATEID_SIZE+4);
3676 COPYMEM(res->delegation.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 READ32(res->do_recall);
Andy Adamson05d564f2008-12-23 16:06:15 -05003678
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05003680 case NFS4_OPEN_DELEGATE_READ:
3681 res->delegation_type = FMODE_READ;
3682 break;
3683 case NFS4_OPEN_DELEGATE_WRITE:
3684 res->delegation_type = FMODE_WRITE|FMODE_READ;
3685 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 return -EIO;
3687 }
David Howells7539bba2006-08-22 20:06:09 -04003688 return decode_ace(xdr, NULL, res->server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689}
3690
3691static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
3692{
Andy Adamson05d564f2008-12-23 16:06:15 -05003693 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04003694 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05003695 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Andy Adamson05d564f2008-12-23 16:06:15 -05003697 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003698 if (status != -EIO)
3699 nfs_increment_open_seqid(status, res->seqid);
Andy Adamson05d564f2008-12-23 16:06:15 -05003700 if (status)
3701 return status;
3702 READ_BUF(NFS4_STATEID_SIZE);
3703 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Andy Adamson05d564f2008-12-23 16:06:15 -05003705 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Andy Adamson05d564f2008-12-23 16:06:15 -05003707 READ_BUF(8);
3708 READ32(res->rflags);
3709 READ32(bmlen);
3710 if (bmlen > 10)
3711 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Andy Adamson05d564f2008-12-23 16:06:15 -05003713 READ_BUF(bmlen << 2);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04003714 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
3715 for (i = 0; i < savewords; ++i)
3716 READ32(res->attrset[i]);
3717 for (; i < NFS4_BITMAP_SIZE; i++)
3718 res->attrset[i] = 0;
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 return decode_delegation(xdr, res);
3721xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003722 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return -EIO;
3724}
3725
3726static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
3727{
Andy Adamson05d564f2008-12-23 16:06:15 -05003728 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 int status;
3730
Andy Adamson05d564f2008-12-23 16:06:15 -05003731 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003732 if (status != -EIO)
3733 nfs_increment_open_seqid(status, res->seqid);
Andy Adamson05d564f2008-12-23 16:06:15 -05003734 if (status)
3735 return status;
3736 READ_BUF(NFS4_STATEID_SIZE);
3737 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
3738 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739}
3740
3741static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
3742{
Al Viro8687b632006-10-19 23:28:48 -07003743 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 int status;
3745
3746 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003747 if (status != -EIO)
3748 nfs_increment_open_seqid(status, res->seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 if (status)
3750 return status;
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04003751 READ_BUF(NFS4_STATEID_SIZE);
3752 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 return 0;
3754}
3755
3756static int decode_putfh(struct xdr_stream *xdr)
3757{
3758 return decode_op_hdr(xdr, OP_PUTFH);
3759}
3760
3761static int decode_putrootfh(struct xdr_stream *xdr)
3762{
3763 return decode_op_hdr(xdr, OP_PUTROOTFH);
3764}
3765
3766static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
3767{
3768 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07003769 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 uint32_t count, eof, recvd, hdrlen;
3771 int status;
3772
3773 status = decode_op_hdr(xdr, OP_READ);
3774 if (status)
3775 return status;
3776 READ_BUF(8);
3777 READ32(eof);
3778 READ32(count);
3779 hdrlen = (u8 *) p - (u8 *) iov->iov_base;
3780 recvd = req->rq_rcv_buf.len - hdrlen;
3781 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003782 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 "count %u > recvd %u\n", count, recvd);
3784 count = recvd;
3785 eof = 0;
3786 }
3787 xdr_read_pages(xdr, count);
3788 res->eof = eof;
3789 res->count = count;
3790 return 0;
3791}
3792
3793static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
3794{
3795 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3796 struct page *page = *rcvbuf->pages;
3797 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04003798 size_t hdrlen;
3799 u32 recvd, pglen = rcvbuf->page_len;
Al Viro8687b632006-10-19 23:28:48 -07003800 __be32 *end, *entry, *p, *kaddr;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003801 unsigned int nr = 0;
Chuck Leverbcecff72007-10-26 13:32:03 -04003802 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
3804 status = decode_op_hdr(xdr, OP_READDIR);
3805 if (status)
3806 return status;
3807 READ_BUF(8);
3808 COPYMEM(readdir->verifier.data, 8);
Fred Isaman44109242008-04-02 15:21:15 +03003809 dprintk("%s: verifier = %08x:%08x\n",
3810 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00003811 ((u32 *)readdir->verifier.data)[0],
3812 ((u32 *)readdir->verifier.data)[1]);
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
3815 hdrlen = (char *) p - (char *) iov->iov_base;
3816 recvd = rcvbuf->len - hdrlen;
3817 if (pglen > recvd)
3818 pglen = recvd;
3819 xdr_read_pages(xdr, pglen);
3820
3821 BUG_ON(pglen + readdir->pgbase > PAGE_CACHE_SIZE);
Al Viro8687b632006-10-19 23:28:48 -07003822 kaddr = p = kmap_atomic(page, KM_USER0);
David Howellse8896492006-08-24 15:44:19 -04003823 end = p + ((pglen + readdir->pgbase) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 entry = p;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003825
3826 /* Make sure the packet actually has a value_follows and EOF entry */
3827 if ((entry + 1) > end)
3828 goto short_pkt;
3829
3830 for (; *p++; nr++) {
Chuck Leverbcecff72007-10-26 13:32:03 -04003831 u32 len, attrlen, xlen;
David Howellse8896492006-08-24 15:44:19 -04003832 if (end - p < 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00003834 dprintk("cookie = %Lu, ", *((unsigned long long *)p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 p += 2; /* cookie */
3836 len = ntohl(*p++); /* filename length */
3837 if (len > NFS4_MAXNAMLEN) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003838 dprintk("NFS: giant filename in readdir (len 0x%x)\n",
3839 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 goto err_unmap;
3841 }
David Howellse8896492006-08-24 15:44:19 -04003842 xlen = XDR_QUADLEN(len);
3843 if (end - p < xlen + 1)
3844 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00003845 dprintk("filename = %*s\n", len, (char *)p);
David Howellse8896492006-08-24 15:44:19 -04003846 p += xlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 len = ntohl(*p++); /* bitmap length */
David Howellse8896492006-08-24 15:44:19 -04003848 if (end - p < len + 1)
3849 goto short_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 p += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 attrlen = XDR_QUADLEN(ntohl(*p++));
David Howellse8896492006-08-24 15:44:19 -04003852 if (end - p < attrlen + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 goto short_pkt;
David Howellse8896492006-08-24 15:44:19 -04003854 p += attrlen; /* attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 entry = p;
3856 }
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003857 /*
3858 * Apparently some server sends responses that are a valid size, but
3859 * contain no entries, and have value_follows==0 and EOF==0. For
3860 * those, just set the EOF marker.
3861 */
3862 if (!nr && entry[1] == 0) {
3863 dprintk("NFS: readdir reply truncated!\n");
3864 entry[1] = 1;
3865 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05003866out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 kunmap_atomic(kaddr, KM_USER0);
3868 return 0;
3869short_pkt:
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003870 /*
3871 * When we get a short packet there are 2 possibilities. We can
3872 * return an error, or fix up the response to look like a valid
3873 * response and return what we have so far. If there are no
3874 * entries and the packet was short, then return -EIO. If there
3875 * are valid entries in the response, return them and pretend that
3876 * the call was successful, but incomplete. The caller can retry the
3877 * readdir starting at the last cookie.
3878 */
Harvey Harrison3110ff82008-05-02 13:42:44 -07003879 dprintk("%s: short packet at entry %d\n", __func__, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 entry[0] = entry[1] = 0;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003881 if (nr)
3882 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883err_unmap:
3884 kunmap_atomic(kaddr, KM_USER0);
3885 return -errno_NFSERR_IO;
3886}
3887
3888static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
3889{
3890 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3891 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04003892 size_t hdrlen;
3893 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07003894 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 char *kaddr;
3896 int status;
3897
3898 status = decode_op_hdr(xdr, OP_READLINK);
3899 if (status)
3900 return status;
3901
3902 /* Convert length of symlink */
3903 READ_BUF(4);
3904 READ32(len);
3905 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003906 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 return -ENAMETOOLONG;
3908 }
3909 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
3910 recvd = req->rq_rcv_buf.len - hdrlen;
3911 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003912 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 "count %u > recvd %u\n", len, recvd);
3914 return -EIO;
3915 }
3916 xdr_read_pages(xdr, len);
3917 /*
3918 * The XDR encode routine has set things up so that
3919 * the link text will be copied directly into the
3920 * buffer. We just have to do overflow-checking,
3921 * and and null-terminate the text (the VFS expects
3922 * null-termination).
3923 */
3924 kaddr = (char *)kmap_atomic(rcvbuf->pages[0], KM_USER0);
3925 kaddr[len+rcvbuf->page_base] = '\0';
3926 kunmap_atomic(kaddr, KM_USER0);
3927 return 0;
3928}
3929
3930static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3931{
3932 int status;
3933
3934 status = decode_op_hdr(xdr, OP_REMOVE);
3935 if (status)
3936 goto out;
3937 status = decode_change_info(xdr, cinfo);
3938out:
3939 return status;
3940}
3941
3942static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
3943 struct nfs4_change_info *new_cinfo)
3944{
3945 int status;
3946
3947 status = decode_op_hdr(xdr, OP_RENAME);
3948 if (status)
3949 goto out;
3950 if ((status = decode_change_info(xdr, old_cinfo)))
3951 goto out;
3952 status = decode_change_info(xdr, new_cinfo);
3953out:
3954 return status;
3955}
3956
3957static int decode_renew(struct xdr_stream *xdr)
3958{
3959 return decode_op_hdr(xdr, OP_RENEW);
3960}
3961
Trond Myklebust56ae19f2005-10-27 22:12:40 -04003962static int
3963decode_restorefh(struct xdr_stream *xdr)
3964{
3965 return decode_op_hdr(xdr, OP_RESTOREFH);
3966}
3967
J. Bruce Fields029d1052005-06-22 17:16:22 +00003968static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
3969 size_t *acl_len)
3970{
Al Viro8687b632006-10-19 23:28:48 -07003971 __be32 *savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00003972 uint32_t attrlen,
3973 bitmap[2] = {0};
3974 struct kvec *iov = req->rq_rcv_buf.head;
3975 int status;
3976
3977 *acl_len = 0;
3978 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3979 goto out;
3980 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3981 goto out;
3982 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3983 goto out;
3984
3985 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
3986 return -EIO;
3987 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04003988 size_t hdrlen;
3989 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00003990
3991 /* We ignore &savep and don't do consistency checks on
3992 * the attr length. Let userspace figure it out.... */
3993 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
3994 recvd = req->rq_rcv_buf.len - hdrlen;
3995 if (attrlen > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003996 dprintk("NFS: server cheating in getattr"
J. Bruce Fields029d1052005-06-22 17:16:22 +00003997 " acl reply: attrlen %u > recvd %u\n",
3998 attrlen, recvd);
3999 return -EINVAL;
4000 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04004001 xdr_read_pages(xdr, attrlen);
J. Bruce Fields029d1052005-06-22 17:16:22 +00004002 *acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04004003 } else
4004 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004005
4006out:
4007 return status;
4008}
4009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010static int
4011decode_savefh(struct xdr_stream *xdr)
4012{
4013 return decode_op_hdr(xdr, OP_SAVEFH);
4014}
4015
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004016static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017{
Al Viro8687b632006-10-19 23:28:48 -07004018 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 uint32_t bmlen;
4020 int status;
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 status = decode_op_hdr(xdr, OP_SETATTR);
4023 if (status)
4024 return status;
4025 READ_BUF(4);
4026 READ32(bmlen);
4027 READ_BUF(bmlen << 2);
4028 return 0;
4029}
4030
David Howellsadfa6f92006-08-22 20:06:08 -04004031static int decode_setclientid(struct xdr_stream *xdr, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032{
Al Viro8687b632006-10-19 23:28:48 -07004033 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 uint32_t opnum;
4035 int32_t nfserr;
4036
4037 READ_BUF(8);
4038 READ32(opnum);
4039 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004040 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05004041 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 return -EIO;
4043 }
4044 READ32(nfserr);
4045 if (nfserr == NFS_OK) {
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04004046 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 READ64(clp->cl_clientid);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04004048 COPYMEM(clp->cl_confirm.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 } else if (nfserr == NFSERR_CLID_INUSE) {
4050 uint32_t len;
4051
4052 /* skip netid string */
4053 READ_BUF(4);
4054 READ32(len);
4055 READ_BUF(len);
4056
4057 /* skip uaddr string */
4058 READ_BUF(4);
4059 READ32(len);
4060 READ_BUF(len);
4061 return -NFSERR_CLID_INUSE;
4062 } else
Benny Halevy856dff32008-03-31 17:39:06 +03004063 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
4065 return 0;
4066}
4067
4068static int decode_setclientid_confirm(struct xdr_stream *xdr)
4069{
4070 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
4071}
4072
4073static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
4074{
Al Viro8687b632006-10-19 23:28:48 -07004075 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 int status;
4077
4078 status = decode_op_hdr(xdr, OP_WRITE);
4079 if (status)
4080 return status;
4081
4082 READ_BUF(16);
4083 READ32(res->count);
4084 READ32(res->verf->committed);
4085 COPYMEM(res->verf->verifier, 8);
4086 return 0;
4087}
4088
4089static int decode_delegreturn(struct xdr_stream *xdr)
4090{
4091 return decode_op_hdr(xdr, OP_DELEGRETURN);
4092}
4093
Benny Halevy99fe60d2009-04-01 09:22:29 -04004094#if defined(CONFIG_NFS_V4_1)
4095static int decode_exchange_id(struct xdr_stream *xdr,
4096 struct nfs41_exchange_id_res *res)
4097{
4098 __be32 *p;
4099 uint32_t dummy;
4100 int status;
4101 struct nfs_client *clp = res->client;
4102
4103 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
4104 if (status)
4105 return status;
4106
4107 READ_BUF(8);
4108 READ64(clp->cl_ex_clid);
4109 READ_BUF(12);
4110 READ32(clp->cl_seqid);
4111 READ32(clp->cl_exchange_flags);
4112
4113 /* We ask for SP4_NONE */
4114 READ32(dummy);
4115 if (dummy != SP4_NONE)
4116 return -EIO;
4117
4118 /* Throw away minor_id */
4119 READ_BUF(8);
4120
4121 /* Throw away Major id */
4122 READ_BUF(4);
4123 READ32(dummy);
4124 READ_BUF(dummy);
4125
4126 /* Throw away server_scope */
4127 READ_BUF(4);
4128 READ32(dummy);
4129 READ_BUF(dummy);
4130
4131 /* Throw away Implementation id array */
4132 READ_BUF(4);
4133 READ32(dummy);
4134 READ_BUF(dummy);
4135
4136 return 0;
4137}
Andy Adamsonfc931582009-04-01 09:22:31 -04004138
4139static int decode_chan_attrs(struct xdr_stream *xdr,
4140 struct nfs4_channel_attrs *attrs)
4141{
4142 __be32 *p;
4143 u32 nr_attrs;
4144
4145 READ_BUF(28);
4146 READ32(attrs->headerpadsz);
4147 READ32(attrs->max_rqst_sz);
4148 READ32(attrs->max_resp_sz);
4149 READ32(attrs->max_resp_sz_cached);
4150 READ32(attrs->max_ops);
4151 READ32(attrs->max_reqs);
4152 READ32(nr_attrs);
4153 if (unlikely(nr_attrs > 1)) {
4154 printk(KERN_WARNING "%s: Invalid rdma channel attrs count %u\n",
4155 __func__, nr_attrs);
4156 return -EINVAL;
4157 }
4158 if (nr_attrs == 1)
4159 READ_BUF(4); /* skip rdma_attrs */
4160 return 0;
4161}
4162
4163static int decode_create_session(struct xdr_stream *xdr,
4164 struct nfs41_create_session_res *res)
4165{
4166 __be32 *p;
4167 int status;
4168 struct nfs_client *clp = res->client;
4169 struct nfs4_session *session = clp->cl_session;
4170
4171 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
4172
4173 if (status)
4174 return status;
4175
4176 /* sessionid */
4177 READ_BUF(NFS4_MAX_SESSIONID_LEN);
4178 COPYMEM(&session->sess_id, NFS4_MAX_SESSIONID_LEN);
4179
4180 /* seqid, flags */
4181 READ_BUF(8);
4182 READ32(clp->cl_seqid);
4183 READ32(session->flags);
4184
4185 /* Channel attributes */
4186 status = decode_chan_attrs(xdr, &session->fc_attrs);
4187 if (!status)
4188 status = decode_chan_attrs(xdr, &session->bc_attrs);
4189 return status;
4190}
Benny Halevy99fe60d2009-04-01 09:22:29 -04004191#endif /* CONFIG_NFS_V4_1 */
4192
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004193static int decode_sequence(struct xdr_stream *xdr,
4194 struct nfs4_sequence_res *res,
4195 struct rpc_rqst *rqstp)
4196{
4197#if defined(CONFIG_NFS_V4_1)
4198 if (!res->sr_session)
4199 return 0;
4200
4201 /* stub */
4202#endif /* CONFIG_NFS_V4_1 */
4203
4204 return 0;
4205}
4206
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207/*
Benny Halevy49c25592008-12-23 16:06:16 -05004208 * END OF "GENERIC" DECODE ROUTINES.
4209 */
4210
4211/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 * Decode OPEN_DOWNGRADE response
4213 */
Al Viro8687b632006-10-19 23:28:48 -07004214static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215{
Andy Adamson05d564f2008-12-23 16:06:15 -05004216 struct xdr_stream xdr;
4217 struct compound_hdr hdr;
4218 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
Andy Adamson05d564f2008-12-23 16:06:15 -05004220 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4221 status = decode_compound_hdr(&xdr, &hdr);
4222 if (status)
4223 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004224 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4225 if (status)
4226 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004227 status = decode_putfh(&xdr);
4228 if (status)
4229 goto out;
4230 status = decode_open_downgrade(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04004231 if (status != 0)
4232 goto out;
4233 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004235 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236}
4237
4238/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 * Decode ACCESS response
4240 */
Al Viro8687b632006-10-19 23:28:48 -07004241static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242{
4243 struct xdr_stream xdr;
4244 struct compound_hdr hdr;
4245 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004248 status = decode_compound_hdr(&xdr, &hdr);
4249 if (status)
4250 goto out;
4251 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4252 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 goto out;
Trond Myklebust76b32992007-08-10 17:45:11 -04004254 status = decode_putfh(&xdr);
4255 if (status != 0)
4256 goto out;
4257 status = decode_access(&xdr, res);
4258 if (status != 0)
4259 goto out;
4260 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261out:
4262 return status;
4263}
4264
4265/*
4266 * Decode LOOKUP response
4267 */
Al Viro8687b632006-10-19 23:28:48 -07004268static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269{
4270 struct xdr_stream xdr;
4271 struct compound_hdr hdr;
4272 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004275 status = decode_compound_hdr(&xdr, &hdr);
4276 if (status)
4277 goto out;
4278 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4279 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 goto out;
4281 if ((status = decode_putfh(&xdr)) != 0)
4282 goto out;
4283 if ((status = decode_lookup(&xdr)) != 0)
4284 goto out;
4285 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4286 goto out;
4287 status = decode_getfattr(&xdr, res->fattr, res->server);
4288out:
4289 return status;
4290}
4291
4292/*
4293 * Decode LOOKUP_ROOT response
4294 */
Al Viro8687b632006-10-19 23:28:48 -07004295static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296{
4297 struct xdr_stream xdr;
4298 struct compound_hdr hdr;
4299 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004300
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004302 status = decode_compound_hdr(&xdr, &hdr);
4303 if (status)
4304 goto out;
4305 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4306 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 goto out;
4308 if ((status = decode_putrootfh(&xdr)) != 0)
4309 goto out;
4310 if ((status = decode_getfh(&xdr, res->fh)) == 0)
4311 status = decode_getfattr(&xdr, res->fattr, res->server);
4312out:
4313 return status;
4314}
4315
4316/*
4317 * Decode REMOVE response
4318 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004319static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320{
4321 struct xdr_stream xdr;
4322 struct compound_hdr hdr;
4323 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004324
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004326 status = decode_compound_hdr(&xdr, &hdr);
4327 if (status)
4328 goto out;
4329 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4330 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 goto out;
Trond Myklebust16e42952005-10-27 22:12:44 -04004332 if ((status = decode_putfh(&xdr)) != 0)
4333 goto out;
4334 if ((status = decode_remove(&xdr, &res->cinfo)) != 0)
4335 goto out;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004336 decode_getfattr(&xdr, &res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337out:
4338 return status;
4339}
4340
4341/*
4342 * Decode RENAME response
4343 */
Al Viro8687b632006-10-19 23:28:48 -07004344static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_rename_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345{
4346 struct xdr_stream xdr;
4347 struct compound_hdr hdr;
4348 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004351 status = decode_compound_hdr(&xdr, &hdr);
4352 if (status)
4353 goto out;
4354 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4355 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 goto out;
4357 if ((status = decode_putfh(&xdr)) != 0)
4358 goto out;
4359 if ((status = decode_savefh(&xdr)) != 0)
4360 goto out;
4361 if ((status = decode_putfh(&xdr)) != 0)
4362 goto out;
Trond Myklebust6caf2c82005-10-27 22:12:43 -04004363 if ((status = decode_rename(&xdr, &res->old_cinfo, &res->new_cinfo)) != 0)
4364 goto out;
4365 /* Current FH is target directory */
4366 if (decode_getfattr(&xdr, res->new_fattr, res->server) != 0)
4367 goto out;
4368 if ((status = decode_restorefh(&xdr)) != 0)
4369 goto out;
4370 decode_getfattr(&xdr, res->old_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371out:
4372 return status;
4373}
4374
4375/*
4376 * Decode LINK response
4377 */
Al Viro8687b632006-10-19 23:28:48 -07004378static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379{
4380 struct xdr_stream xdr;
4381 struct compound_hdr hdr;
4382 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004385 status = decode_compound_hdr(&xdr, &hdr);
4386 if (status)
4387 goto out;
4388 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4389 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 goto out;
4391 if ((status = decode_putfh(&xdr)) != 0)
4392 goto out;
4393 if ((status = decode_savefh(&xdr)) != 0)
4394 goto out;
4395 if ((status = decode_putfh(&xdr)) != 0)
4396 goto out;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004397 if ((status = decode_link(&xdr, &res->cinfo)) != 0)
4398 goto out;
4399 /*
4400 * Note order: OP_LINK leaves the directory as the current
4401 * filehandle.
4402 */
4403 if (decode_getfattr(&xdr, res->dir_attr, res->server) != 0)
4404 goto out;
4405 if ((status = decode_restorefh(&xdr)) != 0)
4406 goto out;
4407 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408out:
4409 return status;
4410}
4411
4412/*
4413 * Decode CREATE response
4414 */
Al Viro8687b632006-10-19 23:28:48 -07004415static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416{
4417 struct xdr_stream xdr;
4418 struct compound_hdr hdr;
4419 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004420
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004422 status = decode_compound_hdr(&xdr, &hdr);
4423 if (status)
4424 goto out;
4425 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4426 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 goto out;
4428 if ((status = decode_putfh(&xdr)) != 0)
4429 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004430 if ((status = decode_savefh(&xdr)) != 0)
4431 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 if ((status = decode_create(&xdr,&res->dir_cinfo)) != 0)
4433 goto out;
4434 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4435 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004436 if (decode_getfattr(&xdr, res->fattr, res->server) != 0)
4437 goto out;
4438 if ((status = decode_restorefh(&xdr)) != 0)
4439 goto out;
4440 decode_getfattr(&xdr, res->dir_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441out:
4442 return status;
4443}
4444
4445/*
4446 * Decode SYMLINK response
4447 */
Al Viro8687b632006-10-19 23:28:48 -07004448static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449{
4450 return nfs4_xdr_dec_create(rqstp, p, res);
4451}
4452
4453/*
4454 * Decode GETATTR response
4455 */
Al Viro8687b632006-10-19 23:28:48 -07004456static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
4458 struct xdr_stream xdr;
4459 struct compound_hdr hdr;
4460 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004461
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4463 status = decode_compound_hdr(&xdr, &hdr);
4464 if (status)
4465 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004466 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4467 if (status)
4468 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 status = decode_putfh(&xdr);
4470 if (status)
4471 goto out;
4472 status = decode_getfattr(&xdr, res->fattr, res->server);
4473out:
4474 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475}
4476
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004477/*
4478 * Encode an SETACL request
4479 */
4480static int
Al Viro8687b632006-10-19 23:28:48 -07004481nfs4_xdr_enc_setacl(struct rpc_rqst *req, __be32 *p, struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004482{
Andy Adamson05d564f2008-12-23 16:06:15 -05004483 struct xdr_stream xdr;
4484 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04004485 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05004486 };
4487 int status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004488
Andy Adamson05d564f2008-12-23 16:06:15 -05004489 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04004490 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004491 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05004492 encode_putfh(&xdr, args->fh, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004493 status = encode_setacl(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004494 encode_nops(&hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05004495 return status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004496}
Andy Adamson05d564f2008-12-23 16:06:15 -05004497
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004498/*
4499 * Decode SETACL response
4500 */
4501static int
Benny Halevy73c403a2009-04-01 09:22:01 -04004502nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, __be32 *p,
4503 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004504{
4505 struct xdr_stream xdr;
4506 struct compound_hdr hdr;
4507 int status;
4508
4509 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4510 status = decode_compound_hdr(&xdr, &hdr);
4511 if (status)
4512 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004513 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4514 if (status)
4515 goto out;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004516 status = decode_putfh(&xdr);
4517 if (status)
4518 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004519 status = decode_setattr(&xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004520out:
4521 return status;
4522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
4524/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00004525 * Decode GETACL response
4526 */
4527static int
Benny Halevy663c79b2009-04-01 09:21:59 -04004528nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, __be32 *p,
4529 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00004530{
4531 struct xdr_stream xdr;
4532 struct compound_hdr hdr;
4533 int status;
4534
4535 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4536 status = decode_compound_hdr(&xdr, &hdr);
4537 if (status)
4538 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004539 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4540 if (status)
4541 goto out;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004542 status = decode_putfh(&xdr);
4543 if (status)
4544 goto out;
Benny Halevy663c79b2009-04-01 09:21:59 -04004545 status = decode_getacl(&xdr, rqstp, &res->acl_len);
J. Bruce Fields029d1052005-06-22 17:16:22 +00004546
4547out:
4548 return status;
4549}
4550
4551/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 * Decode CLOSE response
4553 */
Al Viro8687b632006-10-19 23:28:48 -07004554static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555{
Andy Adamson05d564f2008-12-23 16:06:15 -05004556 struct xdr_stream xdr;
4557 struct compound_hdr hdr;
4558 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Andy Adamson05d564f2008-12-23 16:06:15 -05004560 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4561 status = decode_compound_hdr(&xdr, &hdr);
4562 if (status)
4563 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004564 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4565 if (status)
4566 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004567 status = decode_putfh(&xdr);
4568 if (status)
4569 goto out;
4570 status = decode_close(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04004571 if (status != 0)
4572 goto out;
4573 /*
4574 * Note: Server may do delete on close for this file
4575 * in which case the getattr call will fail with
4576 * an ESTALE error. Shouldn't be a problem,
4577 * though, since fattr->valid will remain unset.
4578 */
4579 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004581 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582}
4583
4584/*
4585 * Decode OPEN response
4586 */
Al Viro8687b632006-10-19 23:28:48 -07004587static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
Andy Adamson05d564f2008-12-23 16:06:15 -05004589 struct xdr_stream xdr;
4590 struct compound_hdr hdr;
4591 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
Andy Adamson05d564f2008-12-23 16:06:15 -05004593 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4594 status = decode_compound_hdr(&xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004595 if (status)
4596 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004597 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4598 if (status)
4599 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004600 status = decode_putfh(&xdr);
4601 if (status)
4602 goto out;
4603 status = decode_savefh(&xdr);
4604 if (status)
4605 goto out;
4606 status = decode_open(&xdr, res);
4607 if (status)
4608 goto out;
Trond Myklebust99367812007-07-17 21:52:41 -04004609 if (decode_getfh(&xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004611 if (decode_getfattr(&xdr, res->f_attr, res->server) != 0)
4612 goto out;
Trond Myklebust365c8f52007-07-17 21:52:37 -04004613 if (decode_restorefh(&xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004614 goto out;
4615 decode_getfattr(&xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004617 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618}
4619
4620/*
4621 * Decode OPEN_CONFIRM response
4622 */
Al Viro8687b632006-10-19 23:28:48 -07004623static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp, __be32 *p, struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624{
Andy Adamson05d564f2008-12-23 16:06:15 -05004625 struct xdr_stream xdr;
4626 struct compound_hdr hdr;
4627 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
Andy Adamson05d564f2008-12-23 16:06:15 -05004629 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4630 status = decode_compound_hdr(&xdr, &hdr);
4631 if (status)
4632 goto out;
4633 status = decode_putfh(&xdr);
4634 if (status)
4635 goto out;
4636 status = decode_open_confirm(&xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004638 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
4640
4641/*
4642 * Decode OPEN response
4643 */
Al Viro8687b632006-10-19 23:28:48 -07004644static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645{
Andy Adamson05d564f2008-12-23 16:06:15 -05004646 struct xdr_stream xdr;
4647 struct compound_hdr hdr;
4648 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Andy Adamson05d564f2008-12-23 16:06:15 -05004650 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4651 status = decode_compound_hdr(&xdr, &hdr);
4652 if (status)
4653 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004654 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4655 if (status)
4656 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004657 status = decode_putfh(&xdr);
4658 if (status)
4659 goto out;
4660 status = decode_open(&xdr, res);
4661 if (status)
4662 goto out;
Trond Myklebust864472e2006-01-03 09:55:15 +01004663 decode_getfattr(&xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004665 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666}
4667
4668/*
4669 * Decode SETATTR response
4670 */
Al Viro8687b632006-10-19 23:28:48 -07004671static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
Andy Adamson05d564f2008-12-23 16:06:15 -05004673 struct xdr_stream xdr;
4674 struct compound_hdr hdr;
4675 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Andy Adamson05d564f2008-12-23 16:06:15 -05004677 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4678 status = decode_compound_hdr(&xdr, &hdr);
4679 if (status)
4680 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004681 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4682 if (status)
4683 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004684 status = decode_putfh(&xdr);
4685 if (status)
4686 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004687 status = decode_setattr(&xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05004688 if (status)
4689 goto out;
Trond Myklebust78f945f2009-03-11 14:10:23 -04004690 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004692 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693}
4694
4695/*
4696 * Decode LOCK response
4697 */
Al Viro8687b632006-10-19 23:28:48 -07004698static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
4700 struct xdr_stream xdr;
4701 struct compound_hdr hdr;
4702 int status;
4703
4704 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4705 status = decode_compound_hdr(&xdr, &hdr);
4706 if (status)
4707 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004708 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4709 if (status)
4710 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 status = decode_putfh(&xdr);
4712 if (status)
4713 goto out;
4714 status = decode_lock(&xdr, res);
4715out:
4716 return status;
4717}
4718
4719/*
4720 * Decode LOCKT response
4721 */
Al Viro8687b632006-10-19 23:28:48 -07004722static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723{
4724 struct xdr_stream xdr;
4725 struct compound_hdr hdr;
4726 int status;
4727
4728 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4729 status = decode_compound_hdr(&xdr, &hdr);
4730 if (status)
4731 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004732 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4733 if (status)
4734 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 status = decode_putfh(&xdr);
4736 if (status)
4737 goto out;
4738 status = decode_lockt(&xdr, res);
4739out:
4740 return status;
4741}
4742
4743/*
4744 * Decode LOCKU response
4745 */
Al Viro8687b632006-10-19 23:28:48 -07004746static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, __be32 *p, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747{
4748 struct xdr_stream xdr;
4749 struct compound_hdr hdr;
4750 int status;
4751
4752 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4753 status = decode_compound_hdr(&xdr, &hdr);
4754 if (status)
4755 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004756 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4757 if (status)
4758 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 status = decode_putfh(&xdr);
4760 if (status)
4761 goto out;
4762 status = decode_locku(&xdr, res);
4763out:
4764 return status;
4765}
4766
4767/*
4768 * Decode READLINK response
4769 */
Benny Halevyf50c7002009-04-01 09:21:55 -04004770static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp, __be32 *p,
4771 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
4773 struct xdr_stream xdr;
4774 struct compound_hdr hdr;
4775 int status;
4776
4777 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4778 status = decode_compound_hdr(&xdr, &hdr);
4779 if (status)
4780 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004781 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4782 if (status)
4783 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 status = decode_putfh(&xdr);
4785 if (status)
4786 goto out;
4787 status = decode_readlink(&xdr, rqstp);
4788out:
4789 return status;
4790}
4791
4792/*
4793 * Decode READDIR response
4794 */
Al Viro8687b632006-10-19 23:28:48 -07004795static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796{
4797 struct xdr_stream xdr;
4798 struct compound_hdr hdr;
4799 int status;
4800
4801 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4802 status = decode_compound_hdr(&xdr, &hdr);
4803 if (status)
4804 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004805 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4806 if (status)
4807 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 status = decode_putfh(&xdr);
4809 if (status)
4810 goto out;
4811 status = decode_readdir(&xdr, rqstp, res);
4812out:
4813 return status;
4814}
4815
4816/*
4817 * Decode Read response
4818 */
Al Viro8687b632006-10-19 23:28:48 -07004819static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, __be32 *p, struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820{
4821 struct xdr_stream xdr;
4822 struct compound_hdr hdr;
4823 int status;
4824
4825 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4826 status = decode_compound_hdr(&xdr, &hdr);
4827 if (status)
4828 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004829 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4830 if (status)
4831 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 status = decode_putfh(&xdr);
4833 if (status)
4834 goto out;
4835 status = decode_read(&xdr, rqstp, res);
4836 if (!status)
4837 status = res->count;
4838out:
4839 return status;
4840}
4841
4842/*
4843 * Decode WRITE response
4844 */
Al Viro8687b632006-10-19 23:28:48 -07004845static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846{
4847 struct xdr_stream xdr;
4848 struct compound_hdr hdr;
4849 int status;
4850
4851 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4852 status = decode_compound_hdr(&xdr, &hdr);
4853 if (status)
4854 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004855 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4856 if (status)
4857 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 status = decode_putfh(&xdr);
4859 if (status)
4860 goto out;
4861 status = decode_write(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004862 if (status)
4863 goto out;
4864 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 if (!status)
4866 status = res->count;
4867out:
4868 return status;
4869}
4870
4871/*
4872 * Decode COMMIT response
4873 */
Al Viro8687b632006-10-19 23:28:48 -07004874static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875{
4876 struct xdr_stream xdr;
4877 struct compound_hdr hdr;
4878 int status;
4879
4880 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4881 status = decode_compound_hdr(&xdr, &hdr);
4882 if (status)
4883 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004884 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4885 if (status)
4886 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 status = decode_putfh(&xdr);
4888 if (status)
4889 goto out;
4890 status = decode_commit(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004891 if (status)
4892 goto out;
4893 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894out:
4895 return status;
4896}
4897
4898/*
4899 * FSINFO request
4900 */
Benny Halevy3dda5e42009-04-01 09:21:57 -04004901static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, __be32 *p,
4902 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903{
4904 struct xdr_stream xdr;
4905 struct compound_hdr hdr;
4906 int status;
4907
4908 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4909 status = decode_compound_hdr(&xdr, &hdr);
4910 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004911 status = decode_sequence(&xdr, &res->seq_res, req);
4912 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 status = decode_putfh(&xdr);
4914 if (!status)
Benny Halevy3dda5e42009-04-01 09:21:57 -04004915 status = decode_fsinfo(&xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 return status;
4917}
4918
4919/*
4920 * PATHCONF request
4921 */
Benny Halevyd45b2982009-04-01 09:21:58 -04004922static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, __be32 *p,
4923 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924{
4925 struct xdr_stream xdr;
4926 struct compound_hdr hdr;
4927 int status;
4928
4929 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4930 status = decode_compound_hdr(&xdr, &hdr);
4931 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004932 status = decode_sequence(&xdr, &res->seq_res, req);
4933 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 status = decode_putfh(&xdr);
4935 if (!status)
Benny Halevyd45b2982009-04-01 09:21:58 -04004936 status = decode_pathconf(&xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 return status;
4938}
4939
4940/*
4941 * STATFS request
4942 */
Benny Halevy24ad1482009-04-01 09:21:56 -04004943static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p,
4944 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945{
4946 struct xdr_stream xdr;
4947 struct compound_hdr hdr;
4948 int status;
4949
4950 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4951 status = decode_compound_hdr(&xdr, &hdr);
4952 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004953 status = decode_sequence(&xdr, &res->seq_res, req);
4954 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 status = decode_putfh(&xdr);
4956 if (!status)
Benny Halevy24ad1482009-04-01 09:21:56 -04004957 status = decode_statfs(&xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 return status;
4959}
4960
4961/*
4962 * GETATTR_BITMAP request
4963 */
Al Viro8687b632006-10-19 23:28:48 -07004964static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req, __be32 *p, struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965{
4966 struct xdr_stream xdr;
4967 struct compound_hdr hdr;
4968 int status;
4969
4970 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004971 status = decode_compound_hdr(&xdr, &hdr);
4972 if (status)
4973 goto out;
4974 status = decode_sequence(&xdr, &res->seq_res, req);
4975 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 goto out;
4977 if ((status = decode_putfh(&xdr)) != 0)
4978 goto out;
4979 status = decode_server_caps(&xdr, res);
4980out:
4981 return status;
4982}
4983
4984/*
4985 * Decode RENEW response
4986 */
Al Viro8687b632006-10-19 23:28:48 -07004987static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988{
4989 struct xdr_stream xdr;
4990 struct compound_hdr hdr;
4991 int status;
4992
4993 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4994 status = decode_compound_hdr(&xdr, &hdr);
4995 if (!status)
4996 status = decode_renew(&xdr);
4997 return status;
4998}
4999
5000/*
5001 * a SETCLIENTID request
5002 */
Al Viro8687b632006-10-19 23:28:48 -07005003static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req, __be32 *p,
David Howellsadfa6f92006-08-22 20:06:08 -04005004 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005{
5006 struct xdr_stream xdr;
5007 struct compound_hdr hdr;
5008 int status;
5009
5010 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5011 status = decode_compound_hdr(&xdr, &hdr);
5012 if (!status)
5013 status = decode_setclientid(&xdr, clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 return status;
5015}
5016
5017/*
5018 * a SETCLIENTID_CONFIRM request
5019 */
Al Viro8687b632006-10-19 23:28:48 -07005020static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021{
5022 struct xdr_stream xdr;
5023 struct compound_hdr hdr;
5024 int status;
5025
5026 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5027 status = decode_compound_hdr(&xdr, &hdr);
5028 if (!status)
5029 status = decode_setclientid_confirm(&xdr);
5030 if (!status)
5031 status = decode_putrootfh(&xdr);
5032 if (!status)
5033 status = decode_fsinfo(&xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 return status;
5035}
5036
5037/*
5038 * DELEGRETURN request
5039 */
Al Viro8687b632006-10-19 23:28:48 -07005040static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041{
5042 struct xdr_stream xdr;
5043 struct compound_hdr hdr;
5044 int status;
5045
5046 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5047 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005048 if (status)
5049 goto out;
5050 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5051 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01005052 goto out;
5053 status = decode_putfh(&xdr);
5054 if (status != 0)
5055 goto out;
5056 status = decode_delegreturn(&xdr);
5057 decode_getfattr(&xdr, res->fattr, res->server);
5058out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 return status;
5060}
5061
Trond Myklebust683b57b2006-06-09 09:34:22 -04005062/*
5063 * FS_LOCATIONS request
5064 */
Benny Halevy22958462009-04-01 09:22:02 -04005065static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p,
5066 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005067{
5068 struct xdr_stream xdr;
5069 struct compound_hdr hdr;
5070 int status;
5071
5072 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5073 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005074 if (status)
5075 goto out;
5076 status = decode_sequence(&xdr, &res->seq_res, req);
5077 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005078 goto out;
5079 if ((status = decode_putfh(&xdr)) != 0)
5080 goto out;
5081 if ((status = decode_lookup(&xdr)) != 0)
5082 goto out;
5083 xdr_enter_page(&xdr, PAGE_SIZE);
Benny Halevy22958462009-04-01 09:22:02 -04005084 status = decode_getfattr(&xdr, &res->fs_locations->fattr,
5085 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04005086out:
5087 return status;
5088}
5089
Benny Halevy99fe60d2009-04-01 09:22:29 -04005090#if defined(CONFIG_NFS_V4_1)
5091/*
5092 * EXCHANGE_ID request
5093 */
5094static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp, uint32_t *p,
5095 void *res)
5096{
5097 struct xdr_stream xdr;
5098 struct compound_hdr hdr;
5099 int status;
5100
5101 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5102 status = decode_compound_hdr(&xdr, &hdr);
5103 if (!status)
5104 status = decode_exchange_id(&xdr, res);
5105 return status;
5106}
Andy Adamson2050f0c2009-04-01 09:22:30 -04005107
5108/*
Andy Adamsonfc931582009-04-01 09:22:31 -04005109 * a CREATE_SESSION request
5110 */
5111static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp, uint32_t *p,
5112 struct nfs41_create_session_res *res)
5113{
5114 struct xdr_stream xdr;
5115 struct compound_hdr hdr;
5116 int status;
5117
5118 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5119 status = decode_compound_hdr(&xdr, &hdr);
5120 if (!status)
5121 status = decode_create_session(&xdr, res);
5122 return status;
5123}
5124
5125/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04005126 * a GET_LEASE_TIME request
5127 */
5128static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp, uint32_t *p,
5129 struct nfs4_get_lease_time_res *res)
5130{
5131 struct xdr_stream xdr;
5132 struct compound_hdr hdr;
5133 int status;
5134
5135 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5136 status = decode_compound_hdr(&xdr, &hdr);
5137 if (!status)
5138 status = decode_sequence(&xdr, &res->lr_seq_res, rqstp);
5139 if (!status)
5140 status = decode_putrootfh(&xdr);
5141 if (!status)
5142 status = decode_fsinfo(&xdr, res->lr_fsinfo);
5143 return status;
5144}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005145#endif /* CONFIG_NFS_V4_1 */
5146
Al Viro0dbb4c62006-10-19 23:28:49 -07005147__be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148{
5149 uint32_t bitmap[2] = {0};
5150 uint32_t len;
5151
5152 if (!*p++) {
5153 if (!*p)
5154 return ERR_PTR(-EAGAIN);
5155 entry->eof = 1;
5156 return ERR_PTR(-EBADCOOKIE);
5157 }
5158
5159 entry->prev_cookie = entry->cookie;
5160 p = xdr_decode_hyper(p, &entry->cookie);
5161 entry->len = ntohl(*p++);
5162 entry->name = (const char *) p;
5163 p += XDR_QUADLEN(entry->len);
5164
5165 /*
5166 * In case the server doesn't return an inode number,
5167 * we fake one here. (We don't use inode number 0,
5168 * since glibc seems to choke on it...)
5169 */
5170 entry->ino = 1;
5171
5172 len = ntohl(*p++); /* bitmap length */
5173 if (len-- > 0) {
5174 bitmap[0] = ntohl(*p++);
5175 if (len-- > 0) {
5176 bitmap[1] = ntohl(*p++);
5177 p += len;
5178 }
5179 }
5180 len = XDR_QUADLEN(ntohl(*p++)); /* attribute buffer length */
5181 if (len > 0) {
Manoj Naik97d312d2005-06-22 17:16:39 +00005182 if (bitmap[0] & FATTR4_WORD0_RDATTR_ERROR) {
5183 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
5184 /* Ignore the return value of rdattr_error for now */
5185 p++;
5186 len--;
5187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 if (bitmap[0] == 0 && bitmap[1] == FATTR4_WORD1_MOUNTED_ON_FILEID)
5189 xdr_decode_hyper(p, &entry->ino);
5190 else if (bitmap[0] == FATTR4_WORD0_FILEID)
5191 xdr_decode_hyper(p, &entry->ino);
5192 p += len;
5193 }
5194
5195 entry->eof = !p[0] && p[1];
5196 return p;
5197}
5198
5199/*
5200 * We need to translate between nfs status return values and
5201 * the local errno values which may not be the same.
5202 */
5203static struct {
5204 int stat;
5205 int errno;
5206} nfs_errtbl[] = {
5207 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03005208 { NFS4ERR_PERM, -EPERM },
5209 { NFS4ERR_NOENT, -ENOENT },
5210 { NFS4ERR_IO, -errno_NFSERR_IO},
5211 { NFS4ERR_NXIO, -ENXIO },
5212 { NFS4ERR_ACCESS, -EACCES },
5213 { NFS4ERR_EXIST, -EEXIST },
5214 { NFS4ERR_XDEV, -EXDEV },
5215 { NFS4ERR_NOTDIR, -ENOTDIR },
5216 { NFS4ERR_ISDIR, -EISDIR },
5217 { NFS4ERR_INVAL, -EINVAL },
5218 { NFS4ERR_FBIG, -EFBIG },
5219 { NFS4ERR_NOSPC, -ENOSPC },
5220 { NFS4ERR_ROFS, -EROFS },
5221 { NFS4ERR_MLINK, -EMLINK },
5222 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
5223 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
5224 { NFS4ERR_DQUOT, -EDQUOT },
5225 { NFS4ERR_STALE, -ESTALE },
5226 { NFS4ERR_BADHANDLE, -EBADHANDLE },
5227 { NFS4ERR_BADOWNER, -EINVAL },
5228 { NFS4ERR_BADNAME, -EINVAL },
5229 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
5230 { NFS4ERR_NOTSUPP, -ENOTSUPP },
5231 { NFS4ERR_TOOSMALL, -ETOOSMALL },
5232 { NFS4ERR_SERVERFAULT, -ESERVERFAULT },
5233 { NFS4ERR_BADTYPE, -EBADTYPE },
5234 { NFS4ERR_LOCKED, -EAGAIN },
5235 { NFS4ERR_RESOURCE, -EREMOTEIO },
5236 { NFS4ERR_SYMLINK, -ELOOP },
5237 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
5238 { NFS4ERR_DEADLOCK, -EDEADLK },
5239 { NFS4ERR_WRONGSEC, -EPERM }, /* FIXME: this needs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 * to be handled by a
5241 * middle-layer.
5242 */
Benny Halevy856dff32008-03-31 17:39:06 +03005243 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244};
5245
5246/*
5247 * Convert an NFS error code to a local one.
5248 * This one is used jointly by NFSv2 and NFSv3.
5249 */
5250static int
David Howells0a8ea432006-08-22 20:06:08 -04005251nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252{
5253 int i;
5254 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
5255 if (nfs_errtbl[i].stat == stat)
5256 return nfs_errtbl[i].errno;
5257 }
5258 if (stat <= 10000 || stat > 10100) {
5259 /* The server is looney tunes. */
Benny Halevy856dff32008-03-31 17:39:06 +03005260 return -ESERVERFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 }
5262 /* If we cannot translate the error, the recovery routines should
5263 * handle it.
5264 * Note: remaining NFSv4 error codes have values > 10000, so should
5265 * not conflict with native Linux error codes.
5266 */
Benny Halevy856dff32008-03-31 17:39:06 +03005267 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268}
5269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270#define PROC(proc, argtype, restype) \
5271[NFSPROC4_CLNT_##proc] = { \
5272 .p_proc = NFSPROC4_COMPOUND, \
5273 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
5274 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04005275 .p_arglen = NFS4_##argtype##_sz, \
5276 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05005277 .p_statidx = NFSPROC4_CLNT_##proc, \
5278 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05005279}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
5281struct rpc_procinfo nfs4_procedures[] = {
5282 PROC(READ, enc_read, dec_read),
5283 PROC(WRITE, enc_write, dec_write),
5284 PROC(COMMIT, enc_commit, dec_commit),
5285 PROC(OPEN, enc_open, dec_open),
5286 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
5287 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
5288 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
5289 PROC(CLOSE, enc_close, dec_close),
5290 PROC(SETATTR, enc_setattr, dec_setattr),
5291 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
5292 PROC(RENEW, enc_renew, dec_renew),
5293 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
5294 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
5295 PROC(LOCK, enc_lock, dec_lock),
5296 PROC(LOCKT, enc_lockt, dec_lockt),
5297 PROC(LOCKU, enc_locku, dec_locku),
5298 PROC(ACCESS, enc_access, dec_access),
5299 PROC(GETATTR, enc_getattr, dec_getattr),
5300 PROC(LOOKUP, enc_lookup, dec_lookup),
5301 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
5302 PROC(REMOVE, enc_remove, dec_remove),
5303 PROC(RENAME, enc_rename, dec_rename),
5304 PROC(LINK, enc_link, dec_link),
5305 PROC(SYMLINK, enc_symlink, dec_symlink),
5306 PROC(CREATE, enc_create, dec_create),
5307 PROC(PATHCONF, enc_pathconf, dec_pathconf),
5308 PROC(STATFS, enc_statfs, dec_statfs),
5309 PROC(READLINK, enc_readlink, dec_readlink),
5310 PROC(READDIR, enc_readdir, dec_readdir),
5311 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
5312 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
J. Bruce Fields029d1052005-06-22 17:16:22 +00005313 PROC(GETACL, enc_getacl, dec_getacl),
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005314 PROC(SETACL, enc_setacl, dec_setacl),
Trond Myklebust683b57b2006-06-09 09:34:22 -04005315 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005316#if defined(CONFIG_NFS_V4_1)
5317 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
Andy Adamsonfc931582009-04-01 09:22:31 -04005318 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
Andy Adamson2050f0c2009-04-01 09:22:30 -04005319 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005320#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321};
5322
5323struct rpc_version nfs_version4 = {
5324 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08005325 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 .procs = nfs4_procedures
5327};
5328
5329/*
5330 * Local variables:
5331 * c-basic-offset: 8
5332 * End:
5333 */