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