blob: 404f2e6373f21489a7430d8af38f33efe0939bd5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4xdr.c
3 *
4 * Client-side XDR for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
Andy Adamson6c0195a2008-12-23 16:06:15 -050011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/param.h>
39#include <linux/time.h>
40#include <linux/mm.h>
41#include <linux/slab.h>
42#include <linux/utsname.h>
43#include <linux/errno.h>
44#include <linux/string.h>
45#include <linux/in.h>
46#include <linux/pagemap.h>
47#include <linux/proc_fs.h>
48#include <linux/kdev_t.h>
49#include <linux/sunrpc/clnt.h>
50#include <linux/nfs.h>
51#include <linux/nfs4.h>
52#include <linux/nfs_fs.h>
53#include <linux/nfs_idmap.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000054#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define NFSDBG_FACILITY NFSDBG_XDR
57
58/* Mapping from NFS error code to "errno" error code. */
59#define errno_NFSERR_IO EIO
60
David Howells0a8ea432006-08-22 20:06:08 -040061static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
64#ifdef DEBUG
65#define NFS4_MAXTAGLEN 20
66#else
67#define NFS4_MAXTAGLEN 0
68#endif
69
Andy Adamson6c0195a2008-12-23 16:06:15 -050070/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040071 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
Trond Myklebust9f958ab2007-07-02 13:58:33 -040073#define open_owner_id_maxsz (1 + 4)
74#define lock_owner_id_maxsz (1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040075#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
77#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
78#define op_encode_hdr_maxsz (1)
79#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040080#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
81#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
82#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
83#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
85 (NFS4_FHSIZE >> 2))
86#define decode_putfh_maxsz (op_decode_hdr_maxsz)
87#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
88#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
89#define encode_getfh_maxsz (op_encode_hdr_maxsz)
90#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
91 ((3+NFS4_FHSIZE) >> 2))
J. Bruce Fields96928202005-06-22 17:16:22 +000092#define nfs4_fattr_bitmap_maxsz 3
93#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
95#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -040096#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
97#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
J. Bruce Fields96928202005-06-22 17:16:22 +000098/* This is based on getfattr, which uses the most attributes: */
99#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400100 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000101#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
102 nfs4_fattr_value_maxsz)
103#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400104#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
105 1 + 2 + 1 + \
106 nfs4_owner_maxsz + \
107 nfs4_group_maxsz + \
108 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define encode_savefh_maxsz (op_encode_hdr_maxsz)
110#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400111#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
112#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200113#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + 11)
115#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
116#define decode_renew_maxsz (op_decode_hdr_maxsz)
117#define encode_setclientid_maxsz \
118 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500119 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
120 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
121 1 /* sc_prog */ + \
122 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
123 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
124 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define decode_setclientid_maxsz \
126 (op_decode_hdr_maxsz + \
127 2 + \
128 1024) /* large value for CLID_INUSE */
129#define encode_setclientid_confirm_maxsz \
130 (op_encode_hdr_maxsz + \
131 3 + (NFS4_VERIFIER_SIZE >> 2))
132#define decode_setclientid_confirm_maxsz \
133 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400134#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
135#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400136#define encode_share_access_maxsz \
137 (2)
Trond Myklebust9104a552007-07-17 21:52:42 -0400138#define encode_createmode_maxsz (1 + encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400139#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
140#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
141#define encode_open_maxsz (op_encode_hdr_maxsz + \
142 2 + encode_share_access_maxsz + 2 + \
143 open_owner_id_maxsz + \
144 encode_opentype_maxsz + \
145 encode_claim_null_maxsz)
146#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400147#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400148 decode_ace_maxsz)
149#define decode_change_info_maxsz (5)
150#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400151 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400152 decode_change_info_maxsz + 1 + \
153 nfs4_fattr_bitmap_maxsz + \
154 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400155#define encode_open_confirm_maxsz \
156 (op_encode_hdr_maxsz + \
157 encode_stateid_maxsz + 1)
158#define decode_open_confirm_maxsz \
159 (op_decode_hdr_maxsz + \
160 decode_stateid_maxsz)
161#define encode_open_downgrade_maxsz \
162 (op_encode_hdr_maxsz + \
163 encode_stateid_maxsz + 1 + \
164 encode_share_access_maxsz)
165#define decode_open_downgrade_maxsz \
166 (op_decode_hdr_maxsz + \
167 decode_stateid_maxsz)
168#define encode_close_maxsz (op_encode_hdr_maxsz + \
169 1 + encode_stateid_maxsz)
170#define decode_close_maxsz (op_decode_hdr_maxsz + \
171 decode_stateid_maxsz)
172#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
173 encode_stateid_maxsz + \
174 encode_attrs_maxsz)
175#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
176 nfs4_fattr_bitmap_maxsz)
177#define encode_read_maxsz (op_encode_hdr_maxsz + \
178 encode_stateid_maxsz + 3)
179#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
180#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
181 2 + encode_verifier_maxsz + 5)
182#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
183 decode_verifier_maxsz)
184#define encode_readlink_maxsz (op_encode_hdr_maxsz)
185#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
186#define encode_write_maxsz (op_encode_hdr_maxsz + \
187 encode_stateid_maxsz + 4)
188#define decode_write_maxsz (op_decode_hdr_maxsz + \
189 2 + decode_verifier_maxsz)
190#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
191#define decode_commit_maxsz (op_decode_hdr_maxsz + \
192 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#define encode_remove_maxsz (op_encode_hdr_maxsz + \
194 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400195#define decode_remove_maxsz (op_decode_hdr_maxsz + \
196 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define encode_rename_maxsz (op_encode_hdr_maxsz + \
198 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400199#define decode_rename_maxsz (op_decode_hdr_maxsz + \
200 decode_change_info_maxsz + \
201 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define encode_link_maxsz (op_encode_hdr_maxsz + \
203 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400204#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400205#define encode_lock_maxsz (op_encode_hdr_maxsz + \
206 7 + \
207 1 + encode_stateid_maxsz + 8)
208#define decode_lock_denied_maxsz \
209 (8 + decode_lockowner_maxsz)
210#define decode_lock_maxsz (op_decode_hdr_maxsz + \
211 decode_lock_denied_maxsz)
212#define encode_lockt_maxsz (op_encode_hdr_maxsz + 12)
213#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
214 decode_lock_denied_maxsz)
215#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
216 encode_stateid_maxsz + \
217 4)
218#define decode_locku_maxsz (op_decode_hdr_maxsz + \
219 decode_stateid_maxsz)
220#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
221#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
223 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400224 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000225 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
227#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400228 1 + 2 + nfs4_name_maxsz + \
229 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400230#define decode_create_maxsz (op_decode_hdr_maxsz + \
231 decode_change_info_maxsz + \
232 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400233#define encode_statfs_maxsz (encode_getattr_maxsz)
234#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
236#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400237#define encode_getacl_maxsz (encode_getattr_maxsz)
238#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
239 nfs4_fattr_bitmap_maxsz + 1)
240#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
241 encode_stateid_maxsz + 3)
242#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400243#define encode_fs_locations_maxsz \
244 (encode_getattr_maxsz)
245#define decode_fs_locations_maxsz \
246 (0)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400247
248#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400249#define NFS4_MAX_MACHINE_NAME_LEN (64)
250
Benny Halevy99fe60d2009-04-01 09:22:29 -0400251#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
252 encode_verifier_maxsz + \
253 1 /* co_ownerid.len */ + \
254 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
255 1 /* flags */ + \
256 1 /* spa_how */ + \
257 0 /* SP4_NONE (for now) */ + \
258 1 /* zero implemetation id array */)
259#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
260 2 /* eir_clientid */ + \
261 1 /* eir_sequenceid */ + \
262 1 /* eir_flags */ + \
263 1 /* spr_how */ + \
264 0 /* SP4_NONE (for now) */ + \
265 2 /* eir_server_owner.so_minor_id */ + \
266 /* eir_server_owner.so_major_id<> */ \
267 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
268 /* eir_server_scope<> */ \
269 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
270 1 /* eir_server_impl_id array length */ + \
271 0 /* ignored eir_server_impl_id contents */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400272#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
273#define decode_channel_attrs_maxsz (6 + \
274 1 /* ca_rdma_ird.len */ + \
275 1 /* ca_rdma_ird */)
276#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
277 2 /* csa_clientid */ + \
278 1 /* csa_sequence */ + \
279 1 /* csa_flags */ + \
280 encode_channel_attrs_maxsz + \
281 encode_channel_attrs_maxsz + \
282 1 /* csa_cb_program */ + \
283 1 /* csa_sec_parms.len (1) */ + \
284 1 /* cb_secflavor (AUTH_SYS) */ + \
285 1 /* stamp */ + \
286 1 /* machinename.len */ + \
287 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
288 1 /* uid */ + \
289 1 /* gid */ + \
290 1 /* gids.len (0) */)
291#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
292 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
293 1 /* csr_sequence */ + \
294 1 /* csr_flags */ + \
295 decode_channel_attrs_maxsz + \
296 decode_channel_attrs_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400297#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
298#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400299#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)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400303#else /* CONFIG_NFS_V4_1 */
304#define encode_sequence_maxsz 0
305#define decode_sequence_maxsz 0
306#endif /* CONFIG_NFS_V4_1 */
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#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 + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400311 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400313 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400315 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400317 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400319 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400321 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400323 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400325 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400327 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400329 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400331 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400333 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400335 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400337 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400338 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400340 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400342 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400343 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400345 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400347 encode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400348 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400350 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400352 decode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400353 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400355 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400356 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400364 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400365 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)
Trond Myklebust9104a552007-07-17 21:52:42 -0400372#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400381 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400383 encode_open_maxsz + \
384 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400386 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400388 decode_open_maxsz + \
389 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define NFS4_enc_open_downgrade_sz \
391 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400392 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400393 encode_putfh_maxsz + \
394 encode_open_downgrade_maxsz + \
395 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#define NFS4_dec_open_downgrade_sz \
397 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400398 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400399 decode_putfh_maxsz + \
400 decode_open_downgrade_maxsz + \
401 decode_getattr_maxsz)
402#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400403 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400404 encode_putfh_maxsz + \
405 encode_close_maxsz + \
406 encode_getattr_maxsz)
407#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400408 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400409 decode_putfh_maxsz + \
410 decode_close_maxsz + \
411 decode_getattr_maxsz)
412#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400413 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400414 encode_putfh_maxsz + \
415 encode_setattr_maxsz + \
416 encode_getattr_maxsz)
417#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400418 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400419 decode_putfh_maxsz + \
420 decode_setattr_maxsz + \
421 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400423 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 encode_putfh_maxsz + \
425 encode_fsinfo_maxsz)
426#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400427 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 decode_putfh_maxsz + \
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 + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400449 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400451 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400453 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400455 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400457 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400459 encode_lockt_maxsz)
460#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400461 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400462 decode_putfh_maxsz + \
463 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400465 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400467 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400469 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400471 decode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400473 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400475 encode_access_maxsz + \
476 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400478 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400480 decode_access_maxsz + \
481 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400483 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 encode_putfh_maxsz + \
485 encode_getattr_maxsz)
486#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400487 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 decode_putfh_maxsz + \
489 decode_getattr_maxsz)
490#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400491 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 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 + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400497 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400499 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 decode_getattr_maxsz + \
501 decode_getfh_maxsz)
502#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400503 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 encode_putrootfh_maxsz + \
505 encode_getattr_maxsz + \
506 encode_getfh_maxsz)
507#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400508 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 decode_putrootfh_maxsz + \
510 decode_getattr_maxsz + \
511 decode_getfh_maxsz)
512#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400513 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 encode_putfh_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400515 encode_remove_maxsz + \
516 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400518 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 decode_putfh_maxsz + \
Benny Halevy6ce18392009-04-01 09:22:06 -0400520 decode_remove_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400521 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400523 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 encode_putfh_maxsz + \
525 encode_savefh_maxsz + \
526 encode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400527 encode_rename_maxsz + \
528 encode_getattr_maxsz + \
529 encode_restorefh_maxsz + \
530 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400532 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 decode_putfh_maxsz + \
534 decode_savefh_maxsz + \
535 decode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400536 decode_rename_maxsz + \
537 decode_getattr_maxsz + \
538 decode_restorefh_maxsz + \
539 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400541 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 encode_putfh_maxsz + \
543 encode_savefh_maxsz + \
544 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400545 encode_link_maxsz + \
546 decode_getattr_maxsz + \
547 encode_restorefh_maxsz + \
548 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400550 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 decode_putfh_maxsz + \
552 decode_savefh_maxsz + \
553 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400554 decode_link_maxsz + \
555 decode_getattr_maxsz + \
556 decode_restorefh_maxsz + \
557 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400559 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 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 + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400565 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 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 + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400571 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 encode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400573 encode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400575 encode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 encode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400577 encode_restorefh_maxsz + \
578 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400580 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 decode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400582 decode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400584 decode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 decode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400586 decode_restorefh_maxsz + \
587 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400589 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 encode_putfh_maxsz + \
591 encode_getattr_maxsz)
592#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400593 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 decode_putfh_maxsz + \
595 decode_getattr_maxsz)
596#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400597 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400599 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400601 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400603 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400605 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800606 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 encode_getattr_maxsz)
608#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400609 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800610 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 decode_getattr_maxsz)
612#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400613 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100615 encode_delegreturn_maxsz + \
616 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400618 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100619 decode_delegreturn_maxsz + \
620 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000621#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400622 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000623 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400624 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000625#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400626 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000627 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400628 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000629#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400630 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000631 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400632 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000633#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400634 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000635 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400636 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400637#define NFS4_enc_fs_locations_sz \
638 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400639 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400640 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400641 encode_lookup_maxsz + \
642 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400643#define NFS4_dec_fs_locations_sz \
644 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400645 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400646 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400647 decode_lookup_maxsz + \
648 decode_fs_locations_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400649#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)
Andy Adamsonfc931582009-04-01 09:22:31 -0400656#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)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400662#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)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400666#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)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400672#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)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400680#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Trond Myklebustbca79472009-03-11 14:10:26 -0400682static 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693};
694
695struct compound_hdr {
696 int32_t status;
697 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500698 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 uint32_t taglen;
700 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400701 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400702 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703};
704
Benny Halevy13c65ce2009-08-14 17:19:25 +0300705static __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}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
713{
Al Viro8687b632006-10-19 23:28:48 -0700714 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 p = xdr_reserve_space(xdr, 4 + len);
717 BUG_ON(p == NULL);
718 xdr_encode_opaque(p, str, len);
719}
720
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400721static void encode_compound_hdr(struct xdr_stream *xdr,
722 struct rpc_rqst *req,
723 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Al Viro8687b632006-10-19 23:28:48 -0700725 __be32 *p;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400726 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag);
734 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Benny Halevy811652b2009-08-14 17:19:34 +0300735 p = reserve_space(xdr, 4 + hdr->taglen + 8);
736 p = xdr_encode_opaque(p, hdr->tag, hdr->taglen);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300737 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500738 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300739 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500740}
741
742static void encode_nops(struct compound_hdr *hdr)
743{
Andy Adamsonfc931582009-04-01 09:22:31 -0400744 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500745 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
749{
Al Viro8687b632006-10-19 23:28:48 -0700750 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
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
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500757static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 char owner_name[IDMAP_NAMESZ];
760 char owner_group[IDMAP_NAMESZ];
761 int owner_namelen = 0;
762 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700763 __be32 *p;
764 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int len;
766 uint32_t bmval0 = 0;
767 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
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
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000774 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 */
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) {
David Howells7539bba2006-08-22 20:06:09 -0400784 owner_namelen = nfs_map_uid_to_name(server->nfs_client, iap->ia_uid, owner_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400786 dprintk("nfs: couldn't resolve uid %d to string\n",
787 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* 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) {
David Howells7539bba2006-08-22 20:06:09 -0400796 owner_grouplen = nfs_map_gid_to_group(server->nfs_client, iap->ia_gid, owner_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400798 dprintk("nfs: couldn't resolve gid %d to string\n",
799 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 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;
Benny Halevy13c65ce2009-08-14 17:19:25 +0300814 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
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 */
Benny Halevye75bc1c2009-08-14 17:18:54 +0300820 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 q = p;
822 p += 3;
823
824 if (iap->ia_valid & ATTR_SIZE) {
825 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +0300826 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 if (iap->ia_valid & ATTR_MODE) {
829 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300830 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832 if (iap->ia_valid & ATTR_UID) {
833 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +0300834 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 if (iap->ia_valid & ATTR_GID) {
837 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +0300838 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 if (iap->ia_valid & ATTR_ATIME_SET) {
841 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300842 *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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 else if (iap->ia_valid & ATTR_ATIME) {
848 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300849 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 if (iap->ia_valid & ATTR_MTIME_SET) {
852 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300853 *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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 else if (iap->ia_valid & ATTR_MTIME) {
859 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300860 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Andy Adamson6c0195a2008-12-23 16:06:15 -0500862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
864 * Now we backfill the bitmap and the attribute buffer length.
865 */
866 if (len != ((char *)p - (char *)q) + 4) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400867 printk(KERN_ERR "nfs: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 len, ((char *)p - (char *)q) + 4);
869 BUG();
870 }
871 len = (char *)p - (char *)q - 12;
872 *q++ = htonl(bmval0);
873 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +0300874 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500879static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Al Viro8687b632006-10-19 23:28:48 -0700881 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Benny Halevy13c65ce2009-08-14 17:19:25 +0300883 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300884 *p++ = cpu_to_be32(OP_ACCESS);
Benny Halevy34558512009-08-14 17:19:30 +0300885 *p = cpu_to_be32(access);
Andy Adamsond0179312008-12-23 16:06:17 -0500886 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400887 hdr->replen += decode_access_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500890static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Al Viro8687b632006-10-19 23:28:48 -0700892 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Benny Halevy13c65ce2009-08-14 17:19:25 +0300894 p = reserve_space(xdr, 8+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300895 *p++ = cpu_to_be32(OP_CLOSE);
896 *p++ = cpu_to_be32(arg->seqid->sequence->counter);
Benny Halevy34558512009-08-14 17:19:30 +0300897 xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -0500898 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400899 hdr->replen += decode_close_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500902static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Al Viro8687b632006-10-19 23:28:48 -0700904 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500905
Benny Halevy13c65ce2009-08-14 17:19:25 +0300906 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300907 *p++ = cpu_to_be32(OP_COMMIT);
Benny Halevyb95be5a2009-08-14 17:19:01 +0300908 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +0300909 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -0500910 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400911 hdr->replen += decode_commit_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500914static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Al Viro8687b632006-10-19 23:28:48 -0700916 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500917
Benny Halevy13c65ce2009-08-14 17:19:25 +0300918 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300919 *p++ = cpu_to_be32(OP_CREATE);
Benny Halevy34558512009-08-14 17:19:30 +0300920 *p = cpu_to_be32(create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 switch (create->ftype) {
923 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +0300924 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +0300925 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -0400926 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
928
929 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +0300930 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300931 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +0300932 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 break;
934
935 default:
936 break;
937 }
938
Benny Halevy811652b2009-08-14 17:19:34 +0300939 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsond0179312008-12-23 16:06:17 -0500940 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400941 hdr->replen += decode_create_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500943 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500946static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Andy Adamson05d564f2008-12-23 16:06:15 -0500948 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Benny Halevy13c65ce2009-08-14 17:19:25 +0300950 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300951 *p++ = cpu_to_be32(OP_GETATTR);
952 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +0300953 *p = cpu_to_be32(bitmap);
Andy Adamsond0179312008-12-23 16:06:17 -0500954 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400955 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500958static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Andy Adamson05d564f2008-12-23 16:06:15 -0500960 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Benny Halevy13c65ce2009-08-14 17:19:25 +0300962 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300963 *p++ = cpu_to_be32(OP_GETATTR);
964 *p++ = cpu_to_be32(2);
965 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +0300966 *p = cpu_to_be32(bm1);
Andy Adamsond0179312008-12-23 16:06:17 -0500967 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400968 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500971static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500973 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
974 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500977static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500979 encode_getattr_two(xdr, bitmask[0] & nfs4_fsinfo_bitmap[0],
980 bitmask[1] & nfs4_fsinfo_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500983static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -0400984{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500985 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
986 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -0400987}
988
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500989static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Al Viro8687b632006-10-19 23:28:48 -0700991 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Benny Halevy13c65ce2009-08-14 17:19:25 +0300993 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +0300994 *p = cpu_to_be32(OP_GETFH);
Andy Adamsond0179312008-12-23 16:06:17 -0500995 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400996 hdr->replen += decode_getfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500999static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Al Viro8687b632006-10-19 23:28:48 -07001001 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Benny Halevy13c65ce2009-08-14 17:19:25 +03001003 p = reserve_space(xdr, 8 + name->len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001004 *p++ = cpu_to_be32(OP_LINK);
Benny Halevy811652b2009-08-14 17:19:34 +03001005 xdr_encode_opaque(p, name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001006 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001007 hdr->replen += decode_link_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001010static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/*
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 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001028static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Al Viro8687b632006-10-19 23:28:48 -07001030 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Benny Halevy13c65ce2009-08-14 17:19:25 +03001032 p = reserve_space(xdr, 32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001033 *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);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001036 p = xdr_encode_hyper(p, args->fl->fl_start);
1037 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001038 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001039 if (args->new_lock_owner){
Benny Halevy13c65ce2009-08-14 17:19:25 +03001040 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001041 *p++ = cpu_to_be32(args->open_seqid->sequence->counter);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001042 p = xdr_encode_opaque_fixed(p, args->open_stateid->data, NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001043 *p++ = cpu_to_be32(args->lock_seqid->sequence->counter);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001044 p = xdr_encode_hyper(p, args->lock_owner.clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001045 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001046 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001047 xdr_encode_hyper(p, args->lock_owner.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049 else {
Benny Halevy13c65ce2009-08-14 17:19:25 +03001050 p = reserve_space(xdr, NFS4_STATEID_SIZE+4);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001051 p = xdr_encode_opaque_fixed(p, args->lock_stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001052 *p = cpu_to_be32(args->lock_seqid->sequence->counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Andy Adamsond0179312008-12-23 16:06:17 -05001054 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001055 hdr->replen += decode_lock_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001058static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Al Viro8687b632006-10-19 23:28:48 -07001060 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Benny Halevy13c65ce2009-08-14 17:19:25 +03001062 p = reserve_space(xdr, 52);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001063 *p++ = cpu_to_be32(OP_LOCKT);
1064 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001065 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);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001068 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001069 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001070 xdr_encode_hyper(p, args->lock_owner.id);
Andy Adamsond0179312008-12-23 16:06:17 -05001071 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001072 hdr->replen += decode_lockt_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001075static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Al Viro8687b632006-10-19 23:28:48 -07001077 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Benny Halevy13c65ce2009-08-14 17:19:25 +03001079 p = reserve_space(xdr, 12+NFS4_STATEID_SIZE+16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001080 *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);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001083 p = xdr_encode_opaque_fixed(p, args->stateid->data, NFS4_STATEID_SIZE);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001084 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001085 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Andy Adamsond0179312008-12-23 16:06:17 -05001086 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001087 hdr->replen += decode_locku_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001090static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 int len = name->len;
Al Viro8687b632006-10-19 23:28:48 -07001093 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Benny Halevy13c65ce2009-08-14 17:19:25 +03001095 p = reserve_space(xdr, 8 + len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001096 *p++ = cpu_to_be32(OP_LOOKUP);
Benny Halevy811652b2009-08-14 17:19:34 +03001097 xdr_encode_opaque(p, name->name, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001098 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001099 hdr->replen += decode_lookup_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001102static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Al Viro8687b632006-10-19 23:28:48 -07001104 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Benny Halevy13c65ce2009-08-14 17:19:25 +03001106 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001107 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001108 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001109 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001110 break;
1111 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001112 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001113 break;
1114 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001115 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001116 break;
1117 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001118 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
Benny Halevy34558512009-08-14 17:19:30 +03001120 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1124{
Al Viro8687b632006-10-19 23:28:48 -07001125 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /*
1127 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1128 * owner 4 = 32
1129 */
Benny Halevy13c65ce2009-08-14 17:19:25 +03001130 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001131 *p++ = cpu_to_be32(OP_OPEN);
Benny Halevy34558512009-08-14 17:19:30 +03001132 *p = cpu_to_be32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001133 encode_share_access(xdr, arg->fmode);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001134 p = reserve_space(xdr, 28);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001135 p = xdr_encode_hyper(p, arg->clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001136 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001137 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001138 xdr_encode_hyper(p, arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1142{
Al Viro8687b632006-10-19 23:28:48 -07001143 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Benny Halevy13c65ce2009-08-14 17:19:25 +03001145 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001147 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001148 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001149 encode_attrs(xdr, arg->u.attrs, arg->server);
1150 break;
1151 default:
Benny Halevy34558512009-08-14 17:19:30 +03001152 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001153 encode_nfs4_verifier(xdr, &arg->u.verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155}
1156
1157static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1158{
Al Viro8687b632006-10-19 23:28:48 -07001159 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Benny Halevy13c65ce2009-08-14 17:19:25 +03001161 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001163 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001164 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001165 break;
1166 default:
1167 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001168 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001169 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171}
1172
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001173static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Al Viro8687b632006-10-19 23:28:48 -07001175 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Benny Halevy13c65ce2009-08-14 17:19:25 +03001177 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001179 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001180 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001181 break;
1182 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001183 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001184 break;
1185 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001186 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001187 break;
1188 default:
1189 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191}
1192
1193static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1194{
Al Viro8687b632006-10-19 23:28:48 -07001195 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Benny Halevy13c65ce2009-08-14 17:19:25 +03001197 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001198 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 encode_string(xdr, name->len, name->name);
1200}
1201
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001202static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Al Viro8687b632006-10-19 23:28:48 -07001204 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Benny Halevy13c65ce2009-08-14 17:19:25 +03001206 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001207 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 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{
Al Viro8687b632006-10-19 23:28:48 -07001213 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Benny Halevy13c65ce2009-08-14 17:19:25 +03001215 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001216 *p++ = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
Benny Halevy34558512009-08-14 17:19:30 +03001217 xdr_encode_opaque_fixed(p, stateid->data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 encode_string(xdr, name->len, name->name);
1219}
1220
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001221static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 encode_openhdr(xdr, arg);
1224 encode_opentype(xdr, arg);
1225 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001226 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();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
Andy Adamsond0179312008-12-23 16:06:17 -05001238 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001239 hdr->replen += decode_open_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001242static void encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Al Viro8687b632006-10-19 23:28:48 -07001244 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Benny Halevy13c65ce2009-08-14 17:19:25 +03001246 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001247 *p++ = cpu_to_be32(OP_OPEN_CONFIRM);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001248 p = xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001249 *p = cpu_to_be32(arg->seqid->sequence->counter);
Andy Adamsond0179312008-12-23 16:06:17 -05001250 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001251 hdr->replen += decode_open_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001254static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Al Viro8687b632006-10-19 23:28:48 -07001256 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Benny Halevy13c65ce2009-08-14 17:19:25 +03001258 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001259 *p++ = cpu_to_be32(OP_OPEN_DOWNGRADE);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001260 p = xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001261 *p = cpu_to_be32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001262 encode_share_access(xdr, arg->fmode);
Andy Adamsond0179312008-12-23 16:06:17 -05001263 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001264 hdr->replen += decode_open_downgrade_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001267static void
Andy Adamsond0179312008-12-23 16:06:17 -05001268encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 int len = fh->size;
Al Viro8687b632006-10-19 23:28:48 -07001271 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Benny Halevy13c65ce2009-08-14 17:19:25 +03001273 p = reserve_space(xdr, 8 + len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001274 *p++ = cpu_to_be32(OP_PUTFH);
Benny Halevy811652b2009-08-14 17:19:34 +03001275 xdr_encode_opaque(p, fh->data, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001276 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001277 hdr->replen += decode_putfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001280static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Andy Adamson05d564f2008-12-23 16:06:15 -05001282 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001283
Benny Halevy13c65ce2009-08-14 17:19:25 +03001284 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001285 *p = cpu_to_be32(OP_PUTROOTFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001286 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001287 hdr->replen += decode_putrootfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290static void encode_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx)
1291{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 nfs4_stateid stateid;
Al Viro8687b632006-10-19 23:28:48 -07001293 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Benny Halevy13c65ce2009-08-14 17:19:25 +03001295 p = reserve_space(xdr, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (ctx->state != NULL) {
1297 nfs4_copy_stateid(&stateid, ctx->state, ctx->lockowner);
Benny Halevy34558512009-08-14 17:19:30 +03001298 xdr_encode_opaque_fixed(p, stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 } else
Benny Halevy34558512009-08-14 17:19:30 +03001300 xdr_encode_opaque_fixed(p, zero_stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001303static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Al Viro8687b632006-10-19 23:28:48 -07001305 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Benny Halevy13c65ce2009-08-14 17:19:25 +03001307 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001308 *p = cpu_to_be32(OP_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 encode_stateid(xdr, args->context);
1311
Benny Halevy13c65ce2009-08-14 17:19:25 +03001312 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001313 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001314 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001315 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001316 hdr->replen += decode_read_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001319static void encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Manoj Naik97d312d2005-06-22 17:16:39 +00001321 uint32_t attrs[2] = {
1322 FATTR4_WORD0_RDATTR_ERROR|FATTR4_WORD0_FILEID,
1323 FATTR4_WORD1_MOUNTED_ON_FILEID,
1324 };
Al Viro8687b632006-10-19 23:28:48 -07001325 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Benny Halevy13c65ce2009-08-14 17:19:25 +03001327 p = reserve_space(xdr, 12+NFS4_VERIFIER_SIZE+20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001328 *p++ = cpu_to_be32(OP_READDIR);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001329 p = xdr_encode_hyper(p, readdir->cookie);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001330 p = xdr_encode_opaque_fixed(p, readdir->verifier.data, NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001331 *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);
Manoj Naik97d312d2005-06-22 17:16:39 +00001334 /* 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;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001339 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001340 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Andy Adamsond0179312008-12-23 16:06:17 -05001341 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001342 hdr->replen += decode_readdir_maxsz;
Fred Isaman44109242008-04-02 15:21:15 +03001343 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1344 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001345 (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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001352static void encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Al Viro8687b632006-10-19 23:28:48 -07001354 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Benny Halevy13c65ce2009-08-14 17:19:25 +03001356 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001357 *p = cpu_to_be32(OP_READLINK);
Andy Adamsond0179312008-12-23 16:06:17 -05001358 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001359 hdr->replen += decode_readlink_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001362static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
Al Viro8687b632006-10-19 23:28:48 -07001364 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Benny Halevy13c65ce2009-08-14 17:19:25 +03001366 p = reserve_space(xdr, 8 + name->len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001367 *p++ = cpu_to_be32(OP_REMOVE);
Benny Halevy811652b2009-08-14 17:19:34 +03001368 xdr_encode_opaque(p, name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001369 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001370 hdr->replen += decode_remove_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001373static void encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Al Viro8687b632006-10-19 23:28:48 -07001375 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Benny Halevy811652b2009-08-14 17:19:34 +03001377 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001381 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001382 hdr->replen += decode_rename_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001385static void encode_renew(struct xdr_stream *xdr, const struct nfs_client *client_stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Al Viro8687b632006-10-19 23:28:48 -07001387 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Benny Halevy13c65ce2009-08-14 17:19:25 +03001389 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001390 *p++ = cpu_to_be32(OP_RENEW);
Benny Halevy34558512009-08-14 17:19:30 +03001391 xdr_encode_hyper(p, client_stateid->cl_clientid);
Andy Adamsond0179312008-12-23 16:06:17 -05001392 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001393 hdr->replen += decode_renew_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001396static void
Andy Adamsond0179312008-12-23 16:06:17 -05001397encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001398{
Al Viro8687b632006-10-19 23:28:48 -07001399 __be32 *p;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001400
Benny Halevy13c65ce2009-08-14 17:19:25 +03001401 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001402 *p = cpu_to_be32(OP_RESTOREFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001403 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001404 hdr->replen += decode_restorefh_maxsz;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001405}
1406
1407static int
Andy Adamsond0179312008-12-23 16:06:17 -05001408encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001409{
Al Viro8687b632006-10-19 23:28:48 -07001410 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001411
Benny Halevy13c65ce2009-08-14 17:19:25 +03001412 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001413 *p++ = cpu_to_be32(OP_SETATTR);
Benny Halevy34558512009-08-14 17:19:30 +03001414 xdr_encode_opaque_fixed(p, zero_stateid.data, NFS4_STATEID_SIZE);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001415 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001416 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001417 *p = cpu_to_be32(FATTR4_WORD0_ACL);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001418 if (arg->acl_len % 4)
1419 return -EINVAL;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001420 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001421 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001422 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05001423 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001424 hdr->replen += decode_setacl_maxsz;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001425 return 0;
1426}
1427
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001428static void
Andy Adamsond0179312008-12-23 16:06:17 -05001429encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Al Viro8687b632006-10-19 23:28:48 -07001431 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Benny Halevy13c65ce2009-08-14 17:19:25 +03001433 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001434 *p = cpu_to_be32(OP_SAVEFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001435 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001436 hdr->replen += decode_savefh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001439static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
Al Viro8687b632006-10-19 23:28:48 -07001441 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001442
Benny Halevy13c65ce2009-08-14 17:19:25 +03001443 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001444 *p++ = cpu_to_be32(OP_SETATTR);
Benny Halevy34558512009-08-14 17:19:30 +03001445 xdr_encode_opaque_fixed(p, arg->stateid.data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001446 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001447 hdr->replen += decode_setattr_maxsz;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001448 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001451static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Al Viro8687b632006-10-19 23:28:48 -07001453 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Benny Halevy13c65ce2009-08-14 17:19:25 +03001455 p = reserve_space(xdr, 4 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001456 *p++ = cpu_to_be32(OP_SETCLIENTID);
Benny Halevy34558512009-08-14 17:19:30 +03001457 xdr_encode_opaque_fixed(p, setclientid->sc_verifier->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001460 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001461 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1463 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001464 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001465 *p = cpu_to_be32(setclientid->sc_cb_ident);
Andy Adamsond0179312008-12-23 16:06:17 -05001466 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001467 hdr->replen += decode_setclientid_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001470static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs_client *client_state, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Andy Adamson05d564f2008-12-23 16:06:15 -05001472 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Benny Halevy13c65ce2009-08-14 17:19:25 +03001474 p = reserve_space(xdr, 12 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001475 *p++ = cpu_to_be32(OP_SETCLIENTID_CONFIRM);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001476 p = xdr_encode_hyper(p, client_state->cl_clientid);
Benny Halevy34558512009-08-14 17:19:30 +03001477 xdr_encode_opaque_fixed(p, client_state->cl_confirm.data, NFS4_VERIFIER_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001478 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001479 hdr->replen += decode_setclientid_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001482static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Al Viro8687b632006-10-19 23:28:48 -07001484 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Benny Halevy13c65ce2009-08-14 17:19:25 +03001486 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001487 *p = cpu_to_be32(OP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 encode_stateid(xdr, args->context);
1490
Benny Halevy13c65ce2009-08-14 17:19:25 +03001491 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001492 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001493 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001494 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001497 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001498 hdr->replen += decode_write_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001501static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
Al Viro8687b632006-10-19 23:28:48 -07001503 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Benny Halevy13c65ce2009-08-14 17:19:25 +03001505 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Benny Halevye75bc1c2009-08-14 17:18:54 +03001507 *p++ = cpu_to_be32(OP_DELEGRETURN);
Benny Halevy34558512009-08-14 17:19:30 +03001508 xdr_encode_opaque_fixed(p, stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001509 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001510 hdr->replen += decode_delegreturn_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001512
Benny Halevy99fe60d2009-04-01 09:22:29 -04001513#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001514/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001515static 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
Benny Halevy13c65ce2009-08-14 17:19:25 +03001521 p = reserve_space(xdr, 4 + sizeof(args->verifier->data));
Benny Halevye75bc1c2009-08-14 17:18:54 +03001522 *p++ = cpu_to_be32(OP_EXCHANGE_ID);
Benny Halevy34558512009-08-14 17:19:30 +03001523 xdr_encode_opaque_fixed(p, args->verifier->data, sizeof(args->verifier->data));
Benny Halevy99fe60d2009-04-01 09:22:29 -04001524
1525 encode_string(xdr, args->id_len, args->id);
1526
Benny Halevy13c65ce2009-08-14 17:19:25 +03001527 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001528 *p++ = cpu_to_be32(args->flags);
1529 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Benny Halevy34558512009-08-14 17:19:30 +03001530 *p = cpu_to_be32(0); /* zero length implementation id array */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001531 hdr->nops++;
1532 hdr->replen += decode_exchange_id_maxsz;
1533}
Andy Adamsonfc931582009-04-01 09:22:31 -04001534
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
Benny Halevy42edd692009-08-14 17:19:13 +03001544 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1545 clp->cl_ipaddr);
1546
Benny Halevy13c65ce2009-08-14 17:19:25 +03001547 p = reserve_space(xdr, 20 + 2*28 + 20 + len + 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001548 *p++ = cpu_to_be32(OP_CREATE_SESSION);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001549 p = xdr_encode_hyper(p, clp->cl_ex_clid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001550 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1551 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001552
Andy Adamsonfc931582009-04-01 09:22:31 -04001553 /* Fore Channel */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001554 *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 */
Andy Adamsonfc931582009-04-01 09:22:31 -04001561
1562 /* Back Channel */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001563 *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 */
Andy Adamsonfc931582009-04-01 09:22:31 -04001570
Benny Halevye75bc1c2009-08-14 17:18:54 +03001571 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001572 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001573 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001574
1575 /* authsys_parms rfc1831 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001576 *p++ = cpu_to_be32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001577 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001578 *p++ = cpu_to_be32(0); /* UID */
1579 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001580 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001581 hdr->nops++;
1582 hdr->replen += decode_create_session_maxsz;
1583}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001584
1585static void encode_destroy_session(struct xdr_stream *xdr,
1586 struct nfs4_session *session,
1587 struct compound_hdr *hdr)
1588{
1589 __be32 *p;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001590 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001591 *p++ = cpu_to_be32(OP_DESTROY_SESSION);
Benny Halevy34558512009-08-14 17:19:30 +03001592 xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001593 hdr->nops++;
1594 hdr->replen += decode_destroy_session_maxsz;
1595}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001596#endif /* CONFIG_NFS_V4_1 */
1597
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001598static 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;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001604 struct nfs4_slot_table *tp;
1605 struct nfs4_slot *slot;
1606 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001607
1608 if (!session)
1609 return;
1610
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001611 tp = &session->fc_slot_table;
1612
1613 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1614 slot = tp->slots + args->sa_slotid;
1615
Benny Halevy13c65ce2009-08-14 17:19:25 +03001616 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001617 *p++ = cpu_to_be32(OP_SEQUENCE);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001618
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);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001631 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001632 *p++ = cpu_to_be32(slot->seq_nr);
1633 *p++ = cpu_to_be32(args->sa_slotid);
1634 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001635 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001636 hdr->nops++;
1637 hdr->replen += decode_sequence_maxsz;
1638#endif /* CONFIG_NFS_V4_1 */
1639}
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641/*
1642 * END OF "GENERIC" ENCODE ROUTINES.
1643 */
1644
Benny Halevy66cc0422009-04-01 09:22:10 -04001645static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654/*
1655 * Encode an ACCESS request
1656 */
Al Viro8687b632006-10-19 23:28:48 -07001657static int nfs4_xdr_enc_access(struct rpc_rqst *req, __be32 *p, const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct xdr_stream xdr;
1660 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001661 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001665 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001666 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001667 encode_putfh(&xdr, args->fh, &hdr);
1668 encode_access(&xdr, args->access, &hdr);
1669 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001670 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
1674/*
1675 * Encode LOOKUP request
1676 */
Al Viro8687b632006-10-19 23:28:48 -07001677static int nfs4_xdr_enc_lookup(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct xdr_stream xdr;
1680 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001681 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001685 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001686 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001687 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001691 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695/*
1696 * Encode LOOKUP_ROOT request
1697 */
Al Viro8687b632006-10-19 23:28:48 -07001698static int nfs4_xdr_enc_lookup_root(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_root_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 struct xdr_stream xdr;
1701 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001702 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001706 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001707 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001708 encode_putrootfh(&xdr, &hdr);
1709 encode_getfh(&xdr, &hdr);
1710 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001711 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
1715/*
1716 * Encode REMOVE request
1717 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001718static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct xdr_stream xdr;
1721 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001722 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001726 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001727 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001728 encode_putfh(&xdr, args->fh, &hdr);
1729 encode_remove(&xdr, &args->name, &hdr);
1730 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001731 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001732 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
1735/*
1736 * Encode RENAME request
1737 */
Al Viro8687b632006-10-19 23:28:48 -07001738static int nfs4_xdr_enc_rename(struct rpc_rqst *req, __be32 *p, const struct nfs4_rename_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 struct xdr_stream xdr;
1741 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001742 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001746 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001747 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001748 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001755 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
1759/*
1760 * Encode LINK request
1761 */
Al Viro8687b632006-10-19 23:28:48 -07001762static int nfs4_xdr_enc_link(struct rpc_rqst *req, __be32 *p, const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
1764 struct xdr_stream xdr;
1765 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001766 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001770 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001771 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001772 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001779 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
1783/*
1784 * Encode CREATE request
1785 */
Al Viro8687b632006-10-19 23:28:48 -07001786static int nfs4_xdr_enc_create(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
1788 struct xdr_stream xdr;
1789 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001790 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001794 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001795 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001796 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001803 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807/*
1808 * Encode SYMLINK request
1809 */
Al Viro8687b632006-10-19 23:28:48 -07001810static int nfs4_xdr_enc_symlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 return nfs4_xdr_enc_create(req, p, args);
1813}
1814
1815/*
1816 * Encode GETATTR request
1817 */
Al Viro8687b632006-10-19 23:28:48 -07001818static int nfs4_xdr_enc_getattr(struct rpc_rqst *req, __be32 *p, const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct xdr_stream xdr;
1821 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001822 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001826 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001827 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001828 encode_putfh(&xdr, args->fh, &hdr);
1829 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001830 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
1834/*
1835 * Encode a CLOSE request
1836 */
Al Viro8687b632006-10-19 23:28:48 -07001837static int nfs4_xdr_enc_close(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Andy Adamson05d564f2008-12-23 16:06:15 -05001839 struct xdr_stream xdr;
1840 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001841 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05001842 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Andy Adamson05d564f2008-12-23 16:06:15 -05001844 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001845 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001846 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001847 encode_putfh(&xdr, args->fh, &hdr);
1848 encode_close(&xdr, args, &hdr);
1849 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001850 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
1854/*
1855 * Encode an OPEN request
1856 */
Al Viro8687b632006-10-19 23:28:48 -07001857static int nfs4_xdr_enc_open(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 struct xdr_stream xdr;
1860 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001861 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001865 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001866 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001867 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);
Andy Adamsond0179312008-12-23 16:06:17 -05001874 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
1878/*
1879 * Encode an OPEN_CONFIRM request
1880 */
Al Viro8687b632006-10-19 23:28:48 -07001881static int nfs4_xdr_enc_open_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 struct xdr_stream xdr;
1884 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05001885 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001889 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001890 encode_putfh(&xdr, args->fh, &hdr);
1891 encode_open_confirm(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001892 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
1896/*
1897 * Encode an OPEN request with no attributes.
1898 */
Al Viro8687b632006-10-19 23:28:48 -07001899static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 struct xdr_stream xdr;
1902 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001903 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001907 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001908 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001909 encode_putfh(&xdr, args->fh, &hdr);
1910 encode_open(&xdr, args, &hdr);
1911 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001912 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001913 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914}
1915
1916/*
1917 * Encode an OPEN_DOWNGRADE request
1918 */
Al Viro8687b632006-10-19 23:28:48 -07001919static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 struct xdr_stream xdr;
1922 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001923 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001927 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001928 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001929 encode_putfh(&xdr, args->fh, &hdr);
1930 encode_open_downgrade(&xdr, args, &hdr);
1931 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001932 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
1936/*
1937 * Encode a LOCK request
1938 */
Al Viro8687b632006-10-19 23:28:48 -07001939static int nfs4_xdr_enc_lock(struct rpc_rqst *req, __be32 *p, struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 struct xdr_stream xdr;
1942 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001943 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001947 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001948 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001949 encode_putfh(&xdr, args->fh, &hdr);
1950 encode_lock(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001951 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
1955/*
1956 * Encode a LOCKT request
1957 */
Al Viro8687b632006-10-19 23:28:48 -07001958static int nfs4_xdr_enc_lockt(struct rpc_rqst *req, __be32 *p, struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
1960 struct xdr_stream xdr;
1961 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001962 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001966 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001967 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001968 encode_putfh(&xdr, args->fh, &hdr);
1969 encode_lockt(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001970 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
1974/*
1975 * Encode a LOCKU request
1976 */
Al Viro8687b632006-10-19 23:28:48 -07001977static int nfs4_xdr_enc_locku(struct rpc_rqst *req, __be32 *p, struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 struct xdr_stream xdr;
1980 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001981 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001985 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001986 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001987 encode_putfh(&xdr, args->fh, &hdr);
1988 encode_locku(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001989 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993/*
1994 * Encode a READLINK request
1995 */
Al Viro8687b632006-10-19 23:28:48 -07001996static int nfs4_xdr_enc_readlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
1998 struct xdr_stream xdr;
1999 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002000 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002004 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002005 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002006 encode_putfh(&xdr, args->fh, &hdr);
2007 encode_readlink(&xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002008
Benny Halevy28f56692009-04-01 09:22:09 -04002009 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002010 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002011 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
2015/*
2016 * Encode a READDIR request
2017 */
Al Viro8687b632006-10-19 23:28:48 -07002018static int nfs4_xdr_enc_readdir(struct rpc_rqst *req, __be32 *p, const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 struct xdr_stream xdr;
2021 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002022 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002026 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002027 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002028 encode_putfh(&xdr, args->fh, &hdr);
2029 encode_readdir(&xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002030
Benny Halevy28f56692009-04-01 09:22:09 -04002031 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002032 args->pgbase, args->count);
2033 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002034 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002035 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002036 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
2040/*
2041 * Encode a READ request
2042 */
Al Viro8687b632006-10-19 23:28:48 -07002043static int nfs4_xdr_enc_read(struct rpc_rqst *req, __be32 *p, struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 struct xdr_stream xdr;
2046 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002047 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002051 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002052 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002053 encode_putfh(&xdr, args->fh, &hdr);
2054 encode_read(&xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Benny Halevy28f56692009-04-01 09:22:09 -04002056 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002058 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002059 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002060 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063/*
2064 * Encode an SETATTR request
2065 */
Al Viro8687b632006-10-19 23:28:48 -07002066static int nfs4_xdr_enc_setattr(struct rpc_rqst *req, __be32 *p, struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Andy Adamson05d564f2008-12-23 16:06:15 -05002068 struct xdr_stream xdr;
2069 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002070 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002071 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Andy Adamson05d564f2008-12-23 16:06:15 -05002073 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002074 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002075 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002076 encode_putfh(&xdr, args->fh, &hdr);
2077 encode_setattr(&xdr, args, args->server, &hdr);
2078 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002079 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
2083/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002084 * Encode a GETACL request
2085 */
2086static int
Al Viro8687b632006-10-19 23:28:48 -07002087nfs4_xdr_enc_getacl(struct rpc_rqst *req, __be32 *p,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002088 struct nfs_getaclargs *args)
2089{
2090 struct xdr_stream xdr;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002091 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002092 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002093 };
Benny Halevy28f56692009-04-01 09:22:09 -04002094 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002095
2096 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002097 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002098 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002099 encode_putfh(&xdr, args->fh, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002100 replen = hdr.replen + nfs4_fattr_bitmap_maxsz + 1;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002101 encode_getattr_two(&xdr, FATTR4_WORD0_ACL, 0, &hdr);
2102
Benny Halevy28f56692009-04-01 09:22:09 -04002103 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002104 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05002105 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002106 return 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002107}
2108
2109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * Encode a WRITE request
2111 */
Al Viro8687b632006-10-19 23:28:48 -07002112static int nfs4_xdr_enc_write(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct xdr_stream xdr;
2115 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002116 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002120 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002121 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002122 encode_putfh(&xdr, args->fh, &hdr);
2123 encode_write(&xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002124 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002125 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002126 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130/*
2131 * a COMMIT request
2132 */
Al Viro8687b632006-10-19 23:28:48 -07002133static int nfs4_xdr_enc_commit(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 struct xdr_stream xdr;
2136 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002137 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002141 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002142 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002143 encode_putfh(&xdr, args->fh, &hdr);
2144 encode_commit(&xdr, args, &hdr);
2145 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002146 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
2150/*
2151 * FSINFO request
2152 */
Al Viro8687b632006-10-19 23:28:48 -07002153static int nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, __be32 *p, struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
2155 struct xdr_stream xdr;
2156 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002157 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002161 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002162 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002163 encode_putfh(&xdr, args->fh, &hdr);
2164 encode_fsinfo(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002165 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167}
2168
2169/*
2170 * a PATHCONF request
2171 */
Al Viro8687b632006-10-19 23:28:48 -07002172static int nfs4_xdr_enc_pathconf(struct rpc_rqst *req, __be32 *p, const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 struct xdr_stream xdr;
2175 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002176 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002180 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002181 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002182 encode_putfh(&xdr, args->fh, &hdr);
2183 encode_getattr_one(&xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2184 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002185 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
2189/*
2190 * a STATFS request
2191 */
Al Viro8687b632006-10-19 23:28:48 -07002192static int nfs4_xdr_enc_statfs(struct rpc_rqst *req, __be32 *p, const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 struct xdr_stream xdr;
2195 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002196 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002200 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002201 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002202 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);
Andy Adamsond0179312008-12-23 16:06:17 -05002205 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
2209/*
2210 * GETATTR_BITMAP request
2211 */
Benny Halevy43652ad2009-04-01 09:21:54 -04002212static int nfs4_xdr_enc_server_caps(struct rpc_rqst *req, __be32 *p,
2213 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 struct xdr_stream xdr;
2216 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002217 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002221 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002222 encode_sequence(&xdr, &args->seq_args, &hdr);
Benny Halevy43652ad2009-04-01 09:21:54 -04002223 encode_putfh(&xdr, args->fhandle, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002224 encode_getattr_one(&xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
2225 FATTR4_WORD0_LINK_SUPPORT|
2226 FATTR4_WORD0_SYMLINK_SUPPORT|
2227 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002228 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
2232/*
2233 * a RENEW request
2234 */
Al Viro8687b632006-10-19 23:28:48 -07002235static int nfs4_xdr_enc_renew(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
2237 struct xdr_stream xdr;
2238 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002239 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 };
2241
2242 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002243 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002244 encode_renew(&xdr, clp, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002245 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
2249/*
2250 * a SETCLIENTID request
2251 */
Al Viro8687b632006-10-19 23:28:48 -07002252static int nfs4_xdr_enc_setclientid(struct rpc_rqst *req, __be32 *p, struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 struct xdr_stream xdr;
2255 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002256 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 };
2258
2259 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002260 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002261 encode_setclientid(&xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002262 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266/*
2267 * a SETCLIENTID_CONFIRM request
2268 */
Al Viro8687b632006-10-19 23:28:48 -07002269static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 struct xdr_stream xdr;
2272 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002273 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 };
2275 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002278 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002279 encode_setclientid_confirm(&xdr, clp, &hdr);
2280 encode_putrootfh(&xdr, &hdr);
2281 encode_fsinfo(&xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002282 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
2285
2286/*
2287 * DELEGRETURN request
2288 */
Al Viro8687b632006-10-19 23:28:48 -07002289static int nfs4_xdr_enc_delegreturn(struct rpc_rqst *req, __be32 *p, const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
2291 struct xdr_stream xdr;
2292 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002293 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002297 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002298 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002299 encode_putfh(&xdr, args->fhandle, &hdr);
2300 encode_delegreturn(&xdr, args->stateid, &hdr);
2301 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002302 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
2306/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002307 * Encode FS_LOCATIONS request
2308 */
Al Viro8687b632006-10-19 23:28:48 -07002309static int nfs4_xdr_enc_fs_locations(struct rpc_rqst *req, __be32 *p, struct nfs4_fs_locations_arg *args)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002310{
2311 struct xdr_stream xdr;
2312 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002313 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002314 };
Benny Halevy28f56692009-04-01 09:22:09 -04002315 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002316
2317 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002318 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002319 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002320 encode_putfh(&xdr, args->dir_fh, &hdr);
2321 encode_lookup(&xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002322 replen = hdr.replen; /* get the attribute into args->page */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002323 encode_fs_locations(&xdr, args->bitmask, &hdr);
2324
Benny Halevy28f56692009-04-01 09:22:09 -04002325 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002326 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002327 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002328 return 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002329}
2330
Benny Halevy99fe60d2009-04-01 09:22:29 -04002331#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}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002349
2350/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002351 * 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
2368/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002369 * 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
2386/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002387 * 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
2404/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002405 * 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}
Benny Halevy99fe60d2009-04-01 09:22:29 -04002424#endif /* CONFIG_NFS_V4_1 */
2425
Trond Myklebust683b57b2006-06-09 09:34:22 -04002426/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436#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); \
Chuck Levere4cc6ee2007-05-08 18:23:28 -04002443 if (unlikely(!p)) { \
Benny Halevy686841b2009-08-14 17:19:48 +03002444 print_overflow_msg(__func__, xdr); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return -EIO; \
2446 } \
2447} while (0)
2448
Benny Halevy686841b2009-08-14 17:19:48 +03002449static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2450{
2451 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2452 "Remaining buffer length is %tu words.\n",
2453 func, xdr->end - xdr->p);
2454}
2455
Trond Myklebust683b57b2006-06-09 09:34:22 -04002456static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
Al Viro8687b632006-10-19 23:28:48 -07002458 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002461 *len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 READ_BUF(*len);
2463 *string = (char *)p;
2464 return 0;
2465}
2466
2467static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2468{
Al Viro8687b632006-10-19 23:28:48 -07002469 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03002472 hdr->status = be32_to_cpup(p++);
2473 hdr->taglen = be32_to_cpup(p++);
Andy Adamson6c0195a2008-12-23 16:06:15 -05002474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 READ_BUF(hdr->taglen + 4);
2476 hdr->tag = (char *)p;
2477 p += XDR_QUADLEN(hdr->taglen);
Benny Halevy6f723f72009-08-14 17:19:37 +03002478 hdr->nops = be32_to_cpup(p++);
Benny Halevyaadf6152008-12-23 16:06:13 -05002479 if (unlikely(hdr->nops < 1))
2480 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 return 0;
2482}
2483
2484static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2485{
Al Viro8687b632006-10-19 23:28:48 -07002486 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 uint32_t opnum;
2488 int32_t nfserr;
2489
2490 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03002491 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04002493 dprintk("nfs: Server returned operation"
2494 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 opnum, expected);
2496 return -EIO;
2497 }
Benny Halevy6f723f72009-08-14 17:19:37 +03002498 nfserr = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03002500 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 return 0;
2502}
2503
2504/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04002505static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Al Viro8687b632006-10-19 23:28:48 -07002507 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002508 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 char *str;
2510
2511 READ_BUF(12);
2512 return decode_opaque_inline(xdr, &strlen, &str);
2513}
2514
2515static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2516{
Al Viro8687b632006-10-19 23:28:48 -07002517 uint32_t bmlen;
2518 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002521 bmlen = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 bitmap[0] = bitmap[1] = 0;
2524 READ_BUF((bmlen << 2));
2525 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03002526 bitmap[0] = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 if (bmlen > 1)
Benny Halevy6f723f72009-08-14 17:19:37 +03002528 bitmap[1] = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
2530 return 0;
2531}
2532
Al Viro8687b632006-10-19 23:28:48 -07002533static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Al Viro8687b632006-10-19 23:28:48 -07002535 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002538 *attrlen = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 *savep = xdr->p;
2540 return 0;
2541}
2542
2543static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
2544{
2545 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
2546 decode_attr_bitmap(xdr, bitmask);
2547 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
2548 } else
2549 bitmask[0] = bitmask[1] = 0;
Fred Isaman44109242008-04-02 15:21:15 +03002550 dprintk("%s: bitmask=%08x:%08x\n", __func__, bitmask[0], bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return 0;
2552}
2553
2554static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
2555{
Al Viro8687b632006-10-19 23:28:48 -07002556 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002557 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 *type = 0;
2560 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
2561 return -EIO;
2562 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
2563 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002564 *type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002566 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 return -EIO;
2568 }
2569 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002570 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 }
Trond Myklebustbca79472009-03-11 14:10:26 -04002572 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04002573 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
2576static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
2577{
Al Viro8687b632006-10-19 23:28:48 -07002578 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002579 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 *change = 0;
2582 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
2583 return -EIO;
2584 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
2585 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002586 p = xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002588 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002590 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04002592 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
2596{
Al Viro8687b632006-10-19 23:28:48 -07002597 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002598 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 *size = 0;
2601 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
2602 return -EIO;
2603 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
2604 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002605 p = xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002607 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002609 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04002610 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611}
2612
2613static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2614{
Al Viro8687b632006-10-19 23:28:48 -07002615 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 *res = 0;
2618 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
2619 return -EIO;
2620 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
2621 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002622 *res = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
2624 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002625 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return 0;
2627}
2628
2629static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2630{
Al Viro8687b632006-10-19 23:28:48 -07002631 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 *res = 0;
2634 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
2635 return -EIO;
2636 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
2637 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002638 *res = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
2640 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002641 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 return 0;
2643}
2644
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04002645static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
Al Viro8687b632006-10-19 23:28:48 -07002647 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002648 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 fsid->major = 0;
2651 fsid->minor = 0;
2652 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
2653 return -EIO;
2654 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
2655 READ_BUF(16);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002656 p = xdr_decode_hyper(p, &fsid->major);
2657 p = xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002659 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002661 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 (unsigned long long)fsid->major,
2663 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04002664 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
2667static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2668{
Al Viro8687b632006-10-19 23:28:48 -07002669 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 *res = 60;
2672 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
2673 return -EIO;
2674 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
2675 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002676 *res = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
2678 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002679 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return 0;
2681}
2682
2683static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2684{
Al Viro8687b632006-10-19 23:28:48 -07002685 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
2688 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
2689 return -EIO;
2690 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
2691 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002692 *res = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
2694 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002695 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 return 0;
2697}
2698
2699static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2700{
Al Viro8687b632006-10-19 23:28:48 -07002701 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002702 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 *fileid = 0;
2705 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
2706 return -EIO;
2707 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
2708 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002709 p = xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002711 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002713 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002714 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715}
2716
Manoj Naik99baf622006-06-09 09:34:24 -04002717static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2718{
Al Viro8687b632006-10-19 23:28:48 -07002719 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002720 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04002721
2722 *fileid = 0;
2723 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
2724 return -EIO;
2725 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
2726 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002727 p = xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04002728 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002729 ret = NFS_ATTR_FATTR_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04002730 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002731 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002732 return ret;
Manoj Naik99baf622006-06-09 09:34:24 -04002733}
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2736{
Al Viro8687b632006-10-19 23:28:48 -07002737 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 int status = 0;
2739
2740 *res = 0;
2741 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
2742 return -EIO;
2743 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
2744 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002745 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
2747 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002748 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return status;
2750}
2751
2752static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2753{
Al Viro8687b632006-10-19 23:28:48 -07002754 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 int status = 0;
2756
2757 *res = 0;
2758 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
2759 return -EIO;
2760 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
2761 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002762 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
2764 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002765 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return status;
2767}
2768
2769static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2770{
Al Viro8687b632006-10-19 23:28:48 -07002771 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 int status = 0;
2773
2774 *res = 0;
2775 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
2776 return -EIO;
2777 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
2778 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002779 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
2781 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002782 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return status;
2784}
2785
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002786static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
2787{
Chuck Lever464ad6b2007-10-26 13:32:08 -04002788 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07002789 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002790 int status = 0;
2791
2792 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002793 n = be32_to_cpup(p++);
Andy Adamson33a43f22006-06-09 09:34:30 -04002794 if (n == 0)
2795 goto root_path;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002796 dprintk("path ");
2797 path->ncomponents = 0;
2798 while (path->ncomponents < n) {
2799 struct nfs4_string *component = &path->components[path->ncomponents];
2800 status = decode_opaque_inline(xdr, &component->len, &component->data);
2801 if (unlikely(status != 0))
2802 goto out_eio;
2803 if (path->ncomponents != n)
2804 dprintk("/");
2805 dprintk("%s", component->data);
2806 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
2807 path->ncomponents++;
2808 else {
2809 dprintk("cannot parse %d components in path\n", n);
2810 goto out_eio;
2811 }
2812 }
2813out:
2814 dprintk("\n");
2815 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04002816root_path:
2817/* a root pathname is sent as a zero component4 */
2818 path->ncomponents = 1;
2819 path->components[0].len=0;
2820 path->components[0].data=NULL;
2821 dprintk("path /\n");
2822 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002823out_eio:
2824 dprintk(" status %d", status);
2825 status = -EIO;
2826 goto out;
2827}
2828
2829static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002830{
2831 int n;
Al Viro8687b632006-10-19 23:28:48 -07002832 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002833 int status = -EIO;
2834
2835 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
2836 goto out;
2837 status = 0;
2838 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
2839 goto out;
Harvey Harrison3110ff82008-05-02 13:42:44 -07002840 dprintk("%s: fsroot ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002841 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002842 if (unlikely(status != 0))
2843 goto out;
2844 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002845 n = be32_to_cpup(p++);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002846 if (n <= 0)
2847 goto out_eio;
2848 res->nlocations = 0;
2849 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04002850 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002851 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04002852
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002853 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002854 m = be32_to_cpup(p++);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002855
2856 loc->nservers = 0;
Harvey Harrison3110ff82008-05-02 13:42:44 -07002857 dprintk("%s: servers ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002858 while (loc->nservers < m) {
2859 struct nfs4_string *server = &loc->servers[loc->nservers];
2860 status = decode_opaque_inline(xdr, &server->len, &server->data);
2861 if (unlikely(status != 0))
2862 goto out_eio;
2863 dprintk("%s ", server->data);
2864 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
2865 loc->nservers++;
2866 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04002867 unsigned int i;
2868 dprintk("%s: using first %u of %u servers "
2869 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07002870 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04002871 NFS4_FS_LOCATION_MAXSERVERS,
2872 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002873 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04002874 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002875 char *data;
2876 status = decode_opaque_inline(xdr, &len, &data);
2877 if (unlikely(status != 0))
2878 goto out_eio;
2879 }
2880 }
2881 }
2882 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002883 if (unlikely(status != 0))
2884 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002885 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002886 res->nlocations++;
2887 }
Trond Myklebust409924e2009-03-11 14:10:27 -04002888 if (res->nlocations != 0)
2889 status = NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002890out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07002891 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04002892 return status;
2893out_eio:
2894 status = -EIO;
2895 goto out;
2896}
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2899{
Al Viro8687b632006-10-19 23:28:48 -07002900 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 int status = 0;
2902
2903 *res = 0;
2904 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
2905 return -EIO;
2906 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
2907 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002908 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
2910 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002911 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return status;
2913}
2914
2915static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
2916{
Al Viro8687b632006-10-19 23:28:48 -07002917 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 int status = 0;
2919
2920 *maxlink = 1;
2921 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
2922 return -EIO;
2923 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
2924 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002925 *maxlink = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
2927 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002928 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return status;
2930}
2931
2932static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
2933{
Al Viro8687b632006-10-19 23:28:48 -07002934 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 int status = 0;
2936
2937 *maxname = 1024;
2938 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
2939 return -EIO;
2940 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
2941 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03002942 *maxname = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
2944 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002945 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return status;
2947}
2948
2949static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2950{
Al Viro8687b632006-10-19 23:28:48 -07002951 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 int status = 0;
2953
2954 *res = 1024;
2955 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
2956 return -EIO;
2957 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
2958 uint64_t maxread;
2959 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002960 p = xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (maxread > 0x7FFFFFFF)
2962 maxread = 0x7FFFFFFF;
2963 *res = (uint32_t)maxread;
2964 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
2965 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002966 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 return status;
2968}
2969
2970static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2971{
Al Viro8687b632006-10-19 23:28:48 -07002972 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 int status = 0;
2974
2975 *res = 1024;
2976 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
2977 return -EIO;
2978 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
2979 uint64_t maxwrite;
2980 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002981 p = xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 if (maxwrite > 0x7FFFFFFF)
2983 maxwrite = 0x7FFFFFFF;
2984 *res = (uint32_t)maxwrite;
2985 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
2986 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002987 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 return status;
2989}
2990
Trond Myklebustbca79472009-03-11 14:10:26 -04002991static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Trond Myklebustbca79472009-03-11 14:10:26 -04002993 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07002994 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002995 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997 *mode = 0;
2998 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
2999 return -EIO;
3000 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
3001 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003002 tmp = be32_to_cpup(p++);
Trond Myklebustbca79472009-03-11 14:10:26 -04003003 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003005 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003007 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003008 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009}
3010
3011static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3012{
Al Viro8687b632006-10-19 23:28:48 -07003013 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003014 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 *nlink = 1;
3017 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3018 return -EIO;
3019 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
3020 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003021 *nlink = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003023 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003025 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003026 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027}
3028
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003029static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
Al Viro8687b632006-10-19 23:28:48 -07003031 uint32_t len;
3032 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003033 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 *uid = -2;
3036 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3037 return -EIO;
3038 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
3039 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003040 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 READ_BUF(len);
3042 if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003043 if (nfs_map_name_to_uid(clp, (char *)p, len, uid) == 0)
3044 ret = NFS_ATTR_FATTR_OWNER;
3045 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003047 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003049 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003050 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3052 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003053 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003054 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003057static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
Al Viro8687b632006-10-19 23:28:48 -07003059 uint32_t len;
3060 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003061 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 *gid = -2;
3064 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3065 return -EIO;
3066 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
3067 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003068 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 READ_BUF(len);
3070 if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003071 if (nfs_map_group_to_gid(clp, (char *)p, len, gid) == 0)
3072 ret = NFS_ATTR_FATTR_GROUP;
3073 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003075 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003077 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003078 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3080 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003081 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003082 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
3085static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3086{
Al Viro8687b632006-10-19 23:28:48 -07003087 uint32_t major = 0, minor = 0;
3088 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003089 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
3091 *rdev = MKDEV(0,0);
3092 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3093 return -EIO;
3094 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3095 dev_t tmp;
3096
3097 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03003098 major = be32_to_cpup(p++);
3099 minor = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 tmp = MKDEV(major, minor);
3101 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3102 *rdev = tmp;
3103 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003104 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003106 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003107 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108}
3109
3110static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3111{
Al Viro8687b632006-10-19 23:28:48 -07003112 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 int status = 0;
3114
3115 *res = 0;
3116 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3117 return -EIO;
3118 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
3119 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003120 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3122 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003123 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 return status;
3125}
3126
3127static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3128{
Al Viro8687b632006-10-19 23:28:48 -07003129 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 int status = 0;
3131
3132 *res = 0;
3133 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3134 return -EIO;
3135 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
3136 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003137 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3139 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003140 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return status;
3142}
3143
3144static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3145{
Al Viro8687b632006-10-19 23:28:48 -07003146 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 int status = 0;
3148
3149 *res = 0;
3150 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3151 return -EIO;
3152 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
3153 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003154 p = xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3156 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003157 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 return status;
3159}
3160
3161static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3162{
Al Viro8687b632006-10-19 23:28:48 -07003163 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003164 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 *used = 0;
3167 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3168 return -EIO;
3169 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
3170 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003171 p = xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003173 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003175 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003177 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
3180static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3181{
Al Viro8687b632006-10-19 23:28:48 -07003182 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 uint64_t sec;
3184 uint32_t nsec;
3185
3186 READ_BUF(12);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003187 p = xdr_decode_hyper(p, &sec);
Benny Halevy6f723f72009-08-14 17:19:37 +03003188 nsec = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 time->tv_sec = (time_t)sec;
3190 time->tv_nsec = (long)nsec;
3191 return 0;
3192}
3193
3194static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3195{
3196 int status = 0;
3197
3198 time->tv_sec = 0;
3199 time->tv_nsec = 0;
3200 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
3201 return -EIO;
3202 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
3203 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003204 if (status == 0)
3205 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
3207 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003208 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 return status;
3210}
3211
3212static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3213{
3214 int status = 0;
3215
3216 time->tv_sec = 0;
3217 time->tv_nsec = 0;
3218 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
3219 return -EIO;
3220 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
3221 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003222 if (status == 0)
3223 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
3225 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003226 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 return status;
3228}
3229
3230static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3231{
3232 int status = 0;
3233
3234 time->tv_sec = 0;
3235 time->tv_nsec = 0;
3236 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
3237 return -EIO;
3238 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
3239 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003240 if (status == 0)
3241 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
3243 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003244 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return status;
3246}
3247
Al Viro8687b632006-10-19 23:28:48 -07003248static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249{
3250 unsigned int attrwords = XDR_QUADLEN(attrlen);
3251 unsigned int nwords = xdr->p - savep;
3252
3253 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003254 dprintk("%s: server returned incorrect attribute length: "
3255 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003256 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 attrwords << 2,
3258 (attrwords < nwords) ? '<' : '>',
3259 nwords << 2);
3260 return -EIO;
3261 }
3262 return 0;
3263}
3264
3265static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3266{
Al Viro8687b632006-10-19 23:28:48 -07003267 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 READ_BUF(20);
Benny Halevy6f723f72009-08-14 17:19:37 +03003270 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003271 p = xdr_decode_hyper(p, &cinfo->before);
3272 p = xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 return 0;
3274}
3275
3276static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
3277{
Al Viro8687b632006-10-19 23:28:48 -07003278 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 uint32_t supp, acc;
3280 int status;
3281
3282 status = decode_op_hdr(xdr, OP_ACCESS);
3283 if (status)
3284 return status;
3285 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03003286 supp = be32_to_cpup(p++);
3287 acc = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 access->supported = supp;
3289 access->access = acc;
3290 return 0;
3291}
3292
Benny Halevy07d30432009-08-14 17:19:52 +03003293static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294{
Al Viro8687b632006-10-19 23:28:48 -07003295 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03003296
3297 p = xdr_inline_decode(xdr, len);
3298 if (likely(p)) {
3299 memcpy(buf, p, len);
3300 return 0;
3301 }
3302 print_overflow_msg(__func__, xdr);
3303 return -EIO;
3304}
3305
3306static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
3307{
3308 return decode_opaque_fixed(xdr, stateid->data, NFS4_STATEID_SIZE);
3309}
3310
3311static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
3312{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 int status;
3314
3315 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003316 if (status != -EIO)
3317 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003318 if (!status)
3319 status = decode_stateid(xdr, &res->stateid);
3320 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321}
3322
Benny Halevydb942bb2009-08-14 17:19:56 +03003323static int decode_verifier(struct xdr_stream *xdr, void *verifier)
3324{
3325 return decode_opaque_fixed(xdr, verifier, 8);
3326}
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
3329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 int status;
3331
3332 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03003333 if (!status)
3334 status = decode_verifier(xdr, res->verf->verifier);
3335 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336}
3337
3338static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3339{
Al Viro8687b632006-10-19 23:28:48 -07003340 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 uint32_t bmlen;
3342 int status;
3343
3344 status = decode_op_hdr(xdr, OP_CREATE);
3345 if (status)
3346 return status;
3347 if ((status = decode_change_info(xdr, cinfo)))
3348 return status;
3349 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003350 bmlen = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 READ_BUF(bmlen << 2);
3352 return 0;
3353}
3354
3355static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
3356{
Al Viro8687b632006-10-19 23:28:48 -07003357 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003358 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 int status;
3360
3361 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3362 goto xdr_error;
3363 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3364 goto xdr_error;
3365 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3366 goto xdr_error;
3367 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
3368 goto xdr_error;
3369 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
3370 goto xdr_error;
3371 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
3372 goto xdr_error;
3373 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
3374 goto xdr_error;
3375 status = verify_attr_len(xdr, savep, attrlen);
3376xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003377 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return status;
3379}
Andy Adamson6c0195a2008-12-23 16:06:15 -05003380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
3382{
Al Viro8687b632006-10-19 23:28:48 -07003383 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003384 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3388 goto xdr_error;
3389 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3390 goto xdr_error;
3391 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3392 goto xdr_error;
3393
3394 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
3395 goto xdr_error;
3396 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
3397 goto xdr_error;
3398 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
3399 goto xdr_error;
3400 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
3401 goto xdr_error;
3402 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
3403 goto xdr_error;
3404 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
3405 goto xdr_error;
3406
3407 status = verify_attr_len(xdr, savep, attrlen);
3408xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003409 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 return status;
3411}
3412
3413static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
3414{
Al Viro8687b632006-10-19 23:28:48 -07003415 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003416 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3420 goto xdr_error;
3421 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3422 goto xdr_error;
3423 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3424 goto xdr_error;
3425
3426 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
3427 goto xdr_error;
3428 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
3429 goto xdr_error;
3430
3431 status = verify_attr_len(xdr, savep, attrlen);
3432xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003433 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return status;
3435}
3436
3437static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, const struct nfs_server *server)
3438{
Al Viro8687b632006-10-19 23:28:48 -07003439 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 uint32_t attrlen,
3441 bitmap[2] = {0},
3442 type;
Trond Myklebustbca79472009-03-11 14:10:26 -04003443 int status;
3444 umode_t fmode = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003445 uint64_t fileid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003447 status = decode_op_hdr(xdr, OP_GETATTR);
3448 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 goto xdr_error;
3450
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003451 status = decode_attr_bitmap(xdr, bitmap);
3452 if (status < 0)
3453 goto xdr_error;
3454
3455 status = decode_attr_length(xdr, &attrlen, &savep);
3456 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 goto xdr_error;
3458
3459
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003460 status = decode_attr_type(xdr, bitmap, &type);
3461 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003463 fattr->mode = 0;
3464 if (status != 0) {
3465 fattr->mode |= nfs_type2fmt[type];
3466 fattr->valid |= status;
3467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003469 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
3470 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003472 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003473
3474 status = decode_attr_size(xdr, bitmap, &fattr->size);
3475 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003477 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003478
3479 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
3480 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003482 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003483
3484 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
3485 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003487 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003488
3489 status = decode_attr_fs_locations(xdr, bitmap, container_of(fattr,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003490 struct nfs4_fs_locations,
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003491 fattr));
3492 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003493 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003494 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003495
3496 status = decode_attr_mode(xdr, bitmap, &fmode);
3497 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003499 if (status != 0) {
3500 fattr->mode |= fmode;
3501 fattr->valid |= status;
3502 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003503
3504 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
3505 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003507 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003508
3509 status = decode_attr_owner(xdr, bitmap, server->nfs_client, &fattr->uid);
3510 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003512 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003513
3514 status = decode_attr_group(xdr, bitmap, server->nfs_client, &fattr->gid);
3515 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003517 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003518
3519 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
3520 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003522 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003523
3524 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
3525 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003527 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003528
3529 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
3530 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003532 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003533
3534 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
3535 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003537 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003538
3539 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
3540 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003542 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003543
3544 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fileid);
3545 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04003546 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003547 if (status != 0 && !(fattr->valid & status)) {
Manoj Naik99baf622006-06-09 09:34:24 -04003548 fattr->fileid = fileid;
Trond Myklebust409924e2009-03-11 14:10:27 -04003549 fattr->valid |= status;
3550 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003551
3552 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003554 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 return status;
3556}
3557
3558
3559static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
3560{
Al Viro8687b632006-10-19 23:28:48 -07003561 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 uint32_t attrlen, bitmap[2];
3563 int status;
3564
3565 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3566 goto xdr_error;
3567 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3568 goto xdr_error;
3569 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3570 goto xdr_error;
3571
3572 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
3573
3574 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
3575 goto xdr_error;
3576 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
3577 goto xdr_error;
3578 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
3579 goto xdr_error;
3580 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
3581 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
3582 goto xdr_error;
3583 fsinfo->wtpref = fsinfo->wtmax;
3584
3585 status = verify_attr_len(xdr, savep, attrlen);
3586xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003587 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 return status;
3589}
3590
3591static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
3592{
Al Viro8687b632006-10-19 23:28:48 -07003593 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 uint32_t len;
3595 int status;
3596
Trond Myklebust99367812007-07-17 21:52:41 -04003597 /* Zero handle first to allow comparisons */
3598 memset(fh, 0, sizeof(*fh));
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 status = decode_op_hdr(xdr, OP_GETFH);
3601 if (status)
3602 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
3604 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003605 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 if (len > NFS4_FHSIZE)
3607 return -EIO;
3608 fh->size = len;
3609 READ_BUF(len);
3610 COPYMEM(fh->data, len);
3611 return 0;
3612}
3613
3614static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3615{
3616 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 status = decode_op_hdr(xdr, OP_LINK);
3619 if (status)
3620 return status;
3621 return decode_change_info(xdr, cinfo);
3622}
3623
3624/*
3625 * We create the owner, so we know a proper owner.id length is 4.
3626 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003627static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003629 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07003630 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003631 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633 READ_BUF(32);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003634 p = xdr_decode_hyper(p, &offset);
3635 p = xdr_decode_hyper(p, &length);
Benny Halevy6f723f72009-08-14 17:19:37 +03003636 type = be32_to_cpup(p++);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003637 if (fl != NULL) {
3638 fl->fl_start = (loff_t)offset;
3639 fl->fl_end = fl->fl_start + (loff_t)length - 1;
3640 if (length == ~(uint64_t)0)
3641 fl->fl_end = OFFSET_MAX;
3642 fl->fl_type = F_WRLCK;
3643 if (type & 1)
3644 fl->fl_type = F_RDLCK;
3645 fl->fl_pid = 0;
3646 }
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003647 p = xdr_decode_hyper(p, &clientid);
Benny Halevy6f723f72009-08-14 17:19:37 +03003648 namelen = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 READ_BUF(namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return -NFS4ERR_DENIED;
3651}
3652
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003653static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 int status;
3656
3657 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003658 if (status == -EIO)
3659 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03003661 status = decode_stateid(xdr, &res->stateid);
3662 if (unlikely(status))
3663 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04003665 status = decode_lock_denied(xdr, NULL);
3666 if (res->open_seqid != NULL)
3667 nfs_increment_open_seqid(status, res->open_seqid);
3668 nfs_increment_lock_seqid(status, res->lock_seqid);
3669out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 return status;
3671}
3672
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003673static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674{
3675 int status;
3676 status = decode_op_hdr(xdr, OP_LOCKT);
3677 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003678 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 return status;
3680}
3681
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003682static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 int status;
3685
3686 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003687 if (status != -EIO)
3688 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003689 if (status == 0)
3690 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 return status;
3692}
3693
3694static int decode_lookup(struct xdr_stream *xdr)
3695{
3696 return decode_op_hdr(xdr, OP_LOOKUP);
3697}
3698
3699/* This is too sick! */
3700static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
3701{
Andy Adamson05d564f2008-12-23 16:06:15 -05003702 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 uint32_t limit_type, nblocks, blocksize;
3704
3705 READ_BUF(12);
Benny Halevy6f723f72009-08-14 17:19:37 +03003706 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05003708 case 1:
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003709 p = xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05003710 break;
3711 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03003712 nblocks = be32_to_cpup(p++);
3713 blocksize = be32_to_cpup(p++);
Andy Adamson05d564f2008-12-23 16:06:15 -05003714 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 }
3716 return 0;
3717}
3718
3719static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
3720{
Andy Adamson05d564f2008-12-23 16:06:15 -05003721 __be32 *p;
3722 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03003723 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
3725 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003726 delegation_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
3728 res->delegation_type = 0;
3729 return 0;
3730 }
Benny Halevy07d30432009-08-14 17:19:52 +03003731 status = decode_stateid(xdr, &res->delegation);
3732 if (unlikely(status))
3733 return status;
3734 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003735 res->do_recall = be32_to_cpup(p++);
Andy Adamson05d564f2008-12-23 16:06:15 -05003736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05003738 case NFS4_OPEN_DELEGATE_READ:
3739 res->delegation_type = FMODE_READ;
3740 break;
3741 case NFS4_OPEN_DELEGATE_WRITE:
3742 res->delegation_type = FMODE_WRITE|FMODE_READ;
3743 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 return -EIO;
3745 }
David Howells7539bba2006-08-22 20:06:09 -04003746 return decode_ace(xdr, NULL, res->server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748
3749static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
3750{
Andy Adamson05d564f2008-12-23 16:06:15 -05003751 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04003752 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05003753 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Andy Adamson05d564f2008-12-23 16:06:15 -05003755 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003756 if (status != -EIO)
3757 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003758 if (!status)
3759 status = decode_stateid(xdr, &res->stateid);
3760 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05003761 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Andy Adamson05d564f2008-12-23 16:06:15 -05003763 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Andy Adamson05d564f2008-12-23 16:06:15 -05003765 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03003766 res->rflags = be32_to_cpup(p++);
3767 bmlen = be32_to_cpup(p++);
Andy Adamson05d564f2008-12-23 16:06:15 -05003768 if (bmlen > 10)
3769 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Andy Adamson05d564f2008-12-23 16:06:15 -05003771 READ_BUF(bmlen << 2);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04003772 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
3773 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03003774 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04003775 for (; i < NFS4_BITMAP_SIZE; i++)
3776 res->attrset[i] = 0;
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 return decode_delegation(xdr, res);
3779xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003780 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 return -EIO;
3782}
3783
3784static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
3785{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 int status;
3787
Andy Adamson05d564f2008-12-23 16:06:15 -05003788 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003789 if (status != -EIO)
3790 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003791 if (!status)
3792 status = decode_stateid(xdr, &res->stateid);
3793 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794}
3795
3796static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
3797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 int status;
3799
3800 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003801 if (status != -EIO)
3802 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003803 if (!status)
3804 status = decode_stateid(xdr, &res->stateid);
3805 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806}
3807
3808static int decode_putfh(struct xdr_stream *xdr)
3809{
3810 return decode_op_hdr(xdr, OP_PUTFH);
3811}
3812
3813static int decode_putrootfh(struct xdr_stream *xdr)
3814{
3815 return decode_op_hdr(xdr, OP_PUTROOTFH);
3816}
3817
3818static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
3819{
3820 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07003821 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 uint32_t count, eof, recvd, hdrlen;
3823 int status;
3824
3825 status = decode_op_hdr(xdr, OP_READ);
3826 if (status)
3827 return status;
3828 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03003829 eof = be32_to_cpup(p++);
3830 count = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 hdrlen = (u8 *) p - (u8 *) iov->iov_base;
3832 recvd = req->rq_rcv_buf.len - hdrlen;
3833 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003834 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 "count %u > recvd %u\n", count, recvd);
3836 count = recvd;
3837 eof = 0;
3838 }
3839 xdr_read_pages(xdr, count);
3840 res->eof = eof;
3841 res->count = count;
3842 return 0;
3843}
3844
3845static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
3846{
3847 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3848 struct page *page = *rcvbuf->pages;
3849 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04003850 size_t hdrlen;
3851 u32 recvd, pglen = rcvbuf->page_len;
Al Viro8687b632006-10-19 23:28:48 -07003852 __be32 *end, *entry, *p, *kaddr;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003853 unsigned int nr = 0;
Chuck Leverbcecff72007-10-26 13:32:03 -04003854 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
3856 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03003857 if (!status)
3858 status = decode_verifier(xdr, readdir->verifier.data);
3859 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 return status;
Fred Isaman44109242008-04-02 15:21:15 +03003861 dprintk("%s: verifier = %08x:%08x\n",
3862 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00003863 ((u32 *)readdir->verifier.data)[0],
3864 ((u32 *)readdir->verifier.data)[1]);
3865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Benny Halevydb942bb2009-08-14 17:19:56 +03003867 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 recvd = rcvbuf->len - hdrlen;
3869 if (pglen > recvd)
3870 pglen = recvd;
3871 xdr_read_pages(xdr, pglen);
3872
3873 BUG_ON(pglen + readdir->pgbase > PAGE_CACHE_SIZE);
Al Viro8687b632006-10-19 23:28:48 -07003874 kaddr = p = kmap_atomic(page, KM_USER0);
David Howellse8896492006-08-24 15:44:19 -04003875 end = p + ((pglen + readdir->pgbase) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 entry = p;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003877
3878 /* Make sure the packet actually has a value_follows and EOF entry */
3879 if ((entry + 1) > end)
3880 goto short_pkt;
3881
3882 for (; *p++; nr++) {
Chuck Leverbcecff72007-10-26 13:32:03 -04003883 u32 len, attrlen, xlen;
David Howellse8896492006-08-24 15:44:19 -04003884 if (end - p < 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00003886 dprintk("cookie = %Lu, ", *((unsigned long long *)p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 p += 2; /* cookie */
3888 len = ntohl(*p++); /* filename length */
3889 if (len > NFS4_MAXNAMLEN) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003890 dprintk("NFS: giant filename in readdir (len 0x%x)\n",
3891 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 goto err_unmap;
3893 }
David Howellse8896492006-08-24 15:44:19 -04003894 xlen = XDR_QUADLEN(len);
3895 if (end - p < xlen + 1)
3896 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00003897 dprintk("filename = %*s\n", len, (char *)p);
David Howellse8896492006-08-24 15:44:19 -04003898 p += xlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 len = ntohl(*p++); /* bitmap length */
David Howellse8896492006-08-24 15:44:19 -04003900 if (end - p < len + 1)
3901 goto short_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 p += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 attrlen = XDR_QUADLEN(ntohl(*p++));
David Howellse8896492006-08-24 15:44:19 -04003904 if (end - p < attrlen + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 goto short_pkt;
David Howellse8896492006-08-24 15:44:19 -04003906 p += attrlen; /* attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 entry = p;
3908 }
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003909 /*
3910 * Apparently some server sends responses that are a valid size, but
3911 * contain no entries, and have value_follows==0 and EOF==0. For
3912 * those, just set the EOF marker.
3913 */
3914 if (!nr && entry[1] == 0) {
3915 dprintk("NFS: readdir reply truncated!\n");
3916 entry[1] = 1;
3917 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05003918out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 kunmap_atomic(kaddr, KM_USER0);
3920 return 0;
3921short_pkt:
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003922 /*
3923 * When we get a short packet there are 2 possibilities. We can
3924 * return an error, or fix up the response to look like a valid
3925 * response and return what we have so far. If there are no
3926 * entries and the packet was short, then return -EIO. If there
3927 * are valid entries in the response, return them and pretend that
3928 * the call was successful, but incomplete. The caller can retry the
3929 * readdir starting at the last cookie.
3930 */
Harvey Harrison3110ff82008-05-02 13:42:44 -07003931 dprintk("%s: short packet at entry %d\n", __func__, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 entry[0] = entry[1] = 0;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05003933 if (nr)
3934 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935err_unmap:
3936 kunmap_atomic(kaddr, KM_USER0);
3937 return -errno_NFSERR_IO;
3938}
3939
3940static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
3941{
3942 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3943 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04003944 size_t hdrlen;
3945 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07003946 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 char *kaddr;
3948 int status;
3949
3950 status = decode_op_hdr(xdr, OP_READLINK);
3951 if (status)
3952 return status;
3953
3954 /* Convert length of symlink */
3955 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03003956 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003958 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return -ENAMETOOLONG;
3960 }
3961 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
3962 recvd = req->rq_rcv_buf.len - hdrlen;
3963 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003964 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 "count %u > recvd %u\n", len, recvd);
3966 return -EIO;
3967 }
3968 xdr_read_pages(xdr, len);
3969 /*
3970 * The XDR encode routine has set things up so that
3971 * the link text will be copied directly into the
3972 * buffer. We just have to do overflow-checking,
3973 * and and null-terminate the text (the VFS expects
3974 * null-termination).
3975 */
3976 kaddr = (char *)kmap_atomic(rcvbuf->pages[0], KM_USER0);
3977 kaddr[len+rcvbuf->page_base] = '\0';
3978 kunmap_atomic(kaddr, KM_USER0);
3979 return 0;
3980}
3981
3982static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3983{
3984 int status;
3985
3986 status = decode_op_hdr(xdr, OP_REMOVE);
3987 if (status)
3988 goto out;
3989 status = decode_change_info(xdr, cinfo);
3990out:
3991 return status;
3992}
3993
3994static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
3995 struct nfs4_change_info *new_cinfo)
3996{
3997 int status;
3998
3999 status = decode_op_hdr(xdr, OP_RENAME);
4000 if (status)
4001 goto out;
4002 if ((status = decode_change_info(xdr, old_cinfo)))
4003 goto out;
4004 status = decode_change_info(xdr, new_cinfo);
4005out:
4006 return status;
4007}
4008
4009static int decode_renew(struct xdr_stream *xdr)
4010{
4011 return decode_op_hdr(xdr, OP_RENEW);
4012}
4013
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004014static int
4015decode_restorefh(struct xdr_stream *xdr)
4016{
4017 return decode_op_hdr(xdr, OP_RESTOREFH);
4018}
4019
J. Bruce Fields029d1052005-06-22 17:16:22 +00004020static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
4021 size_t *acl_len)
4022{
Al Viro8687b632006-10-19 23:28:48 -07004023 __be32 *savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004024 uint32_t attrlen,
4025 bitmap[2] = {0};
4026 struct kvec *iov = req->rq_rcv_buf.head;
4027 int status;
4028
4029 *acl_len = 0;
4030 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4031 goto out;
4032 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4033 goto out;
4034 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4035 goto out;
4036
4037 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
4038 return -EIO;
4039 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04004040 size_t hdrlen;
4041 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004042
4043 /* We ignore &savep and don't do consistency checks on
4044 * the attr length. Let userspace figure it out.... */
4045 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
4046 recvd = req->rq_rcv_buf.len - hdrlen;
4047 if (attrlen > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004048 dprintk("NFS: server cheating in getattr"
J. Bruce Fields029d1052005-06-22 17:16:22 +00004049 " acl reply: attrlen %u > recvd %u\n",
4050 attrlen, recvd);
4051 return -EINVAL;
4052 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04004053 xdr_read_pages(xdr, attrlen);
J. Bruce Fields029d1052005-06-22 17:16:22 +00004054 *acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04004055 } else
4056 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004057
4058out:
4059 return status;
4060}
4061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062static int
4063decode_savefh(struct xdr_stream *xdr)
4064{
4065 return decode_op_hdr(xdr, OP_SAVEFH);
4066}
4067
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004068static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069{
Al Viro8687b632006-10-19 23:28:48 -07004070 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 uint32_t bmlen;
4072 int status;
4073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 status = decode_op_hdr(xdr, OP_SETATTR);
4075 if (status)
4076 return status;
4077 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004078 bmlen = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 READ_BUF(bmlen << 2);
4080 return 0;
4081}
4082
David Howellsadfa6f92006-08-22 20:06:08 -04004083static int decode_setclientid(struct xdr_stream *xdr, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084{
Al Viro8687b632006-10-19 23:28:48 -07004085 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 uint32_t opnum;
4087 int32_t nfserr;
4088
4089 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03004090 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004092 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05004093 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 return -EIO;
4095 }
Benny Halevy6f723f72009-08-14 17:19:37 +03004096 nfserr = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 if (nfserr == NFS_OK) {
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04004098 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004099 p = xdr_decode_hyper(p, &clp->cl_clientid);
Trond Myklebust8ae20ab2007-05-14 16:50:45 -04004100 COPYMEM(clp->cl_confirm.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 } else if (nfserr == NFSERR_CLID_INUSE) {
4102 uint32_t len;
4103
4104 /* skip netid string */
4105 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004106 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 READ_BUF(len);
4108
4109 /* skip uaddr string */
4110 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004111 len = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 READ_BUF(len);
4113 return -NFSERR_CLID_INUSE;
4114 } else
Benny Halevy856dff32008-03-31 17:39:06 +03004115 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
4117 return 0;
4118}
4119
4120static int decode_setclientid_confirm(struct xdr_stream *xdr)
4121{
4122 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
4123}
4124
4125static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
4126{
Al Viro8687b632006-10-19 23:28:48 -07004127 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 int status;
4129
4130 status = decode_op_hdr(xdr, OP_WRITE);
4131 if (status)
4132 return status;
4133
4134 READ_BUF(16);
Benny Halevy6f723f72009-08-14 17:19:37 +03004135 res->count = be32_to_cpup(p++);
4136 res->verf->committed = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 COPYMEM(res->verf->verifier, 8);
4138 return 0;
4139}
4140
4141static int decode_delegreturn(struct xdr_stream *xdr)
4142{
4143 return decode_op_hdr(xdr, OP_DELEGRETURN);
4144}
4145
Benny Halevy99fe60d2009-04-01 09:22:29 -04004146#if defined(CONFIG_NFS_V4_1)
4147static int decode_exchange_id(struct xdr_stream *xdr,
4148 struct nfs41_exchange_id_res *res)
4149{
4150 __be32 *p;
4151 uint32_t dummy;
4152 int status;
4153 struct nfs_client *clp = res->client;
4154
4155 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
4156 if (status)
4157 return status;
4158
4159 READ_BUF(8);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004160 p = xdr_decode_hyper(p, &clp->cl_ex_clid);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004161 READ_BUF(12);
Benny Halevy6f723f72009-08-14 17:19:37 +03004162 clp->cl_seqid = be32_to_cpup(p++);
4163 clp->cl_exchange_flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004164
4165 /* We ask for SP4_NONE */
Benny Halevy6f723f72009-08-14 17:19:37 +03004166 dummy = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004167 if (dummy != SP4_NONE)
4168 return -EIO;
4169
4170 /* Throw away minor_id */
4171 READ_BUF(8);
4172
4173 /* Throw away Major id */
4174 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004175 dummy = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004176 READ_BUF(dummy);
4177
4178 /* Throw away server_scope */
4179 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004180 dummy = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004181 READ_BUF(dummy);
4182
4183 /* Throw away Implementation id array */
4184 READ_BUF(4);
Benny Halevy6f723f72009-08-14 17:19:37 +03004185 dummy = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004186 READ_BUF(dummy);
4187
4188 return 0;
4189}
Andy Adamsonfc931582009-04-01 09:22:31 -04004190
4191static int decode_chan_attrs(struct xdr_stream *xdr,
4192 struct nfs4_channel_attrs *attrs)
4193{
4194 __be32 *p;
4195 u32 nr_attrs;
4196
4197 READ_BUF(28);
Benny Halevy6f723f72009-08-14 17:19:37 +03004198 attrs->headerpadsz = be32_to_cpup(p++);
4199 attrs->max_rqst_sz = be32_to_cpup(p++);
4200 attrs->max_resp_sz = be32_to_cpup(p++);
4201 attrs->max_resp_sz_cached = be32_to_cpup(p++);
4202 attrs->max_ops = be32_to_cpup(p++);
4203 attrs->max_reqs = be32_to_cpup(p++);
4204 nr_attrs = be32_to_cpup(p++);
Andy Adamsonfc931582009-04-01 09:22:31 -04004205 if (unlikely(nr_attrs > 1)) {
4206 printk(KERN_WARNING "%s: Invalid rdma channel attrs count %u\n",
4207 __func__, nr_attrs);
4208 return -EINVAL;
4209 }
4210 if (nr_attrs == 1)
4211 READ_BUF(4); /* skip rdma_attrs */
4212 return 0;
4213}
4214
4215static int decode_create_session(struct xdr_stream *xdr,
4216 struct nfs41_create_session_res *res)
4217{
4218 __be32 *p;
4219 int status;
4220 struct nfs_client *clp = res->client;
4221 struct nfs4_session *session = clp->cl_session;
4222
4223 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
4224
4225 if (status)
4226 return status;
4227
4228 /* sessionid */
4229 READ_BUF(NFS4_MAX_SESSIONID_LEN);
4230 COPYMEM(&session->sess_id, NFS4_MAX_SESSIONID_LEN);
4231
4232 /* seqid, flags */
4233 READ_BUF(8);
Benny Halevy6f723f72009-08-14 17:19:37 +03004234 clp->cl_seqid = be32_to_cpup(p++);
4235 session->flags = be32_to_cpup(p++);
Andy Adamsonfc931582009-04-01 09:22:31 -04004236
4237 /* Channel attributes */
4238 status = decode_chan_attrs(xdr, &session->fc_attrs);
4239 if (!status)
4240 status = decode_chan_attrs(xdr, &session->bc_attrs);
4241 return status;
4242}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004243
4244static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
4245{
4246 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
4247}
Benny Halevy99fe60d2009-04-01 09:22:29 -04004248#endif /* CONFIG_NFS_V4_1 */
4249
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004250static int decode_sequence(struct xdr_stream *xdr,
4251 struct nfs4_sequence_res *res,
4252 struct rpc_rqst *rqstp)
4253{
4254#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004255 struct nfs4_slot *slot;
4256 struct nfs4_sessionid id;
4257 u32 dummy;
4258 int status;
4259 __be32 *p;
4260
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004261 if (!res->sr_session)
4262 return 0;
4263
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004264 status = decode_op_hdr(xdr, OP_SEQUENCE);
4265 if (status)
4266 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004267
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004268 /*
4269 * If the server returns different values for sessionID, slotID or
4270 * sequence number, the server is looney tunes.
4271 */
4272 status = -ESERVERFAULT;
4273
4274 slot = &res->sr_session->fc_slot_table.slots[res->sr_slotid];
4275 READ_BUF(NFS4_MAX_SESSIONID_LEN + 20);
4276 COPYMEM(id.data, NFS4_MAX_SESSIONID_LEN);
4277 if (memcmp(id.data, res->sr_session->sess_id.data,
4278 NFS4_MAX_SESSIONID_LEN)) {
4279 dprintk("%s Invalid session id\n", __func__);
4280 goto out_err;
4281 }
4282 /* seqid */
Benny Halevy6f723f72009-08-14 17:19:37 +03004283 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004284 if (dummy != slot->seq_nr) {
4285 dprintk("%s Invalid sequence number\n", __func__);
4286 goto out_err;
4287 }
4288 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03004289 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004290 if (dummy != res->sr_slotid) {
4291 dprintk("%s Invalid slot id\n", __func__);
4292 goto out_err;
4293 }
4294 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03004295 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004296 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03004297 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004298 /* result flags - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03004299 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004300 status = 0;
4301out_err:
4302 res->sr_status = status;
4303 return status;
4304#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004305 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004306#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004307}
4308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309/*
Benny Halevy49c25592008-12-23 16:06:16 -05004310 * END OF "GENERIC" DECODE ROUTINES.
4311 */
4312
4313/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 * Decode OPEN_DOWNGRADE response
4315 */
Al Viro8687b632006-10-19 23:28:48 -07004316static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317{
Andy Adamson05d564f2008-12-23 16:06:15 -05004318 struct xdr_stream xdr;
4319 struct compound_hdr hdr;
4320 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Andy Adamson05d564f2008-12-23 16:06:15 -05004322 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4323 status = decode_compound_hdr(&xdr, &hdr);
4324 if (status)
4325 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004326 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4327 if (status)
4328 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004329 status = decode_putfh(&xdr);
4330 if (status)
4331 goto out;
4332 status = decode_open_downgrade(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04004333 if (status != 0)
4334 goto out;
4335 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004337 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338}
4339
4340/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 * Decode ACCESS response
4342 */
Al Viro8687b632006-10-19 23:28:48 -07004343static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344{
4345 struct xdr_stream xdr;
4346 struct compound_hdr hdr;
4347 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004348
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004350 status = decode_compound_hdr(&xdr, &hdr);
4351 if (status)
4352 goto out;
4353 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4354 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 goto out;
Trond Myklebust76b32992007-08-10 17:45:11 -04004356 status = decode_putfh(&xdr);
4357 if (status != 0)
4358 goto out;
4359 status = decode_access(&xdr, res);
4360 if (status != 0)
4361 goto out;
4362 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363out:
4364 return status;
4365}
4366
4367/*
4368 * Decode LOOKUP response
4369 */
Al Viro8687b632006-10-19 23:28:48 -07004370static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371{
4372 struct xdr_stream xdr;
4373 struct compound_hdr hdr;
4374 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004375
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004377 status = decode_compound_hdr(&xdr, &hdr);
4378 if (status)
4379 goto out;
4380 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4381 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 goto out;
4383 if ((status = decode_putfh(&xdr)) != 0)
4384 goto out;
4385 if ((status = decode_lookup(&xdr)) != 0)
4386 goto out;
4387 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4388 goto out;
4389 status = decode_getfattr(&xdr, res->fattr, res->server);
4390out:
4391 return status;
4392}
4393
4394/*
4395 * Decode LOOKUP_ROOT response
4396 */
Al Viro8687b632006-10-19 23:28:48 -07004397static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398{
4399 struct xdr_stream xdr;
4400 struct compound_hdr hdr;
4401 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004402
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004404 status = decode_compound_hdr(&xdr, &hdr);
4405 if (status)
4406 goto out;
4407 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4408 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 goto out;
4410 if ((status = decode_putrootfh(&xdr)) != 0)
4411 goto out;
4412 if ((status = decode_getfh(&xdr, res->fh)) == 0)
4413 status = decode_getfattr(&xdr, res->fattr, res->server);
4414out:
4415 return status;
4416}
4417
4418/*
4419 * Decode REMOVE response
4420 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004421static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422{
4423 struct xdr_stream xdr;
4424 struct compound_hdr hdr;
4425 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004426
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004428 status = decode_compound_hdr(&xdr, &hdr);
4429 if (status)
4430 goto out;
4431 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4432 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 goto out;
Trond Myklebust16e42952005-10-27 22:12:44 -04004434 if ((status = decode_putfh(&xdr)) != 0)
4435 goto out;
4436 if ((status = decode_remove(&xdr, &res->cinfo)) != 0)
4437 goto out;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004438 decode_getfattr(&xdr, &res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439out:
4440 return status;
4441}
4442
4443/*
4444 * Decode RENAME response
4445 */
Al Viro8687b632006-10-19 23:28:48 -07004446static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_rename_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447{
4448 struct xdr_stream xdr;
4449 struct compound_hdr hdr;
4450 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004453 status = decode_compound_hdr(&xdr, &hdr);
4454 if (status)
4455 goto out;
4456 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4457 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 goto out;
4459 if ((status = decode_putfh(&xdr)) != 0)
4460 goto out;
4461 if ((status = decode_savefh(&xdr)) != 0)
4462 goto out;
4463 if ((status = decode_putfh(&xdr)) != 0)
4464 goto out;
Trond Myklebust6caf2c82005-10-27 22:12:43 -04004465 if ((status = decode_rename(&xdr, &res->old_cinfo, &res->new_cinfo)) != 0)
4466 goto out;
4467 /* Current FH is target directory */
4468 if (decode_getfattr(&xdr, res->new_fattr, res->server) != 0)
4469 goto out;
4470 if ((status = decode_restorefh(&xdr)) != 0)
4471 goto out;
4472 decode_getfattr(&xdr, res->old_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473out:
4474 return status;
4475}
4476
4477/*
4478 * Decode LINK response
4479 */
Al Viro8687b632006-10-19 23:28:48 -07004480static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481{
4482 struct xdr_stream xdr;
4483 struct compound_hdr hdr;
4484 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004487 status = decode_compound_hdr(&xdr, &hdr);
4488 if (status)
4489 goto out;
4490 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4491 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 goto out;
4493 if ((status = decode_putfh(&xdr)) != 0)
4494 goto out;
4495 if ((status = decode_savefh(&xdr)) != 0)
4496 goto out;
4497 if ((status = decode_putfh(&xdr)) != 0)
4498 goto out;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004499 if ((status = decode_link(&xdr, &res->cinfo)) != 0)
4500 goto out;
4501 /*
4502 * Note order: OP_LINK leaves the directory as the current
4503 * filehandle.
4504 */
4505 if (decode_getfattr(&xdr, res->dir_attr, res->server) != 0)
4506 goto out;
4507 if ((status = decode_restorefh(&xdr)) != 0)
4508 goto out;
4509 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510out:
4511 return status;
4512}
4513
4514/*
4515 * Decode CREATE response
4516 */
Al Viro8687b632006-10-19 23:28:48 -07004517static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518{
4519 struct xdr_stream xdr;
4520 struct compound_hdr hdr;
4521 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004522
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004524 status = decode_compound_hdr(&xdr, &hdr);
4525 if (status)
4526 goto out;
4527 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4528 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 goto out;
4530 if ((status = decode_putfh(&xdr)) != 0)
4531 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004532 if ((status = decode_savefh(&xdr)) != 0)
4533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 if ((status = decode_create(&xdr,&res->dir_cinfo)) != 0)
4535 goto out;
4536 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4537 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004538 if (decode_getfattr(&xdr, res->fattr, res->server) != 0)
4539 goto out;
4540 if ((status = decode_restorefh(&xdr)) != 0)
4541 goto out;
4542 decode_getfattr(&xdr, res->dir_fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543out:
4544 return status;
4545}
4546
4547/*
4548 * Decode SYMLINK response
4549 */
Al Viro8687b632006-10-19 23:28:48 -07004550static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551{
4552 return nfs4_xdr_dec_create(rqstp, p, res);
4553}
4554
4555/*
4556 * Decode GETATTR response
4557 */
Al Viro8687b632006-10-19 23:28:48 -07004558static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559{
4560 struct xdr_stream xdr;
4561 struct compound_hdr hdr;
4562 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004563
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4565 status = decode_compound_hdr(&xdr, &hdr);
4566 if (status)
4567 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004568 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4569 if (status)
4570 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 status = decode_putfh(&xdr);
4572 if (status)
4573 goto out;
4574 status = decode_getfattr(&xdr, res->fattr, res->server);
4575out:
4576 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577}
4578
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004579/*
4580 * Encode an SETACL request
4581 */
4582static int
Al Viro8687b632006-10-19 23:28:48 -07004583nfs4_xdr_enc_setacl(struct rpc_rqst *req, __be32 *p, struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004584{
Andy Adamson05d564f2008-12-23 16:06:15 -05004585 struct xdr_stream xdr;
4586 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04004587 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05004588 };
4589 int status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004590
Andy Adamson05d564f2008-12-23 16:06:15 -05004591 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04004592 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004593 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05004594 encode_putfh(&xdr, args->fh, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004595 status = encode_setacl(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004596 encode_nops(&hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05004597 return status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004598}
Andy Adamson05d564f2008-12-23 16:06:15 -05004599
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004600/*
4601 * Decode SETACL response
4602 */
4603static int
Benny Halevy73c403a2009-04-01 09:22:01 -04004604nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, __be32 *p,
4605 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004606{
4607 struct xdr_stream xdr;
4608 struct compound_hdr hdr;
4609 int status;
4610
4611 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4612 status = decode_compound_hdr(&xdr, &hdr);
4613 if (status)
4614 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004615 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4616 if (status)
4617 goto out;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004618 status = decode_putfh(&xdr);
4619 if (status)
4620 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004621 status = decode_setattr(&xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004622out:
4623 return status;
4624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
4626/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00004627 * Decode GETACL response
4628 */
4629static int
Benny Halevy663c79b2009-04-01 09:21:59 -04004630nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, __be32 *p,
4631 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00004632{
4633 struct xdr_stream xdr;
4634 struct compound_hdr hdr;
4635 int status;
4636
4637 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4638 status = decode_compound_hdr(&xdr, &hdr);
4639 if (status)
4640 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004641 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4642 if (status)
4643 goto out;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004644 status = decode_putfh(&xdr);
4645 if (status)
4646 goto out;
Benny Halevy663c79b2009-04-01 09:21:59 -04004647 status = decode_getacl(&xdr, rqstp, &res->acl_len);
J. Bruce Fields029d1052005-06-22 17:16:22 +00004648
4649out:
4650 return status;
4651}
4652
4653/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 * Decode CLOSE response
4655 */
Al Viro8687b632006-10-19 23:28:48 -07004656static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657{
Andy Adamson05d564f2008-12-23 16:06:15 -05004658 struct xdr_stream xdr;
4659 struct compound_hdr hdr;
4660 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Andy Adamson05d564f2008-12-23 16:06:15 -05004662 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4663 status = decode_compound_hdr(&xdr, &hdr);
4664 if (status)
4665 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004666 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4667 if (status)
4668 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004669 status = decode_putfh(&xdr);
4670 if (status)
4671 goto out;
4672 status = decode_close(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04004673 if (status != 0)
4674 goto out;
4675 /*
4676 * Note: Server may do delete on close for this file
4677 * in which case the getattr call will fail with
4678 * an ESTALE error. Shouldn't be a problem,
4679 * though, since fattr->valid will remain unset.
4680 */
4681 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004683 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684}
4685
4686/*
4687 * Decode OPEN response
4688 */
Al Viro8687b632006-10-19 23:28:48 -07004689static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690{
Andy Adamson05d564f2008-12-23 16:06:15 -05004691 struct xdr_stream xdr;
4692 struct compound_hdr hdr;
4693 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Andy Adamson05d564f2008-12-23 16:06:15 -05004695 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4696 status = decode_compound_hdr(&xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004697 if (status)
4698 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004699 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4700 if (status)
4701 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004702 status = decode_putfh(&xdr);
4703 if (status)
4704 goto out;
4705 status = decode_savefh(&xdr);
4706 if (status)
4707 goto out;
4708 status = decode_open(&xdr, res);
4709 if (status)
4710 goto out;
Trond Myklebust99367812007-07-17 21:52:41 -04004711 if (decode_getfh(&xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004713 if (decode_getfattr(&xdr, res->f_attr, res->server) != 0)
4714 goto out;
Trond Myklebust365c8f52007-07-17 21:52:37 -04004715 if (decode_restorefh(&xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004716 goto out;
4717 decode_getfattr(&xdr, res->dir_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004719 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720}
4721
4722/*
4723 * Decode OPEN_CONFIRM response
4724 */
Al Viro8687b632006-10-19 23:28:48 -07004725static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp, __be32 *p, struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726{
Andy Adamson05d564f2008-12-23 16:06:15 -05004727 struct xdr_stream xdr;
4728 struct compound_hdr hdr;
4729 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Andy Adamson05d564f2008-12-23 16:06:15 -05004731 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4732 status = decode_compound_hdr(&xdr, &hdr);
4733 if (status)
4734 goto out;
4735 status = decode_putfh(&xdr);
4736 if (status)
4737 goto out;
4738 status = decode_open_confirm(&xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004740 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741}
4742
4743/*
4744 * Decode OPEN response
4745 */
Al Viro8687b632006-10-19 23:28:48 -07004746static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747{
Andy Adamson05d564f2008-12-23 16:06:15 -05004748 struct xdr_stream xdr;
4749 struct compound_hdr hdr;
4750 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Andy Adamson05d564f2008-12-23 16:06:15 -05004752 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4753 status = decode_compound_hdr(&xdr, &hdr);
4754 if (status)
4755 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004756 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4757 if (status)
4758 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004759 status = decode_putfh(&xdr);
4760 if (status)
4761 goto out;
4762 status = decode_open(&xdr, res);
4763 if (status)
4764 goto out;
Trond Myklebust864472e2006-01-03 09:55:15 +01004765 decode_getfattr(&xdr, res->f_attr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004767 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768}
4769
4770/*
4771 * Decode SETATTR response
4772 */
Al Viro8687b632006-10-19 23:28:48 -07004773static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774{
Andy Adamson05d564f2008-12-23 16:06:15 -05004775 struct xdr_stream xdr;
4776 struct compound_hdr hdr;
4777 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Andy Adamson05d564f2008-12-23 16:06:15 -05004779 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4780 status = decode_compound_hdr(&xdr, &hdr);
4781 if (status)
4782 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004783 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4784 if (status)
4785 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004786 status = decode_putfh(&xdr);
4787 if (status)
4788 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004789 status = decode_setattr(&xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05004790 if (status)
4791 goto out;
Trond Myklebust78f945f2009-03-11 14:10:23 -04004792 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004794 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795}
4796
4797/*
4798 * Decode LOCK response
4799 */
Al Viro8687b632006-10-19 23:28:48 -07004800static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
4802 struct xdr_stream xdr;
4803 struct compound_hdr hdr;
4804 int status;
4805
4806 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4807 status = decode_compound_hdr(&xdr, &hdr);
4808 if (status)
4809 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004810 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4811 if (status)
4812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 status = decode_putfh(&xdr);
4814 if (status)
4815 goto out;
4816 status = decode_lock(&xdr, res);
4817out:
4818 return status;
4819}
4820
4821/*
4822 * Decode LOCKT response
4823 */
Al Viro8687b632006-10-19 23:28:48 -07004824static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825{
4826 struct xdr_stream xdr;
4827 struct compound_hdr hdr;
4828 int status;
4829
4830 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4831 status = decode_compound_hdr(&xdr, &hdr);
4832 if (status)
4833 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004834 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4835 if (status)
4836 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 status = decode_putfh(&xdr);
4838 if (status)
4839 goto out;
4840 status = decode_lockt(&xdr, res);
4841out:
4842 return status;
4843}
4844
4845/*
4846 * Decode LOCKU response
4847 */
Al Viro8687b632006-10-19 23:28:48 -07004848static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, __be32 *p, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849{
4850 struct xdr_stream xdr;
4851 struct compound_hdr hdr;
4852 int status;
4853
4854 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4855 status = decode_compound_hdr(&xdr, &hdr);
4856 if (status)
4857 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004858 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4859 if (status)
4860 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 status = decode_putfh(&xdr);
4862 if (status)
4863 goto out;
4864 status = decode_locku(&xdr, res);
4865out:
4866 return status;
4867}
4868
4869/*
4870 * Decode READLINK response
4871 */
Benny Halevyf50c7002009-04-01 09:21:55 -04004872static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp, __be32 *p,
4873 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874{
4875 struct xdr_stream xdr;
4876 struct compound_hdr hdr;
4877 int status;
4878
4879 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4880 status = decode_compound_hdr(&xdr, &hdr);
4881 if (status)
4882 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004883 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4884 if (status)
4885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 status = decode_putfh(&xdr);
4887 if (status)
4888 goto out;
4889 status = decode_readlink(&xdr, rqstp);
4890out:
4891 return status;
4892}
4893
4894/*
4895 * Decode READDIR response
4896 */
Al Viro8687b632006-10-19 23:28:48 -07004897static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898{
4899 struct xdr_stream xdr;
4900 struct compound_hdr hdr;
4901 int status;
4902
4903 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4904 status = decode_compound_hdr(&xdr, &hdr);
4905 if (status)
4906 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004907 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4908 if (status)
4909 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 status = decode_putfh(&xdr);
4911 if (status)
4912 goto out;
4913 status = decode_readdir(&xdr, rqstp, res);
4914out:
4915 return status;
4916}
4917
4918/*
4919 * Decode Read response
4920 */
Al Viro8687b632006-10-19 23:28:48 -07004921static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, __be32 *p, struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922{
4923 struct xdr_stream xdr;
4924 struct compound_hdr hdr;
4925 int status;
4926
4927 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4928 status = decode_compound_hdr(&xdr, &hdr);
4929 if (status)
4930 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004931 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4932 if (status)
4933 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 status = decode_putfh(&xdr);
4935 if (status)
4936 goto out;
4937 status = decode_read(&xdr, rqstp, res);
4938 if (!status)
4939 status = res->count;
4940out:
4941 return status;
4942}
4943
4944/*
4945 * Decode WRITE response
4946 */
Al Viro8687b632006-10-19 23:28:48 -07004947static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948{
4949 struct xdr_stream xdr;
4950 struct compound_hdr hdr;
4951 int status;
4952
4953 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4954 status = decode_compound_hdr(&xdr, &hdr);
4955 if (status)
4956 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004957 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4958 if (status)
4959 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 status = decode_putfh(&xdr);
4961 if (status)
4962 goto out;
4963 status = decode_write(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004964 if (status)
4965 goto out;
4966 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 if (!status)
4968 status = res->count;
4969out:
4970 return status;
4971}
4972
4973/*
4974 * Decode COMMIT response
4975 */
Al Viro8687b632006-10-19 23:28:48 -07004976static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977{
4978 struct xdr_stream xdr;
4979 struct compound_hdr hdr;
4980 int status;
4981
4982 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4983 status = decode_compound_hdr(&xdr, &hdr);
4984 if (status)
4985 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004986 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4987 if (status)
4988 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 status = decode_putfh(&xdr);
4990 if (status)
4991 goto out;
4992 status = decode_commit(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004993 if (status)
4994 goto out;
4995 decode_getfattr(&xdr, res->fattr, res->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996out:
4997 return status;
4998}
4999
5000/*
5001 * FSINFO request
5002 */
Benny Halevy3dda5e42009-04-01 09:21:57 -04005003static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, __be32 *p,
5004 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005{
5006 struct xdr_stream xdr;
5007 struct compound_hdr hdr;
5008 int status;
5009
5010 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5011 status = decode_compound_hdr(&xdr, &hdr);
5012 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005013 status = decode_sequence(&xdr, &res->seq_res, req);
5014 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 status = decode_putfh(&xdr);
5016 if (!status)
Benny Halevy3dda5e42009-04-01 09:21:57 -04005017 status = decode_fsinfo(&xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 return status;
5019}
5020
5021/*
5022 * PATHCONF request
5023 */
Benny Halevyd45b2982009-04-01 09:21:58 -04005024static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, __be32 *p,
5025 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026{
5027 struct xdr_stream xdr;
5028 struct compound_hdr hdr;
5029 int status;
5030
5031 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5032 status = decode_compound_hdr(&xdr, &hdr);
5033 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005034 status = decode_sequence(&xdr, &res->seq_res, req);
5035 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 status = decode_putfh(&xdr);
5037 if (!status)
Benny Halevyd45b2982009-04-01 09:21:58 -04005038 status = decode_pathconf(&xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 return status;
5040}
5041
5042/*
5043 * STATFS request
5044 */
Benny Halevy24ad1482009-04-01 09:21:56 -04005045static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p,
5046 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047{
5048 struct xdr_stream xdr;
5049 struct compound_hdr hdr;
5050 int status;
5051
5052 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5053 status = decode_compound_hdr(&xdr, &hdr);
5054 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005055 status = decode_sequence(&xdr, &res->seq_res, req);
5056 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 status = decode_putfh(&xdr);
5058 if (!status)
Benny Halevy24ad1482009-04-01 09:21:56 -04005059 status = decode_statfs(&xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 return status;
5061}
5062
5063/*
5064 * GETATTR_BITMAP request
5065 */
Al Viro8687b632006-10-19 23:28:48 -07005066static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req, __be32 *p, struct nfs4_server_caps_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067{
5068 struct xdr_stream xdr;
5069 struct compound_hdr hdr;
5070 int status;
5071
5072 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005073 status = decode_compound_hdr(&xdr, &hdr);
5074 if (status)
5075 goto out;
5076 status = decode_sequence(&xdr, &res->seq_res, req);
5077 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 goto out;
5079 if ((status = decode_putfh(&xdr)) != 0)
5080 goto out;
5081 status = decode_server_caps(&xdr, res);
5082out:
5083 return status;
5084}
5085
5086/*
5087 * Decode RENEW response
5088 */
Al Viro8687b632006-10-19 23:28:48 -07005089static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090{
5091 struct xdr_stream xdr;
5092 struct compound_hdr hdr;
5093 int status;
5094
5095 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5096 status = decode_compound_hdr(&xdr, &hdr);
5097 if (!status)
5098 status = decode_renew(&xdr);
5099 return status;
5100}
5101
5102/*
5103 * a SETCLIENTID request
5104 */
Al Viro8687b632006-10-19 23:28:48 -07005105static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req, __be32 *p,
David Howellsadfa6f92006-08-22 20:06:08 -04005106 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107{
5108 struct xdr_stream xdr;
5109 struct compound_hdr hdr;
5110 int status;
5111
5112 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5113 status = decode_compound_hdr(&xdr, &hdr);
5114 if (!status)
5115 status = decode_setclientid(&xdr, clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 return status;
5117}
5118
5119/*
5120 * a SETCLIENTID_CONFIRM request
5121 */
Al Viro8687b632006-10-19 23:28:48 -07005122static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123{
5124 struct xdr_stream xdr;
5125 struct compound_hdr hdr;
5126 int status;
5127
5128 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5129 status = decode_compound_hdr(&xdr, &hdr);
5130 if (!status)
5131 status = decode_setclientid_confirm(&xdr);
5132 if (!status)
5133 status = decode_putrootfh(&xdr);
5134 if (!status)
5135 status = decode_fsinfo(&xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 return status;
5137}
5138
5139/*
5140 * DELEGRETURN request
5141 */
Al Viro8687b632006-10-19 23:28:48 -07005142static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143{
5144 struct xdr_stream xdr;
5145 struct compound_hdr hdr;
5146 int status;
5147
5148 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5149 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005150 if (status)
5151 goto out;
5152 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5153 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01005154 goto out;
5155 status = decode_putfh(&xdr);
5156 if (status != 0)
5157 goto out;
5158 status = decode_delegreturn(&xdr);
5159 decode_getfattr(&xdr, res->fattr, res->server);
5160out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 return status;
5162}
5163
Trond Myklebust683b57b2006-06-09 09:34:22 -04005164/*
5165 * FS_LOCATIONS request
5166 */
Benny Halevy22958462009-04-01 09:22:02 -04005167static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p,
5168 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005169{
5170 struct xdr_stream xdr;
5171 struct compound_hdr hdr;
5172 int status;
5173
5174 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5175 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005176 if (status)
5177 goto out;
5178 status = decode_sequence(&xdr, &res->seq_res, req);
5179 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005180 goto out;
5181 if ((status = decode_putfh(&xdr)) != 0)
5182 goto out;
5183 if ((status = decode_lookup(&xdr)) != 0)
5184 goto out;
5185 xdr_enter_page(&xdr, PAGE_SIZE);
Benny Halevy22958462009-04-01 09:22:02 -04005186 status = decode_getfattr(&xdr, &res->fs_locations->fattr,
5187 res->fs_locations->server);
Trond Myklebust683b57b2006-06-09 09:34:22 -04005188out:
5189 return status;
5190}
5191
Benny Halevy99fe60d2009-04-01 09:22:29 -04005192#if defined(CONFIG_NFS_V4_1)
5193/*
5194 * EXCHANGE_ID request
5195 */
5196static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp, uint32_t *p,
5197 void *res)
5198{
5199 struct xdr_stream xdr;
5200 struct compound_hdr hdr;
5201 int status;
5202
5203 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5204 status = decode_compound_hdr(&xdr, &hdr);
5205 if (!status)
5206 status = decode_exchange_id(&xdr, res);
5207 return status;
5208}
Andy Adamson2050f0c2009-04-01 09:22:30 -04005209
5210/*
Andy Adamsonfc931582009-04-01 09:22:31 -04005211 * a CREATE_SESSION request
5212 */
5213static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp, uint32_t *p,
5214 struct nfs41_create_session_res *res)
5215{
5216 struct xdr_stream xdr;
5217 struct compound_hdr hdr;
5218 int status;
5219
5220 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5221 status = decode_compound_hdr(&xdr, &hdr);
5222 if (!status)
5223 status = decode_create_session(&xdr, res);
5224 return status;
5225}
5226
5227/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005228 * a DESTROY_SESSION request
5229 */
5230static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp, uint32_t *p,
5231 void *dummy)
5232{
5233 struct xdr_stream xdr;
5234 struct compound_hdr hdr;
5235 int status;
5236
5237 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5238 status = decode_compound_hdr(&xdr, &hdr);
5239 if (!status)
5240 status = decode_destroy_session(&xdr, dummy);
5241 return status;
5242}
5243
5244/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005245 * a SEQUENCE request
5246 */
5247static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp, uint32_t *p,
5248 struct nfs4_sequence_res *res)
5249{
5250 struct xdr_stream xdr;
5251 struct compound_hdr hdr;
5252 int status;
5253
5254 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5255 status = decode_compound_hdr(&xdr, &hdr);
5256 if (!status)
5257 status = decode_sequence(&xdr, res, rqstp);
5258 return status;
5259}
5260
5261/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04005262 * a GET_LEASE_TIME request
5263 */
5264static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp, uint32_t *p,
5265 struct nfs4_get_lease_time_res *res)
5266{
5267 struct xdr_stream xdr;
5268 struct compound_hdr hdr;
5269 int status;
5270
5271 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5272 status = decode_compound_hdr(&xdr, &hdr);
5273 if (!status)
5274 status = decode_sequence(&xdr, &res->lr_seq_res, rqstp);
5275 if (!status)
5276 status = decode_putrootfh(&xdr);
5277 if (!status)
5278 status = decode_fsinfo(&xdr, res->lr_fsinfo);
5279 return status;
5280}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005281#endif /* CONFIG_NFS_V4_1 */
5282
Al Viro0dbb4c62006-10-19 23:28:49 -07005283__be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284{
5285 uint32_t bitmap[2] = {0};
5286 uint32_t len;
5287
5288 if (!*p++) {
5289 if (!*p)
5290 return ERR_PTR(-EAGAIN);
5291 entry->eof = 1;
5292 return ERR_PTR(-EBADCOOKIE);
5293 }
5294
5295 entry->prev_cookie = entry->cookie;
5296 p = xdr_decode_hyper(p, &entry->cookie);
5297 entry->len = ntohl(*p++);
5298 entry->name = (const char *) p;
5299 p += XDR_QUADLEN(entry->len);
5300
5301 /*
5302 * In case the server doesn't return an inode number,
5303 * we fake one here. (We don't use inode number 0,
5304 * since glibc seems to choke on it...)
5305 */
5306 entry->ino = 1;
5307
5308 len = ntohl(*p++); /* bitmap length */
5309 if (len-- > 0) {
5310 bitmap[0] = ntohl(*p++);
5311 if (len-- > 0) {
5312 bitmap[1] = ntohl(*p++);
5313 p += len;
5314 }
5315 }
5316 len = XDR_QUADLEN(ntohl(*p++)); /* attribute buffer length */
5317 if (len > 0) {
Manoj Naik97d312d2005-06-22 17:16:39 +00005318 if (bitmap[0] & FATTR4_WORD0_RDATTR_ERROR) {
5319 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
5320 /* Ignore the return value of rdattr_error for now */
5321 p++;
5322 len--;
5323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 if (bitmap[0] == 0 && bitmap[1] == FATTR4_WORD1_MOUNTED_ON_FILEID)
5325 xdr_decode_hyper(p, &entry->ino);
5326 else if (bitmap[0] == FATTR4_WORD0_FILEID)
5327 xdr_decode_hyper(p, &entry->ino);
5328 p += len;
5329 }
5330
5331 entry->eof = !p[0] && p[1];
5332 return p;
5333}
5334
5335/*
5336 * We need to translate between nfs status return values and
5337 * the local errno values which may not be the same.
5338 */
5339static struct {
5340 int stat;
5341 int errno;
5342} nfs_errtbl[] = {
5343 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03005344 { NFS4ERR_PERM, -EPERM },
5345 { NFS4ERR_NOENT, -ENOENT },
5346 { NFS4ERR_IO, -errno_NFSERR_IO},
5347 { NFS4ERR_NXIO, -ENXIO },
5348 { NFS4ERR_ACCESS, -EACCES },
5349 { NFS4ERR_EXIST, -EEXIST },
5350 { NFS4ERR_XDEV, -EXDEV },
5351 { NFS4ERR_NOTDIR, -ENOTDIR },
5352 { NFS4ERR_ISDIR, -EISDIR },
5353 { NFS4ERR_INVAL, -EINVAL },
5354 { NFS4ERR_FBIG, -EFBIG },
5355 { NFS4ERR_NOSPC, -ENOSPC },
5356 { NFS4ERR_ROFS, -EROFS },
5357 { NFS4ERR_MLINK, -EMLINK },
5358 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
5359 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
5360 { NFS4ERR_DQUOT, -EDQUOT },
5361 { NFS4ERR_STALE, -ESTALE },
5362 { NFS4ERR_BADHANDLE, -EBADHANDLE },
5363 { NFS4ERR_BADOWNER, -EINVAL },
5364 { NFS4ERR_BADNAME, -EINVAL },
5365 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
5366 { NFS4ERR_NOTSUPP, -ENOTSUPP },
5367 { NFS4ERR_TOOSMALL, -ETOOSMALL },
5368 { NFS4ERR_SERVERFAULT, -ESERVERFAULT },
5369 { NFS4ERR_BADTYPE, -EBADTYPE },
5370 { NFS4ERR_LOCKED, -EAGAIN },
5371 { NFS4ERR_RESOURCE, -EREMOTEIO },
5372 { NFS4ERR_SYMLINK, -ELOOP },
5373 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
5374 { NFS4ERR_DEADLOCK, -EDEADLK },
5375 { NFS4ERR_WRONGSEC, -EPERM }, /* FIXME: this needs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 * to be handled by a
5377 * middle-layer.
5378 */
Benny Halevy856dff32008-03-31 17:39:06 +03005379 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380};
5381
5382/*
5383 * Convert an NFS error code to a local one.
5384 * This one is used jointly by NFSv2 and NFSv3.
5385 */
5386static int
David Howells0a8ea432006-08-22 20:06:08 -04005387nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388{
5389 int i;
5390 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
5391 if (nfs_errtbl[i].stat == stat)
5392 return nfs_errtbl[i].errno;
5393 }
5394 if (stat <= 10000 || stat > 10100) {
5395 /* The server is looney tunes. */
Benny Halevy856dff32008-03-31 17:39:06 +03005396 return -ESERVERFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 }
5398 /* If we cannot translate the error, the recovery routines should
5399 * handle it.
5400 * Note: remaining NFSv4 error codes have values > 10000, so should
5401 * not conflict with native Linux error codes.
5402 */
Benny Halevy856dff32008-03-31 17:39:06 +03005403 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404}
5405
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406#define PROC(proc, argtype, restype) \
5407[NFSPROC4_CLNT_##proc] = { \
5408 .p_proc = NFSPROC4_COMPOUND, \
5409 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
5410 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04005411 .p_arglen = NFS4_##argtype##_sz, \
5412 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05005413 .p_statidx = NFSPROC4_CLNT_##proc, \
5414 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05005415}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417struct rpc_procinfo nfs4_procedures[] = {
5418 PROC(READ, enc_read, dec_read),
5419 PROC(WRITE, enc_write, dec_write),
5420 PROC(COMMIT, enc_commit, dec_commit),
5421 PROC(OPEN, enc_open, dec_open),
5422 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
5423 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
5424 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
5425 PROC(CLOSE, enc_close, dec_close),
5426 PROC(SETATTR, enc_setattr, dec_setattr),
5427 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
5428 PROC(RENEW, enc_renew, dec_renew),
5429 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
5430 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
5431 PROC(LOCK, enc_lock, dec_lock),
5432 PROC(LOCKT, enc_lockt, dec_lockt),
5433 PROC(LOCKU, enc_locku, dec_locku),
5434 PROC(ACCESS, enc_access, dec_access),
5435 PROC(GETATTR, enc_getattr, dec_getattr),
5436 PROC(LOOKUP, enc_lookup, dec_lookup),
5437 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
5438 PROC(REMOVE, enc_remove, dec_remove),
5439 PROC(RENAME, enc_rename, dec_rename),
5440 PROC(LINK, enc_link, dec_link),
5441 PROC(SYMLINK, enc_symlink, dec_symlink),
5442 PROC(CREATE, enc_create, dec_create),
5443 PROC(PATHCONF, enc_pathconf, dec_pathconf),
5444 PROC(STATFS, enc_statfs, dec_statfs),
5445 PROC(READLINK, enc_readlink, dec_readlink),
5446 PROC(READDIR, enc_readdir, dec_readdir),
5447 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
5448 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
J. Bruce Fields029d1052005-06-22 17:16:22 +00005449 PROC(GETACL, enc_getacl, dec_getacl),
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005450 PROC(SETACL, enc_setacl, dec_setacl),
Trond Myklebust683b57b2006-06-09 09:34:22 -04005451 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005452#if defined(CONFIG_NFS_V4_1)
5453 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
Andy Adamsonfc931582009-04-01 09:22:31 -04005454 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005455 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005456 PROC(SEQUENCE, enc_sequence, dec_sequence),
Andy Adamson2050f0c2009-04-01 09:22:30 -04005457 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005458#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459};
5460
5461struct rpc_version nfs_version4 = {
5462 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08005463 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 .procs = nfs4_procedures
5465};
5466
5467/*
5468 * Local variables:
5469 * c-basic-offset: 8
5470 * End:
5471 */