]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/nfs/nfs4xdr.c
nfs41: exchange_id operation
[mirror_ubuntu-zesty-kernel.git] / fs / nfs / nfs4xdr.c
CommitLineData
1da177e4
LT
1/*
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>
6c0195a4 11 *
1da177e4
LT
12 * 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>
4ce79717 54#include "nfs4_fs.h"
1da177e4
LT
55
56#define NFSDBG_FACILITY NFSDBG_XDR
57
58/* Mapping from NFS error code to "errno" error code. */
59#define errno_NFSERR_IO EIO
60
0a8ea437 61static int nfs4_stat_to_errno(int);
1da177e4
LT
62
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
6c0195a4 70/* lock,open owner id:
9f958ab8 71 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
1da177e4 72 */
9f958ab8
TM
73#define open_owner_id_maxsz (1 + 4)
74#define lock_owner_id_maxsz (1 + 4)
9104a55d 75#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1da177e4
LT
76#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)
9104a55d
TM
80#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))
1da177e4
LT
84#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))
96928206
BF
92#define nfs4_fattr_bitmap_maxsz 3
93#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
1da177e4
LT
94#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
95#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
bd625ba8
TM
96#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
97#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
96928206
BF
98/* 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 + \
bd625ba8 100 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
96928206
BF
101#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)
9104a55d
TM
104#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
105 1 + 2 + 1 + \
106 nfs4_owner_maxsz + \
107 nfs4_group_maxsz + \
108 4 + 4)
1da177e4
LT
109#define encode_savefh_maxsz (op_encode_hdr_maxsz)
110#define decode_savefh_maxsz (op_decode_hdr_maxsz)
56ae19f3
TM
111#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
112#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
2f42b5d0 113#define encode_fsinfo_maxsz (encode_getattr_maxsz)
1da177e4
LT
114#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 + \
cc38bac3
CL
119 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 */
1da177e4
LT
125#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)
e6889620
TM
134#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
135#define decode_lookup_maxsz (op_decode_hdr_maxsz)
2cebf828
TM
136#define encode_share_access_maxsz \
137 (2)
9104a55d 138#define encode_createmode_maxsz (1 + encode_attrs_maxsz)
2cebf828
TM
139#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)
9104a55d 147#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
2cebf828
TM
148 decode_ace_maxsz)
149#define decode_change_info_maxsz (5)
150#define decode_open_maxsz (op_decode_hdr_maxsz + \
9104a55d 151 decode_stateid_maxsz + \
2cebf828
TM
152 decode_change_info_maxsz + 1 + \
153 nfs4_fattr_bitmap_maxsz + \
154 decode_delegation_maxsz)
9104a55d
TM
155#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)
1da177e4
LT
193#define encode_remove_maxsz (op_encode_hdr_maxsz + \
194 nfs4_name_maxsz)
6ce18391
BH
195#define decode_remove_maxsz (op_decode_hdr_maxsz + \
196 decode_change_info_maxsz)
1da177e4
LT
197#define encode_rename_maxsz (op_encode_hdr_maxsz + \
198 2 * nfs4_name_maxsz)
6ce18391
BH
199#define decode_rename_maxsz (op_decode_hdr_maxsz + \
200 decode_change_info_maxsz + \
201 decode_change_info_maxsz)
1da177e4
LT
202#define encode_link_maxsz (op_encode_hdr_maxsz + \
203 nfs4_name_maxsz)
6ce18391 204#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
9104a55d
TM
205#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)
1da177e4
LT
222#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
223 1 + nfs4_name_maxsz + \
94a6d753 224 1 + \
96928206 225 nfs4_fattr_maxsz)
1da177e4
LT
226#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
227#define encode_create_maxsz (op_encode_hdr_maxsz + \
9104a55d
TM
228 1 + 2 + nfs4_name_maxsz + \
229 encode_attrs_maxsz)
2cebf828
TM
230#define decode_create_maxsz (op_decode_hdr_maxsz + \
231 decode_change_info_maxsz + \
232 nfs4_fattr_bitmap_maxsz)
9104a55d
TM
233#define encode_statfs_maxsz (encode_getattr_maxsz)
234#define decode_statfs_maxsz (decode_getattr_maxsz)
1da177e4
LT
235#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
236#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
9104a55d
TM
237#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)
e6889620
TM
243#define encode_fs_locations_maxsz \
244 (encode_getattr_maxsz)
245#define decode_fs_locations_maxsz \
246 (0)
9b7b9fcc
AA
247
248#if defined(CONFIG_NFS_V4_1)
99fe60d0
BH
249#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
250 encode_verifier_maxsz + \
251 1 /* co_ownerid.len */ + \
252 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
253 1 /* flags */ + \
254 1 /* spa_how */ + \
255 0 /* SP4_NONE (for now) */ + \
256 1 /* zero implemetation id array */)
257#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
258 2 /* eir_clientid */ + \
259 1 /* eir_sequenceid */ + \
260 1 /* eir_flags */ + \
261 1 /* spr_how */ + \
262 0 /* SP4_NONE (for now) */ + \
263 2 /* eir_server_owner.so_minor_id */ + \
264 /* eir_server_owner.so_major_id<> */ \
265 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
266 /* eir_server_scope<> */ \
267 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
268 1 /* eir_server_impl_id array length */ + \
269 0 /* ignored eir_server_impl_id contents */)
9b7b9fcc
AA
270#define encode_sequence_maxsz 0 /* stub */
271#define decode_sequence_maxsz 0 /* stub */
272#else /* CONFIG_NFS_V4_1 */
273#define encode_sequence_maxsz 0
274#define decode_sequence_maxsz 0
275#endif /* CONFIG_NFS_V4_1 */
276
1da177e4
LT
277#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
278#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
279#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 280 encode_sequence_maxsz + \
1da177e4 281 encode_putfh_maxsz + \
9104a55d 282 encode_read_maxsz)
1da177e4 283#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 284 decode_sequence_maxsz + \
1da177e4 285 decode_putfh_maxsz + \
9104a55d 286 decode_read_maxsz)
1da177e4 287#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 288 encode_sequence_maxsz + \
1da177e4 289 encode_putfh_maxsz + \
9104a55d 290 encode_readlink_maxsz)
1da177e4 291#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 292 decode_sequence_maxsz + \
1da177e4 293 decode_putfh_maxsz + \
9104a55d 294 decode_readlink_maxsz)
1da177e4 295#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 296 encode_sequence_maxsz + \
1da177e4 297 encode_putfh_maxsz + \
9104a55d 298 encode_readdir_maxsz)
1da177e4 299#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 300 decode_sequence_maxsz + \
1da177e4 301 decode_putfh_maxsz + \
9104a55d 302 decode_readdir_maxsz)
1da177e4 303#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 304 encode_sequence_maxsz + \
1da177e4 305 encode_putfh_maxsz + \
9104a55d 306 encode_write_maxsz + \
4f9838c7 307 encode_getattr_maxsz)
1da177e4 308#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 309 decode_sequence_maxsz + \
1da177e4 310 decode_putfh_maxsz + \
9104a55d 311 decode_write_maxsz + \
4f9838c7 312 decode_getattr_maxsz)
1da177e4 313#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 314 encode_sequence_maxsz + \
1da177e4 315 encode_putfh_maxsz + \
9104a55d 316 encode_commit_maxsz + \
4f9838c7 317 encode_getattr_maxsz)
1da177e4 318#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 319 decode_sequence_maxsz + \
1da177e4 320 decode_putfh_maxsz + \
9104a55d 321 decode_commit_maxsz + \
4f9838c7 322 decode_getattr_maxsz)
1da177e4 323#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 324 encode_sequence_maxsz + \
2cebf828
TM
325 encode_putfh_maxsz + \
326 encode_savefh_maxsz + \
327 encode_open_maxsz + \
328 encode_getfh_maxsz + \
329 encode_getattr_maxsz + \
330 encode_restorefh_maxsz + \
331 encode_getattr_maxsz)
1da177e4 332#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 333 decode_sequence_maxsz + \
2cebf828
TM
334 decode_putfh_maxsz + \
335 decode_savefh_maxsz + \
336 decode_open_maxsz + \
337 decode_getfh_maxsz + \
338 decode_getattr_maxsz + \
339 decode_restorefh_maxsz + \
340 decode_getattr_maxsz)
9104a55d
TM
341#define NFS4_enc_open_confirm_sz \
342 (compound_encode_hdr_maxsz + \
343 encode_putfh_maxsz + \
344 encode_open_confirm_maxsz)
345#define NFS4_dec_open_confirm_sz \
346 (compound_decode_hdr_maxsz + \
347 decode_putfh_maxsz + \
348 decode_open_confirm_maxsz)
1da177e4 349#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 350 encode_sequence_maxsz + \
1da177e4 351 encode_putfh_maxsz + \
2cebf828
TM
352 encode_open_maxsz + \
353 encode_getattr_maxsz)
1da177e4 354#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 355 decode_sequence_maxsz + \
1da177e4 356 decode_putfh_maxsz + \
2cebf828
TM
357 decode_open_maxsz + \
358 decode_getattr_maxsz)
1da177e4
LT
359#define NFS4_enc_open_downgrade_sz \
360 (compound_encode_hdr_maxsz + \
9b7b9fcc 361 encode_sequence_maxsz + \
9104a55d
TM
362 encode_putfh_maxsz + \
363 encode_open_downgrade_maxsz + \
364 encode_getattr_maxsz)
1da177e4
LT
365#define NFS4_dec_open_downgrade_sz \
366 (compound_decode_hdr_maxsz + \
9b7b9fcc 367 decode_sequence_maxsz + \
9104a55d
TM
368 decode_putfh_maxsz + \
369 decode_open_downgrade_maxsz + \
370 decode_getattr_maxsz)
371#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 372 encode_sequence_maxsz + \
9104a55d
TM
373 encode_putfh_maxsz + \
374 encode_close_maxsz + \
375 encode_getattr_maxsz)
376#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 377 decode_sequence_maxsz + \
9104a55d
TM
378 decode_putfh_maxsz + \
379 decode_close_maxsz + \
380 decode_getattr_maxsz)
381#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 382 encode_sequence_maxsz + \
9104a55d
TM
383 encode_putfh_maxsz + \
384 encode_setattr_maxsz + \
385 encode_getattr_maxsz)
386#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 387 decode_sequence_maxsz + \
9104a55d
TM
388 decode_putfh_maxsz + \
389 decode_setattr_maxsz + \
390 decode_getattr_maxsz)
1da177e4 391#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 392 encode_sequence_maxsz + \
1da177e4
LT
393 encode_putfh_maxsz + \
394 encode_fsinfo_maxsz)
395#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 396 decode_sequence_maxsz + \
1da177e4
LT
397 decode_putfh_maxsz + \
398 decode_fsinfo_maxsz)
399#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
400 encode_renew_maxsz)
401#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
402 decode_renew_maxsz)
403#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
404 encode_setclientid_maxsz)
405#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
406 decode_setclientid_maxsz)
407#define NFS4_enc_setclientid_confirm_sz \
408 (compound_encode_hdr_maxsz + \
409 encode_setclientid_confirm_maxsz + \
410 encode_putrootfh_maxsz + \
411 encode_fsinfo_maxsz)
412#define NFS4_dec_setclientid_confirm_sz \
413 (compound_decode_hdr_maxsz + \
414 decode_setclientid_confirm_maxsz + \
415 decode_putrootfh_maxsz + \
416 decode_fsinfo_maxsz)
417#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 418 encode_sequence_maxsz + \
1da177e4 419 encode_putfh_maxsz + \
9104a55d 420 encode_lock_maxsz)
1da177e4 421#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 422 decode_sequence_maxsz + \
1da177e4 423 decode_putfh_maxsz + \
9104a55d 424 decode_lock_maxsz)
1da177e4 425#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 426 encode_sequence_maxsz + \
1da177e4 427 encode_putfh_maxsz + \
9104a55d
TM
428 encode_lockt_maxsz)
429#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 430 decode_sequence_maxsz + \
9104a55d
TM
431 decode_putfh_maxsz + \
432 decode_lockt_maxsz)
1da177e4 433#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 434 encode_sequence_maxsz + \
1da177e4 435 encode_putfh_maxsz + \
9104a55d 436 encode_locku_maxsz)
1da177e4 437#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 438 decode_sequence_maxsz + \
1da177e4 439 decode_putfh_maxsz + \
9104a55d 440 decode_locku_maxsz)
1da177e4 441#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 442 encode_sequence_maxsz + \
1da177e4 443 encode_putfh_maxsz + \
76b32999
TM
444 encode_access_maxsz + \
445 encode_getattr_maxsz)
1da177e4 446#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 447 decode_sequence_maxsz + \
1da177e4 448 decode_putfh_maxsz + \
76b32999
TM
449 decode_access_maxsz + \
450 decode_getattr_maxsz)
1da177e4 451#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 452 encode_sequence_maxsz + \
1da177e4
LT
453 encode_putfh_maxsz + \
454 encode_getattr_maxsz)
455#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 456 decode_sequence_maxsz + \
1da177e4
LT
457 decode_putfh_maxsz + \
458 decode_getattr_maxsz)
459#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 460 encode_sequence_maxsz + \
1da177e4
LT
461 encode_putfh_maxsz + \
462 encode_lookup_maxsz + \
463 encode_getattr_maxsz + \
464 encode_getfh_maxsz)
465#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 466 decode_sequence_maxsz + \
1da177e4 467 decode_putfh_maxsz + \
e6889620 468 decode_lookup_maxsz + \
1da177e4
LT
469 decode_getattr_maxsz + \
470 decode_getfh_maxsz)
471#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 472 encode_sequence_maxsz + \
1da177e4
LT
473 encode_putrootfh_maxsz + \
474 encode_getattr_maxsz + \
475 encode_getfh_maxsz)
476#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 477 decode_sequence_maxsz + \
1da177e4
LT
478 decode_putrootfh_maxsz + \
479 decode_getattr_maxsz + \
480 decode_getfh_maxsz)
481#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 482 encode_sequence_maxsz + \
1da177e4 483 encode_putfh_maxsz + \
16e42959
TM
484 encode_remove_maxsz + \
485 encode_getattr_maxsz)
1da177e4 486#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 487 decode_sequence_maxsz + \
1da177e4 488 decode_putfh_maxsz + \
6ce18391 489 decode_remove_maxsz + \
16e42959 490 decode_getattr_maxsz)
1da177e4 491#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 492 encode_sequence_maxsz + \
1da177e4
LT
493 encode_putfh_maxsz + \
494 encode_savefh_maxsz + \
495 encode_putfh_maxsz + \
6caf2c82
TM
496 encode_rename_maxsz + \
497 encode_getattr_maxsz + \
498 encode_restorefh_maxsz + \
499 encode_getattr_maxsz)
1da177e4 500#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 501 decode_sequence_maxsz + \
1da177e4
LT
502 decode_putfh_maxsz + \
503 decode_savefh_maxsz + \
504 decode_putfh_maxsz + \
6caf2c82
TM
505 decode_rename_maxsz + \
506 decode_getattr_maxsz + \
507 decode_restorefh_maxsz + \
508 decode_getattr_maxsz)
1da177e4 509#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 510 encode_sequence_maxsz + \
1da177e4
LT
511 encode_putfh_maxsz + \
512 encode_savefh_maxsz + \
513 encode_putfh_maxsz + \
91ba2eee
TM
514 encode_link_maxsz + \
515 decode_getattr_maxsz + \
516 encode_restorefh_maxsz + \
517 decode_getattr_maxsz)
1da177e4 518#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 519 decode_sequence_maxsz + \
1da177e4
LT
520 decode_putfh_maxsz + \
521 decode_savefh_maxsz + \
522 decode_putfh_maxsz + \
91ba2eee
TM
523 decode_link_maxsz + \
524 decode_getattr_maxsz + \
525 decode_restorefh_maxsz + \
526 decode_getattr_maxsz)
1da177e4 527#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 528 encode_sequence_maxsz + \
1da177e4
LT
529 encode_putfh_maxsz + \
530 encode_symlink_maxsz + \
531 encode_getattr_maxsz + \
532 encode_getfh_maxsz)
533#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 534 decode_sequence_maxsz + \
1da177e4
LT
535 decode_putfh_maxsz + \
536 decode_symlink_maxsz + \
537 decode_getattr_maxsz + \
538 decode_getfh_maxsz)
539#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 540 encode_sequence_maxsz + \
1da177e4 541 encode_putfh_maxsz + \
56ae19f3 542 encode_savefh_maxsz + \
1da177e4 543 encode_create_maxsz + \
56ae19f3 544 encode_getfh_maxsz + \
1da177e4 545 encode_getattr_maxsz + \
56ae19f3
TM
546 encode_restorefh_maxsz + \
547 encode_getattr_maxsz)
1da177e4 548#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 549 decode_sequence_maxsz + \
1da177e4 550 decode_putfh_maxsz + \
56ae19f3 551 decode_savefh_maxsz + \
1da177e4 552 decode_create_maxsz + \
56ae19f3 553 decode_getfh_maxsz + \
1da177e4 554 decode_getattr_maxsz + \
56ae19f3
TM
555 decode_restorefh_maxsz + \
556 decode_getattr_maxsz)
1da177e4 557#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 558 encode_sequence_maxsz + \
1da177e4
LT
559 encode_putfh_maxsz + \
560 encode_getattr_maxsz)
561#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 562 decode_sequence_maxsz + \
1da177e4
LT
563 decode_putfh_maxsz + \
564 decode_getattr_maxsz)
565#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 566 encode_sequence_maxsz + \
1da177e4 567 encode_putfh_maxsz + \
9104a55d 568 encode_statfs_maxsz)
1da177e4 569#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 570 decode_sequence_maxsz + \
1da177e4 571 decode_putfh_maxsz + \
9104a55d 572 decode_statfs_maxsz)
1da177e4 573#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 574 encode_sequence_maxsz + \
ab91f264 575 encode_putfh_maxsz + \
1da177e4
LT
576 encode_getattr_maxsz)
577#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 578 decode_sequence_maxsz + \
ab91f264 579 decode_putfh_maxsz + \
1da177e4
LT
580 decode_getattr_maxsz)
581#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 582 encode_sequence_maxsz + \
1da177e4 583 encode_putfh_maxsz + \
fa178f29
TM
584 encode_delegreturn_maxsz + \
585 encode_getattr_maxsz)
1da177e4 586#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 587 decode_sequence_maxsz + \
fa178f29
TM
588 decode_delegreturn_maxsz + \
589 decode_getattr_maxsz)
029d105e 590#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 591 encode_sequence_maxsz + \
029d105e 592 encode_putfh_maxsz + \
9104a55d 593 encode_getacl_maxsz)
029d105e 594#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 595 decode_sequence_maxsz + \
029d105e 596 decode_putfh_maxsz + \
9104a55d 597 decode_getacl_maxsz)
23ec6965 598#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
9b7b9fcc 599 encode_sequence_maxsz + \
23ec6965 600 encode_putfh_maxsz + \
9104a55d 601 encode_setacl_maxsz)
23ec6965 602#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
9b7b9fcc 603 decode_sequence_maxsz + \
23ec6965 604 decode_putfh_maxsz + \
9104a55d 605 decode_setacl_maxsz)
683b57b4
TM
606#define NFS4_enc_fs_locations_sz \
607 (compound_encode_hdr_maxsz + \
9b7b9fcc 608 encode_sequence_maxsz + \
683b57b4 609 encode_putfh_maxsz + \
e6889620
TM
610 encode_lookup_maxsz + \
611 encode_fs_locations_maxsz)
683b57b4
TM
612#define NFS4_dec_fs_locations_sz \
613 (compound_decode_hdr_maxsz + \
9b7b9fcc 614 decode_sequence_maxsz + \
683b57b4 615 decode_putfh_maxsz + \
e6889620
TM
616 decode_lookup_maxsz + \
617 decode_fs_locations_maxsz)
99fe60d0
BH
618#if defined(CONFIG_NFS_V4_1)
619#define NFS4_enc_exchange_id_sz \
620 (compound_encode_hdr_maxsz + \
621 encode_exchange_id_maxsz)
622#define NFS4_dec_exchange_id_sz \
623 (compound_decode_hdr_maxsz + \
624 decode_exchange_id_maxsz)
625#endif /* CONFIG_NFS_V4_1 */
1da177e4 626
bca79478
TM
627static const umode_t nfs_type2fmt[] = {
628 [NF4BAD] = 0,
629 [NF4REG] = S_IFREG,
630 [NF4DIR] = S_IFDIR,
631 [NF4BLK] = S_IFBLK,
632 [NF4CHR] = S_IFCHR,
633 [NF4LNK] = S_IFLNK,
634 [NF4SOCK] = S_IFSOCK,
635 [NF4FIFO] = S_IFIFO,
636 [NF4ATTRDIR] = 0,
637 [NF4NAMEDATTR] = 0,
1da177e4
LT
638};
639
640struct compound_hdr {
641 int32_t status;
642 uint32_t nops;
d017931c 643 __be32 * nops_p;
1da177e4
LT
644 uint32_t taglen;
645 char * tag;
0c4e8c18 646 uint32_t replen; /* expected reply words */
66cc0429 647 u32 minorversion;
1da177e4
LT
648};
649
650/*
651 * START OF "GENERIC" ENCODE ROUTINES.
652 * These may look a little ugly since they are imported from a "generic"
653 * set of XDR encode/decode routines which are intended to be shared by
654 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
655 *
656 * If the pain of reading these is too great, it should be a straightforward
657 * task to translate them into Linux-specific versions which are more
658 * consistent with the style used in NFSv2/v3...
659 */
660#define WRITE32(n) *p++ = htonl(n)
661#define WRITE64(n) do { \
662 *p++ = htonl((uint32_t)((n) >> 32)); \
663 *p++ = htonl((uint32_t)(n)); \
664} while (0)
665#define WRITEMEM(ptr,nbytes) do { \
666 p = xdr_encode_opaque_fixed(p, ptr, nbytes); \
667} while (0)
668
669#define RESERVE_SPACE(nbytes) do { \
670 p = xdr_reserve_space(xdr, nbytes); \
1da177e4
LT
671 BUG_ON(!p); \
672} while (0)
673
674static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
675{
8687b63a 676 __be32 *p;
1da177e4
LT
677
678 p = xdr_reserve_space(xdr, 4 + len);
679 BUG_ON(p == NULL);
680 xdr_encode_opaque(p, str, len);
681}
682
0c4e8c18
BH
683static void encode_compound_hdr(struct xdr_stream *xdr,
684 struct rpc_rqst *req,
685 struct compound_hdr *hdr)
1da177e4 686{
8687b63a 687 __be32 *p;
0c4e8c18
BH
688 struct rpc_auth *auth = req->rq_task->tk_msg.rpc_cred->cr_auth;
689
690 /* initialize running count of expected bytes in reply.
691 * NOTE: the replied tag SHOULD be the same is the one sent,
692 * but this is not required as a MUST for the server to do so. */
693 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
1da177e4
LT
694
695 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag);
696 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
697 RESERVE_SPACE(12+(XDR_QUADLEN(hdr->taglen)<<2));
698 WRITE32(hdr->taglen);
699 WRITEMEM(hdr->tag, hdr->taglen);
66cc0429 700 WRITE32(hdr->minorversion);
d017931c 701 hdr->nops_p = p;
1da177e4 702 WRITE32(hdr->nops);
d017931c
AA
703}
704
705static void encode_nops(struct compound_hdr *hdr)
706{
707 *hdr->nops_p = htonl(hdr->nops);
1da177e4
LT
708}
709
710static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
711{
8687b63a 712 __be32 *p;
1da177e4
LT
713
714 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
715 BUG_ON(p == NULL);
716 xdr_encode_opaque_fixed(p, verf->data, NFS4_VERIFIER_SIZE);
717}
718
cf8cdbe5 719static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
1da177e4
LT
720{
721 char owner_name[IDMAP_NAMESZ];
722 char owner_group[IDMAP_NAMESZ];
723 int owner_namelen = 0;
724 int owner_grouplen = 0;
8687b63a
AV
725 __be32 *p;
726 __be32 *q;
1da177e4
LT
727 int len;
728 uint32_t bmval0 = 0;
729 uint32_t bmval1 = 0;
1da177e4
LT
730
731 /*
732 * We reserve enough space to write the entire attribute buffer at once.
733 * In the worst-case, this would be
734 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
735 * = 36 bytes, plus any contribution from variable-length fields
23ec6965 736 * such as owner/group.
1da177e4
LT
737 */
738 len = 16;
739
740 /* Sigh */
741 if (iap->ia_valid & ATTR_SIZE)
742 len += 8;
743 if (iap->ia_valid & ATTR_MODE)
744 len += 4;
745 if (iap->ia_valid & ATTR_UID) {
7539bbab 746 owner_namelen = nfs_map_uid_to_name(server->nfs_client, iap->ia_uid, owner_name);
1da177e4 747 if (owner_namelen < 0) {
fe82a183
CL
748 dprintk("nfs: couldn't resolve uid %d to string\n",
749 iap->ia_uid);
1da177e4
LT
750 /* XXX */
751 strcpy(owner_name, "nobody");
752 owner_namelen = sizeof("nobody") - 1;
753 /* goto out; */
754 }
755 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
756 }
757 if (iap->ia_valid & ATTR_GID) {
7539bbab 758 owner_grouplen = nfs_map_gid_to_group(server->nfs_client, iap->ia_gid, owner_group);
1da177e4 759 if (owner_grouplen < 0) {
fe82a183
CL
760 dprintk("nfs: couldn't resolve gid %d to string\n",
761 iap->ia_gid);
1da177e4
LT
762 strcpy(owner_group, "nobody");
763 owner_grouplen = sizeof("nobody") - 1;
764 /* goto out; */
765 }
766 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
767 }
768 if (iap->ia_valid & ATTR_ATIME_SET)
769 len += 16;
770 else if (iap->ia_valid & ATTR_ATIME)
771 len += 4;
772 if (iap->ia_valid & ATTR_MTIME_SET)
773 len += 16;
774 else if (iap->ia_valid & ATTR_MTIME)
775 len += 4;
776 RESERVE_SPACE(len);
777
778 /*
779 * We write the bitmap length now, but leave the bitmap and the attribute
780 * buffer length to be backfilled at the end of this routine.
781 */
782 WRITE32(2);
783 q = p;
784 p += 3;
785
786 if (iap->ia_valid & ATTR_SIZE) {
787 bmval0 |= FATTR4_WORD0_SIZE;
788 WRITE64(iap->ia_size);
789 }
790 if (iap->ia_valid & ATTR_MODE) {
791 bmval1 |= FATTR4_WORD1_MODE;
cf3fff54 792 WRITE32(iap->ia_mode & S_IALLUGO);
1da177e4
LT
793 }
794 if (iap->ia_valid & ATTR_UID) {
795 bmval1 |= FATTR4_WORD1_OWNER;
796 WRITE32(owner_namelen);
797 WRITEMEM(owner_name, owner_namelen);
798 }
799 if (iap->ia_valid & ATTR_GID) {
800 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
801 WRITE32(owner_grouplen);
802 WRITEMEM(owner_group, owner_grouplen);
803 }
804 if (iap->ia_valid & ATTR_ATIME_SET) {
805 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
806 WRITE32(NFS4_SET_TO_CLIENT_TIME);
807 WRITE32(0);
808 WRITE32(iap->ia_mtime.tv_sec);
809 WRITE32(iap->ia_mtime.tv_nsec);
810 }
811 else if (iap->ia_valid & ATTR_ATIME) {
812 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
813 WRITE32(NFS4_SET_TO_SERVER_TIME);
814 }
815 if (iap->ia_valid & ATTR_MTIME_SET) {
816 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
817 WRITE32(NFS4_SET_TO_CLIENT_TIME);
818 WRITE32(0);
819 WRITE32(iap->ia_mtime.tv_sec);
820 WRITE32(iap->ia_mtime.tv_nsec);
821 }
822 else if (iap->ia_valid & ATTR_MTIME) {
823 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
824 WRITE32(NFS4_SET_TO_SERVER_TIME);
825 }
6c0195a4 826
1da177e4
LT
827 /*
828 * Now we backfill the bitmap and the attribute buffer length.
829 */
830 if (len != ((char *)p - (char *)q) + 4) {
fe82a183 831 printk(KERN_ERR "nfs: Attr length error, %u != %Zu\n",
1da177e4
LT
832 len, ((char *)p - (char *)q) + 4);
833 BUG();
834 }
835 len = (char *)p - (char *)q - 12;
836 *q++ = htonl(bmval0);
837 *q++ = htonl(bmval1);
838 *q++ = htonl(len);
839
1da177e4 840/* out: */
1da177e4
LT
841}
842
cf8cdbe5 843static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
1da177e4 844{
8687b63a 845 __be32 *p;
1da177e4
LT
846
847 RESERVE_SPACE(8);
848 WRITE32(OP_ACCESS);
849 WRITE32(access);
d017931c 850 hdr->nops++;
dadf0c27 851 hdr->replen += decode_access_maxsz;
1da177e4
LT
852}
853
cf8cdbe5 854static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
1da177e4 855{
8687b63a 856 __be32 *p;
1da177e4 857
8ae20abd 858 RESERVE_SPACE(8+NFS4_STATEID_SIZE);
1da177e4 859 WRITE32(OP_CLOSE);
cee54fc9 860 WRITE32(arg->seqid->sequence->counter);
8ae20abd 861 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
d017931c 862 hdr->nops++;
dadf0c27 863 hdr->replen += decode_close_maxsz;
1da177e4
LT
864}
865
cf8cdbe5 866static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
1da177e4 867{
8687b63a 868 __be32 *p;
6c0195a4 869
05d564fe
AA
870 RESERVE_SPACE(16);
871 WRITE32(OP_COMMIT);
872 WRITE64(args->offset);
873 WRITE32(args->count);
d017931c 874 hdr->nops++;
dadf0c27 875 hdr->replen += decode_commit_maxsz;
1da177e4
LT
876}
877
cf8cdbe5 878static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
1da177e4 879{
8687b63a 880 __be32 *p;
6c0195a4 881
1da177e4
LT
882 RESERVE_SPACE(8);
883 WRITE32(OP_CREATE);
884 WRITE32(create->ftype);
885
886 switch (create->ftype) {
887 case NF4LNK:
94a6d753
CL
888 RESERVE_SPACE(4);
889 WRITE32(create->u.symlink.len);
890 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
1da177e4
LT
891 break;
892
893 case NF4BLK: case NF4CHR:
894 RESERVE_SPACE(8);
895 WRITE32(create->u.device.specdata1);
896 WRITE32(create->u.device.specdata2);
897 break;
898
899 default:
900 break;
901 }
902
903 RESERVE_SPACE(4 + create->name->len);
904 WRITE32(create->name->len);
905 WRITEMEM(create->name->name, create->name->len);
d017931c 906 hdr->nops++;
dadf0c27 907 hdr->replen += decode_create_maxsz;
1da177e4 908
cf8cdbe5 909 encode_attrs(xdr, create->attrs, create->server);
1da177e4
LT
910}
911
cf8cdbe5 912static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
1da177e4 913{
05d564fe 914 __be32 *p;
1da177e4 915
05d564fe
AA
916 RESERVE_SPACE(12);
917 WRITE32(OP_GETATTR);
918 WRITE32(1);
919 WRITE32(bitmap);
d017931c 920 hdr->nops++;
dadf0c27 921 hdr->replen += decode_getattr_maxsz;
1da177e4
LT
922}
923
cf8cdbe5 924static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
1da177e4 925{
05d564fe 926 __be32 *p;
1da177e4 927
05d564fe
AA
928 RESERVE_SPACE(16);
929 WRITE32(OP_GETATTR);
930 WRITE32(2);
931 WRITE32(bm0);
932 WRITE32(bm1);
d017931c 933 hdr->nops++;
dadf0c27 934 hdr->replen += decode_getattr_maxsz;
1da177e4
LT
935}
936
cf8cdbe5 937static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1da177e4 938{
cf8cdbe5
AA
939 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
940 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
1da177e4
LT
941}
942
cf8cdbe5 943static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1da177e4 944{
cf8cdbe5
AA
945 encode_getattr_two(xdr, bitmask[0] & nfs4_fsinfo_bitmap[0],
946 bitmask[1] & nfs4_fsinfo_bitmap[1], hdr);
1da177e4
LT
947}
948
cf8cdbe5 949static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
830b8e33 950{
cf8cdbe5
AA
951 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
952 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
830b8e33
MN
953}
954
cf8cdbe5 955static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1da177e4 956{
8687b63a 957 __be32 *p;
1da177e4
LT
958
959 RESERVE_SPACE(4);
960 WRITE32(OP_GETFH);
d017931c 961 hdr->nops++;
dadf0c27 962 hdr->replen += decode_getfh_maxsz;
1da177e4
LT
963}
964
cf8cdbe5 965static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1da177e4 966{
8687b63a 967 __be32 *p;
1da177e4
LT
968
969 RESERVE_SPACE(8 + name->len);
970 WRITE32(OP_LINK);
971 WRITE32(name->len);
972 WRITEMEM(name->name, name->len);
d017931c 973 hdr->nops++;
dadf0c27 974 hdr->replen += decode_link_maxsz;
1da177e4
LT
975}
976
911d1aaf
TM
977static inline int nfs4_lock_type(struct file_lock *fl, int block)
978{
979 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
980 return block ? NFS4_READW_LT : NFS4_READ_LT;
981 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
982}
983
984static inline uint64_t nfs4_lock_length(struct file_lock *fl)
985{
986 if (fl->fl_end == OFFSET_MAX)
987 return ~(uint64_t)0;
988 return fl->fl_end - fl->fl_start + 1;
989}
990
1da177e4
LT
991/*
992 * opcode,type,reclaim,offset,length,new_lock_owner = 32
993 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
994 */
cf8cdbe5 995static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
1da177e4 996{
8687b63a 997 __be32 *p;
1da177e4
LT
998
999 RESERVE_SPACE(32);
1000 WRITE32(OP_LOCK);
911d1aaf
TM
1001 WRITE32(nfs4_lock_type(args->fl, args->block));
1002 WRITE32(args->reclaim);
1003 WRITE64(args->fl->fl_start);
1004 WRITE64(nfs4_lock_length(args->fl));
1005 WRITE32(args->new_lock_owner);
1006 if (args->new_lock_owner){
9f958ab8 1007 RESERVE_SPACE(4+NFS4_STATEID_SIZE+32);
911d1aaf 1008 WRITE32(args->open_seqid->sequence->counter);
8ae20abd 1009 WRITEMEM(args->open_stateid->data, NFS4_STATEID_SIZE);
911d1aaf
TM
1010 WRITE32(args->lock_seqid->sequence->counter);
1011 WRITE64(args->lock_owner.clientid);
9f958ab8
TM
1012 WRITE32(16);
1013 WRITEMEM("lock id:", 8);
1014 WRITE64(args->lock_owner.id);
1da177e4
LT
1015 }
1016 else {
8ae20abd
TM
1017 RESERVE_SPACE(NFS4_STATEID_SIZE+4);
1018 WRITEMEM(args->lock_stateid->data, NFS4_STATEID_SIZE);
911d1aaf 1019 WRITE32(args->lock_seqid->sequence->counter);
1da177e4 1020 }
d017931c 1021 hdr->nops++;
dadf0c27 1022 hdr->replen += decode_lock_maxsz;
1da177e4
LT
1023}
1024
cf8cdbe5 1025static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
1da177e4 1026{
8687b63a 1027 __be32 *p;
1da177e4 1028
9f958ab8 1029 RESERVE_SPACE(52);
1da177e4 1030 WRITE32(OP_LOCKT);
911d1aaf
TM
1031 WRITE32(nfs4_lock_type(args->fl, 0));
1032 WRITE64(args->fl->fl_start);
1033 WRITE64(nfs4_lock_length(args->fl));
1034 WRITE64(args->lock_owner.clientid);
9f958ab8
TM
1035 WRITE32(16);
1036 WRITEMEM("lock id:", 8);
1037 WRITE64(args->lock_owner.id);
d017931c 1038 hdr->nops++;
dadf0c27 1039 hdr->replen += decode_lockt_maxsz;
1da177e4
LT
1040}
1041
cf8cdbe5 1042static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
1da177e4 1043{
8687b63a 1044 __be32 *p;
1da177e4 1045
8ae20abd 1046 RESERVE_SPACE(12+NFS4_STATEID_SIZE+16);
1da177e4 1047 WRITE32(OP_LOCKU);
911d1aaf
TM
1048 WRITE32(nfs4_lock_type(args->fl, 0));
1049 WRITE32(args->seqid->sequence->counter);
8ae20abd 1050 WRITEMEM(args->stateid->data, NFS4_STATEID_SIZE);
911d1aaf
TM
1051 WRITE64(args->fl->fl_start);
1052 WRITE64(nfs4_lock_length(args->fl));
d017931c 1053 hdr->nops++;
dadf0c27 1054 hdr->replen += decode_locku_maxsz;
1da177e4
LT
1055}
1056
cf8cdbe5 1057static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1da177e4
LT
1058{
1059 int len = name->len;
8687b63a 1060 __be32 *p;
1da177e4
LT
1061
1062 RESERVE_SPACE(8 + len);
1063 WRITE32(OP_LOOKUP);
1064 WRITE32(len);
1065 WRITEMEM(name->name, len);
d017931c 1066 hdr->nops++;
dadf0c27 1067 hdr->replen += decode_lookup_maxsz;
1da177e4
LT
1068}
1069
dc0b027d 1070static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
1da177e4 1071{
8687b63a 1072 __be32 *p;
1da177e4
LT
1073
1074 RESERVE_SPACE(8);
dc0b027d 1075 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
05d564fe
AA
1076 case FMODE_READ:
1077 WRITE32(NFS4_SHARE_ACCESS_READ);
1078 break;
1079 case FMODE_WRITE:
1080 WRITE32(NFS4_SHARE_ACCESS_WRITE);
1081 break;
1082 case FMODE_READ|FMODE_WRITE:
1083 WRITE32(NFS4_SHARE_ACCESS_BOTH);
1084 break;
1085 default:
1086 WRITE32(0);
1da177e4
LT
1087 }
1088 WRITE32(0); /* for linux, share_deny = 0 always */
1089}
1090
1091static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1092{
8687b63a 1093 __be32 *p;
1da177e4
LT
1094 /*
1095 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1096 * owner 4 = 32
1097 */
1098 RESERVE_SPACE(8);
1099 WRITE32(OP_OPEN);
cee54fc9 1100 WRITE32(arg->seqid->sequence->counter);
dc0b027d 1101 encode_share_access(xdr, arg->fmode);
9f958ab8 1102 RESERVE_SPACE(28);
1da177e4 1103 WRITE64(arg->clientid);
9f958ab8
TM
1104 WRITE32(16);
1105 WRITEMEM("open id:", 8);
1106 WRITE64(arg->id);
1da177e4
LT
1107}
1108
1109static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1110{
8687b63a 1111 __be32 *p;
1da177e4
LT
1112
1113 RESERVE_SPACE(4);
1114 switch(arg->open_flags & O_EXCL) {
05d564fe
AA
1115 case 0:
1116 WRITE32(NFS4_CREATE_UNCHECKED);
1117 encode_attrs(xdr, arg->u.attrs, arg->server);
1118 break;
1119 default:
1120 WRITE32(NFS4_CREATE_EXCLUSIVE);
1121 encode_nfs4_verifier(xdr, &arg->u.verifier);
1da177e4
LT
1122 }
1123}
1124
1125static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1126{
8687b63a 1127 __be32 *p;
1da177e4
LT
1128
1129 RESERVE_SPACE(4);
1130 switch (arg->open_flags & O_CREAT) {
05d564fe
AA
1131 case 0:
1132 WRITE32(NFS4_OPEN_NOCREATE);
1133 break;
1134 default:
1135 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
1136 WRITE32(NFS4_OPEN_CREATE);
1137 encode_createmode(xdr, arg);
1da177e4
LT
1138 }
1139}
1140
bd7bf9d5 1141static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
1da177e4 1142{
8687b63a 1143 __be32 *p;
1da177e4
LT
1144
1145 RESERVE_SPACE(4);
1146 switch (delegation_type) {
05d564fe
AA
1147 case 0:
1148 WRITE32(NFS4_OPEN_DELEGATE_NONE);
1149 break;
1150 case FMODE_READ:
1151 WRITE32(NFS4_OPEN_DELEGATE_READ);
1152 break;
1153 case FMODE_WRITE|FMODE_READ:
1154 WRITE32(NFS4_OPEN_DELEGATE_WRITE);
1155 break;
1156 default:
1157 BUG();
1da177e4
LT
1158 }
1159}
1160
1161static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1162{
8687b63a 1163 __be32 *p;
1da177e4
LT
1164
1165 RESERVE_SPACE(4);
1166 WRITE32(NFS4_OPEN_CLAIM_NULL);
1167 encode_string(xdr, name->len, name->name);
1168}
1169
bd7bf9d5 1170static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
1da177e4 1171{
8687b63a 1172 __be32 *p;
1da177e4
LT
1173
1174 RESERVE_SPACE(4);
1175 WRITE32(NFS4_OPEN_CLAIM_PREVIOUS);
1176 encode_delegation_type(xdr, type);
1177}
1178
1179static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1180{
8687b63a 1181 __be32 *p;
1da177e4 1182
8ae20abd 1183 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
1da177e4 1184 WRITE32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
8ae20abd 1185 WRITEMEM(stateid->data, NFS4_STATEID_SIZE);
1da177e4
LT
1186 encode_string(xdr, name->len, name->name);
1187}
1188
cf8cdbe5 1189static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
1da177e4
LT
1190{
1191 encode_openhdr(xdr, arg);
1192 encode_opentype(xdr, arg);
1193 switch (arg->claim) {
05d564fe
AA
1194 case NFS4_OPEN_CLAIM_NULL:
1195 encode_claim_null(xdr, arg->name);
1196 break;
1197 case NFS4_OPEN_CLAIM_PREVIOUS:
1198 encode_claim_previous(xdr, arg->u.delegation_type);
1199 break;
1200 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1201 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1202 break;
1203 default:
1204 BUG();
1da177e4 1205 }
d017931c 1206 hdr->nops++;
dadf0c27 1207 hdr->replen += decode_open_maxsz;
1da177e4
LT
1208}
1209
cf8cdbe5 1210static void encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg, struct compound_hdr *hdr)
1da177e4 1211{
8687b63a 1212 __be32 *p;
1da177e4 1213
8ae20abd 1214 RESERVE_SPACE(4+NFS4_STATEID_SIZE+4);
1da177e4 1215 WRITE32(OP_OPEN_CONFIRM);
8ae20abd 1216 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
cee54fc9 1217 WRITE32(arg->seqid->sequence->counter);
d017931c 1218 hdr->nops++;
dadf0c27 1219 hdr->replen += decode_open_confirm_maxsz;
1da177e4
LT
1220}
1221
cf8cdbe5 1222static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
1da177e4 1223{
8687b63a 1224 __be32 *p;
1da177e4 1225
8ae20abd 1226 RESERVE_SPACE(4+NFS4_STATEID_SIZE+4);
1da177e4 1227 WRITE32(OP_OPEN_DOWNGRADE);
8ae20abd 1228 WRITEMEM(arg->stateid->data, NFS4_STATEID_SIZE);
cee54fc9 1229 WRITE32(arg->seqid->sequence->counter);
dc0b027d 1230 encode_share_access(xdr, arg->fmode);
d017931c 1231 hdr->nops++;
dadf0c27 1232 hdr->replen += decode_open_downgrade_maxsz;
1da177e4
LT
1233}
1234
cf8cdbe5 1235static void
d017931c 1236encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
1da177e4
LT
1237{
1238 int len = fh->size;
8687b63a 1239 __be32 *p;
1da177e4
LT
1240
1241 RESERVE_SPACE(8 + len);
1242 WRITE32(OP_PUTFH);
1243 WRITE32(len);
1244 WRITEMEM(fh->data, len);
d017931c 1245 hdr->nops++;
dadf0c27 1246 hdr->replen += decode_putfh_maxsz;
1da177e4
LT
1247}
1248
cf8cdbe5 1249static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1da177e4 1250{
05d564fe 1251 __be32 *p;
6c0195a4 1252
05d564fe
AA
1253 RESERVE_SPACE(4);
1254 WRITE32(OP_PUTROOTFH);
d017931c 1255 hdr->nops++;
dadf0c27 1256 hdr->replen += decode_putrootfh_maxsz;
1da177e4
LT
1257}
1258
1259static void encode_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx)
1260{
1da177e4 1261 nfs4_stateid stateid;
8687b63a 1262 __be32 *p;
1da177e4 1263
8ae20abd 1264 RESERVE_SPACE(NFS4_STATEID_SIZE);
1da177e4
LT
1265 if (ctx->state != NULL) {
1266 nfs4_copy_stateid(&stateid, ctx->state, ctx->lockowner);
8ae20abd 1267 WRITEMEM(stateid.data, NFS4_STATEID_SIZE);
1da177e4 1268 } else
8ae20abd 1269 WRITEMEM(zero_stateid.data, NFS4_STATEID_SIZE);
1da177e4
LT
1270}
1271
cf8cdbe5 1272static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
1da177e4 1273{
8687b63a 1274 __be32 *p;
1da177e4
LT
1275
1276 RESERVE_SPACE(4);
1277 WRITE32(OP_READ);
1278
1279 encode_stateid(xdr, args->context);
1280
1281 RESERVE_SPACE(12);
1282 WRITE64(args->offset);
1283 WRITE32(args->count);
d017931c 1284 hdr->nops++;
dadf0c27 1285 hdr->replen += decode_read_maxsz;
1da177e4
LT
1286}
1287
cf8cdbe5 1288static void encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req, struct compound_hdr *hdr)
1da177e4 1289{
97d312d0
MN
1290 uint32_t attrs[2] = {
1291 FATTR4_WORD0_RDATTR_ERROR|FATTR4_WORD0_FILEID,
1292 FATTR4_WORD1_MOUNTED_ON_FILEID,
1293 };
8687b63a 1294 __be32 *p;
1da177e4 1295
8ae20abd 1296 RESERVE_SPACE(12+NFS4_VERIFIER_SIZE+20);
1da177e4
LT
1297 WRITE32(OP_READDIR);
1298 WRITE64(readdir->cookie);
8ae20abd 1299 WRITEMEM(readdir->verifier.data, NFS4_VERIFIER_SIZE);
1da177e4
LT
1300 WRITE32(readdir->count >> 1); /* We're not doing readdirplus */
1301 WRITE32(readdir->count);
1302 WRITE32(2);
97d312d0
MN
1303 /* Switch to mounted_on_fileid if the server supports it */
1304 if (readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
1305 attrs[0] &= ~FATTR4_WORD0_FILEID;
1306 else
1307 attrs[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
1308 WRITE32(attrs[0] & readdir->bitmask[0]);
1309 WRITE32(attrs[1] & readdir->bitmask[1]);
d017931c 1310 hdr->nops++;
dadf0c27 1311 hdr->replen += decode_readdir_maxsz;
44109241
FI
1312 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1313 __func__,
eadf4598
TM
1314 (unsigned long long)readdir->cookie,
1315 ((u32 *)readdir->verifier.data)[0],
1316 ((u32 *)readdir->verifier.data)[1],
1317 attrs[0] & readdir->bitmask[0],
1318 attrs[1] & readdir->bitmask[1]);
1da177e4
LT
1319}
1320
cf8cdbe5 1321static void encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req, struct compound_hdr *hdr)
1da177e4 1322{
8687b63a 1323 __be32 *p;
1da177e4
LT
1324
1325 RESERVE_SPACE(4);
1326 WRITE32(OP_READLINK);
d017931c 1327 hdr->nops++;
dadf0c27 1328 hdr->replen += decode_readlink_maxsz;
1da177e4
LT
1329}
1330
cf8cdbe5 1331static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1da177e4 1332{
8687b63a 1333 __be32 *p;
1da177e4
LT
1334
1335 RESERVE_SPACE(8 + name->len);
1336 WRITE32(OP_REMOVE);
1337 WRITE32(name->len);
1338 WRITEMEM(name->name, name->len);
d017931c 1339 hdr->nops++;
dadf0c27 1340 hdr->replen += decode_remove_maxsz;
1da177e4
LT
1341}
1342
cf8cdbe5 1343static void encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_hdr *hdr)
1da177e4 1344{
8687b63a 1345 __be32 *p;
1da177e4
LT
1346
1347 RESERVE_SPACE(8 + oldname->len);
1348 WRITE32(OP_RENAME);
1349 WRITE32(oldname->len);
1350 WRITEMEM(oldname->name, oldname->len);
6c0195a4 1351
1da177e4
LT
1352 RESERVE_SPACE(4 + newname->len);
1353 WRITE32(newname->len);
1354 WRITEMEM(newname->name, newname->len);
d017931c 1355 hdr->nops++;
dadf0c27 1356 hdr->replen += decode_rename_maxsz;
1da177e4
LT
1357}
1358
cf8cdbe5 1359static void encode_renew(struct xdr_stream *xdr, const struct nfs_client *client_stateid, struct compound_hdr *hdr)
1da177e4 1360{
8687b63a 1361 __be32 *p;
1da177e4
LT
1362
1363 RESERVE_SPACE(12);
1364 WRITE32(OP_RENEW);
1365 WRITE64(client_stateid->cl_clientid);
d017931c 1366 hdr->nops++;
dadf0c27 1367 hdr->replen += decode_renew_maxsz;
1da177e4
LT
1368}
1369
cf8cdbe5 1370static void
d017931c 1371encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
56ae19f3 1372{
8687b63a 1373 __be32 *p;
56ae19f3
TM
1374
1375 RESERVE_SPACE(4);
1376 WRITE32(OP_RESTOREFH);
d017931c 1377 hdr->nops++;
dadf0c27 1378 hdr->replen += decode_restorefh_maxsz;
56ae19f3
TM
1379}
1380
23ec6965 1381static int
d017931c 1382encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
23ec6965 1383{
8687b63a 1384 __be32 *p;
23ec6965 1385
8ae20abd 1386 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
23ec6965 1387 WRITE32(OP_SETATTR);
8ae20abd 1388 WRITEMEM(zero_stateid.data, NFS4_STATEID_SIZE);
23ec6965
BF
1389 RESERVE_SPACE(2*4);
1390 WRITE32(1);
1391 WRITE32(FATTR4_WORD0_ACL);
1392 if (arg->acl_len % 4)
1393 return -EINVAL;
1394 RESERVE_SPACE(4);
1395 WRITE32(arg->acl_len);
1396 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
d017931c 1397 hdr->nops++;
dadf0c27 1398 hdr->replen += decode_setacl_maxsz;
23ec6965
BF
1399 return 0;
1400}
1401
cf8cdbe5 1402static void
d017931c 1403encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1da177e4 1404{
8687b63a 1405 __be32 *p;
1da177e4
LT
1406
1407 RESERVE_SPACE(4);
1408 WRITE32(OP_SAVEFH);
d017931c 1409 hdr->nops++;
dadf0c27 1410 hdr->replen += decode_savefh_maxsz;
1da177e4
LT
1411}
1412
cf8cdbe5 1413static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
1da177e4 1414{
8687b63a 1415 __be32 *p;
6c0195a4 1416
05d564fe
AA
1417 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
1418 WRITE32(OP_SETATTR);
8ae20abd 1419 WRITEMEM(arg->stateid.data, NFS4_STATEID_SIZE);
d017931c 1420 hdr->nops++;
dadf0c27 1421 hdr->replen += decode_setattr_maxsz;
cf8cdbe5 1422 encode_attrs(xdr, arg->iap, server);
1da177e4
LT
1423}
1424
cf8cdbe5 1425static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
1da177e4 1426{
8687b63a 1427 __be32 *p;
1da177e4 1428
8ae20abd 1429 RESERVE_SPACE(4 + NFS4_VERIFIER_SIZE);
1da177e4 1430 WRITE32(OP_SETCLIENTID);
8ae20abd 1431 WRITEMEM(setclientid->sc_verifier->data, NFS4_VERIFIER_SIZE);
1da177e4
LT
1432
1433 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
1434 RESERVE_SPACE(4);
1435 WRITE32(setclientid->sc_prog);
1436 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1437 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
1438 RESERVE_SPACE(4);
1439 WRITE32(setclientid->sc_cb_ident);
d017931c 1440 hdr->nops++;
dadf0c27 1441 hdr->replen += decode_setclientid_maxsz;
1da177e4
LT
1442}
1443
cf8cdbe5 1444static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs_client *client_state, struct compound_hdr *hdr)
1da177e4 1445{
05d564fe 1446 __be32 *p;
1da177e4 1447
05d564fe
AA
1448 RESERVE_SPACE(12 + NFS4_VERIFIER_SIZE);
1449 WRITE32(OP_SETCLIENTID_CONFIRM);
1450 WRITE64(client_state->cl_clientid);
1451 WRITEMEM(client_state->cl_confirm.data, NFS4_VERIFIER_SIZE);
d017931c 1452 hdr->nops++;
dadf0c27 1453 hdr->replen += decode_setclientid_confirm_maxsz;
1da177e4
LT
1454}
1455
cf8cdbe5 1456static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
1da177e4 1457{
8687b63a 1458 __be32 *p;
1da177e4
LT
1459
1460 RESERVE_SPACE(4);
1461 WRITE32(OP_WRITE);
1462
1463 encode_stateid(xdr, args->context);
1464
1465 RESERVE_SPACE(16);
1466 WRITE64(args->offset);
1467 WRITE32(args->stable);
1468 WRITE32(args->count);
1469
1470 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
d017931c 1471 hdr->nops++;
dadf0c27 1472 hdr->replen += decode_write_maxsz;
1da177e4
LT
1473}
1474
cf8cdbe5 1475static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
1da177e4 1476{
8687b63a 1477 __be32 *p;
1da177e4 1478
8ae20abd 1479 RESERVE_SPACE(4+NFS4_STATEID_SIZE);
1da177e4
LT
1480
1481 WRITE32(OP_DELEGRETURN);
8ae20abd 1482 WRITEMEM(stateid->data, NFS4_STATEID_SIZE);
d017931c 1483 hdr->nops++;
dadf0c27 1484 hdr->replen += decode_delegreturn_maxsz;
1da177e4 1485}
9b7b9fcc 1486
99fe60d0 1487#if defined(CONFIG_NFS_V4_1)
9b7b9fcc 1488/* NFSv4.1 operations */
99fe60d0
BH
1489static void encode_exchange_id(struct xdr_stream *xdr,
1490 struct nfs41_exchange_id_args *args,
1491 struct compound_hdr *hdr)
1492{
1493 __be32 *p;
1494
1495 RESERVE_SPACE(4 + sizeof(args->verifier->data));
1496 WRITE32(OP_EXCHANGE_ID);
1497 WRITEMEM(args->verifier->data, sizeof(args->verifier->data));
1498
1499 encode_string(xdr, args->id_len, args->id);
1500
1501 RESERVE_SPACE(12);
1502 WRITE32(args->flags);
1503 WRITE32(0); /* zero length state_protect4_a */
1504 WRITE32(0); /* zero length implementation id array */
1505 hdr->nops++;
1506 hdr->replen += decode_exchange_id_maxsz;
1507}
1508#endif /* CONFIG_NFS_V4_1 */
1509
9b7b9fcc
AA
1510static void encode_sequence(struct xdr_stream *xdr,
1511 const struct nfs4_sequence_args *args,
1512 struct compound_hdr *hdr)
1513{
1514#if defined(CONFIG_NFS_V4_1)
1515 struct nfs4_session *session = args->sa_session;
1516
1517 if (!session)
1518 return;
1519
1520 /* stub */
1521 hdr->nops++;
1522 hdr->replen += decode_sequence_maxsz;
1523#endif /* CONFIG_NFS_V4_1 */
1524}
1525
1da177e4
LT
1526/*
1527 * END OF "GENERIC" ENCODE ROUTINES.
1528 */
1529
66cc0429
BH
1530static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
1531{
1532#if defined(CONFIG_NFS_V4_1)
1533 if (args->sa_session)
1534 return args->sa_session->clp->cl_minorversion;
1535#endif /* CONFIG_NFS_V4_1 */
1536 return 0;
1537}
1538
1da177e4
LT
1539/*
1540 * Encode an ACCESS request
1541 */
8687b63a 1542static int nfs4_xdr_enc_access(struct rpc_rqst *req, __be32 *p, const struct nfs4_accessargs *args)
1da177e4
LT
1543{
1544 struct xdr_stream xdr;
1545 struct compound_hdr hdr = {
66cc0429 1546 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1547 };
1da177e4
LT
1548
1549 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1550 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1551 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1552 encode_putfh(&xdr, args->fh, &hdr);
1553 encode_access(&xdr, args->access, &hdr);
1554 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1555 encode_nops(&hdr);
cf8cdbe5 1556 return 0;
1da177e4
LT
1557}
1558
1559/*
1560 * Encode LOOKUP request
1561 */
8687b63a 1562static int nfs4_xdr_enc_lookup(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_arg *args)
1da177e4
LT
1563{
1564 struct xdr_stream xdr;
1565 struct compound_hdr hdr = {
66cc0429 1566 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1567 };
1da177e4
LT
1568
1569 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1570 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1571 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1572 encode_putfh(&xdr, args->dir_fh, &hdr);
1573 encode_lookup(&xdr, args->name, &hdr);
1574 encode_getfh(&xdr, &hdr);
1575 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1576 encode_nops(&hdr);
cf8cdbe5 1577 return 0;
1da177e4
LT
1578}
1579
1580/*
1581 * Encode LOOKUP_ROOT request
1582 */
8687b63a 1583static int nfs4_xdr_enc_lookup_root(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_root_arg *args)
1da177e4
LT
1584{
1585 struct xdr_stream xdr;
1586 struct compound_hdr hdr = {
66cc0429 1587 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1588 };
1da177e4
LT
1589
1590 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1591 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1592 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1593 encode_putrootfh(&xdr, &hdr);
1594 encode_getfh(&xdr, &hdr);
1595 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1596 encode_nops(&hdr);
cf8cdbe5 1597 return 0;
1da177e4
LT
1598}
1599
1600/*
1601 * Encode REMOVE request
1602 */
4fdc17b2 1603static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args)
1da177e4
LT
1604{
1605 struct xdr_stream xdr;
1606 struct compound_hdr hdr = {
66cc0429 1607 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1608 };
1da177e4
LT
1609
1610 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1611 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1612 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1613 encode_putfh(&xdr, args->fh, &hdr);
1614 encode_remove(&xdr, &args->name, &hdr);
1615 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1616 encode_nops(&hdr);
cf8cdbe5 1617 return 0;
1da177e4
LT
1618}
1619
1620/*
1621 * Encode RENAME request
1622 */
8687b63a 1623static int nfs4_xdr_enc_rename(struct rpc_rqst *req, __be32 *p, const struct nfs4_rename_arg *args)
1da177e4
LT
1624{
1625 struct xdr_stream xdr;
1626 struct compound_hdr hdr = {
66cc0429 1627 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1628 };
1da177e4
LT
1629
1630 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1631 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1632 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1633 encode_putfh(&xdr, args->old_dir, &hdr);
1634 encode_savefh(&xdr, &hdr);
1635 encode_putfh(&xdr, args->new_dir, &hdr);
1636 encode_rename(&xdr, args->old_name, args->new_name, &hdr);
1637 encode_getfattr(&xdr, args->bitmask, &hdr);
1638 encode_restorefh(&xdr, &hdr);
1639 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1640 encode_nops(&hdr);
cf8cdbe5 1641 return 0;
1da177e4
LT
1642}
1643
1644/*
1645 * Encode LINK request
1646 */
8687b63a 1647static int nfs4_xdr_enc_link(struct rpc_rqst *req, __be32 *p, const struct nfs4_link_arg *args)
1da177e4
LT
1648{
1649 struct xdr_stream xdr;
1650 struct compound_hdr hdr = {
66cc0429 1651 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1652 };
1da177e4
LT
1653
1654 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1655 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1656 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1657 encode_putfh(&xdr, args->fh, &hdr);
1658 encode_savefh(&xdr, &hdr);
1659 encode_putfh(&xdr, args->dir_fh, &hdr);
1660 encode_link(&xdr, args->name, &hdr);
1661 encode_getfattr(&xdr, args->bitmask, &hdr);
1662 encode_restorefh(&xdr, &hdr);
1663 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1664 encode_nops(&hdr);
cf8cdbe5 1665 return 0;
1da177e4
LT
1666}
1667
1668/*
1669 * Encode CREATE request
1670 */
8687b63a 1671static int nfs4_xdr_enc_create(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
1da177e4
LT
1672{
1673 struct xdr_stream xdr;
1674 struct compound_hdr hdr = {
66cc0429 1675 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1676 };
1da177e4
LT
1677
1678 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1679 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1680 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1681 encode_putfh(&xdr, args->dir_fh, &hdr);
1682 encode_savefh(&xdr, &hdr);
1683 encode_create(&xdr, args, &hdr);
1684 encode_getfh(&xdr, &hdr);
1685 encode_getfattr(&xdr, args->bitmask, &hdr);
1686 encode_restorefh(&xdr, &hdr);
1687 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1688 encode_nops(&hdr);
cf8cdbe5 1689 return 0;
1da177e4
LT
1690}
1691
1692/*
1693 * Encode SYMLINK request
1694 */
8687b63a 1695static int nfs4_xdr_enc_symlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
1da177e4
LT
1696{
1697 return nfs4_xdr_enc_create(req, p, args);
1698}
1699
1700/*
1701 * Encode GETATTR request
1702 */
8687b63a 1703static int nfs4_xdr_enc_getattr(struct rpc_rqst *req, __be32 *p, const struct nfs4_getattr_arg *args)
1da177e4
LT
1704{
1705 struct xdr_stream xdr;
1706 struct compound_hdr hdr = {
66cc0429 1707 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1708 };
1da177e4
LT
1709
1710 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1711 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1712 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1713 encode_putfh(&xdr, args->fh, &hdr);
1714 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1715 encode_nops(&hdr);
cf8cdbe5 1716 return 0;
1da177e4
LT
1717}
1718
1719/*
1720 * Encode a CLOSE request
1721 */
8687b63a 1722static int nfs4_xdr_enc_close(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
1da177e4 1723{
05d564fe
AA
1724 struct xdr_stream xdr;
1725 struct compound_hdr hdr = {
66cc0429 1726 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
05d564fe 1727 };
05d564fe
AA
1728
1729 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1730 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1731 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1732 encode_putfh(&xdr, args->fh, &hdr);
1733 encode_close(&xdr, args, &hdr);
1734 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1735 encode_nops(&hdr);
cf8cdbe5 1736 return 0;
1da177e4
LT
1737}
1738
1739/*
1740 * Encode an OPEN request
1741 */
8687b63a 1742static int nfs4_xdr_enc_open(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
1da177e4
LT
1743{
1744 struct xdr_stream xdr;
1745 struct compound_hdr hdr = {
66cc0429 1746 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1747 };
1da177e4
LT
1748
1749 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1750 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1751 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1752 encode_putfh(&xdr, args->fh, &hdr);
1753 encode_savefh(&xdr, &hdr);
1754 encode_open(&xdr, args, &hdr);
1755 encode_getfh(&xdr, &hdr);
1756 encode_getfattr(&xdr, args->bitmask, &hdr);
1757 encode_restorefh(&xdr, &hdr);
1758 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1759 encode_nops(&hdr);
cf8cdbe5 1760 return 0;
1da177e4
LT
1761}
1762
1763/*
1764 * Encode an OPEN_CONFIRM request
1765 */
8687b63a 1766static int nfs4_xdr_enc_open_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_open_confirmargs *args)
1da177e4
LT
1767{
1768 struct xdr_stream xdr;
1769 struct compound_hdr hdr = {
d017931c 1770 .nops = 0,
1da177e4 1771 };
1da177e4
LT
1772
1773 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1774 encode_compound_hdr(&xdr, req, &hdr);
cf8cdbe5
AA
1775 encode_putfh(&xdr, args->fh, &hdr);
1776 encode_open_confirm(&xdr, args, &hdr);
d017931c 1777 encode_nops(&hdr);
cf8cdbe5 1778 return 0;
1da177e4
LT
1779}
1780
1781/*
1782 * Encode an OPEN request with no attributes.
1783 */
8687b63a 1784static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
1da177e4
LT
1785{
1786 struct xdr_stream xdr;
1787 struct compound_hdr hdr = {
66cc0429 1788 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1789 };
1da177e4
LT
1790
1791 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1792 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1793 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1794 encode_putfh(&xdr, args->fh, &hdr);
1795 encode_open(&xdr, args, &hdr);
1796 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1797 encode_nops(&hdr);
cf8cdbe5 1798 return 0;
1da177e4
LT
1799}
1800
1801/*
1802 * Encode an OPEN_DOWNGRADE request
1803 */
8687b63a 1804static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
1da177e4
LT
1805{
1806 struct xdr_stream xdr;
1807 struct compound_hdr hdr = {
66cc0429 1808 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1809 };
1da177e4
LT
1810
1811 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1812 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1813 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1814 encode_putfh(&xdr, args->fh, &hdr);
1815 encode_open_downgrade(&xdr, args, &hdr);
1816 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1817 encode_nops(&hdr);
cf8cdbe5 1818 return 0;
1da177e4
LT
1819}
1820
1821/*
1822 * Encode a LOCK request
1823 */
8687b63a 1824static int nfs4_xdr_enc_lock(struct rpc_rqst *req, __be32 *p, struct nfs_lock_args *args)
1da177e4
LT
1825{
1826 struct xdr_stream xdr;
1827 struct compound_hdr hdr = {
66cc0429 1828 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1829 };
1da177e4
LT
1830
1831 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1832 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1833 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1834 encode_putfh(&xdr, args->fh, &hdr);
1835 encode_lock(&xdr, args, &hdr);
d017931c 1836 encode_nops(&hdr);
cf8cdbe5 1837 return 0;
1da177e4
LT
1838}
1839
1840/*
1841 * Encode a LOCKT request
1842 */
8687b63a 1843static int nfs4_xdr_enc_lockt(struct rpc_rqst *req, __be32 *p, struct nfs_lockt_args *args)
1da177e4
LT
1844{
1845 struct xdr_stream xdr;
1846 struct compound_hdr hdr = {
66cc0429 1847 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1848 };
1da177e4
LT
1849
1850 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1851 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1852 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1853 encode_putfh(&xdr, args->fh, &hdr);
1854 encode_lockt(&xdr, args, &hdr);
d017931c 1855 encode_nops(&hdr);
cf8cdbe5 1856 return 0;
1da177e4
LT
1857}
1858
1859/*
1860 * Encode a LOCKU request
1861 */
8687b63a 1862static int nfs4_xdr_enc_locku(struct rpc_rqst *req, __be32 *p, struct nfs_locku_args *args)
1da177e4
LT
1863{
1864 struct xdr_stream xdr;
1865 struct compound_hdr hdr = {
66cc0429 1866 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1867 };
1da177e4
LT
1868
1869 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1870 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1871 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1872 encode_putfh(&xdr, args->fh, &hdr);
1873 encode_locku(&xdr, args, &hdr);
d017931c 1874 encode_nops(&hdr);
cf8cdbe5 1875 return 0;
1da177e4
LT
1876}
1877
1878/*
1879 * Encode a READLINK request
1880 */
8687b63a 1881static int nfs4_xdr_enc_readlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_readlink *args)
1da177e4
LT
1882{
1883 struct xdr_stream xdr;
1884 struct compound_hdr hdr = {
66cc0429 1885 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1886 };
1da177e4
LT
1887
1888 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1889 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1890 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1891 encode_putfh(&xdr, args->fh, &hdr);
1892 encode_readlink(&xdr, args, req, &hdr);
e3a535e1 1893
28f56694 1894 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
e3a535e1 1895 args->pgbase, args->pglen);
d017931c 1896 encode_nops(&hdr);
cf8cdbe5 1897 return 0;
1da177e4
LT
1898}
1899
1900/*
1901 * Encode a READDIR request
1902 */
8687b63a 1903static int nfs4_xdr_enc_readdir(struct rpc_rqst *req, __be32 *p, const struct nfs4_readdir_arg *args)
1da177e4
LT
1904{
1905 struct xdr_stream xdr;
1906 struct compound_hdr hdr = {
66cc0429 1907 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1908 };
1da177e4
LT
1909
1910 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1911 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1912 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1913 encode_putfh(&xdr, args->fh, &hdr);
1914 encode_readdir(&xdr, args, req, &hdr);
d6ac02df 1915
28f56694 1916 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
d6ac02df
TM
1917 args->pgbase, args->count);
1918 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
28f56694 1919 __func__, hdr.replen << 2, args->pages,
d6ac02df 1920 args->pgbase, args->count);
d017931c 1921 encode_nops(&hdr);
cf8cdbe5 1922 return 0;
1da177e4
LT
1923}
1924
1925/*
1926 * Encode a READ request
1927 */
8687b63a 1928static int nfs4_xdr_enc_read(struct rpc_rqst *req, __be32 *p, struct nfs_readargs *args)
1da177e4 1929{
1da177e4
LT
1930 struct xdr_stream xdr;
1931 struct compound_hdr hdr = {
66cc0429 1932 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 1933 };
1da177e4
LT
1934
1935 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1936 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1937 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1938 encode_putfh(&xdr, args->fh, &hdr);
1939 encode_read(&xdr, args, &hdr);
1da177e4 1940
28f56694 1941 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
1da177e4 1942 args->pages, args->pgbase, args->count);
4f22ccc3 1943 req->rq_rcv_buf.flags |= XDRBUF_READ;
d017931c 1944 encode_nops(&hdr);
cf8cdbe5 1945 return 0;
1da177e4
LT
1946}
1947
1948/*
1949 * Encode an SETATTR request
1950 */
8687b63a 1951static int nfs4_xdr_enc_setattr(struct rpc_rqst *req, __be32 *p, struct nfs_setattrargs *args)
1da177e4 1952{
05d564fe
AA
1953 struct xdr_stream xdr;
1954 struct compound_hdr hdr = {
66cc0429 1955 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
05d564fe 1956 };
05d564fe
AA
1957
1958 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1959 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1960 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
1961 encode_putfh(&xdr, args->fh, &hdr);
1962 encode_setattr(&xdr, args, args->server, &hdr);
1963 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 1964 encode_nops(&hdr);
cf8cdbe5 1965 return 0;
1da177e4
LT
1966}
1967
029d105e
BF
1968/*
1969 * Encode a GETACL request
1970 */
1971static int
8687b63a 1972nfs4_xdr_enc_getacl(struct rpc_rqst *req, __be32 *p,
029d105e
BF
1973 struct nfs_getaclargs *args)
1974{
1975 struct xdr_stream xdr;
029d105e 1976 struct compound_hdr hdr = {
66cc0429 1977 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
029d105e 1978 };
28f56694 1979 uint32_t replen;
029d105e
BF
1980
1981 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 1982 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 1983 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5 1984 encode_putfh(&xdr, args->fh, &hdr);
28f56694 1985 replen = hdr.replen + nfs4_fattr_bitmap_maxsz + 1;
cf8cdbe5
AA
1986 encode_getattr_two(&xdr, FATTR4_WORD0_ACL, 0, &hdr);
1987
28f56694 1988 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
029d105e 1989 args->acl_pages, args->acl_pgbase, args->acl_len);
d017931c 1990 encode_nops(&hdr);
cf8cdbe5 1991 return 0;
029d105e
BF
1992}
1993
1da177e4
LT
1994/*
1995 * Encode a WRITE request
1996 */
8687b63a 1997static int nfs4_xdr_enc_write(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
1da177e4
LT
1998{
1999 struct xdr_stream xdr;
2000 struct compound_hdr hdr = {
66cc0429 2001 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2002 };
1da177e4
LT
2003
2004 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2005 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2006 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2007 encode_putfh(&xdr, args->fh, &hdr);
2008 encode_write(&xdr, args, &hdr);
4f22ccc3 2009 req->rq_snd_buf.flags |= XDRBUF_WRITE;
cf8cdbe5 2010 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 2011 encode_nops(&hdr);
cf8cdbe5 2012 return 0;
1da177e4
LT
2013}
2014
2015/*
2016 * a COMMIT request
2017 */
8687b63a 2018static int nfs4_xdr_enc_commit(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
1da177e4
LT
2019{
2020 struct xdr_stream xdr;
2021 struct compound_hdr hdr = {
66cc0429 2022 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2023 };
1da177e4
LT
2024
2025 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2026 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2027 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2028 encode_putfh(&xdr, args->fh, &hdr);
2029 encode_commit(&xdr, args, &hdr);
2030 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 2031 encode_nops(&hdr);
cf8cdbe5 2032 return 0;
1da177e4
LT
2033}
2034
2035/*
2036 * FSINFO request
2037 */
8687b63a 2038static int nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, __be32 *p, struct nfs4_fsinfo_arg *args)
1da177e4
LT
2039{
2040 struct xdr_stream xdr;
2041 struct compound_hdr hdr = {
66cc0429 2042 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2043 };
1da177e4
LT
2044
2045 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2046 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2047 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2048 encode_putfh(&xdr, args->fh, &hdr);
2049 encode_fsinfo(&xdr, args->bitmask, &hdr);
d017931c 2050 encode_nops(&hdr);
cf8cdbe5 2051 return 0;
1da177e4
LT
2052}
2053
2054/*
2055 * a PATHCONF request
2056 */
8687b63a 2057static int nfs4_xdr_enc_pathconf(struct rpc_rqst *req, __be32 *p, const struct nfs4_pathconf_arg *args)
1da177e4 2058{
1da177e4
LT
2059 struct xdr_stream xdr;
2060 struct compound_hdr hdr = {
66cc0429 2061 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2062 };
1da177e4
LT
2063
2064 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2065 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2066 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2067 encode_putfh(&xdr, args->fh, &hdr);
2068 encode_getattr_one(&xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2069 &hdr);
d017931c 2070 encode_nops(&hdr);
cf8cdbe5 2071 return 0;
1da177e4
LT
2072}
2073
2074/*
2075 * a STATFS request
2076 */
8687b63a 2077static int nfs4_xdr_enc_statfs(struct rpc_rqst *req, __be32 *p, const struct nfs4_statfs_arg *args)
1da177e4 2078{
1da177e4
LT
2079 struct xdr_stream xdr;
2080 struct compound_hdr hdr = {
66cc0429 2081 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2082 };
1da177e4
LT
2083
2084 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2085 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2086 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2087 encode_putfh(&xdr, args->fh, &hdr);
2088 encode_getattr_two(&xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
2089 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
d017931c 2090 encode_nops(&hdr);
cf8cdbe5 2091 return 0;
1da177e4
LT
2092}
2093
2094/*
2095 * GETATTR_BITMAP request
2096 */
43652ad5
BH
2097static int nfs4_xdr_enc_server_caps(struct rpc_rqst *req, __be32 *p,
2098 struct nfs4_server_caps_arg *args)
1da177e4
LT
2099{
2100 struct xdr_stream xdr;
2101 struct compound_hdr hdr = {
66cc0429 2102 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2103 };
1da177e4
LT
2104
2105 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2106 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2107 encode_sequence(&xdr, &args->seq_args, &hdr);
43652ad5 2108 encode_putfh(&xdr, args->fhandle, &hdr);
cf8cdbe5
AA
2109 encode_getattr_one(&xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
2110 FATTR4_WORD0_LINK_SUPPORT|
2111 FATTR4_WORD0_SYMLINK_SUPPORT|
2112 FATTR4_WORD0_ACLSUPPORT, &hdr);
d017931c 2113 encode_nops(&hdr);
cf8cdbe5 2114 return 0;
1da177e4
LT
2115}
2116
2117/*
2118 * a RENEW request
2119 */
8687b63a 2120static int nfs4_xdr_enc_renew(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
1da177e4
LT
2121{
2122 struct xdr_stream xdr;
2123 struct compound_hdr hdr = {
d017931c 2124 .nops = 0,
1da177e4
LT
2125 };
2126
2127 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2128 encode_compound_hdr(&xdr, req, &hdr);
cf8cdbe5 2129 encode_renew(&xdr, clp, &hdr);
d017931c 2130 encode_nops(&hdr);
cf8cdbe5 2131 return 0;
1da177e4
LT
2132}
2133
2134/*
2135 * a SETCLIENTID request
2136 */
8687b63a 2137static int nfs4_xdr_enc_setclientid(struct rpc_rqst *req, __be32 *p, struct nfs4_setclientid *sc)
1da177e4
LT
2138{
2139 struct xdr_stream xdr;
2140 struct compound_hdr hdr = {
d017931c 2141 .nops = 0,
1da177e4
LT
2142 };
2143
2144 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2145 encode_compound_hdr(&xdr, req, &hdr);
cf8cdbe5 2146 encode_setclientid(&xdr, sc, &hdr);
d017931c 2147 encode_nops(&hdr);
cf8cdbe5 2148 return 0;
1da177e4
LT
2149}
2150
2151/*
2152 * a SETCLIENTID_CONFIRM request
2153 */
8687b63a 2154static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
1da177e4
LT
2155{
2156 struct xdr_stream xdr;
2157 struct compound_hdr hdr = {
d017931c 2158 .nops = 0,
1da177e4
LT
2159 };
2160 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
1da177e4
LT
2161
2162 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2163 encode_compound_hdr(&xdr, req, &hdr);
cf8cdbe5
AA
2164 encode_setclientid_confirm(&xdr, clp, &hdr);
2165 encode_putrootfh(&xdr, &hdr);
2166 encode_fsinfo(&xdr, lease_bitmap, &hdr);
d017931c 2167 encode_nops(&hdr);
cf8cdbe5 2168 return 0;
1da177e4
LT
2169}
2170
2171/*
2172 * DELEGRETURN request
2173 */
8687b63a 2174static int nfs4_xdr_enc_delegreturn(struct rpc_rqst *req, __be32 *p, const struct nfs4_delegreturnargs *args)
1da177e4
LT
2175{
2176 struct xdr_stream xdr;
2177 struct compound_hdr hdr = {
66cc0429 2178 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
1da177e4 2179 };
1da177e4
LT
2180
2181 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2182 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2183 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2184 encode_putfh(&xdr, args->fhandle, &hdr);
2185 encode_delegreturn(&xdr, args->stateid, &hdr);
2186 encode_getfattr(&xdr, args->bitmask, &hdr);
d017931c 2187 encode_nops(&hdr);
cf8cdbe5 2188 return 0;
1da177e4
LT
2189}
2190
683b57b4
TM
2191/*
2192 * Encode FS_LOCATIONS request
2193 */
8687b63a 2194static int nfs4_xdr_enc_fs_locations(struct rpc_rqst *req, __be32 *p, struct nfs4_fs_locations_arg *args)
683b57b4
TM
2195{
2196 struct xdr_stream xdr;
2197 struct compound_hdr hdr = {
66cc0429 2198 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
683b57b4 2199 };
28f56694 2200 uint32_t replen;
683b57b4
TM
2201
2202 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 2203 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 2204 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5
AA
2205 encode_putfh(&xdr, args->dir_fh, &hdr);
2206 encode_lookup(&xdr, args->name, &hdr);
28f56694 2207 replen = hdr.replen; /* get the attribute into args->page */
cf8cdbe5
AA
2208 encode_fs_locations(&xdr, args->bitmask, &hdr);
2209
28f56694 2210 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
683b57b4 2211 0, PAGE_SIZE);
d017931c 2212 encode_nops(&hdr);
cf8cdbe5 2213 return 0;
683b57b4
TM
2214}
2215
99fe60d0
BH
2216#if defined(CONFIG_NFS_V4_1)
2217/*
2218 * EXCHANGE_ID request
2219 */
2220static int nfs4_xdr_enc_exchange_id(struct rpc_rqst *req, uint32_t *p,
2221 struct nfs41_exchange_id_args *args)
2222{
2223 struct xdr_stream xdr;
2224 struct compound_hdr hdr = {
2225 .minorversion = args->client->cl_minorversion,
2226 };
2227
2228 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2229 encode_compound_hdr(&xdr, req, &hdr);
2230 encode_exchange_id(&xdr, args, &hdr);
2231 encode_nops(&hdr);
2232 return 0;
2233}
2234#endif /* CONFIG_NFS_V4_1 */
2235
1da177e4
LT
2236/*
2237 * START OF "GENERIC" DECODE ROUTINES.
2238 * These may look a little ugly since they are imported from a "generic"
2239 * set of XDR encode/decode routines which are intended to be shared by
2240 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
2241 *
2242 * If the pain of reading these is too great, it should be a straightforward
2243 * task to translate them into Linux-specific versions which are more
2244 * consistent with the style used in NFSv2/v3...
2245 */
2246#define READ32(x) (x) = ntohl(*p++)
2247#define READ64(x) do { \
2248 (x) = (u64)ntohl(*p++) << 32; \
2249 (x) |= ntohl(*p++); \
2250} while (0)
2251#define READTIME(x) do { \
2252 p++; \
2253 (x.tv_sec) = ntohl(*p++); \
2254 (x.tv_nsec) = ntohl(*p++); \
2255} while (0)
2256#define COPYMEM(x,nbytes) do { \
2257 memcpy((x), p, nbytes); \
2258 p += XDR_QUADLEN(nbytes); \
2259} while (0)
2260
2261#define READ_BUF(nbytes) do { \
2262 p = xdr_inline_decode(xdr, nbytes); \
e4cc6ee2 2263 if (unlikely(!p)) { \
fe82a183 2264 dprintk("nfs: %s: prematurely hit end of receive" \
3110ff80 2265 " buffer\n", __func__); \
fe82a183 2266 dprintk("nfs: %s: xdr->p=%p, bytes=%u, xdr->end=%p\n", \
3110ff80 2267 __func__, xdr->p, nbytes, xdr->end); \
1da177e4
LT
2268 return -EIO; \
2269 } \
2270} while (0)
2271
683b57b4 2272static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
1da177e4 2273{
8687b63a 2274 __be32 *p;
1da177e4
LT
2275
2276 READ_BUF(4);
2277 READ32(*len);
2278 READ_BUF(*len);
2279 *string = (char *)p;
2280 return 0;
2281}
2282
2283static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2284{
8687b63a 2285 __be32 *p;
1da177e4
LT
2286
2287 READ_BUF(8);
2288 READ32(hdr->status);
2289 READ32(hdr->taglen);
6c0195a4 2290
1da177e4
LT
2291 READ_BUF(hdr->taglen + 4);
2292 hdr->tag = (char *)p;
2293 p += XDR_QUADLEN(hdr->taglen);
2294 READ32(hdr->nops);
aadf6152
BH
2295 if (unlikely(hdr->nops < 1))
2296 return nfs4_stat_to_errno(hdr->status);
1da177e4
LT
2297 return 0;
2298}
2299
2300static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2301{
8687b63a 2302 __be32 *p;
1da177e4
LT
2303 uint32_t opnum;
2304 int32_t nfserr;
2305
2306 READ_BUF(8);
2307 READ32(opnum);
2308 if (opnum != expected) {
fe82a183
CL
2309 dprintk("nfs: Server returned operation"
2310 " %d but we issued a request for %d\n",
1da177e4
LT
2311 opnum, expected);
2312 return -EIO;
2313 }
2314 READ32(nfserr);
2315 if (nfserr != NFS_OK)
856dff3d 2316 return nfs4_stat_to_errno(nfserr);
1da177e4
LT
2317 return 0;
2318}
2319
2320/* Dummy routine */
adfa6f98 2321static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
1da177e4 2322{
8687b63a 2323 __be32 *p;
683b57b4 2324 unsigned int strlen;
1da177e4
LT
2325 char *str;
2326
2327 READ_BUF(12);
2328 return decode_opaque_inline(xdr, &strlen, &str);
2329}
2330
2331static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2332{
8687b63a
AV
2333 uint32_t bmlen;
2334 __be32 *p;
1da177e4
LT
2335
2336 READ_BUF(4);
2337 READ32(bmlen);
2338
2339 bitmap[0] = bitmap[1] = 0;
2340 READ_BUF((bmlen << 2));
2341 if (bmlen > 0) {
2342 READ32(bitmap[0]);
2343 if (bmlen > 1)
2344 READ32(bitmap[1]);
2345 }
2346 return 0;
2347}
2348
8687b63a 2349static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
1da177e4 2350{
8687b63a 2351 __be32 *p;
1da177e4
LT
2352
2353 READ_BUF(4);
2354 READ32(*attrlen);
2355 *savep = xdr->p;
2356 return 0;
2357}
2358
2359static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
2360{
2361 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
2362 decode_attr_bitmap(xdr, bitmask);
2363 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
2364 } else
2365 bitmask[0] = bitmask[1] = 0;
44109241 2366 dprintk("%s: bitmask=%08x:%08x\n", __func__, bitmask[0], bitmask[1]);
1da177e4
LT
2367 return 0;
2368}
2369
2370static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
2371{
8687b63a 2372 __be32 *p;
409924e4 2373 int ret = 0;
1da177e4
LT
2374
2375 *type = 0;
2376 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
2377 return -EIO;
2378 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
2379 READ_BUF(4);
2380 READ32(*type);
2381 if (*type < NF4REG || *type > NF4NAMEDATTR) {
3110ff80 2382 dprintk("%s: bad type %d\n", __func__, *type);
1da177e4
LT
2383 return -EIO;
2384 }
2385 bitmap[0] &= ~FATTR4_WORD0_TYPE;
409924e4 2386 ret = NFS_ATTR_FATTR_TYPE;
1da177e4 2387 }
bca79478 2388 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
409924e4 2389 return ret;
1da177e4
LT
2390}
2391
2392static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
2393{
8687b63a 2394 __be32 *p;
409924e4 2395 int ret = 0;
1da177e4
LT
2396
2397 *change = 0;
2398 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
2399 return -EIO;
2400 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
2401 READ_BUF(8);
2402 READ64(*change);
2403 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
409924e4 2404 ret = NFS_ATTR_FATTR_CHANGE;
1da177e4 2405 }
3110ff80 2406 dprintk("%s: change attribute=%Lu\n", __func__,
1da177e4 2407 (unsigned long long)*change);
409924e4 2408 return ret;
1da177e4
LT
2409}
2410
2411static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
2412{
8687b63a 2413 __be32 *p;
409924e4 2414 int ret = 0;
1da177e4
LT
2415
2416 *size = 0;
2417 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
2418 return -EIO;
2419 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
2420 READ_BUF(8);
2421 READ64(*size);
2422 bitmap[0] &= ~FATTR4_WORD0_SIZE;
409924e4 2423 ret = NFS_ATTR_FATTR_SIZE;
1da177e4 2424 }
3110ff80 2425 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
409924e4 2426 return ret;
1da177e4
LT
2427}
2428
2429static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2430{
8687b63a 2431 __be32 *p;
1da177e4
LT
2432
2433 *res = 0;
2434 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
2435 return -EIO;
2436 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
2437 READ_BUF(4);
2438 READ32(*res);
2439 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
2440 }
3110ff80 2441 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
1da177e4
LT
2442 return 0;
2443}
2444
2445static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2446{
8687b63a 2447 __be32 *p;
1da177e4
LT
2448
2449 *res = 0;
2450 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
2451 return -EIO;
2452 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
2453 READ_BUF(4);
2454 READ32(*res);
2455 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
2456 }
3110ff80 2457 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
1da177e4
LT
2458 return 0;
2459}
2460
8b4bdcf8 2461static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
1da177e4 2462{
8687b63a 2463 __be32 *p;
409924e4 2464 int ret = 0;
1da177e4
LT
2465
2466 fsid->major = 0;
2467 fsid->minor = 0;
2468 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
2469 return -EIO;
2470 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
2471 READ_BUF(16);
2472 READ64(fsid->major);
2473 READ64(fsid->minor);
2474 bitmap[0] &= ~FATTR4_WORD0_FSID;
409924e4 2475 ret = NFS_ATTR_FATTR_FSID;
1da177e4 2476 }
3110ff80 2477 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
1da177e4
LT
2478 (unsigned long long)fsid->major,
2479 (unsigned long long)fsid->minor);
409924e4 2480 return ret;
1da177e4
LT
2481}
2482
2483static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2484{
8687b63a 2485 __be32 *p;
1da177e4
LT
2486
2487 *res = 60;
2488 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
2489 return -EIO;
2490 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
2491 READ_BUF(4);
2492 READ32(*res);
2493 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
2494 }
3110ff80 2495 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
1da177e4
LT
2496 return 0;
2497}
2498
2499static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2500{
8687b63a 2501 __be32 *p;
1da177e4
LT
2502
2503 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
2504 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
2505 return -EIO;
2506 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
2507 READ_BUF(4);
2508 READ32(*res);
2509 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
2510 }
3110ff80 2511 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
1da177e4
LT
2512 return 0;
2513}
2514
2515static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2516{
8687b63a 2517 __be32 *p;
409924e4 2518 int ret = 0;
1da177e4
LT
2519
2520 *fileid = 0;
2521 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
2522 return -EIO;
2523 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
2524 READ_BUF(8);
2525 READ64(*fileid);
2526 bitmap[0] &= ~FATTR4_WORD0_FILEID;
409924e4 2527 ret = NFS_ATTR_FATTR_FILEID;
1da177e4 2528 }
3110ff80 2529 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
409924e4 2530 return ret;
1da177e4
LT
2531}
2532
99baf625
MN
2533static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2534{
8687b63a 2535 __be32 *p;
409924e4 2536 int ret = 0;
99baf625
MN
2537
2538 *fileid = 0;
2539 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
2540 return -EIO;
2541 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
2542 READ_BUF(8);
2543 READ64(*fileid);
2544 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
409924e4 2545 ret = NFS_ATTR_FATTR_FILEID;
99baf625 2546 }
3110ff80 2547 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
409924e4 2548 return ret;
99baf625
MN
2549}
2550
1da177e4
LT
2551static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2552{
8687b63a 2553 __be32 *p;
1da177e4
LT
2554 int status = 0;
2555
2556 *res = 0;
2557 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
2558 return -EIO;
2559 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
2560 READ_BUF(8);
2561 READ64(*res);
2562 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
2563 }
3110ff80 2564 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2565 return status;
2566}
2567
2568static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2569{
8687b63a 2570 __be32 *p;
1da177e4
LT
2571 int status = 0;
2572
2573 *res = 0;
2574 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
2575 return -EIO;
2576 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
2577 READ_BUF(8);
2578 READ64(*res);
2579 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
2580 }
3110ff80 2581 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2582 return status;
2583}
2584
2585static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2586{
8687b63a 2587 __be32 *p;
1da177e4
LT
2588 int status = 0;
2589
2590 *res = 0;
2591 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
2592 return -EIO;
2593 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
2594 READ_BUF(8);
2595 READ64(*res);
2596 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
2597 }
3110ff80 2598 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2599 return status;
2600}
2601
7aaa0b3b
MN
2602static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
2603{
464ad6b1 2604 u32 n;
8687b63a 2605 __be32 *p;
7aaa0b3b
MN
2606 int status = 0;
2607
2608 READ_BUF(4);
2609 READ32(n);
33a43f28
AA
2610 if (n == 0)
2611 goto root_path;
7aaa0b3b
MN
2612 dprintk("path ");
2613 path->ncomponents = 0;
2614 while (path->ncomponents < n) {
2615 struct nfs4_string *component = &path->components[path->ncomponents];
2616 status = decode_opaque_inline(xdr, &component->len, &component->data);
2617 if (unlikely(status != 0))
2618 goto out_eio;
2619 if (path->ncomponents != n)
2620 dprintk("/");
2621 dprintk("%s", component->data);
2622 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
2623 path->ncomponents++;
2624 else {
2625 dprintk("cannot parse %d components in path\n", n);
2626 goto out_eio;
2627 }
2628 }
2629out:
2630 dprintk("\n");
2631 return status;
33a43f28
AA
2632root_path:
2633/* a root pathname is sent as a zero component4 */
2634 path->ncomponents = 1;
2635 path->components[0].len=0;
2636 path->components[0].data=NULL;
2637 dprintk("path /\n");
2638 goto out;
7aaa0b3b
MN
2639out_eio:
2640 dprintk(" status %d", status);
2641 status = -EIO;
2642 goto out;
2643}
2644
2645static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
683b57b4
TM
2646{
2647 int n;
8687b63a 2648 __be32 *p;
683b57b4
TM
2649 int status = -EIO;
2650
2651 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
2652 goto out;
2653 status = 0;
2654 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
2655 goto out;
3110ff80 2656 dprintk("%s: fsroot ", __func__);
7aaa0b3b 2657 status = decode_pathname(xdr, &res->fs_path);
683b57b4
TM
2658 if (unlikely(status != 0))
2659 goto out;
2660 READ_BUF(4);
2661 READ32(n);
2662 if (n <= 0)
2663 goto out_eio;
2664 res->nlocations = 0;
2665 while (res->nlocations < n) {
464ad6b1 2666 u32 m;
7aaa0b3b 2667 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
683b57b4 2668
7aaa0b3b
MN
2669 READ_BUF(4);
2670 READ32(m);
7aaa0b3b
MN
2671
2672 loc->nservers = 0;
3110ff80 2673 dprintk("%s: servers ", __func__);
7aaa0b3b
MN
2674 while (loc->nservers < m) {
2675 struct nfs4_string *server = &loc->servers[loc->nservers];
2676 status = decode_opaque_inline(xdr, &server->len, &server->data);
2677 if (unlikely(status != 0))
2678 goto out_eio;
2679 dprintk("%s ", server->data);
2680 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
2681 loc->nservers++;
2682 else {
464ad6b1
CL
2683 unsigned int i;
2684 dprintk("%s: using first %u of %u servers "
2685 "returned for location %u\n",
3110ff80 2686 __func__,
464ad6b1
CL
2687 NFS4_FS_LOCATION_MAXSERVERS,
2688 m, res->nlocations);
7aaa0b3b 2689 for (i = loc->nservers; i < m; i++) {
2e42c3e2 2690 unsigned int len;
7aaa0b3b
MN
2691 char *data;
2692 status = decode_opaque_inline(xdr, &len, &data);
2693 if (unlikely(status != 0))
2694 goto out_eio;
2695 }
2696 }
2697 }
2698 status = decode_pathname(xdr, &loc->rootpath);
683b57b4
TM
2699 if (unlikely(status != 0))
2700 goto out_eio;
7aaa0b3b 2701 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
683b57b4
TM
2702 res->nlocations++;
2703 }
409924e4
TM
2704 if (res->nlocations != 0)
2705 status = NFS_ATTR_FATTR_V4_REFERRAL;
683b57b4 2706out:
3110ff80 2707 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
683b57b4
TM
2708 return status;
2709out_eio:
2710 status = -EIO;
2711 goto out;
2712}
2713
1da177e4
LT
2714static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2715{
8687b63a 2716 __be32 *p;
1da177e4
LT
2717 int status = 0;
2718
2719 *res = 0;
2720 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
2721 return -EIO;
2722 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
2723 READ_BUF(8);
2724 READ64(*res);
2725 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
2726 }
3110ff80 2727 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2728 return status;
2729}
2730
2731static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
2732{
8687b63a 2733 __be32 *p;
1da177e4
LT
2734 int status = 0;
2735
2736 *maxlink = 1;
2737 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
2738 return -EIO;
2739 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
2740 READ_BUF(4);
2741 READ32(*maxlink);
2742 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
2743 }
3110ff80 2744 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
1da177e4
LT
2745 return status;
2746}
2747
2748static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
2749{
8687b63a 2750 __be32 *p;
1da177e4
LT
2751 int status = 0;
2752
2753 *maxname = 1024;
2754 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
2755 return -EIO;
2756 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
2757 READ_BUF(4);
2758 READ32(*maxname);
2759 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
2760 }
3110ff80 2761 dprintk("%s: maxname=%u\n", __func__, *maxname);
1da177e4
LT
2762 return status;
2763}
2764
2765static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2766{
8687b63a 2767 __be32 *p;
1da177e4
LT
2768 int status = 0;
2769
2770 *res = 1024;
2771 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
2772 return -EIO;
2773 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
2774 uint64_t maxread;
2775 READ_BUF(8);
2776 READ64(maxread);
2777 if (maxread > 0x7FFFFFFF)
2778 maxread = 0x7FFFFFFF;
2779 *res = (uint32_t)maxread;
2780 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
2781 }
3110ff80 2782 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
1da177e4
LT
2783 return status;
2784}
2785
2786static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2787{
8687b63a 2788 __be32 *p;
1da177e4
LT
2789 int status = 0;
2790
2791 *res = 1024;
2792 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
2793 return -EIO;
2794 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
2795 uint64_t maxwrite;
2796 READ_BUF(8);
2797 READ64(maxwrite);
2798 if (maxwrite > 0x7FFFFFFF)
2799 maxwrite = 0x7FFFFFFF;
2800 *res = (uint32_t)maxwrite;
2801 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
2802 }
3110ff80 2803 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
1da177e4
LT
2804 return status;
2805}
2806
bca79478 2807static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
1da177e4 2808{
bca79478 2809 uint32_t tmp;
8687b63a 2810 __be32 *p;
409924e4 2811 int ret = 0;
1da177e4
LT
2812
2813 *mode = 0;
2814 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
2815 return -EIO;
2816 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
2817 READ_BUF(4);
bca79478
TM
2818 READ32(tmp);
2819 *mode = tmp & ~S_IFMT;
1da177e4 2820 bitmap[1] &= ~FATTR4_WORD1_MODE;
409924e4 2821 ret = NFS_ATTR_FATTR_MODE;
1da177e4 2822 }
3110ff80 2823 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
409924e4 2824 return ret;
1da177e4
LT
2825}
2826
2827static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
2828{
8687b63a 2829 __be32 *p;
409924e4 2830 int ret = 0;
1da177e4
LT
2831
2832 *nlink = 1;
2833 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
2834 return -EIO;
2835 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
2836 READ_BUF(4);
2837 READ32(*nlink);
2838 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
409924e4 2839 ret = NFS_ATTR_FATTR_NLINK;
1da177e4 2840 }
3110ff80 2841 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
409924e4 2842 return ret;
1da177e4
LT
2843}
2844
2e42c3e2 2845static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *uid)
1da177e4 2846{
8687b63a
AV
2847 uint32_t len;
2848 __be32 *p;
409924e4 2849 int ret = 0;
1da177e4
LT
2850
2851 *uid = -2;
2852 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
2853 return -EIO;
2854 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
2855 READ_BUF(4);
2856 READ32(len);
2857 READ_BUF(len);
2858 if (len < XDR_MAX_NETOBJ) {
409924e4
TM
2859 if (nfs_map_name_to_uid(clp, (char *)p, len, uid) == 0)
2860 ret = NFS_ATTR_FATTR_OWNER;
2861 else
1da177e4 2862 dprintk("%s: nfs_map_name_to_uid failed!\n",
3110ff80 2863 __func__);
1da177e4 2864 } else
fe82a183 2865 dprintk("%s: name too long (%u)!\n",
3110ff80 2866 __func__, len);
1da177e4
LT
2867 bitmap[1] &= ~FATTR4_WORD1_OWNER;
2868 }
3110ff80 2869 dprintk("%s: uid=%d\n", __func__, (int)*uid);
409924e4 2870 return ret;
1da177e4
LT
2871}
2872
2e42c3e2 2873static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *gid)
1da177e4 2874{
8687b63a
AV
2875 uint32_t len;
2876 __be32 *p;
409924e4 2877 int ret = 0;
1da177e4
LT
2878
2879 *gid = -2;
2880 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
2881 return -EIO;
2882 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
2883 READ_BUF(4);
2884 READ32(len);
2885 READ_BUF(len);
2886 if (len < XDR_MAX_NETOBJ) {
409924e4
TM
2887 if (nfs_map_group_to_gid(clp, (char *)p, len, gid) == 0)
2888 ret = NFS_ATTR_FATTR_GROUP;
2889 else
1da177e4 2890 dprintk("%s: nfs_map_group_to_gid failed!\n",
3110ff80 2891 __func__);
1da177e4 2892 } else
fe82a183 2893 dprintk("%s: name too long (%u)!\n",
3110ff80 2894 __func__, len);
1da177e4
LT
2895 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
2896 }
3110ff80 2897 dprintk("%s: gid=%d\n", __func__, (int)*gid);
409924e4 2898 return ret;
1da177e4
LT
2899}
2900
2901static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
2902{
8687b63a
AV
2903 uint32_t major = 0, minor = 0;
2904 __be32 *p;
409924e4 2905 int ret = 0;
1da177e4
LT
2906
2907 *rdev = MKDEV(0,0);
2908 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
2909 return -EIO;
2910 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
2911 dev_t tmp;
2912
2913 READ_BUF(8);
2914 READ32(major);
2915 READ32(minor);
2916 tmp = MKDEV(major, minor);
2917 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
2918 *rdev = tmp;
2919 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
409924e4 2920 ret = NFS_ATTR_FATTR_RDEV;
1da177e4 2921 }
3110ff80 2922 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
409924e4 2923 return ret;
1da177e4
LT
2924}
2925
2926static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2927{
8687b63a 2928 __be32 *p;
1da177e4
LT
2929 int status = 0;
2930
2931 *res = 0;
2932 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
2933 return -EIO;
2934 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
2935 READ_BUF(8);
2936 READ64(*res);
2937 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
2938 }
3110ff80 2939 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2940 return status;
2941}
2942
2943static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2944{
8687b63a 2945 __be32 *p;
1da177e4
LT
2946 int status = 0;
2947
2948 *res = 0;
2949 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
2950 return -EIO;
2951 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
2952 READ_BUF(8);
2953 READ64(*res);
2954 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
2955 }
3110ff80 2956 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2957 return status;
2958}
2959
2960static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2961{
8687b63a 2962 __be32 *p;
1da177e4
LT
2963 int status = 0;
2964
2965 *res = 0;
2966 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
2967 return -EIO;
2968 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
2969 READ_BUF(8);
2970 READ64(*res);
2971 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
2972 }
3110ff80 2973 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
1da177e4
LT
2974 return status;
2975}
2976
2977static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
2978{
8687b63a 2979 __be32 *p;
409924e4 2980 int ret = 0;
1da177e4
LT
2981
2982 *used = 0;
2983 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
2984 return -EIO;
2985 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
2986 READ_BUF(8);
2987 READ64(*used);
2988 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
409924e4 2989 ret = NFS_ATTR_FATTR_SPACE_USED;
1da177e4 2990 }
3110ff80 2991 dprintk("%s: space used=%Lu\n", __func__,
1da177e4 2992 (unsigned long long)*used);
409924e4 2993 return ret;
1da177e4
LT
2994}
2995
2996static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
2997{
8687b63a 2998 __be32 *p;
1da177e4
LT
2999 uint64_t sec;
3000 uint32_t nsec;
3001
3002 READ_BUF(12);
3003 READ64(sec);
3004 READ32(nsec);
3005 time->tv_sec = (time_t)sec;
3006 time->tv_nsec = (long)nsec;
3007 return 0;
3008}
3009
3010static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3011{
3012 int status = 0;
3013
3014 time->tv_sec = 0;
3015 time->tv_nsec = 0;
3016 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
3017 return -EIO;
3018 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
3019 status = decode_attr_time(xdr, time);
409924e4
TM
3020 if (status == 0)
3021 status = NFS_ATTR_FATTR_ATIME;
1da177e4
LT
3022 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
3023 }
3110ff80 3024 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
1da177e4
LT
3025 return status;
3026}
3027
3028static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3029{
3030 int status = 0;
3031
3032 time->tv_sec = 0;
3033 time->tv_nsec = 0;
3034 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
3035 return -EIO;
3036 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
3037 status = decode_attr_time(xdr, time);
409924e4
TM
3038 if (status == 0)
3039 status = NFS_ATTR_FATTR_CTIME;
1da177e4
LT
3040 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
3041 }
3110ff80 3042 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
1da177e4
LT
3043 return status;
3044}
3045
3046static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3047{
3048 int status = 0;
3049
3050 time->tv_sec = 0;
3051 time->tv_nsec = 0;
3052 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
3053 return -EIO;
3054 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
3055 status = decode_attr_time(xdr, time);
409924e4
TM
3056 if (status == 0)
3057 status = NFS_ATTR_FATTR_MTIME;
1da177e4
LT
3058 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
3059 }
3110ff80 3060 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
1da177e4
LT
3061 return status;
3062}
3063
8687b63a 3064static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
1da177e4
LT
3065{
3066 unsigned int attrwords = XDR_QUADLEN(attrlen);
3067 unsigned int nwords = xdr->p - savep;
3068
3069 if (unlikely(attrwords != nwords)) {
fe82a183
CL
3070 dprintk("%s: server returned incorrect attribute length: "
3071 "%u %c %u\n",
3110ff80 3072 __func__,
1da177e4
LT
3073 attrwords << 2,
3074 (attrwords < nwords) ? '<' : '>',
3075 nwords << 2);
3076 return -EIO;
3077 }
3078 return 0;
3079}
3080
3081static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3082{
8687b63a 3083 __be32 *p;
1da177e4
LT
3084
3085 READ_BUF(20);
3086 READ32(cinfo->atomic);
3087 READ64(cinfo->before);
3088 READ64(cinfo->after);
3089 return 0;
3090}
3091
3092static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
3093{
8687b63a 3094 __be32 *p;
1da177e4
LT
3095 uint32_t supp, acc;
3096 int status;
3097
3098 status = decode_op_hdr(xdr, OP_ACCESS);
3099 if (status)
3100 return status;
3101 READ_BUF(8);
3102 READ32(supp);
3103 READ32(acc);
3104 access->supported = supp;
3105 access->access = acc;
3106 return 0;
3107}
3108
3109static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
3110{
8687b63a 3111 __be32 *p;
1da177e4
LT
3112 int status;
3113
3114 status = decode_op_hdr(xdr, OP_CLOSE);
c1d51931
TM
3115 if (status != -EIO)
3116 nfs_increment_open_seqid(status, res->seqid);
1da177e4
LT
3117 if (status)
3118 return status;
8ae20abd
TM
3119 READ_BUF(NFS4_STATEID_SIZE);
3120 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
1da177e4
LT
3121 return 0;
3122}
3123
3124static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
3125{
8687b63a 3126 __be32 *p;
1da177e4
LT
3127 int status;
3128
3129 status = decode_op_hdr(xdr, OP_COMMIT);
3130 if (status)
3131 return status;
3132 READ_BUF(8);
3133 COPYMEM(res->verf->verifier, 8);
3134 return 0;
3135}
3136
3137static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3138{
8687b63a 3139 __be32 *p;
1da177e4
LT
3140 uint32_t bmlen;
3141 int status;
3142
3143 status = decode_op_hdr(xdr, OP_CREATE);
3144 if (status)
3145 return status;
3146 if ((status = decode_change_info(xdr, cinfo)))
3147 return status;
3148 READ_BUF(4);
3149 READ32(bmlen);
3150 READ_BUF(bmlen << 2);
3151 return 0;
3152}
3153
3154static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
3155{
8687b63a 3156 __be32 *savep;
6c0195a4 3157 uint32_t attrlen, bitmap[2] = {0};
1da177e4
LT
3158 int status;
3159
3160 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3161 goto xdr_error;
3162 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3163 goto xdr_error;
3164 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3165 goto xdr_error;
3166 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
3167 goto xdr_error;
3168 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
3169 goto xdr_error;
3170 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
3171 goto xdr_error;
3172 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
3173 goto xdr_error;
3174 status = verify_attr_len(xdr, savep, attrlen);
3175xdr_error:
3110ff80 3176 dprintk("%s: xdr returned %d!\n", __func__, -status);
1da177e4
LT
3177 return status;
3178}
6c0195a4 3179
1da177e4
LT
3180static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
3181{
8687b63a 3182 __be32 *savep;
6c0195a4 3183 uint32_t attrlen, bitmap[2] = {0};
1da177e4 3184 int status;
6c0195a4 3185
1da177e4
LT
3186 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3187 goto xdr_error;
3188 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3189 goto xdr_error;
3190 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3191 goto xdr_error;
3192
3193 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
3194 goto xdr_error;
3195 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
3196 goto xdr_error;
3197 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
3198 goto xdr_error;
3199 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
3200 goto xdr_error;
3201 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
3202 goto xdr_error;
3203 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
3204 goto xdr_error;
3205
3206 status = verify_attr_len(xdr, savep, attrlen);
3207xdr_error:
3110ff80 3208 dprintk("%s: xdr returned %d!\n", __func__, -status);
1da177e4
LT
3209 return status;
3210}
3211
3212static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
3213{
8687b63a 3214 __be32 *savep;
6c0195a4 3215 uint32_t attrlen, bitmap[2] = {0};
1da177e4 3216 int status;
6c0195a4 3217
1da177e4
LT
3218 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3219 goto xdr_error;
3220 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3221 goto xdr_error;
3222 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3223 goto xdr_error;
3224
3225 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
3226 goto xdr_error;
3227 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
3228 goto xdr_error;
3229
3230 status = verify_attr_len(xdr, savep, attrlen);
3231xdr_error:
3110ff80 3232 dprintk("%s: xdr returned %d!\n", __func__, -status);
1da177e4
LT
3233 return status;
3234}
3235
3236static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, const struct nfs_server *server)
3237{
8687b63a 3238 __be32 *savep;
1da177e4
LT
3239 uint32_t attrlen,
3240 bitmap[2] = {0},
3241 type;
bca79478
TM
3242 int status;
3243 umode_t fmode = 0;
99baf625 3244 uint64_t fileid;
1da177e4 3245
f26c7a78
TM
3246 status = decode_op_hdr(xdr, OP_GETATTR);
3247 if (status < 0)
1da177e4 3248 goto xdr_error;
f26c7a78
TM
3249
3250 status = decode_attr_bitmap(xdr, bitmap);
3251 if (status < 0)
1da177e4
LT
3252 goto xdr_error;
3253
f26c7a78
TM
3254 status = decode_attr_length(xdr, &attrlen, &savep);
3255 if (status < 0)
1da177e4
LT
3256 goto xdr_error;
3257
3258
f26c7a78
TM
3259 status = decode_attr_type(xdr, bitmap, &type);
3260 if (status < 0)
1da177e4 3261 goto xdr_error;
409924e4
TM
3262 fattr->mode = 0;
3263 if (status != 0) {
3264 fattr->mode |= nfs_type2fmt[type];
3265 fattr->valid |= status;
3266 }
1da177e4 3267
f26c7a78
TM
3268 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
3269 if (status < 0)
1da177e4 3270 goto xdr_error;
409924e4 3271 fattr->valid |= status;
f26c7a78
TM
3272
3273 status = decode_attr_size(xdr, bitmap, &fattr->size);
3274 if (status < 0)
1da177e4 3275 goto xdr_error;
409924e4 3276 fattr->valid |= status;
f26c7a78
TM
3277
3278 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
3279 if (status < 0)
1da177e4 3280 goto xdr_error;
409924e4 3281 fattr->valid |= status;
f26c7a78
TM
3282
3283 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
3284 if (status < 0)
1da177e4 3285 goto xdr_error;
409924e4 3286 fattr->valid |= status;
f26c7a78
TM
3287
3288 status = decode_attr_fs_locations(xdr, bitmap, container_of(fattr,
7aaa0b3b 3289 struct nfs4_fs_locations,
f26c7a78
TM
3290 fattr));
3291 if (status < 0)
683b57b4 3292 goto xdr_error;
409924e4 3293 fattr->valid |= status;
f26c7a78
TM
3294
3295 status = decode_attr_mode(xdr, bitmap, &fmode);
3296 if (status < 0)
1da177e4 3297 goto xdr_error;
409924e4
TM
3298 if (status != 0) {
3299 fattr->mode |= fmode;
3300 fattr->valid |= status;
3301 }
f26c7a78
TM
3302
3303 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
3304 if (status < 0)
1da177e4 3305 goto xdr_error;
409924e4 3306 fattr->valid |= status;
f26c7a78
TM
3307
3308 status = decode_attr_owner(xdr, bitmap, server->nfs_client, &fattr->uid);
3309 if (status < 0)
1da177e4 3310 goto xdr_error;
409924e4 3311 fattr->valid |= status;
f26c7a78
TM
3312
3313 status = decode_attr_group(xdr, bitmap, server->nfs_client, &fattr->gid);
3314 if (status < 0)
1da177e4 3315 goto xdr_error;
409924e4 3316 fattr->valid |= status;
f26c7a78
TM
3317
3318 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
3319 if (status < 0)
1da177e4 3320 goto xdr_error;
409924e4 3321 fattr->valid |= status;
f26c7a78
TM
3322
3323 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
3324 if (status < 0)
1da177e4 3325 goto xdr_error;
409924e4 3326 fattr->valid |= status;
f26c7a78
TM
3327
3328 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
3329 if (status < 0)
1da177e4 3330 goto xdr_error;
409924e4 3331 fattr->valid |= status;
f26c7a78
TM
3332
3333 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
3334 if (status < 0)
1da177e4 3335 goto xdr_error;
409924e4 3336 fattr->valid |= status;
f26c7a78
TM
3337
3338 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
3339 if (status < 0)
1da177e4 3340 goto xdr_error;
409924e4 3341 fattr->valid |= status;
f26c7a78
TM
3342
3343 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fileid);
3344 if (status < 0)
99baf625 3345 goto xdr_error;
409924e4 3346 if (status != 0 && !(fattr->valid & status)) {
99baf625 3347 fattr->fileid = fileid;
409924e4
TM
3348 fattr->valid |= status;
3349 }
f26c7a78
TM
3350
3351 status = verify_attr_len(xdr, savep, attrlen);
1da177e4 3352xdr_error:
3110ff80 3353 dprintk("%s: xdr returned %d\n", __func__, -status);
1da177e4
LT
3354 return status;
3355}
3356
3357
3358static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
3359{
8687b63a 3360 __be32 *savep;
1da177e4
LT
3361 uint32_t attrlen, bitmap[2];
3362 int status;
3363
3364 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3365 goto xdr_error;
3366 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3367 goto xdr_error;
3368 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3369 goto xdr_error;
3370
3371 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
3372
3373 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
3374 goto xdr_error;
3375 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
3376 goto xdr_error;
3377 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
3378 goto xdr_error;
3379 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
3380 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
3381 goto xdr_error;
3382 fsinfo->wtpref = fsinfo->wtmax;
3383
3384 status = verify_attr_len(xdr, savep, attrlen);
3385xdr_error:
3110ff80 3386 dprintk("%s: xdr returned %d!\n", __func__, -status);
1da177e4
LT
3387 return status;
3388}
3389
3390static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
3391{
8687b63a 3392 __be32 *p;
1da177e4
LT
3393 uint32_t len;
3394 int status;
3395
9936781d
TM
3396 /* Zero handle first to allow comparisons */
3397 memset(fh, 0, sizeof(*fh));
3398
1da177e4
LT
3399 status = decode_op_hdr(xdr, OP_GETFH);
3400 if (status)
3401 return status;
1da177e4
LT
3402
3403 READ_BUF(4);
3404 READ32(len);
3405 if (len > NFS4_FHSIZE)
3406 return -EIO;
3407 fh->size = len;
3408 READ_BUF(len);
3409 COPYMEM(fh->data, len);
3410 return 0;
3411}
3412
3413static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3414{
3415 int status;
6c0195a4 3416
1da177e4
LT
3417 status = decode_op_hdr(xdr, OP_LINK);
3418 if (status)
3419 return status;
3420 return decode_change_info(xdr, cinfo);
3421}
3422
3423/*
3424 * We create the owner, so we know a proper owner.id length is 4.
3425 */
911d1aaf 3426static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
1da177e4 3427{
911d1aaf 3428 uint64_t offset, length, clientid;
8687b63a 3429 __be32 *p;
911d1aaf 3430 uint32_t namelen, type;
1da177e4
LT
3431
3432 READ_BUF(32);
911d1aaf
TM
3433 READ64(offset);
3434 READ64(length);
3435 READ32(type);
3436 if (fl != NULL) {
3437 fl->fl_start = (loff_t)offset;
3438 fl->fl_end = fl->fl_start + (loff_t)length - 1;
3439 if (length == ~(uint64_t)0)
3440 fl->fl_end = OFFSET_MAX;
3441 fl->fl_type = F_WRLCK;
3442 if (type & 1)
3443 fl->fl_type = F_RDLCK;
3444 fl->fl_pid = 0;
3445 }
3446 READ64(clientid);
1da177e4
LT
3447 READ32(namelen);
3448 READ_BUF(namelen);
1da177e4
LT
3449 return -NFS4ERR_DENIED;
3450}
3451
911d1aaf 3452static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
1da177e4 3453{
8687b63a 3454 __be32 *p;
1da177e4
LT
3455 int status;
3456
3457 status = decode_op_hdr(xdr, OP_LOCK);
c1d51931
TM
3458 if (status == -EIO)
3459 goto out;
1da177e4 3460 if (status == 0) {
8ae20abd
TM
3461 READ_BUF(NFS4_STATEID_SIZE);
3462 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
1da177e4 3463 } else if (status == -NFS4ERR_DENIED)
c1d51931
TM
3464 status = decode_lock_denied(xdr, NULL);
3465 if (res->open_seqid != NULL)
3466 nfs_increment_open_seqid(status, res->open_seqid);
3467 nfs_increment_lock_seqid(status, res->lock_seqid);
3468out:
1da177e4
LT
3469 return status;
3470}
3471
911d1aaf 3472static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
1da177e4
LT
3473{
3474 int status;
3475 status = decode_op_hdr(xdr, OP_LOCKT);
3476 if (status == -NFS4ERR_DENIED)
911d1aaf 3477 return decode_lock_denied(xdr, res->denied);
1da177e4
LT
3478 return status;
3479}
3480
911d1aaf 3481static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
1da177e4 3482{
8687b63a 3483 __be32 *p;
1da177e4
LT
3484 int status;
3485
3486 status = decode_op_hdr(xdr, OP_LOCKU);
c1d51931
TM
3487 if (status != -EIO)
3488 nfs_increment_lock_seqid(status, res->seqid);
1da177e4 3489 if (status == 0) {
8ae20abd
TM
3490 READ_BUF(NFS4_STATEID_SIZE);
3491 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
1da177e4
LT
3492 }
3493 return status;
3494}
3495
3496static int decode_lookup(struct xdr_stream *xdr)
3497{
3498 return decode_op_hdr(xdr, OP_LOOKUP);
3499}
3500
3501/* This is too sick! */
3502static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
3503{
05d564fe 3504 __be32 *p;
1da177e4
LT
3505 uint32_t limit_type, nblocks, blocksize;
3506
3507 READ_BUF(12);
3508 READ32(limit_type);
3509 switch (limit_type) {
05d564fe
AA
3510 case 1:
3511 READ64(*maxsize);
3512 break;
3513 case 2:
3514 READ32(nblocks);
3515 READ32(blocksize);
3516 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
1da177e4
LT
3517 }
3518 return 0;
3519}
3520
3521static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
3522{
05d564fe
AA
3523 __be32 *p;
3524 uint32_t delegation_type;
1da177e4
LT
3525
3526 READ_BUF(4);
3527 READ32(delegation_type);
3528 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
3529 res->delegation_type = 0;
3530 return 0;
3531 }
8ae20abd
TM
3532 READ_BUF(NFS4_STATEID_SIZE+4);
3533 COPYMEM(res->delegation.data, NFS4_STATEID_SIZE);
1da177e4 3534 READ32(res->do_recall);
05d564fe 3535
1da177e4 3536 switch (delegation_type) {
05d564fe
AA
3537 case NFS4_OPEN_DELEGATE_READ:
3538 res->delegation_type = FMODE_READ;
3539 break;
3540 case NFS4_OPEN_DELEGATE_WRITE:
3541 res->delegation_type = FMODE_WRITE|FMODE_READ;
3542 if (decode_space_limit(xdr, &res->maxsize) < 0)
1da177e4
LT
3543 return -EIO;
3544 }
7539bbab 3545 return decode_ace(xdr, NULL, res->server->nfs_client);
1da177e4
LT
3546}
3547
3548static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
3549{
05d564fe 3550 __be32 *p;
aa53ed54 3551 uint32_t savewords, bmlen, i;
05d564fe 3552 int status;
1da177e4 3553
05d564fe 3554 status = decode_op_hdr(xdr, OP_OPEN);
c1d51931
TM
3555 if (status != -EIO)
3556 nfs_increment_open_seqid(status, res->seqid);
05d564fe
AA
3557 if (status)
3558 return status;
3559 READ_BUF(NFS4_STATEID_SIZE);
3560 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
1da177e4 3561
05d564fe 3562 decode_change_info(xdr, &res->cinfo);
1da177e4 3563
05d564fe
AA
3564 READ_BUF(8);
3565 READ32(res->rflags);
3566 READ32(bmlen);
3567 if (bmlen > 10)
3568 goto xdr_error;
1da177e4 3569
05d564fe 3570 READ_BUF(bmlen << 2);
aa53ed54
JL
3571 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
3572 for (i = 0; i < savewords; ++i)
3573 READ32(res->attrset[i]);
3574 for (; i < NFS4_BITMAP_SIZE; i++)
3575 res->attrset[i] = 0;
3576
1da177e4
LT
3577 return decode_delegation(xdr, res);
3578xdr_error:
3110ff80 3579 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
1da177e4
LT
3580 return -EIO;
3581}
3582
3583static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
3584{
05d564fe 3585 __be32 *p;
1da177e4
LT
3586 int status;
3587
05d564fe 3588 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
c1d51931
TM
3589 if (status != -EIO)
3590 nfs_increment_open_seqid(status, res->seqid);
05d564fe
AA
3591 if (status)
3592 return status;
3593 READ_BUF(NFS4_STATEID_SIZE);
3594 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
3595 return 0;
1da177e4
LT
3596}
3597
3598static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
3599{
8687b63a 3600 __be32 *p;
1da177e4
LT
3601 int status;
3602
3603 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
c1d51931
TM
3604 if (status != -EIO)
3605 nfs_increment_open_seqid(status, res->seqid);
1da177e4
LT
3606 if (status)
3607 return status;
8ae20abd
TM
3608 READ_BUF(NFS4_STATEID_SIZE);
3609 COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
1da177e4
LT
3610 return 0;
3611}
3612
3613static int decode_putfh(struct xdr_stream *xdr)
3614{
3615 return decode_op_hdr(xdr, OP_PUTFH);
3616}
3617
3618static int decode_putrootfh(struct xdr_stream *xdr)
3619{
3620 return decode_op_hdr(xdr, OP_PUTROOTFH);
3621}
3622
3623static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
3624{
3625 struct kvec *iov = req->rq_rcv_buf.head;
8687b63a 3626 __be32 *p;
1da177e4
LT
3627 uint32_t count, eof, recvd, hdrlen;
3628 int status;
3629
3630 status = decode_op_hdr(xdr, OP_READ);
3631 if (status)
3632 return status;
3633 READ_BUF(8);
3634 READ32(eof);
3635 READ32(count);
3636 hdrlen = (u8 *) p - (u8 *) iov->iov_base;
3637 recvd = req->rq_rcv_buf.len - hdrlen;
3638 if (count > recvd) {
fe82a183 3639 dprintk("NFS: server cheating in read reply: "
1da177e4
LT
3640 "count %u > recvd %u\n", count, recvd);
3641 count = recvd;
3642 eof = 0;
3643 }
3644 xdr_read_pages(xdr, count);
3645 res->eof = eof;
3646 res->count = count;
3647 return 0;
3648}
3649
3650static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
3651{
3652 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3653 struct page *page = *rcvbuf->pages;
3654 struct kvec *iov = rcvbuf->head;
bcecff77
CL
3655 size_t hdrlen;
3656 u32 recvd, pglen = rcvbuf->page_len;
8687b63a 3657 __be32 *end, *entry, *p, *kaddr;
7bda2cdf 3658 unsigned int nr = 0;
bcecff77 3659 int status;
1da177e4
LT
3660
3661 status = decode_op_hdr(xdr, OP_READDIR);
3662 if (status)
3663 return status;
3664 READ_BUF(8);
3665 COPYMEM(readdir->verifier.data, 8);
44109241
FI
3666 dprintk("%s: verifier = %08x:%08x\n",
3667 __func__,
eadf4598
TM
3668 ((u32 *)readdir->verifier.data)[0],
3669 ((u32 *)readdir->verifier.data)[1]);
3670
1da177e4
LT
3671
3672 hdrlen = (char *) p - (char *) iov->iov_base;
3673 recvd = rcvbuf->len - hdrlen;
3674 if (pglen > recvd)
3675 pglen = recvd;
3676 xdr_read_pages(xdr, pglen);
3677
3678 BUG_ON(pglen + readdir->pgbase > PAGE_CACHE_SIZE);
8687b63a 3679 kaddr = p = kmap_atomic(page, KM_USER0);
e8896495 3680 end = p + ((pglen + readdir->pgbase) >> 2);
1da177e4 3681 entry = p;
7bda2cdf
JL
3682
3683 /* Make sure the packet actually has a value_follows and EOF entry */
3684 if ((entry + 1) > end)
3685 goto short_pkt;
3686
3687 for (; *p++; nr++) {
bcecff77 3688 u32 len, attrlen, xlen;
e8896495 3689 if (end - p < 3)
1da177e4 3690 goto short_pkt;
eadf4598 3691 dprintk("cookie = %Lu, ", *((unsigned long long *)p));
1da177e4
LT
3692 p += 2; /* cookie */
3693 len = ntohl(*p++); /* filename length */
3694 if (len > NFS4_MAXNAMLEN) {
fe82a183
CL
3695 dprintk("NFS: giant filename in readdir (len 0x%x)\n",
3696 len);
1da177e4
LT
3697 goto err_unmap;
3698 }
e8896495
DH
3699 xlen = XDR_QUADLEN(len);
3700 if (end - p < xlen + 1)
1da177e4 3701 goto short_pkt;
e8896495
DH
3702 dprintk("filename = %*s\n", len, (char *)p);
3703 p += xlen;
1da177e4 3704 len = ntohl(*p++); /* bitmap length */
e8896495 3705 if (end - p < len + 1)
1da177e4 3706 goto short_pkt;
e8896495 3707 p += len;
1da177e4 3708 attrlen = XDR_QUADLEN(ntohl(*p++));
e8896495 3709 if (end - p < attrlen + 2)
1da177e4 3710 goto short_pkt;
e8896495 3711 p += attrlen; /* attributes */
1da177e4
LT
3712 entry = p;
3713 }
7bda2cdf
JL
3714 /*
3715 * Apparently some server sends responses that are a valid size, but
3716 * contain no entries, and have value_follows==0 and EOF==0. For
3717 * those, just set the EOF marker.
3718 */
3719 if (!nr && entry[1] == 0) {
3720 dprintk("NFS: readdir reply truncated!\n");
3721 entry[1] = 1;
3722 }
6c0195a4 3723out:
1da177e4
LT
3724 kunmap_atomic(kaddr, KM_USER0);
3725 return 0;
3726short_pkt:
7bda2cdf
JL
3727 /*
3728 * When we get a short packet there are 2 possibilities. We can
3729 * return an error, or fix up the response to look like a valid
3730 * response and return what we have so far. If there are no
3731 * entries and the packet was short, then return -EIO. If there
3732 * are valid entries in the response, return them and pretend that
3733 * the call was successful, but incomplete. The caller can retry the
3734 * readdir starting at the last cookie.
3735 */
3110ff80 3736 dprintk("%s: short packet at entry %d\n", __func__, nr);
1da177e4 3737 entry[0] = entry[1] = 0;
7bda2cdf
JL
3738 if (nr)
3739 goto out;
1da177e4
LT
3740err_unmap:
3741 kunmap_atomic(kaddr, KM_USER0);
3742 return -errno_NFSERR_IO;
3743}
3744
3745static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
3746{
3747 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3748 struct kvec *iov = rcvbuf->head;
bcecff77
CL
3749 size_t hdrlen;
3750 u32 len, recvd;
8687b63a 3751 __be32 *p;
1da177e4
LT
3752 char *kaddr;
3753 int status;
3754
3755 status = decode_op_hdr(xdr, OP_READLINK);
3756 if (status)
3757 return status;
3758
3759 /* Convert length of symlink */
3760 READ_BUF(4);
3761 READ32(len);
3762 if (len >= rcvbuf->page_len || len <= 0) {
fe82a183 3763 dprintk("nfs: server returned giant symlink!\n");
1da177e4
LT
3764 return -ENAMETOOLONG;
3765 }
3766 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
3767 recvd = req->rq_rcv_buf.len - hdrlen;
3768 if (recvd < len) {
fe82a183 3769 dprintk("NFS: server cheating in readlink reply: "
1da177e4
LT
3770 "count %u > recvd %u\n", len, recvd);
3771 return -EIO;
3772 }
3773 xdr_read_pages(xdr, len);
3774 /*
3775 * The XDR encode routine has set things up so that
3776 * the link text will be copied directly into the
3777 * buffer. We just have to do overflow-checking,
3778 * and and null-terminate the text (the VFS expects
3779 * null-termination).
3780 */
3781 kaddr = (char *)kmap_atomic(rcvbuf->pages[0], KM_USER0);
3782 kaddr[len+rcvbuf->page_base] = '\0';
3783 kunmap_atomic(kaddr, KM_USER0);
3784 return 0;
3785}
3786
3787static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3788{
3789 int status;
3790
3791 status = decode_op_hdr(xdr, OP_REMOVE);
3792 if (status)
3793 goto out;
3794 status = decode_change_info(xdr, cinfo);
3795out:
3796 return status;
3797}
3798
3799static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
3800 struct nfs4_change_info *new_cinfo)
3801{
3802 int status;
3803
3804 status = decode_op_hdr(xdr, OP_RENAME);
3805 if (status)
3806 goto out;
3807 if ((status = decode_change_info(xdr, old_cinfo)))
3808 goto out;
3809 status = decode_change_info(xdr, new_cinfo);
3810out:
3811 return status;
3812}
3813
3814static int decode_renew(struct xdr_stream *xdr)
3815{
3816 return decode_op_hdr(xdr, OP_RENEW);
3817}
3818
56ae19f3
TM
3819static int
3820decode_restorefh(struct xdr_stream *xdr)
3821{
3822 return decode_op_hdr(xdr, OP_RESTOREFH);
3823}
3824
029d105e
BF
3825static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
3826 size_t *acl_len)
3827{
8687b63a 3828 __be32 *savep;
029d105e
BF
3829 uint32_t attrlen,
3830 bitmap[2] = {0};
3831 struct kvec *iov = req->rq_rcv_buf.head;
3832 int status;
3833
3834 *acl_len = 0;
3835 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3836 goto out;
3837 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3838 goto out;
3839 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3840 goto out;
3841
3842 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
3843 return -EIO;
3844 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
bcecff77
CL
3845 size_t hdrlen;
3846 u32 recvd;
029d105e
BF
3847
3848 /* We ignore &savep and don't do consistency checks on
3849 * the attr length. Let userspace figure it out.... */
3850 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
3851 recvd = req->rq_rcv_buf.len - hdrlen;
3852 if (attrlen > recvd) {
fe82a183 3853 dprintk("NFS: server cheating in getattr"
029d105e
BF
3854 " acl reply: attrlen %u > recvd %u\n",
3855 attrlen, recvd);
3856 return -EINVAL;
3857 }
c04871e6 3858 xdr_read_pages(xdr, attrlen);
029d105e 3859 *acl_len = attrlen;
8c233cf9
BF
3860 } else
3861 status = -EOPNOTSUPP;
029d105e
BF
3862
3863out:
3864 return status;
3865}
3866
1da177e4
LT
3867static int
3868decode_savefh(struct xdr_stream *xdr)
3869{
3870 return decode_op_hdr(xdr, OP_SAVEFH);
3871}
3872
9e9ecc03 3873static int decode_setattr(struct xdr_stream *xdr)
1da177e4 3874{
8687b63a 3875 __be32 *p;
1da177e4
LT
3876 uint32_t bmlen;
3877 int status;
3878
1da177e4
LT
3879 status = decode_op_hdr(xdr, OP_SETATTR);
3880 if (status)
3881 return status;
3882 READ_BUF(4);
3883 READ32(bmlen);
3884 READ_BUF(bmlen << 2);
3885 return 0;
3886}
3887
adfa6f98 3888static int decode_setclientid(struct xdr_stream *xdr, struct nfs_client *clp)
1da177e4 3889{
8687b63a 3890 __be32 *p;
1da177e4
LT
3891 uint32_t opnum;
3892 int32_t nfserr;
3893
3894 READ_BUF(8);
3895 READ32(opnum);
3896 if (opnum != OP_SETCLIENTID) {
fe82a183 3897 dprintk("nfs: decode_setclientid: Server returned operation"
6c0195a4 3898 " %d\n", opnum);
1da177e4
LT
3899 return -EIO;
3900 }
3901 READ32(nfserr);
3902 if (nfserr == NFS_OK) {
8ae20abd 3903 READ_BUF(8 + NFS4_VERIFIER_SIZE);
1da177e4 3904 READ64(clp->cl_clientid);
8ae20abd 3905 COPYMEM(clp->cl_confirm.data, NFS4_VERIFIER_SIZE);
1da177e4
LT
3906 } else if (nfserr == NFSERR_CLID_INUSE) {
3907 uint32_t len;
3908
3909 /* skip netid string */
3910 READ_BUF(4);
3911 READ32(len);
3912 READ_BUF(len);
3913
3914 /* skip uaddr string */
3915 READ_BUF(4);
3916 READ32(len);
3917 READ_BUF(len);
3918 return -NFSERR_CLID_INUSE;
3919 } else
856dff3d 3920 return nfs4_stat_to_errno(nfserr);
1da177e4
LT
3921
3922 return 0;
3923}
3924
3925static int decode_setclientid_confirm(struct xdr_stream *xdr)
3926{
3927 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
3928}
3929
3930static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
3931{
8687b63a 3932 __be32 *p;
1da177e4
LT
3933 int status;
3934
3935 status = decode_op_hdr(xdr, OP_WRITE);
3936 if (status)
3937 return status;
3938
3939 READ_BUF(16);
3940 READ32(res->count);
3941 READ32(res->verf->committed);
3942 COPYMEM(res->verf->verifier, 8);
3943 return 0;
3944}
3945
3946static int decode_delegreturn(struct xdr_stream *xdr)
3947{
3948 return decode_op_hdr(xdr, OP_DELEGRETURN);
3949}
3950
99fe60d0
BH
3951#if defined(CONFIG_NFS_V4_1)
3952static int decode_exchange_id(struct xdr_stream *xdr,
3953 struct nfs41_exchange_id_res *res)
3954{
3955 __be32 *p;
3956 uint32_t dummy;
3957 int status;
3958 struct nfs_client *clp = res->client;
3959
3960 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
3961 if (status)
3962 return status;
3963
3964 READ_BUF(8);
3965 READ64(clp->cl_ex_clid);
3966 READ_BUF(12);
3967 READ32(clp->cl_seqid);
3968 READ32(clp->cl_exchange_flags);
3969
3970 /* We ask for SP4_NONE */
3971 READ32(dummy);
3972 if (dummy != SP4_NONE)
3973 return -EIO;
3974
3975 /* Throw away minor_id */
3976 READ_BUF(8);
3977
3978 /* Throw away Major id */
3979 READ_BUF(4);
3980 READ32(dummy);
3981 READ_BUF(dummy);
3982
3983 /* Throw away server_scope */
3984 READ_BUF(4);
3985 READ32(dummy);
3986 READ_BUF(dummy);
3987
3988 /* Throw away Implementation id array */
3989 READ_BUF(4);
3990 READ32(dummy);
3991 READ_BUF(dummy);
3992
3993 return 0;
3994}
3995#endif /* CONFIG_NFS_V4_1 */
3996
9b7b9fcc
AA
3997static int decode_sequence(struct xdr_stream *xdr,
3998 struct nfs4_sequence_res *res,
3999 struct rpc_rqst *rqstp)
4000{
4001#if defined(CONFIG_NFS_V4_1)
4002 if (!res->sr_session)
4003 return 0;
4004
4005 /* stub */
4006#endif /* CONFIG_NFS_V4_1 */
4007
4008 return 0;
4009}
4010
49c2559e
BH
4011/*
4012 * END OF "GENERIC" DECODE ROUTINES.
4013 */
4014
1da177e4
LT
4015/*
4016 * Decode OPEN_DOWNGRADE response
4017 */
8687b63a 4018static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
1da177e4 4019{
05d564fe
AA
4020 struct xdr_stream xdr;
4021 struct compound_hdr hdr;
4022 int status;
4023
4024 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4025 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4026 if (status)
4027 goto out;
4028 status = decode_sequence(&xdr, &res->seq_res, rqstp);
05d564fe
AA
4029 if (status)
4030 goto out;
4031 status = decode_putfh(&xdr);
4032 if (status)
4033 goto out;
4034 status = decode_open_downgrade(&xdr, res);
516a6af6
TM
4035 if (status != 0)
4036 goto out;
4037 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4 4038out:
05d564fe 4039 return status;
1da177e4
LT
4040}
4041
1da177e4
LT
4042/*
4043 * Decode ACCESS response
4044 */
8687b63a 4045static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_accessres *res)
1da177e4
LT
4046{
4047 struct xdr_stream xdr;
4048 struct compound_hdr hdr;
4049 int status;
6c0195a4 4050
1da177e4 4051 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4052 status = decode_compound_hdr(&xdr, &hdr);
4053 if (status)
4054 goto out;
4055 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4056 if (status)
1da177e4 4057 goto out;
76b32999
TM
4058 status = decode_putfh(&xdr);
4059 if (status != 0)
4060 goto out;
4061 status = decode_access(&xdr, res);
4062 if (status != 0)
4063 goto out;
4064 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4
LT
4065out:
4066 return status;
4067}
4068
4069/*
4070 * Decode LOOKUP response
4071 */
8687b63a 4072static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
1da177e4
LT
4073{
4074 struct xdr_stream xdr;
4075 struct compound_hdr hdr;
4076 int status;
6c0195a4 4077
1da177e4 4078 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4079 status = decode_compound_hdr(&xdr, &hdr);
4080 if (status)
4081 goto out;
4082 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4083 if (status)
1da177e4
LT
4084 goto out;
4085 if ((status = decode_putfh(&xdr)) != 0)
4086 goto out;
4087 if ((status = decode_lookup(&xdr)) != 0)
4088 goto out;
4089 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4090 goto out;
4091 status = decode_getfattr(&xdr, res->fattr, res->server);
4092out:
4093 return status;
4094}
4095
4096/*
4097 * Decode LOOKUP_ROOT response
4098 */
8687b63a 4099static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
1da177e4
LT
4100{
4101 struct xdr_stream xdr;
4102 struct compound_hdr hdr;
4103 int status;
6c0195a4 4104
1da177e4 4105 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4106 status = decode_compound_hdr(&xdr, &hdr);
4107 if (status)
4108 goto out;
4109 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4110 if (status)
1da177e4
LT
4111 goto out;
4112 if ((status = decode_putrootfh(&xdr)) != 0)
4113 goto out;
4114 if ((status = decode_getfh(&xdr, res->fh)) == 0)
4115 status = decode_getfattr(&xdr, res->fattr, res->server);
4116out:
4117 return status;
4118}
4119
4120/*
4121 * Decode REMOVE response
4122 */
4fdc17b2 4123static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_removeres *res)
1da177e4
LT
4124{
4125 struct xdr_stream xdr;
4126 struct compound_hdr hdr;
4127 int status;
6c0195a4 4128
1da177e4 4129 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4130 status = decode_compound_hdr(&xdr, &hdr);
4131 if (status)
4132 goto out;
4133 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4134 if (status)
1da177e4 4135 goto out;
16e42959
TM
4136 if ((status = decode_putfh(&xdr)) != 0)
4137 goto out;
4138 if ((status = decode_remove(&xdr, &res->cinfo)) != 0)
4139 goto out;
4fdc17b2 4140 decode_getfattr(&xdr, &res->dir_attr, res->server);
1da177e4
LT
4141out:
4142 return status;
4143}
4144
4145/*
4146 * Decode RENAME response
4147 */
8687b63a 4148static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_rename_res *res)
1da177e4
LT
4149{
4150 struct xdr_stream xdr;
4151 struct compound_hdr hdr;
4152 int status;
6c0195a4 4153
1da177e4 4154 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4155 status = decode_compound_hdr(&xdr, &hdr);
4156 if (status)
4157 goto out;
4158 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4159 if (status)
1da177e4
LT
4160 goto out;
4161 if ((status = decode_putfh(&xdr)) != 0)
4162 goto out;
4163 if ((status = decode_savefh(&xdr)) != 0)
4164 goto out;
4165 if ((status = decode_putfh(&xdr)) != 0)
4166 goto out;
6caf2c82
TM
4167 if ((status = decode_rename(&xdr, &res->old_cinfo, &res->new_cinfo)) != 0)
4168 goto out;
4169 /* Current FH is target directory */
4170 if (decode_getfattr(&xdr, res->new_fattr, res->server) != 0)
4171 goto out;
4172 if ((status = decode_restorefh(&xdr)) != 0)
4173 goto out;
4174 decode_getfattr(&xdr, res->old_fattr, res->server);
1da177e4
LT
4175out:
4176 return status;
4177}
4178
4179/*
4180 * Decode LINK response
4181 */
8687b63a 4182static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_link_res *res)
1da177e4
LT
4183{
4184 struct xdr_stream xdr;
4185 struct compound_hdr hdr;
4186 int status;
6c0195a4 4187
1da177e4 4188 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4189 status = decode_compound_hdr(&xdr, &hdr);
4190 if (status)
4191 goto out;
4192 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4193 if (status)
1da177e4
LT
4194 goto out;
4195 if ((status = decode_putfh(&xdr)) != 0)
4196 goto out;
4197 if ((status = decode_savefh(&xdr)) != 0)
4198 goto out;
4199 if ((status = decode_putfh(&xdr)) != 0)
4200 goto out;
91ba2eee
TM
4201 if ((status = decode_link(&xdr, &res->cinfo)) != 0)
4202 goto out;
4203 /*
4204 * Note order: OP_LINK leaves the directory as the current
4205 * filehandle.
4206 */
4207 if (decode_getfattr(&xdr, res->dir_attr, res->server) != 0)
4208 goto out;
4209 if ((status = decode_restorefh(&xdr)) != 0)
4210 goto out;
4211 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4
LT
4212out:
4213 return status;
4214}
4215
4216/*
4217 * Decode CREATE response
4218 */
8687b63a 4219static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
1da177e4
LT
4220{
4221 struct xdr_stream xdr;
4222 struct compound_hdr hdr;
4223 int status;
6c0195a4 4224
1da177e4 4225 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
9b7b9fcc
AA
4226 status = decode_compound_hdr(&xdr, &hdr);
4227 if (status)
4228 goto out;
4229 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4230 if (status)
1da177e4
LT
4231 goto out;
4232 if ((status = decode_putfh(&xdr)) != 0)
4233 goto out;
56ae19f3
TM
4234 if ((status = decode_savefh(&xdr)) != 0)
4235 goto out;
1da177e4
LT
4236 if ((status = decode_create(&xdr,&res->dir_cinfo)) != 0)
4237 goto out;
4238 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4239 goto out;
56ae19f3
TM
4240 if (decode_getfattr(&xdr, res->fattr, res->server) != 0)
4241 goto out;
4242 if ((status = decode_restorefh(&xdr)) != 0)
4243 goto out;
4244 decode_getfattr(&xdr, res->dir_fattr, res->server);
1da177e4
LT
4245out:
4246 return status;
4247}
4248
4249/*
4250 * Decode SYMLINK response
4251 */
8687b63a 4252static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
1da177e4
LT
4253{
4254 return nfs4_xdr_dec_create(rqstp, p, res);
4255}
4256
4257/*
4258 * Decode GETATTR response
4259 */
8687b63a 4260static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_getattr_res *res)
1da177e4
LT
4261{
4262 struct xdr_stream xdr;
4263 struct compound_hdr hdr;
4264 int status;
6c0195a4 4265
1da177e4
LT
4266 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4267 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4268 if (status)
4269 goto out;
4270 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4271 if (status)
4272 goto out;
4273 status = decode_putfh(&xdr);
4274 if (status)
4275 goto out;
4276 status = decode_getfattr(&xdr, res->fattr, res->server);
4277out:
4278 return status;
1da177e4
LT
4279}
4280
23ec6965
BF
4281/*
4282 * Encode an SETACL request
4283 */
4284static int
8687b63a 4285nfs4_xdr_enc_setacl(struct rpc_rqst *req, __be32 *p, struct nfs_setaclargs *args)
23ec6965 4286{
05d564fe
AA
4287 struct xdr_stream xdr;
4288 struct compound_hdr hdr = {
66cc0429 4289 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
05d564fe
AA
4290 };
4291 int status;
4292
4293 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
0c4e8c18 4294 encode_compound_hdr(&xdr, req, &hdr);
9b7b9fcc 4295 encode_sequence(&xdr, &args->seq_args, &hdr);
cf8cdbe5 4296 encode_putfh(&xdr, args->fh, &hdr);
d017931c 4297 status = encode_setacl(&xdr, args, &hdr);
d017931c 4298 encode_nops(&hdr);
05d564fe 4299 return status;
23ec6965 4300}
05d564fe 4301
23ec6965
BF
4302/*
4303 * Decode SETACL response
4304 */
4305static int
73c403a9
BH
4306nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, __be32 *p,
4307 struct nfs_setaclres *res)
23ec6965
BF
4308{
4309 struct xdr_stream xdr;
4310 struct compound_hdr hdr;
4311 int status;
4312
4313 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4314 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4315 if (status)
4316 goto out;
4317 status = decode_sequence(&xdr, &res->seq_res, rqstp);
23ec6965
BF
4318 if (status)
4319 goto out;
4320 status = decode_putfh(&xdr);
4321 if (status)
4322 goto out;
9e9ecc03 4323 status = decode_setattr(&xdr);
23ec6965
BF
4324out:
4325 return status;
4326}
1da177e4 4327
029d105e
BF
4328/*
4329 * Decode GETACL response
4330 */
4331static int
663c79b3
BH
4332nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, __be32 *p,
4333 struct nfs_getaclres *res)
029d105e
BF
4334{
4335 struct xdr_stream xdr;
4336 struct compound_hdr hdr;
4337 int status;
4338
4339 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4340 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4341 if (status)
4342 goto out;
4343 status = decode_sequence(&xdr, &res->seq_res, rqstp);
029d105e
BF
4344 if (status)
4345 goto out;
4346 status = decode_putfh(&xdr);
4347 if (status)
4348 goto out;
663c79b3 4349 status = decode_getacl(&xdr, rqstp, &res->acl_len);
029d105e
BF
4350
4351out:
4352 return status;
4353}
4354
1da177e4
LT
4355/*
4356 * Decode CLOSE response
4357 */
8687b63a 4358static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
1da177e4 4359{
05d564fe
AA
4360 struct xdr_stream xdr;
4361 struct compound_hdr hdr;
4362 int status;
4363
4364 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4365 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4366 if (status)
4367 goto out;
4368 status = decode_sequence(&xdr, &res->seq_res, rqstp);
05d564fe
AA
4369 if (status)
4370 goto out;
4371 status = decode_putfh(&xdr);
4372 if (status)
4373 goto out;
4374 status = decode_close(&xdr, res);
516a6af6
TM
4375 if (status != 0)
4376 goto out;
4377 /*
4378 * Note: Server may do delete on close for this file
4379 * in which case the getattr call will fail with
4380 * an ESTALE error. Shouldn't be a problem,
4381 * though, since fattr->valid will remain unset.
4382 */
4383 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4 4384out:
05d564fe 4385 return status;
1da177e4
LT
4386}
4387
4388/*
4389 * Decode OPEN response
4390 */
8687b63a 4391static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
1da177e4 4392{
05d564fe
AA
4393 struct xdr_stream xdr;
4394 struct compound_hdr hdr;
4395 int status;
4396
4397 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4398 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4399 if (status)
4400 goto out;
4401 status = decode_sequence(&xdr, &res->seq_res, rqstp);
05d564fe
AA
4402 if (status)
4403 goto out;
4404 status = decode_putfh(&xdr);
4405 if (status)
4406 goto out;
4407 status = decode_savefh(&xdr);
4408 if (status)
4409 goto out;
4410 status = decode_open(&xdr, res);
56ae19f3
TM
4411 if (status)
4412 goto out;
9936781d 4413 if (decode_getfh(&xdr, &res->fh) != 0)
1da177e4 4414 goto out;
56ae19f3
TM
4415 if (decode_getfattr(&xdr, res->f_attr, res->server) != 0)
4416 goto out;
365c8f58 4417 if (decode_restorefh(&xdr) != 0)
56ae19f3
TM
4418 goto out;
4419 decode_getfattr(&xdr, res->dir_attr, res->server);
1da177e4 4420out:
05d564fe 4421 return status;
1da177e4
LT
4422}
4423
4424/*
4425 * Decode OPEN_CONFIRM response
4426 */
8687b63a 4427static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp, __be32 *p, struct nfs_open_confirmres *res)
1da177e4 4428{
05d564fe
AA
4429 struct xdr_stream xdr;
4430 struct compound_hdr hdr;
4431 int status;
4432
4433 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4434 status = decode_compound_hdr(&xdr, &hdr);
4435 if (status)
4436 goto out;
4437 status = decode_putfh(&xdr);
4438 if (status)
4439 goto out;
4440 status = decode_open_confirm(&xdr, res);
1da177e4 4441out:
05d564fe 4442 return status;
1da177e4
LT
4443}
4444
4445/*
4446 * Decode OPEN response
4447 */
8687b63a 4448static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
1da177e4 4449{
05d564fe
AA
4450 struct xdr_stream xdr;
4451 struct compound_hdr hdr;
4452 int status;
4453
4454 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4455 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4456 if (status)
4457 goto out;
4458 status = decode_sequence(&xdr, &res->seq_res, rqstp);
05d564fe
AA
4459 if (status)
4460 goto out;
4461 status = decode_putfh(&xdr);
4462 if (status)
4463 goto out;
4464 status = decode_open(&xdr, res);
4465 if (status)
4466 goto out;
864472e9 4467 decode_getfattr(&xdr, res->f_attr, res->server);
1da177e4 4468out:
05d564fe 4469 return status;
1da177e4
LT
4470}
4471
4472/*
4473 * Decode SETATTR response
4474 */
8687b63a 4475static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_setattrres *res)
1da177e4 4476{
05d564fe
AA
4477 struct xdr_stream xdr;
4478 struct compound_hdr hdr;
4479 int status;
4480
4481 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4482 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4483 if (status)
4484 goto out;
4485 status = decode_sequence(&xdr, &res->seq_res, rqstp);
05d564fe
AA
4486 if (status)
4487 goto out;
4488 status = decode_putfh(&xdr);
4489 if (status)
4490 goto out;
9e9ecc03 4491 status = decode_setattr(&xdr);
05d564fe
AA
4492 if (status)
4493 goto out;
78f945f8 4494 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4 4495out:
05d564fe 4496 return status;
1da177e4
LT
4497}
4498
4499/*
4500 * Decode LOCK response
4501 */
8687b63a 4502static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lock_res *res)
1da177e4
LT
4503{
4504 struct xdr_stream xdr;
4505 struct compound_hdr hdr;
4506 int status;
4507
4508 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4509 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4510 if (status)
4511 goto out;
4512 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4513 if (status)
4514 goto out;
4515 status = decode_putfh(&xdr);
4516 if (status)
4517 goto out;
4518 status = decode_lock(&xdr, res);
4519out:
4520 return status;
4521}
4522
4523/*
4524 * Decode LOCKT response
4525 */
8687b63a 4526static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lockt_res *res)
1da177e4
LT
4527{
4528 struct xdr_stream xdr;
4529 struct compound_hdr hdr;
4530 int status;
4531
4532 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4533 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4534 if (status)
4535 goto out;
4536 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4537 if (status)
4538 goto out;
4539 status = decode_putfh(&xdr);
4540 if (status)
4541 goto out;
4542 status = decode_lockt(&xdr, res);
4543out:
4544 return status;
4545}
4546
4547/*
4548 * Decode LOCKU response
4549 */
8687b63a 4550static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, __be32 *p, struct nfs_locku_res *res)
1da177e4
LT
4551{
4552 struct xdr_stream xdr;
4553 struct compound_hdr hdr;
4554 int status;
4555
4556 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4557 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4558 if (status)
4559 goto out;
4560 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4561 if (status)
4562 goto out;
4563 status = decode_putfh(&xdr);
4564 if (status)
4565 goto out;
4566 status = decode_locku(&xdr, res);
4567out:
4568 return status;
4569}
4570
4571/*
4572 * Decode READLINK response
4573 */
f50c7000
BH
4574static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp, __be32 *p,
4575 struct nfs4_readlink_res *res)
1da177e4
LT
4576{
4577 struct xdr_stream xdr;
4578 struct compound_hdr hdr;
4579 int status;
4580
4581 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4582 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4583 if (status)
4584 goto out;
4585 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4586 if (status)
4587 goto out;
4588 status = decode_putfh(&xdr);
4589 if (status)
4590 goto out;
4591 status = decode_readlink(&xdr, rqstp);
4592out:
4593 return status;
4594}
4595
4596/*
4597 * Decode READDIR response
4598 */
8687b63a 4599static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_readdir_res *res)
1da177e4
LT
4600{
4601 struct xdr_stream xdr;
4602 struct compound_hdr hdr;
4603 int status;
4604
4605 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4606 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4607 if (status)
4608 goto out;
4609 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4610 if (status)
4611 goto out;
4612 status = decode_putfh(&xdr);
4613 if (status)
4614 goto out;
4615 status = decode_readdir(&xdr, rqstp, res);
4616out:
4617 return status;
4618}
4619
4620/*
4621 * Decode Read response
4622 */
8687b63a 4623static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, __be32 *p, struct nfs_readres *res)
1da177e4
LT
4624{
4625 struct xdr_stream xdr;
4626 struct compound_hdr hdr;
4627 int status;
4628
4629 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4630 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4631 if (status)
4632 goto out;
4633 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4634 if (status)
4635 goto out;
4636 status = decode_putfh(&xdr);
4637 if (status)
4638 goto out;
4639 status = decode_read(&xdr, rqstp, res);
4640 if (!status)
4641 status = res->count;
4642out:
4643 return status;
4644}
4645
4646/*
4647 * Decode WRITE response
4648 */
8687b63a 4649static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
1da177e4
LT
4650{
4651 struct xdr_stream xdr;
4652 struct compound_hdr hdr;
4653 int status;
4654
4655 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4656 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4657 if (status)
4658 goto out;
4659 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4660 if (status)
4661 goto out;
4662 status = decode_putfh(&xdr);
4663 if (status)
4664 goto out;
4665 status = decode_write(&xdr, res);
4f9838c7
TM
4666 if (status)
4667 goto out;
4668 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4
LT
4669 if (!status)
4670 status = res->count;
4671out:
4672 return status;
4673}
4674
4675/*
4676 * Decode COMMIT response
4677 */
8687b63a 4678static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
1da177e4
LT
4679{
4680 struct xdr_stream xdr;
4681 struct compound_hdr hdr;
4682 int status;
4683
4684 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4685 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4686 if (status)
4687 goto out;
4688 status = decode_sequence(&xdr, &res->seq_res, rqstp);
1da177e4
LT
4689 if (status)
4690 goto out;
4691 status = decode_putfh(&xdr);
4692 if (status)
4693 goto out;
4694 status = decode_commit(&xdr, res);
4f9838c7
TM
4695 if (status)
4696 goto out;
4697 decode_getfattr(&xdr, res->fattr, res->server);
1da177e4
LT
4698out:
4699 return status;
4700}
4701
4702/*
4703 * FSINFO request
4704 */
3dda5e43
BH
4705static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, __be32 *p,
4706 struct nfs4_fsinfo_res *res)
1da177e4
LT
4707{
4708 struct xdr_stream xdr;
4709 struct compound_hdr hdr;
4710 int status;
4711
4712 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4713 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4714 if (!status)
4715 status = decode_sequence(&xdr, &res->seq_res, req);
1da177e4
LT
4716 if (!status)
4717 status = decode_putfh(&xdr);
4718 if (!status)
3dda5e43 4719 status = decode_fsinfo(&xdr, res->fsinfo);
1da177e4
LT
4720 return status;
4721}
4722
4723/*
4724 * PATHCONF request
4725 */
d45b2989
BH
4726static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, __be32 *p,
4727 struct nfs4_pathconf_res *res)
1da177e4
LT
4728{
4729 struct xdr_stream xdr;
4730 struct compound_hdr hdr;
4731 int status;
4732
4733 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4734 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4735 if (!status)
4736 status = decode_sequence(&xdr, &res->seq_res, req);
1da177e4
LT
4737 if (!status)
4738 status = decode_putfh(&xdr);
4739 if (!status)
d45b2989 4740 status = decode_pathconf(&xdr, res->pathconf);
1da177e4
LT
4741 return status;
4742}
4743
4744/*
4745 * STATFS request
4746 */
24ad148a
BH
4747static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p,
4748 struct nfs4_statfs_res *res)
1da177e4
LT
4749{
4750 struct xdr_stream xdr;
4751 struct compound_hdr hdr;
4752 int status;
4753
4754 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4755 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4756 if (!status)
4757 status = decode_sequence(&xdr, &res->seq_res, req);
1da177e4
LT
4758 if (!status)
4759 status = decode_putfh(&xdr);
4760 if (!status)
24ad148a 4761 status = decode_statfs(&xdr, res->fsstat);
1da177e4
LT
4762 return status;
4763}
4764
4765/*
4766 * GETATTR_BITMAP request
4767 */
8687b63a 4768static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req, __be32 *p, struct nfs4_server_caps_res *res)
1da177e4
LT
4769{
4770 struct xdr_stream xdr;
4771 struct compound_hdr hdr;
4772 int status;
4773
4774 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
9b7b9fcc
AA
4775 status = decode_compound_hdr(&xdr, &hdr);
4776 if (status)
4777 goto out;
4778 status = decode_sequence(&xdr, &res->seq_res, req);
4779 if (status)
1da177e4
LT
4780 goto out;
4781 if ((status = decode_putfh(&xdr)) != 0)
4782 goto out;
4783 status = decode_server_caps(&xdr, res);
4784out:
4785 return status;
4786}
4787
4788/*
4789 * Decode RENEW response
4790 */
8687b63a 4791static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, __be32 *p, void *dummy)
1da177e4
LT
4792{
4793 struct xdr_stream xdr;
4794 struct compound_hdr hdr;
4795 int status;
4796
4797 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4798 status = decode_compound_hdr(&xdr, &hdr);
4799 if (!status)
4800 status = decode_renew(&xdr);
4801 return status;
4802}
4803
4804/*
4805 * a SETCLIENTID request
4806 */
8687b63a 4807static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req, __be32 *p,
adfa6f98 4808 struct nfs_client *clp)
1da177e4
LT
4809{
4810 struct xdr_stream xdr;
4811 struct compound_hdr hdr;
4812 int status;
4813
4814 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4815 status = decode_compound_hdr(&xdr, &hdr);
4816 if (!status)
4817 status = decode_setclientid(&xdr, clp);
1da177e4
LT
4818 return status;
4819}
4820
4821/*
4822 * a SETCLIENTID_CONFIRM request
4823 */
8687b63a 4824static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_fsinfo *fsinfo)
1da177e4
LT
4825{
4826 struct xdr_stream xdr;
4827 struct compound_hdr hdr;
4828 int status;
4829
4830 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4831 status = decode_compound_hdr(&xdr, &hdr);
4832 if (!status)
4833 status = decode_setclientid_confirm(&xdr);
4834 if (!status)
4835 status = decode_putrootfh(&xdr);
4836 if (!status)
4837 status = decode_fsinfo(&xdr, fsinfo);
1da177e4
LT
4838 return status;
4839}
4840
4841/*
4842 * DELEGRETURN request
4843 */
8687b63a 4844static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_delegreturnres *res)
1da177e4
LT
4845{
4846 struct xdr_stream xdr;
4847 struct compound_hdr hdr;
4848 int status;
4849
4850 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4851 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4852 if (status)
4853 goto out;
4854 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4855 if (status)
fa178f29
TM
4856 goto out;
4857 status = decode_putfh(&xdr);
4858 if (status != 0)
4859 goto out;
4860 status = decode_delegreturn(&xdr);
4861 decode_getfattr(&xdr, res->fattr, res->server);
4862out:
1da177e4
LT
4863 return status;
4864}
4865
683b57b4
TM
4866/*
4867 * FS_LOCATIONS request
4868 */
22958463
BH
4869static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p,
4870 struct nfs4_fs_locations_res *res)
683b57b4
TM
4871{
4872 struct xdr_stream xdr;
4873 struct compound_hdr hdr;
4874 int status;
4875
4876 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4877 status = decode_compound_hdr(&xdr, &hdr);
9b7b9fcc
AA
4878 if (status)
4879 goto out;
4880 status = decode_sequence(&xdr, &res->seq_res, req);
4881 if (status)
683b57b4
TM
4882 goto out;
4883 if ((status = decode_putfh(&xdr)) != 0)
4884 goto out;
4885 if ((status = decode_lookup(&xdr)) != 0)
4886 goto out;
4887 xdr_enter_page(&xdr, PAGE_SIZE);
22958463
BH
4888 status = decode_getfattr(&xdr, &res->fs_locations->fattr,
4889 res->fs_locations->server);
683b57b4
TM
4890out:
4891 return status;
4892}
4893
99fe60d0
BH
4894#if defined(CONFIG_NFS_V4_1)
4895/*
4896 * EXCHANGE_ID request
4897 */
4898static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp, uint32_t *p,
4899 void *res)
4900{
4901 struct xdr_stream xdr;
4902 struct compound_hdr hdr;
4903 int status;
4904
4905 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4906 status = decode_compound_hdr(&xdr, &hdr);
4907 if (!status)
4908 status = decode_exchange_id(&xdr, res);
4909 return status;
4910}
4911#endif /* CONFIG_NFS_V4_1 */
4912
0dbb4c67 4913__be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus)
1da177e4
LT
4914{
4915 uint32_t bitmap[2] = {0};
4916 uint32_t len;
4917
4918 if (!*p++) {
4919 if (!*p)
4920 return ERR_PTR(-EAGAIN);
4921 entry->eof = 1;
4922 return ERR_PTR(-EBADCOOKIE);
4923 }
4924
4925 entry->prev_cookie = entry->cookie;
4926 p = xdr_decode_hyper(p, &entry->cookie);
4927 entry->len = ntohl(*p++);
4928 entry->name = (const char *) p;
4929 p += XDR_QUADLEN(entry->len);
4930
4931 /*
4932 * In case the server doesn't return an inode number,
4933 * we fake one here. (We don't use inode number 0,
4934 * since glibc seems to choke on it...)
4935 */
4936 entry->ino = 1;
4937
4938 len = ntohl(*p++); /* bitmap length */
4939 if (len-- > 0) {
4940 bitmap[0] = ntohl(*p++);
4941 if (len-- > 0) {
4942 bitmap[1] = ntohl(*p++);
4943 p += len;
4944 }
4945 }
4946 len = XDR_QUADLEN(ntohl(*p++)); /* attribute buffer length */
4947 if (len > 0) {
97d312d0
MN
4948 if (bitmap[0] & FATTR4_WORD0_RDATTR_ERROR) {
4949 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
4950 /* Ignore the return value of rdattr_error for now */
4951 p++;
4952 len--;
4953 }
1da177e4
LT
4954 if (bitmap[0] == 0 && bitmap[1] == FATTR4_WORD1_MOUNTED_ON_FILEID)
4955 xdr_decode_hyper(p, &entry->ino);
4956 else if (bitmap[0] == FATTR4_WORD0_FILEID)
4957 xdr_decode_hyper(p, &entry->ino);
4958 p += len;
4959 }
4960
4961 entry->eof = !p[0] && p[1];
4962 return p;
4963}
4964
4965/*
4966 * We need to translate between nfs status return values and
4967 * the local errno values which may not be the same.
4968 */
4969static struct {
4970 int stat;
4971 int errno;
4972} nfs_errtbl[] = {
4973 { NFS4_OK, 0 },
856dff3d
BH
4974 { NFS4ERR_PERM, -EPERM },
4975 { NFS4ERR_NOENT, -ENOENT },
4976 { NFS4ERR_IO, -errno_NFSERR_IO},
4977 { NFS4ERR_NXIO, -ENXIO },
4978 { NFS4ERR_ACCESS, -EACCES },
4979 { NFS4ERR_EXIST, -EEXIST },
4980 { NFS4ERR_XDEV, -EXDEV },
4981 { NFS4ERR_NOTDIR, -ENOTDIR },
4982 { NFS4ERR_ISDIR, -EISDIR },
4983 { NFS4ERR_INVAL, -EINVAL },
4984 { NFS4ERR_FBIG, -EFBIG },
4985 { NFS4ERR_NOSPC, -ENOSPC },
4986 { NFS4ERR_ROFS, -EROFS },
4987 { NFS4ERR_MLINK, -EMLINK },
4988 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
4989 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
4990 { NFS4ERR_DQUOT, -EDQUOT },
4991 { NFS4ERR_STALE, -ESTALE },
4992 { NFS4ERR_BADHANDLE, -EBADHANDLE },
4993 { NFS4ERR_BADOWNER, -EINVAL },
4994 { NFS4ERR_BADNAME, -EINVAL },
4995 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
4996 { NFS4ERR_NOTSUPP, -ENOTSUPP },
4997 { NFS4ERR_TOOSMALL, -ETOOSMALL },
4998 { NFS4ERR_SERVERFAULT, -ESERVERFAULT },
4999 { NFS4ERR_BADTYPE, -EBADTYPE },
5000 { NFS4ERR_LOCKED, -EAGAIN },
5001 { NFS4ERR_RESOURCE, -EREMOTEIO },
5002 { NFS4ERR_SYMLINK, -ELOOP },
5003 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
5004 { NFS4ERR_DEADLOCK, -EDEADLK },
5005 { NFS4ERR_WRONGSEC, -EPERM }, /* FIXME: this needs
1da177e4
LT
5006 * to be handled by a
5007 * middle-layer.
5008 */
856dff3d 5009 { -1, -EIO }
1da177e4
LT
5010};
5011
5012/*
5013 * Convert an NFS error code to a local one.
5014 * This one is used jointly by NFSv2 and NFSv3.
5015 */
5016static int
0a8ea437 5017nfs4_stat_to_errno(int stat)
1da177e4
LT
5018{
5019 int i;
5020 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
5021 if (nfs_errtbl[i].stat == stat)
5022 return nfs_errtbl[i].errno;
5023 }
5024 if (stat <= 10000 || stat > 10100) {
5025 /* The server is looney tunes. */
856dff3d 5026 return -ESERVERFAULT;
1da177e4
LT
5027 }
5028 /* If we cannot translate the error, the recovery routines should
5029 * handle it.
5030 * Note: remaining NFSv4 error codes have values > 10000, so should
5031 * not conflict with native Linux error codes.
5032 */
856dff3d 5033 return -stat;
1da177e4
LT
5034}
5035
1da177e4
LT
5036#define PROC(proc, argtype, restype) \
5037[NFSPROC4_CLNT_##proc] = { \
5038 .p_proc = NFSPROC4_COMPOUND, \
5039 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
5040 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
2bea90d4
CL
5041 .p_arglen = NFS4_##argtype##_sz, \
5042 .p_replen = NFS4_##restype##_sz, \
cc0175c1
CL
5043 .p_statidx = NFSPROC4_CLNT_##proc, \
5044 .p_name = #proc, \
05d564fe 5045}
1da177e4
LT
5046
5047struct rpc_procinfo nfs4_procedures[] = {
5048 PROC(READ, enc_read, dec_read),
5049 PROC(WRITE, enc_write, dec_write),
5050 PROC(COMMIT, enc_commit, dec_commit),
5051 PROC(OPEN, enc_open, dec_open),
5052 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
5053 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
5054 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
5055 PROC(CLOSE, enc_close, dec_close),
5056 PROC(SETATTR, enc_setattr, dec_setattr),
5057 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
5058 PROC(RENEW, enc_renew, dec_renew),
5059 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
5060 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
5061 PROC(LOCK, enc_lock, dec_lock),
5062 PROC(LOCKT, enc_lockt, dec_lockt),
5063 PROC(LOCKU, enc_locku, dec_locku),
5064 PROC(ACCESS, enc_access, dec_access),
5065 PROC(GETATTR, enc_getattr, dec_getattr),
5066 PROC(LOOKUP, enc_lookup, dec_lookup),
5067 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
5068 PROC(REMOVE, enc_remove, dec_remove),
5069 PROC(RENAME, enc_rename, dec_rename),
5070 PROC(LINK, enc_link, dec_link),
5071 PROC(SYMLINK, enc_symlink, dec_symlink),
5072 PROC(CREATE, enc_create, dec_create),
5073 PROC(PATHCONF, enc_pathconf, dec_pathconf),
5074 PROC(STATFS, enc_statfs, dec_statfs),
5075 PROC(READLINK, enc_readlink, dec_readlink),
5076 PROC(READDIR, enc_readdir, dec_readdir),
5077 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
5078 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
029d105e 5079 PROC(GETACL, enc_getacl, dec_getacl),
23ec6965 5080 PROC(SETACL, enc_setacl, dec_setacl),
683b57b4 5081 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
99fe60d0
BH
5082#if defined(CONFIG_NFS_V4_1)
5083 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
5084#endif /* CONFIG_NFS_V4_1 */
1da177e4
LT
5085};
5086
5087struct rpc_version nfs_version4 = {
5088 .number = 4,
e8c96f8c 5089 .nrprocs = ARRAY_SIZE(nfs4_procedures),
1da177e4
LT
5090 .procs = nfs4_procedures
5091};
5092
5093/*
5094 * Local variables:
5095 * c-basic-offset: 8
5096 * End:
5097 */