blob: 4d338be492cb28f6e91ae9eecfe30af64555154d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/errno.h>
43#include <linux/string.h>
44#include <linux/in.h>
45#include <linux/pagemap.h>
46#include <linux/proc_fs.h>
47#include <linux/kdev_t.h>
48#include <linux/sunrpc/clnt.h>
Alexandros Batsakis2449ea22009-12-05 13:36:55 -050049#include <linux/sunrpc/msg_prot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#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"
Alexandros Batsakis4882ef72009-12-05 13:30:21 -050055#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define NFSDBG_FACILITY NFSDBG_XDR
58
59/* Mapping from NFS error code to "errno" error code. */
60#define errno_NFSERR_IO EIO
61
David Howells0a8ea432006-08-22 20:06:08 -040062static int nfs4_stat_to_errno(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/* NFSv4 COMPOUND tags are only wanted for debugging purposes */
65#ifdef DEBUG
66#define NFS4_MAXTAGLEN 20
67#else
68#define NFS4_MAXTAGLEN 0
69#endif
70
Andy Adamson6c0195a2008-12-23 16:06:15 -050071/* lock,open owner id:
Trond Myklebust9f958ab2007-07-02 13:58:33 -040072 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
Trond Myklebust9f958ab2007-07-02 13:58:33 -040074#define open_owner_id_maxsz (1 + 4)
75#define lock_owner_id_maxsz (1 + 4)
Trond Myklebust9104a552007-07-17 21:52:42 -040076#define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
78#define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
79#define op_encode_hdr_maxsz (1)
80#define op_decode_hdr_maxsz (2)
Trond Myklebust9104a552007-07-17 21:52:42 -040081#define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
82#define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
83#define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
84#define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
86 (NFS4_FHSIZE >> 2))
87#define decode_putfh_maxsz (op_decode_hdr_maxsz)
88#define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
89#define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
90#define encode_getfh_maxsz (op_encode_hdr_maxsz)
91#define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
92 ((3+NFS4_FHSIZE) >> 2))
J. Bruce Fields96928202005-06-22 17:16:22 +000093#define nfs4_fattr_bitmap_maxsz 3
94#define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
96#define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
Trond Myklebustbd625ba2007-07-08 18:38:23 -040097#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
98#define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
J. Bruce Fields96928202005-06-22 17:16:22 +000099/* This is based on getfattr, which uses the most attributes: */
100#define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
Trond Myklebustbd625ba2007-07-08 18:38:23 -0400101 3 + 3 + 3 + nfs4_owner_maxsz + nfs4_group_maxsz))
J. Bruce Fields96928202005-06-22 17:16:22 +0000102#define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
103 nfs4_fattr_value_maxsz)
104#define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400105#define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
106 1 + 2 + 1 + \
107 nfs4_owner_maxsz + \
108 nfs4_group_maxsz + \
109 4 + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define encode_savefh_maxsz (op_encode_hdr_maxsz)
111#define decode_savefh_maxsz (op_decode_hdr_maxsz)
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400112#define encode_restorefh_maxsz (op_encode_hdr_maxsz)
113#define decode_restorefh_maxsz (op_decode_hdr_maxsz)
Fred Isaman2f42b5d2008-03-13 15:26:30 +0200114#define encode_fsinfo_maxsz (encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define decode_fsinfo_maxsz (op_decode_hdr_maxsz + 11)
116#define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
117#define decode_renew_maxsz (op_decode_hdr_maxsz)
118#define encode_setclientid_maxsz \
119 (op_encode_hdr_maxsz + \
Chuck Levercc38bac2007-12-10 14:56:54 -0500120 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
121 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
122 1 /* sc_prog */ + \
123 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
124 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
125 1) /* sc_cb_ident */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define decode_setclientid_maxsz \
127 (op_decode_hdr_maxsz + \
128 2 + \
129 1024) /* large value for CLID_INUSE */
130#define encode_setclientid_confirm_maxsz \
131 (op_encode_hdr_maxsz + \
132 3 + (NFS4_VERIFIER_SIZE >> 2))
133#define decode_setclientid_confirm_maxsz \
134 (op_decode_hdr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400135#define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
136#define decode_lookup_maxsz (op_decode_hdr_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400137#define encode_share_access_maxsz \
138 (2)
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500139#define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400140#define encode_opentype_maxsz (1 + encode_createmode_maxsz)
141#define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
142#define encode_open_maxsz (op_encode_hdr_maxsz + \
143 2 + encode_share_access_maxsz + 2 + \
144 open_owner_id_maxsz + \
145 encode_opentype_maxsz + \
146 encode_claim_null_maxsz)
147#define decode_ace_maxsz (3 + nfs4_owner_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400148#define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400149 decode_ace_maxsz)
150#define decode_change_info_maxsz (5)
151#define decode_open_maxsz (op_decode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400152 decode_stateid_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400153 decode_change_info_maxsz + 1 + \
154 nfs4_fattr_bitmap_maxsz + \
155 decode_delegation_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400156#define encode_open_confirm_maxsz \
157 (op_encode_hdr_maxsz + \
158 encode_stateid_maxsz + 1)
159#define decode_open_confirm_maxsz \
160 (op_decode_hdr_maxsz + \
161 decode_stateid_maxsz)
162#define encode_open_downgrade_maxsz \
163 (op_encode_hdr_maxsz + \
164 encode_stateid_maxsz + 1 + \
165 encode_share_access_maxsz)
166#define decode_open_downgrade_maxsz \
167 (op_decode_hdr_maxsz + \
168 decode_stateid_maxsz)
169#define encode_close_maxsz (op_encode_hdr_maxsz + \
170 1 + encode_stateid_maxsz)
171#define decode_close_maxsz (op_decode_hdr_maxsz + \
172 decode_stateid_maxsz)
173#define encode_setattr_maxsz (op_encode_hdr_maxsz + \
174 encode_stateid_maxsz + \
175 encode_attrs_maxsz)
176#define decode_setattr_maxsz (op_decode_hdr_maxsz + \
177 nfs4_fattr_bitmap_maxsz)
178#define encode_read_maxsz (op_encode_hdr_maxsz + \
179 encode_stateid_maxsz + 3)
180#define decode_read_maxsz (op_decode_hdr_maxsz + 2)
181#define encode_readdir_maxsz (op_encode_hdr_maxsz + \
182 2 + encode_verifier_maxsz + 5)
183#define decode_readdir_maxsz (op_decode_hdr_maxsz + \
184 decode_verifier_maxsz)
185#define encode_readlink_maxsz (op_encode_hdr_maxsz)
186#define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
187#define encode_write_maxsz (op_encode_hdr_maxsz + \
188 encode_stateid_maxsz + 4)
189#define decode_write_maxsz (op_decode_hdr_maxsz + \
190 2 + decode_verifier_maxsz)
191#define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
192#define decode_commit_maxsz (op_decode_hdr_maxsz + \
193 decode_verifier_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#define encode_remove_maxsz (op_encode_hdr_maxsz + \
195 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400196#define decode_remove_maxsz (op_decode_hdr_maxsz + \
197 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define encode_rename_maxsz (op_encode_hdr_maxsz + \
199 2 * nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400200#define decode_rename_maxsz (op_decode_hdr_maxsz + \
201 decode_change_info_maxsz + \
202 decode_change_info_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#define encode_link_maxsz (op_encode_hdr_maxsz + \
204 nfs4_name_maxsz)
Benny Halevy6ce18392009-04-01 09:22:06 -0400205#define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400206#define encode_lock_maxsz (op_encode_hdr_maxsz + \
207 7 + \
208 1 + encode_stateid_maxsz + 8)
209#define decode_lock_denied_maxsz \
210 (8 + decode_lockowner_maxsz)
211#define decode_lock_maxsz (op_decode_hdr_maxsz + \
212 decode_lock_denied_maxsz)
213#define encode_lockt_maxsz (op_encode_hdr_maxsz + 12)
214#define decode_lockt_maxsz (op_decode_hdr_maxsz + \
215 decode_lock_denied_maxsz)
216#define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
217 encode_stateid_maxsz + \
218 4)
219#define decode_locku_maxsz (op_decode_hdr_maxsz + \
220 decode_stateid_maxsz)
221#define encode_access_maxsz (op_encode_hdr_maxsz + 1)
222#define decode_access_maxsz (op_decode_hdr_maxsz + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#define encode_symlink_maxsz (op_encode_hdr_maxsz + \
224 1 + nfs4_name_maxsz + \
Chuck Lever94a6d752006-08-22 20:06:23 -0400225 1 + \
J. Bruce Fields96928202005-06-22 17:16:22 +0000226 nfs4_fattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227#define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
228#define encode_create_maxsz (op_encode_hdr_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400229 1 + 2 + nfs4_name_maxsz + \
230 encode_attrs_maxsz)
Trond Myklebust2cebf822007-07-02 13:57:28 -0400231#define decode_create_maxsz (op_decode_hdr_maxsz + \
232 decode_change_info_maxsz + \
233 nfs4_fattr_bitmap_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400234#define encode_statfs_maxsz (encode_getattr_maxsz)
235#define decode_statfs_maxsz (decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
237#define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400238#define encode_getacl_maxsz (encode_getattr_maxsz)
239#define decode_getacl_maxsz (op_decode_hdr_maxsz + \
240 nfs4_fattr_bitmap_maxsz + 1)
241#define encode_setacl_maxsz (op_encode_hdr_maxsz + \
242 encode_stateid_maxsz + 3)
243#define decode_setacl_maxsz (decode_setattr_maxsz)
Trond Myklebuste6889622007-07-02 13:58:30 -0400244#define encode_fs_locations_maxsz \
245 (encode_getattr_maxsz)
246#define decode_fs_locations_maxsz \
247 (0)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400248
249#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc931582009-04-01 09:22:31 -0400250#define NFS4_MAX_MACHINE_NAME_LEN (64)
251
Benny Halevy99fe60d2009-04-01 09:22:29 -0400252#define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
253 encode_verifier_maxsz + \
254 1 /* co_ownerid.len */ + \
255 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
256 1 /* flags */ + \
257 1 /* spa_how */ + \
258 0 /* SP4_NONE (for now) */ + \
259 1 /* zero implemetation id array */)
260#define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
261 2 /* eir_clientid */ + \
262 1 /* eir_sequenceid */ + \
263 1 /* eir_flags */ + \
264 1 /* spr_how */ + \
265 0 /* SP4_NONE (for now) */ + \
266 2 /* eir_server_owner.so_minor_id */ + \
267 /* eir_server_owner.so_major_id<> */ \
268 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
269 /* eir_server_scope<> */ \
270 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
271 1 /* eir_server_impl_id array length */ + \
272 0 /* ignored eir_server_impl_id contents */)
Andy Adamsonfc931582009-04-01 09:22:31 -0400273#define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
274#define decode_channel_attrs_maxsz (6 + \
275 1 /* ca_rdma_ird.len */ + \
276 1 /* ca_rdma_ird */)
277#define encode_create_session_maxsz (op_encode_hdr_maxsz + \
278 2 /* csa_clientid */ + \
279 1 /* csa_sequence */ + \
280 1 /* csa_flags */ + \
281 encode_channel_attrs_maxsz + \
282 encode_channel_attrs_maxsz + \
283 1 /* csa_cb_program */ + \
284 1 /* csa_sec_parms.len (1) */ + \
285 1 /* cb_secflavor (AUTH_SYS) */ + \
286 1 /* stamp */ + \
287 1 /* machinename.len */ + \
288 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
289 1 /* uid */ + \
290 1 /* gid */ + \
291 1 /* gids.len (0) */)
292#define decode_create_session_maxsz (op_decode_hdr_maxsz + \
293 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
294 1 /* csr_sequence */ + \
295 1 /* csr_flags */ + \
296 decode_channel_attrs_maxsz + \
297 decode_channel_attrs_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400298#define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
299#define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400300#define encode_sequence_maxsz (op_encode_hdr_maxsz + \
301 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
302#define decode_sequence_maxsz (op_decode_hdr_maxsz + \
303 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500304#define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
305#define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400306#else /* CONFIG_NFS_V4_1 */
307#define encode_sequence_maxsz 0
308#define decode_sequence_maxsz 0
309#endif /* CONFIG_NFS_V4_1 */
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
312#define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
313#define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400314 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400316 encode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400318 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400320 decode_read_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400322 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400324 encode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400326 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400328 decode_readlink_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400330 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400332 encode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400334 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400336 decode_readdir_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400338 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400340 encode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400341 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342#define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400343 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400345 decode_write_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400346 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347#define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400348 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400350 encode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400351 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400353 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400355 decode_commit_maxsz + \
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400356 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400358 encode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400359 encode_putfh_maxsz + \
360 encode_savefh_maxsz + \
361 encode_open_maxsz + \
362 encode_getfh_maxsz + \
363 encode_getattr_maxsz + \
364 encode_restorefh_maxsz + \
365 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400367 decode_sequence_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400368 decode_putfh_maxsz + \
369 decode_savefh_maxsz + \
370 decode_open_maxsz + \
371 decode_getfh_maxsz + \
372 decode_getattr_maxsz + \
373 decode_restorefh_maxsz + \
374 decode_getattr_maxsz)
Trond Myklebust9104a552007-07-17 21:52:42 -0400375#define NFS4_enc_open_confirm_sz \
376 (compound_encode_hdr_maxsz + \
377 encode_putfh_maxsz + \
378 encode_open_confirm_maxsz)
379#define NFS4_dec_open_confirm_sz \
380 (compound_decode_hdr_maxsz + \
381 decode_putfh_maxsz + \
382 decode_open_confirm_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400384 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 encode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400386 encode_open_maxsz + \
387 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400389 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 decode_putfh_maxsz + \
Trond Myklebust2cebf822007-07-02 13:57:28 -0400391 decode_open_maxsz + \
392 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#define NFS4_enc_open_downgrade_sz \
394 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400395 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400396 encode_putfh_maxsz + \
397 encode_open_downgrade_maxsz + \
398 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399#define NFS4_dec_open_downgrade_sz \
400 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400401 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400402 decode_putfh_maxsz + \
403 decode_open_downgrade_maxsz + \
404 decode_getattr_maxsz)
405#define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400406 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400407 encode_putfh_maxsz + \
408 encode_close_maxsz + \
409 encode_getattr_maxsz)
410#define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400411 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400412 decode_putfh_maxsz + \
413 decode_close_maxsz + \
414 decode_getattr_maxsz)
415#define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400416 encode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400417 encode_putfh_maxsz + \
418 encode_setattr_maxsz + \
419 encode_getattr_maxsz)
420#define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400421 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400422 decode_putfh_maxsz + \
423 decode_setattr_maxsz + \
424 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400426 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 encode_putfh_maxsz + \
428 encode_fsinfo_maxsz)
429#define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400430 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 decode_putfh_maxsz + \
432 decode_fsinfo_maxsz)
433#define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
434 encode_renew_maxsz)
435#define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
436 decode_renew_maxsz)
437#define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
438 encode_setclientid_maxsz)
439#define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
440 decode_setclientid_maxsz)
441#define NFS4_enc_setclientid_confirm_sz \
442 (compound_encode_hdr_maxsz + \
443 encode_setclientid_confirm_maxsz + \
444 encode_putrootfh_maxsz + \
445 encode_fsinfo_maxsz)
446#define NFS4_dec_setclientid_confirm_sz \
447 (compound_decode_hdr_maxsz + \
448 decode_setclientid_confirm_maxsz + \
449 decode_putrootfh_maxsz + \
450 decode_fsinfo_maxsz)
451#define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400452 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400454 encode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455#define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400456 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400458 decode_lock_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400460 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400462 encode_lockt_maxsz)
463#define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400464 decode_sequence_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400465 decode_putfh_maxsz + \
466 decode_lockt_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400468 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400470 encode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471#define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400472 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400474 decode_locku_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475#define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400476 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 encode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400478 encode_access_maxsz + \
479 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400481 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 decode_putfh_maxsz + \
Trond Myklebust76b32992007-08-10 17:45:11 -0400483 decode_access_maxsz + \
484 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485#define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400486 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 encode_putfh_maxsz + \
488 encode_getattr_maxsz)
489#define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400490 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 decode_putfh_maxsz + \
492 decode_getattr_maxsz)
493#define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400494 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 encode_putfh_maxsz + \
496 encode_lookup_maxsz + \
497 encode_getattr_maxsz + \
498 encode_getfh_maxsz)
499#define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400500 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400502 decode_lookup_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 decode_getattr_maxsz + \
504 decode_getfh_maxsz)
505#define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400506 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 encode_putrootfh_maxsz + \
508 encode_getattr_maxsz + \
509 encode_getfh_maxsz)
510#define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400511 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 decode_putrootfh_maxsz + \
513 decode_getattr_maxsz + \
514 decode_getfh_maxsz)
515#define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400516 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 encode_putfh_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400518 encode_remove_maxsz + \
519 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520#define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400521 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 decode_putfh_maxsz + \
Benny Halevy6ce18392009-04-01 09:22:06 -0400523 decode_remove_maxsz + \
Trond Myklebust16e42952005-10-27 22:12:44 -0400524 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525#define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400526 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 encode_putfh_maxsz + \
528 encode_savefh_maxsz + \
529 encode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400530 encode_rename_maxsz + \
531 encode_getattr_maxsz + \
532 encode_restorefh_maxsz + \
533 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400535 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 decode_putfh_maxsz + \
537 decode_savefh_maxsz + \
538 decode_putfh_maxsz + \
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400539 decode_rename_maxsz + \
540 decode_getattr_maxsz + \
541 decode_restorefh_maxsz + \
542 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400544 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 encode_putfh_maxsz + \
546 encode_savefh_maxsz + \
547 encode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400548 encode_link_maxsz + \
549 decode_getattr_maxsz + \
550 encode_restorefh_maxsz + \
551 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552#define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400553 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 decode_putfh_maxsz + \
555 decode_savefh_maxsz + \
556 decode_putfh_maxsz + \
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400557 decode_link_maxsz + \
558 decode_getattr_maxsz + \
559 decode_restorefh_maxsz + \
560 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400562 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 encode_putfh_maxsz + \
564 encode_symlink_maxsz + \
565 encode_getattr_maxsz + \
566 encode_getfh_maxsz)
567#define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400568 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 decode_putfh_maxsz + \
570 decode_symlink_maxsz + \
571 decode_getattr_maxsz + \
572 decode_getfh_maxsz)
573#define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400574 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 encode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400576 encode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 encode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400578 encode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 encode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400580 encode_restorefh_maxsz + \
581 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400583 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 decode_putfh_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400585 decode_savefh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 decode_create_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400587 decode_getfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 decode_getattr_maxsz + \
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400589 decode_restorefh_maxsz + \
590 decode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591#define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400592 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 encode_putfh_maxsz + \
594 encode_getattr_maxsz)
595#define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400596 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 decode_putfh_maxsz + \
598 decode_getattr_maxsz)
599#define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400600 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400602 encode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603#define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400604 decode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400606 decode_statfs_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400608 encode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800609 encode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 encode_getattr_maxsz)
611#define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400612 decode_sequence_maxsz + \
Trond Myklebustab91f262007-02-02 14:47:17 -0800613 decode_putfh_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 decode_getattr_maxsz)
615#define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400616 encode_sequence_maxsz + \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 encode_putfh_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100618 encode_delegreturn_maxsz + \
619 encode_getattr_maxsz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400621 decode_sequence_maxsz + \
Trond Myklebustfa178f22006-01-03 09:55:38 +0100622 decode_delegreturn_maxsz + \
623 decode_getattr_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000624#define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400625 encode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000626 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400627 encode_getacl_maxsz)
J. Bruce Fields029d1052005-06-22 17:16:22 +0000628#define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400629 decode_sequence_maxsz + \
J. Bruce Fields029d1052005-06-22 17:16:22 +0000630 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400631 decode_getacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000632#define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400633 encode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000634 encode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400635 encode_setacl_maxsz)
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000636#define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400637 decode_sequence_maxsz + \
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000638 decode_putfh_maxsz + \
Trond Myklebust9104a552007-07-17 21:52:42 -0400639 decode_setacl_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400640#define NFS4_enc_fs_locations_sz \
641 (compound_encode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400642 encode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400643 encode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400644 encode_lookup_maxsz + \
645 encode_fs_locations_maxsz)
Trond Myklebust683b57b2006-06-09 09:34:22 -0400646#define NFS4_dec_fs_locations_sz \
647 (compound_decode_hdr_maxsz + \
Andy Adamson9b7b9fc2009-04-01 09:22:11 -0400648 decode_sequence_maxsz + \
Trond Myklebust683b57b2006-06-09 09:34:22 -0400649 decode_putfh_maxsz + \
Trond Myklebuste6889622007-07-02 13:58:30 -0400650 decode_lookup_maxsz + \
651 decode_fs_locations_maxsz)
Benny Halevy99fe60d2009-04-01 09:22:29 -0400652#if defined(CONFIG_NFS_V4_1)
653#define NFS4_enc_exchange_id_sz \
654 (compound_encode_hdr_maxsz + \
655 encode_exchange_id_maxsz)
656#define NFS4_dec_exchange_id_sz \
657 (compound_decode_hdr_maxsz + \
658 decode_exchange_id_maxsz)
Andy Adamsonfc931582009-04-01 09:22:31 -0400659#define NFS4_enc_create_session_sz \
660 (compound_encode_hdr_maxsz + \
661 encode_create_session_maxsz)
662#define NFS4_dec_create_session_sz \
663 (compound_decode_hdr_maxsz + \
664 decode_create_session_maxsz)
Andy Adamson0f3e66c2009-04-01 09:22:34 -0400665#define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
666 encode_destroy_session_maxsz)
667#define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
668 decode_destroy_session_maxsz)
Andy Adamsonfc01cea2009-04-01 09:22:36 -0400669#define NFS4_enc_sequence_sz \
670 (compound_decode_hdr_maxsz + \
671 encode_sequence_maxsz)
672#define NFS4_dec_sequence_sz \
673 (compound_decode_hdr_maxsz + \
674 decode_sequence_maxsz)
Andy Adamson2050f0c2009-04-01 09:22:30 -0400675#define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
676 encode_sequence_maxsz + \
677 encode_putrootfh_maxsz + \
678 encode_fsinfo_maxsz)
679#define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
680 decode_sequence_maxsz + \
681 decode_putrootfh_maxsz + \
682 decode_fsinfo_maxsz)
Ricardo Labiaga180197532009-12-05 16:08:40 -0500683#define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
684 encode_sequence_maxsz + \
685 encode_reclaim_complete_maxsz)
686#define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
687 decode_sequence_maxsz + \
688 decode_reclaim_complete_maxsz)
Alexandros Batsakis2449ea22009-12-05 13:36:55 -0500689
690const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
691 compound_encode_hdr_maxsz +
692 encode_sequence_maxsz +
693 encode_putfh_maxsz +
694 encode_getattr_maxsz) *
695 XDR_UNIT);
696
697const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
698 compound_decode_hdr_maxsz +
699 decode_sequence_maxsz +
700 decode_putfh_maxsz) *
701 XDR_UNIT);
Benny Halevy99fe60d2009-04-01 09:22:29 -0400702#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Trond Myklebustbca79472009-03-11 14:10:26 -0400704static const umode_t nfs_type2fmt[] = {
705 [NF4BAD] = 0,
706 [NF4REG] = S_IFREG,
707 [NF4DIR] = S_IFDIR,
708 [NF4BLK] = S_IFBLK,
709 [NF4CHR] = S_IFCHR,
710 [NF4LNK] = S_IFLNK,
711 [NF4SOCK] = S_IFSOCK,
712 [NF4FIFO] = S_IFIFO,
713 [NF4ATTRDIR] = 0,
714 [NF4NAMEDATTR] = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715};
716
717struct compound_hdr {
718 int32_t status;
719 uint32_t nops;
Andy Adamsond0179312008-12-23 16:06:17 -0500720 __be32 * nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 uint32_t taglen;
722 char * tag;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400723 uint32_t replen; /* expected reply words */
Benny Halevy66cc0422009-04-01 09:22:10 -0400724 u32 minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Benny Halevy13c65ce2009-08-14 17:19:25 +0300727static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
728{
729 __be32 *p = xdr_reserve_space(xdr, nbytes);
730 BUG_ON(!p);
731 return p;
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
735{
Al Viro8687b632006-10-19 23:28:48 -0700736 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 p = xdr_reserve_space(xdr, 4 + len);
739 BUG_ON(p == NULL);
740 xdr_encode_opaque(p, str, len);
741}
742
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400743static void encode_compound_hdr(struct xdr_stream *xdr,
744 struct rpc_rqst *req,
745 struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Al Viro8687b632006-10-19 23:28:48 -0700747 __be32 *p;
Benny Halevy0c4e8c12009-04-01 09:22:07 -0400748 struct rpc_auth *auth = req->rq_task->tk_msg.rpc_cred->cr_auth;
749
750 /* initialize running count of expected bytes in reply.
751 * NOTE: the replied tag SHOULD be the same is the one sent,
752 * but this is not required as a MUST for the server to do so. */
753 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag);
756 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
Benny Halevy811652b2009-08-14 17:19:34 +0300757 p = reserve_space(xdr, 4 + hdr->taglen + 8);
758 p = xdr_encode_opaque(p, hdr->tag, hdr->taglen);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300759 *p++ = cpu_to_be32(hdr->minorversion);
Andy Adamsond0179312008-12-23 16:06:17 -0500760 hdr->nops_p = p;
Benny Halevy34558512009-08-14 17:19:30 +0300761 *p = cpu_to_be32(hdr->nops);
Andy Adamsond0179312008-12-23 16:06:17 -0500762}
763
764static void encode_nops(struct compound_hdr *hdr)
765{
Andy Adamsonfc931582009-04-01 09:22:31 -0400766 BUG_ON(hdr->nops > NFS4_MAX_OPS);
Andy Adamsond0179312008-12-23 16:06:17 -0500767 *hdr->nops_p = htonl(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
771{
Al Viro8687b632006-10-19 23:28:48 -0700772 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
775 BUG_ON(p == NULL);
776 xdr_encode_opaque_fixed(p, verf->data, NFS4_VERIFIER_SIZE);
777}
778
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500779static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 char owner_name[IDMAP_NAMESZ];
782 char owner_group[IDMAP_NAMESZ];
783 int owner_namelen = 0;
784 int owner_grouplen = 0;
Al Viro8687b632006-10-19 23:28:48 -0700785 __be32 *p;
786 __be32 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int len;
788 uint32_t bmval0 = 0;
789 uint32_t bmval1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /*
792 * We reserve enough space to write the entire attribute buffer at once.
793 * In the worst-case, this would be
794 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
795 * = 36 bytes, plus any contribution from variable-length fields
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000796 * such as owner/group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
798 len = 16;
799
800 /* Sigh */
801 if (iap->ia_valid & ATTR_SIZE)
802 len += 8;
803 if (iap->ia_valid & ATTR_MODE)
804 len += 4;
805 if (iap->ia_valid & ATTR_UID) {
David Howells7539bba2006-08-22 20:06:09 -0400806 owner_namelen = nfs_map_uid_to_name(server->nfs_client, iap->ia_uid, owner_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (owner_namelen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400808 dprintk("nfs: couldn't resolve uid %d to string\n",
809 iap->ia_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /* XXX */
811 strcpy(owner_name, "nobody");
812 owner_namelen = sizeof("nobody") - 1;
813 /* goto out; */
814 }
815 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
816 }
817 if (iap->ia_valid & ATTR_GID) {
David Howells7539bba2006-08-22 20:06:09 -0400818 owner_grouplen = nfs_map_gid_to_group(server->nfs_client, iap->ia_gid, owner_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (owner_grouplen < 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400820 dprintk("nfs: couldn't resolve gid %d to string\n",
821 iap->ia_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 strcpy(owner_group, "nobody");
823 owner_grouplen = sizeof("nobody") - 1;
824 /* goto out; */
825 }
826 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
827 }
828 if (iap->ia_valid & ATTR_ATIME_SET)
829 len += 16;
830 else if (iap->ia_valid & ATTR_ATIME)
831 len += 4;
832 if (iap->ia_valid & ATTR_MTIME_SET)
833 len += 16;
834 else if (iap->ia_valid & ATTR_MTIME)
835 len += 4;
Benny Halevy13c65ce2009-08-14 17:19:25 +0300836 p = reserve_space(xdr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /*
839 * We write the bitmap length now, but leave the bitmap and the attribute
840 * buffer length to be backfilled at the end of this routine.
841 */
Benny Halevye75bc1c2009-08-14 17:18:54 +0300842 *p++ = cpu_to_be32(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 q = p;
844 p += 3;
845
846 if (iap->ia_valid & ATTR_SIZE) {
847 bmval0 |= FATTR4_WORD0_SIZE;
Benny Halevyb95be5a2009-08-14 17:19:01 +0300848 p = xdr_encode_hyper(p, iap->ia_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 if (iap->ia_valid & ATTR_MODE) {
851 bmval1 |= FATTR4_WORD1_MODE;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300852 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854 if (iap->ia_valid & ATTR_UID) {
855 bmval1 |= FATTR4_WORD1_OWNER;
Benny Halevy811652b2009-08-14 17:19:34 +0300856 p = xdr_encode_opaque(p, owner_name, owner_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 if (iap->ia_valid & ATTR_GID) {
859 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
Benny Halevy811652b2009-08-14 17:19:34 +0300860 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 if (iap->ia_valid & ATTR_ATIME_SET) {
863 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300864 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
865 *p++ = cpu_to_be32(0);
866 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
867 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 else if (iap->ia_valid & ATTR_ATIME) {
870 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300871 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873 if (iap->ia_valid & ATTR_MTIME_SET) {
874 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300875 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
876 *p++ = cpu_to_be32(0);
877 *p++ = cpu_to_be32(iap->ia_mtime.tv_sec);
878 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880 else if (iap->ia_valid & ATTR_MTIME) {
881 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
Benny Halevye75bc1c2009-08-14 17:18:54 +0300882 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Andy Adamson6c0195a2008-12-23 16:06:15 -0500884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /*
886 * Now we backfill the bitmap and the attribute buffer length.
887 */
888 if (len != ((char *)p - (char *)q) + 4) {
Chuck Leverfe82a182007-09-11 18:01:10 -0400889 printk(KERN_ERR "nfs: Attr length error, %u != %Zu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 len, ((char *)p - (char *)q) + 4);
891 BUG();
892 }
893 len = (char *)p - (char *)q - 12;
894 *q++ = htonl(bmval0);
895 *q++ = htonl(bmval1);
Benny Halevy34558512009-08-14 17:19:30 +0300896 *q = htonl(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/* out: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500901static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Al Viro8687b632006-10-19 23:28:48 -0700903 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Benny Halevy13c65ce2009-08-14 17:19:25 +0300905 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300906 *p++ = cpu_to_be32(OP_ACCESS);
Benny Halevy34558512009-08-14 17:19:30 +0300907 *p = cpu_to_be32(access);
Andy Adamsond0179312008-12-23 16:06:17 -0500908 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400909 hdr->replen += decode_access_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500912static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Al Viro8687b632006-10-19 23:28:48 -0700914 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Benny Halevy13c65ce2009-08-14 17:19:25 +0300916 p = reserve_space(xdr, 8+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300917 *p++ = cpu_to_be32(OP_CLOSE);
918 *p++ = cpu_to_be32(arg->seqid->sequence->counter);
Benny Halevy34558512009-08-14 17:19:30 +0300919 xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -0500920 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400921 hdr->replen += decode_close_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500924static void encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Al Viro8687b632006-10-19 23:28:48 -0700926 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500927
Benny Halevy13c65ce2009-08-14 17:19:25 +0300928 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300929 *p++ = cpu_to_be32(OP_COMMIT);
Benny Halevyb95be5a2009-08-14 17:19:01 +0300930 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +0300931 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -0500932 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400933 hdr->replen += decode_commit_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500936static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Al Viro8687b632006-10-19 23:28:48 -0700938 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -0500939
Benny Halevy13c65ce2009-08-14 17:19:25 +0300940 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300941 *p++ = cpu_to_be32(OP_CREATE);
Benny Halevy34558512009-08-14 17:19:30 +0300942 *p = cpu_to_be32(create->ftype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 switch (create->ftype) {
945 case NF4LNK:
Benny Halevy13c65ce2009-08-14 17:19:25 +0300946 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +0300947 *p = cpu_to_be32(create->u.symlink.len);
Chuck Lever94a6d752006-08-22 20:06:23 -0400948 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 break;
950
951 case NF4BLK: case NF4CHR:
Benny Halevy13c65ce2009-08-14 17:19:25 +0300952 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300953 *p++ = cpu_to_be32(create->u.device.specdata1);
Benny Halevy34558512009-08-14 17:19:30 +0300954 *p = cpu_to_be32(create->u.device.specdata2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956
957 default:
958 break;
959 }
960
Benny Halevy811652b2009-08-14 17:19:34 +0300961 encode_string(xdr, create->name->len, create->name->name);
Andy Adamsond0179312008-12-23 16:06:17 -0500962 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400963 hdr->replen += decode_create_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500965 encode_attrs(xdr, create->attrs, create->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500968static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Andy Adamson05d564f2008-12-23 16:06:15 -0500970 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Benny Halevy13c65ce2009-08-14 17:19:25 +0300972 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300973 *p++ = cpu_to_be32(OP_GETATTR);
974 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +0300975 *p = cpu_to_be32(bitmap);
Andy Adamsond0179312008-12-23 16:06:17 -0500976 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400977 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500980static 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 -0700981{
Andy Adamson05d564f2008-12-23 16:06:15 -0500982 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Benny Halevy13c65ce2009-08-14 17:19:25 +0300984 p = reserve_space(xdr, 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +0300985 *p++ = cpu_to_be32(OP_GETATTR);
986 *p++ = cpu_to_be32(2);
987 *p++ = cpu_to_be32(bm0);
Benny Halevy34558512009-08-14 17:19:30 +0300988 *p = cpu_to_be32(bm1);
Andy Adamsond0179312008-12-23 16:06:17 -0500989 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -0400990 hdr->replen += decode_getattr_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500993static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500995 encode_getattr_two(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
996 bitmask[1] & nfs4_fattr_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -0500999static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001001 encode_getattr_two(xdr, bitmask[0] & nfs4_fsinfo_bitmap[0],
1002 bitmask[1] & nfs4_fsinfo_bitmap[1], hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001005static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
Manoj Naik830b8e32006-06-09 09:34:25 -04001006{
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001007 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1008 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
Manoj Naik830b8e32006-06-09 09:34:25 -04001009}
1010
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001011static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Al Viro8687b632006-10-19 23:28:48 -07001013 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Benny Halevy13c65ce2009-08-14 17:19:25 +03001015 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001016 *p = cpu_to_be32(OP_GETFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001017 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001018 hdr->replen += decode_getfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001021static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Al Viro8687b632006-10-19 23:28:48 -07001023 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Benny Halevy13c65ce2009-08-14 17:19:25 +03001025 p = reserve_space(xdr, 8 + name->len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001026 *p++ = cpu_to_be32(OP_LINK);
Benny Halevy811652b2009-08-14 17:19:34 +03001027 xdr_encode_opaque(p, name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001028 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001029 hdr->replen += decode_link_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001032static inline int nfs4_lock_type(struct file_lock *fl, int block)
1033{
1034 if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
1035 return block ? NFS4_READW_LT : NFS4_READ_LT;
1036 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1037}
1038
1039static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1040{
1041 if (fl->fl_end == OFFSET_MAX)
1042 return ~(uint64_t)0;
1043 return fl->fl_end - fl->fl_start + 1;
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046/*
1047 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1048 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1049 */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001050static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Al Viro8687b632006-10-19 23:28:48 -07001052 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Benny Halevy13c65ce2009-08-14 17:19:25 +03001054 p = reserve_space(xdr, 32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001055 *p++ = cpu_to_be32(OP_LOCK);
1056 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1057 *p++ = cpu_to_be32(args->reclaim);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001058 p = xdr_encode_hyper(p, args->fl->fl_start);
1059 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Benny Halevy34558512009-08-14 17:19:30 +03001060 *p = cpu_to_be32(args->new_lock_owner);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01001061 if (args->new_lock_owner){
Benny Halevy13c65ce2009-08-14 17:19:25 +03001062 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+32);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001063 *p++ = cpu_to_be32(args->open_seqid->sequence->counter);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001064 p = xdr_encode_opaque_fixed(p, args->open_stateid->data, NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001065 *p++ = cpu_to_be32(args->lock_seqid->sequence->counter);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001066 p = xdr_encode_hyper(p, args->lock_owner.clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001067 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001068 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001069 xdr_encode_hyper(p, args->lock_owner.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
1071 else {
Benny Halevy13c65ce2009-08-14 17:19:25 +03001072 p = reserve_space(xdr, NFS4_STATEID_SIZE+4);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001073 p = xdr_encode_opaque_fixed(p, args->lock_stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001074 *p = cpu_to_be32(args->lock_seqid->sequence->counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Andy Adamsond0179312008-12-23 16:06:17 -05001076 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001077 hdr->replen += decode_lock_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001080static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Al Viro8687b632006-10-19 23:28:48 -07001082 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Benny Halevy13c65ce2009-08-14 17:19:25 +03001084 p = reserve_space(xdr, 52);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001085 *p++ = cpu_to_be32(OP_LOCKT);
1086 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
Benny Halevyb95be5a2009-08-14 17:19:01 +03001087 p = xdr_encode_hyper(p, args->fl->fl_start);
1088 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
1089 p = xdr_encode_hyper(p, args->lock_owner.clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001090 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001091 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001092 xdr_encode_hyper(p, args->lock_owner.id);
Andy Adamsond0179312008-12-23 16:06:17 -05001093 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001094 hdr->replen += decode_lockt_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001097static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Al Viro8687b632006-10-19 23:28:48 -07001099 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Benny Halevy13c65ce2009-08-14 17:19:25 +03001101 p = reserve_space(xdr, 12+NFS4_STATEID_SIZE+16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001102 *p++ = cpu_to_be32(OP_LOCKU);
1103 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
1104 *p++ = cpu_to_be32(args->seqid->sequence->counter);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001105 p = xdr_encode_opaque_fixed(p, args->stateid->data, NFS4_STATEID_SIZE);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001106 p = xdr_encode_hyper(p, args->fl->fl_start);
Benny Halevy34558512009-08-14 17:19:30 +03001107 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
Andy Adamsond0179312008-12-23 16:06:17 -05001108 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001109 hdr->replen += decode_locku_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001112static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 int len = name->len;
Al Viro8687b632006-10-19 23:28:48 -07001115 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Benny Halevy13c65ce2009-08-14 17:19:25 +03001117 p = reserve_space(xdr, 8 + len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001118 *p++ = cpu_to_be32(OP_LOOKUP);
Benny Halevy811652b2009-08-14 17:19:34 +03001119 xdr_encode_opaque(p, name->name, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001120 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001121 hdr->replen += decode_lookup_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001124static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Al Viro8687b632006-10-19 23:28:48 -07001126 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Benny Halevy13c65ce2009-08-14 17:19:25 +03001128 p = reserve_space(xdr, 8);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001129 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001130 case FMODE_READ:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001131 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001132 break;
1133 case FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001134 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001135 break;
1136 case FMODE_READ|FMODE_WRITE:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001137 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
Andy Adamson05d564f2008-12-23 16:06:15 -05001138 break;
1139 default:
Benny Halevye75bc1c2009-08-14 17:18:54 +03001140 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
Benny Halevy34558512009-08-14 17:19:30 +03001142 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1146{
Al Viro8687b632006-10-19 23:28:48 -07001147 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /*
1149 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1150 * owner 4 = 32
1151 */
Benny Halevy13c65ce2009-08-14 17:19:25 +03001152 p = reserve_space(xdr, 8);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001153 *p++ = cpu_to_be32(OP_OPEN);
Benny Halevy34558512009-08-14 17:19:30 +03001154 *p = cpu_to_be32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001155 encode_share_access(xdr, arg->fmode);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001156 p = reserve_space(xdr, 28);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001157 p = xdr_encode_hyper(p, arg->clientid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001158 *p++ = cpu_to_be32(16);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001159 p = xdr_encode_opaque_fixed(p, "open id:", 8);
Benny Halevy34558512009-08-14 17:19:30 +03001160 xdr_encode_hyper(p, arg->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1164{
Al Viro8687b632006-10-19 23:28:48 -07001165 __be32 *p;
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001166 struct nfs_client *clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Benny Halevy13c65ce2009-08-14 17:19:25 +03001168 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 switch(arg->open_flags & O_EXCL) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001170 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001171 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
Andy Adamson05d564f2008-12-23 16:06:15 -05001172 encode_attrs(xdr, arg->u.attrs, arg->server);
1173 break;
1174 default:
Alexandros Batsakis4882ef72009-12-05 13:30:21 -05001175 clp = arg->server->nfs_client;
1176 if (clp->cl_minorversion > 0) {
1177 if (nfs4_has_persistent_session(clp)) {
1178 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1179 encode_attrs(xdr, arg->u.attrs, arg->server);
1180 } else {
1181 struct iattr dummy;
1182
1183 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1184 encode_nfs4_verifier(xdr, &arg->u.verifier);
1185 dummy.ia_valid = 0;
1186 encode_attrs(xdr, &dummy, arg->server);
1187 }
1188 } else {
1189 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1190 encode_nfs4_verifier(xdr, &arg->u.verifier);
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193}
1194
1195static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1196{
Al Viro8687b632006-10-19 23:28:48 -07001197 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Benny Halevy13c65ce2009-08-14 17:19:25 +03001199 p = reserve_space(xdr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 switch (arg->open_flags & O_CREAT) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001201 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001202 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001203 break;
1204 default:
1205 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
Benny Halevy34558512009-08-14 17:19:30 +03001206 *p = cpu_to_be32(NFS4_OPEN_CREATE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001207 encode_createmode(xdr, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209}
1210
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001211static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001217 case 0:
Benny Halevy34558512009-08-14 17:19:30 +03001218 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001219 break;
1220 case FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001221 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
Andy Adamson05d564f2008-12-23 16:06:15 -05001222 break;
1223 case FMODE_WRITE|FMODE_READ:
Benny Halevy34558512009-08-14 17:19:30 +03001224 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
Andy Adamson05d564f2008-12-23 16:06:15 -05001225 break;
1226 default:
1227 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229}
1230
1231static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1232{
Al Viro8687b632006-10-19 23:28:48 -07001233 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Benny Halevy13c65ce2009-08-14 17:19:25 +03001235 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001236 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 encode_string(xdr, name->len, name->name);
1238}
1239
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -05001240static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Al Viro8687b632006-10-19 23:28:48 -07001242 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Benny Halevy13c65ce2009-08-14 17:19:25 +03001244 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001245 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 encode_delegation_type(xdr, type);
1247}
1248
1249static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1250{
Al Viro8687b632006-10-19 23:28:48 -07001251 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Benny Halevy13c65ce2009-08-14 17:19:25 +03001253 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001254 *p++ = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
Benny Halevy34558512009-08-14 17:19:30 +03001255 xdr_encode_opaque_fixed(p, stateid->data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 encode_string(xdr, name->len, name->name);
1257}
1258
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001259static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 encode_openhdr(xdr, arg);
1262 encode_opentype(xdr, arg);
1263 switch (arg->claim) {
Andy Adamson05d564f2008-12-23 16:06:15 -05001264 case NFS4_OPEN_CLAIM_NULL:
1265 encode_claim_null(xdr, arg->name);
1266 break;
1267 case NFS4_OPEN_CLAIM_PREVIOUS:
1268 encode_claim_previous(xdr, arg->u.delegation_type);
1269 break;
1270 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1271 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1272 break;
1273 default:
1274 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
Andy Adamsond0179312008-12-23 16:06:17 -05001276 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001277 hdr->replen += decode_open_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001280static 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 -07001281{
Al Viro8687b632006-10-19 23:28:48 -07001282 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Benny Halevy13c65ce2009-08-14 17:19:25 +03001284 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001285 *p++ = cpu_to_be32(OP_OPEN_CONFIRM);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001286 p = xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001287 *p = cpu_to_be32(arg->seqid->sequence->counter);
Andy Adamsond0179312008-12-23 16:06:17 -05001288 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001289 hdr->replen += decode_open_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001292static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Al Viro8687b632006-10-19 23:28:48 -07001294 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Benny Halevy13c65ce2009-08-14 17:19:25 +03001296 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE+4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001297 *p++ = cpu_to_be32(OP_OPEN_DOWNGRADE);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001298 p = xdr_encode_opaque_fixed(p, arg->stateid->data, NFS4_STATEID_SIZE);
Benny Halevy34558512009-08-14 17:19:30 +03001299 *p = cpu_to_be32(arg->seqid->sequence->counter);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001300 encode_share_access(xdr, arg->fmode);
Andy Adamsond0179312008-12-23 16:06:17 -05001301 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001302 hdr->replen += decode_open_downgrade_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001305static void
Andy Adamsond0179312008-12-23 16:06:17 -05001306encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 int len = fh->size;
Al Viro8687b632006-10-19 23:28:48 -07001309 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Benny Halevy13c65ce2009-08-14 17:19:25 +03001311 p = reserve_space(xdr, 8 + len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001312 *p++ = cpu_to_be32(OP_PUTFH);
Benny Halevy811652b2009-08-14 17:19:34 +03001313 xdr_encode_opaque(p, fh->data, len);
Andy Adamsond0179312008-12-23 16:06:17 -05001314 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001315 hdr->replen += decode_putfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001318static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Andy Adamson05d564f2008-12-23 16:06:15 -05001320 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001321
Benny Halevy13c65ce2009-08-14 17:19:25 +03001322 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001323 *p = cpu_to_be32(OP_PUTROOTFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001324 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001325 hdr->replen += decode_putrootfh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328static void encode_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx)
1329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 nfs4_stateid stateid;
Al Viro8687b632006-10-19 23:28:48 -07001331 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Benny Halevy13c65ce2009-08-14 17:19:25 +03001333 p = reserve_space(xdr, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (ctx->state != NULL) {
1335 nfs4_copy_stateid(&stateid, ctx->state, ctx->lockowner);
Benny Halevy34558512009-08-14 17:19:30 +03001336 xdr_encode_opaque_fixed(p, stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 } else
Benny Halevy34558512009-08-14 17:19:30 +03001338 xdr_encode_opaque_fixed(p, zero_stateid.data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001341static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Al Viro8687b632006-10-19 23:28:48 -07001343 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Benny Halevy13c65ce2009-08-14 17:19:25 +03001345 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001346 *p = cpu_to_be32(OP_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 encode_stateid(xdr, args->context);
1349
Benny Halevy13c65ce2009-08-14 17:19:25 +03001350 p = reserve_space(xdr, 12);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001351 p = xdr_encode_hyper(p, args->offset);
Benny Halevy34558512009-08-14 17:19:30 +03001352 *p = cpu_to_be32(args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001353 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001354 hdr->replen += decode_read_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001357static 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 -07001358{
Manoj Naik97d312d2005-06-22 17:16:39 +00001359 uint32_t attrs[2] = {
1360 FATTR4_WORD0_RDATTR_ERROR|FATTR4_WORD0_FILEID,
1361 FATTR4_WORD1_MOUNTED_ON_FILEID,
1362 };
Al Viro8687b632006-10-19 23:28:48 -07001363 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Benny Halevy13c65ce2009-08-14 17:19:25 +03001365 p = reserve_space(xdr, 12+NFS4_VERIFIER_SIZE+20);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001366 *p++ = cpu_to_be32(OP_READDIR);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001367 p = xdr_encode_hyper(p, readdir->cookie);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001368 p = xdr_encode_opaque_fixed(p, readdir->verifier.data, NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001369 *p++ = cpu_to_be32(readdir->count >> 1); /* We're not doing readdirplus */
1370 *p++ = cpu_to_be32(readdir->count);
1371 *p++ = cpu_to_be32(2);
Manoj Naik97d312d2005-06-22 17:16:39 +00001372 /* Switch to mounted_on_fileid if the server supports it */
1373 if (readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
1374 attrs[0] &= ~FATTR4_WORD0_FILEID;
1375 else
1376 attrs[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Benny Halevye75bc1c2009-08-14 17:18:54 +03001377 *p++ = cpu_to_be32(attrs[0] & readdir->bitmask[0]);
Benny Halevy34558512009-08-14 17:19:30 +03001378 *p = cpu_to_be32(attrs[1] & readdir->bitmask[1]);
Andy Adamsond0179312008-12-23 16:06:17 -05001379 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001380 hdr->replen += decode_readdir_maxsz;
Fred Isaman44109242008-04-02 15:21:15 +03001381 dprintk("%s: cookie = %Lu, verifier = %08x:%08x, bitmap = %08x:%08x\n",
1382 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00001383 (unsigned long long)readdir->cookie,
1384 ((u32 *)readdir->verifier.data)[0],
1385 ((u32 *)readdir->verifier.data)[1],
1386 attrs[0] & readdir->bitmask[0],
1387 attrs[1] & readdir->bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001390static 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 -07001391{
Al Viro8687b632006-10-19 23:28:48 -07001392 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Benny Halevy13c65ce2009-08-14 17:19:25 +03001394 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001395 *p = cpu_to_be32(OP_READLINK);
Andy Adamsond0179312008-12-23 16:06:17 -05001396 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001397 hdr->replen += decode_readlink_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001400static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Al Viro8687b632006-10-19 23:28:48 -07001402 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Benny Halevy13c65ce2009-08-14 17:19:25 +03001404 p = reserve_space(xdr, 8 + name->len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001405 *p++ = cpu_to_be32(OP_REMOVE);
Benny Halevy811652b2009-08-14 17:19:34 +03001406 xdr_encode_opaque(p, name->name, name->len);
Andy Adamsond0179312008-12-23 16:06:17 -05001407 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001408 hdr->replen += decode_remove_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001411static 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 -07001412{
Al Viro8687b632006-10-19 23:28:48 -07001413 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Benny Halevy811652b2009-08-14 17:19:34 +03001415 p = reserve_space(xdr, 4);
1416 *p = cpu_to_be32(OP_RENAME);
1417 encode_string(xdr, oldname->len, oldname->name);
1418 encode_string(xdr, newname->len, newname->name);
Andy Adamsond0179312008-12-23 16:06:17 -05001419 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001420 hdr->replen += decode_rename_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001423static void encode_renew(struct xdr_stream *xdr, const struct nfs_client *client_stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Al Viro8687b632006-10-19 23:28:48 -07001425 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Benny Halevy13c65ce2009-08-14 17:19:25 +03001427 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001428 *p++ = cpu_to_be32(OP_RENEW);
Benny Halevy34558512009-08-14 17:19:30 +03001429 xdr_encode_hyper(p, client_stateid->cl_clientid);
Andy Adamsond0179312008-12-23 16:06:17 -05001430 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001431 hdr->replen += decode_renew_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
1433
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001434static void
Andy Adamsond0179312008-12-23 16:06:17 -05001435encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001436{
Al Viro8687b632006-10-19 23:28:48 -07001437 __be32 *p;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001438
Benny Halevy13c65ce2009-08-14 17:19:25 +03001439 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001440 *p = cpu_to_be32(OP_RESTOREFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001441 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001442 hdr->replen += decode_restorefh_maxsz;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001443}
1444
1445static int
Andy Adamsond0179312008-12-23 16:06:17 -05001446encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001447{
Al Viro8687b632006-10-19 23:28:48 -07001448 __be32 *p;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001449
Benny Halevy13c65ce2009-08-14 17:19:25 +03001450 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001451 *p++ = cpu_to_be32(OP_SETATTR);
Benny Halevy34558512009-08-14 17:19:30 +03001452 xdr_encode_opaque_fixed(p, zero_stateid.data, NFS4_STATEID_SIZE);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001453 p = reserve_space(xdr, 2*4);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001454 *p++ = cpu_to_be32(1);
Benny Halevy34558512009-08-14 17:19:30 +03001455 *p = cpu_to_be32(FATTR4_WORD0_ACL);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001456 if (arg->acl_len % 4)
1457 return -EINVAL;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001458 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001459 *p = cpu_to_be32(arg->acl_len);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001460 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05001461 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001462 hdr->replen += decode_setacl_maxsz;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00001463 return 0;
1464}
1465
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001466static void
Andy Adamsond0179312008-12-23 16:06:17 -05001467encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Al Viro8687b632006-10-19 23:28:48 -07001469 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Benny Halevy13c65ce2009-08-14 17:19:25 +03001471 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001472 *p = cpu_to_be32(OP_SAVEFH);
Andy Adamsond0179312008-12-23 16:06:17 -05001473 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001474 hdr->replen += decode_savefh_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001477static 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 -07001478{
Al Viro8687b632006-10-19 23:28:48 -07001479 __be32 *p;
Andy Adamson6c0195a2008-12-23 16:06:15 -05001480
Benny Halevy13c65ce2009-08-14 17:19:25 +03001481 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001482 *p++ = cpu_to_be32(OP_SETATTR);
Benny Halevy34558512009-08-14 17:19:30 +03001483 xdr_encode_opaque_fixed(p, arg->stateid.data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001484 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001485 hdr->replen += decode_setattr_maxsz;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001486 encode_attrs(xdr, arg->iap, server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001489static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Al Viro8687b632006-10-19 23:28:48 -07001491 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Benny Halevy13c65ce2009-08-14 17:19:25 +03001493 p = reserve_space(xdr, 4 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001494 *p++ = cpu_to_be32(OP_SETCLIENTID);
Benny Halevy34558512009-08-14 17:19:30 +03001495 xdr_encode_opaque_fixed(p, setclientid->sc_verifier->data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001498 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001499 *p = cpu_to_be32(setclientid->sc_prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1501 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
Benny Halevy13c65ce2009-08-14 17:19:25 +03001502 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001503 *p = cpu_to_be32(setclientid->sc_cb_ident);
Andy Adamsond0179312008-12-23 16:06:17 -05001504 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001505 hdr->replen += decode_setclientid_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001508static 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 -07001509{
Andy Adamson05d564f2008-12-23 16:06:15 -05001510 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Benny Halevy13c65ce2009-08-14 17:19:25 +03001512 p = reserve_space(xdr, 12 + NFS4_VERIFIER_SIZE);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001513 *p++ = cpu_to_be32(OP_SETCLIENTID_CONFIRM);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001514 p = xdr_encode_hyper(p, client_state->cl_clientid);
Benny Halevy34558512009-08-14 17:19:30 +03001515 xdr_encode_opaque_fixed(p, client_state->cl_confirm.data, NFS4_VERIFIER_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001516 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001517 hdr->replen += decode_setclientid_confirm_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001520static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Al Viro8687b632006-10-19 23:28:48 -07001522 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Benny Halevy13c65ce2009-08-14 17:19:25 +03001524 p = reserve_space(xdr, 4);
Benny Halevy34558512009-08-14 17:19:30 +03001525 *p = cpu_to_be32(OP_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 encode_stateid(xdr, args->context);
1528
Benny Halevy13c65ce2009-08-14 17:19:25 +03001529 p = reserve_space(xdr, 16);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001530 p = xdr_encode_hyper(p, args->offset);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001531 *p++ = cpu_to_be32(args->stable);
Benny Halevy34558512009-08-14 17:19:30 +03001532 *p = cpu_to_be32(args->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05001535 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001536 hdr->replen += decode_write_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001539static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Al Viro8687b632006-10-19 23:28:48 -07001541 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Benny Halevy13c65ce2009-08-14 17:19:25 +03001543 p = reserve_space(xdr, 4+NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Benny Halevye75bc1c2009-08-14 17:18:54 +03001545 *p++ = cpu_to_be32(OP_DELEGRETURN);
Benny Halevy34558512009-08-14 17:19:30 +03001546 xdr_encode_opaque_fixed(p, stateid->data, NFS4_STATEID_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05001547 hdr->nops++;
Benny Halevydadf0c22009-04-01 09:22:08 -04001548 hdr->replen += decode_delegreturn_maxsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001550
Benny Halevy99fe60d2009-04-01 09:22:29 -04001551#if defined(CONFIG_NFS_V4_1)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001552/* NFSv4.1 operations */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001553static void encode_exchange_id(struct xdr_stream *xdr,
1554 struct nfs41_exchange_id_args *args,
1555 struct compound_hdr *hdr)
1556{
1557 __be32 *p;
1558
Benny Halevy13c65ce2009-08-14 17:19:25 +03001559 p = reserve_space(xdr, 4 + sizeof(args->verifier->data));
Benny Halevye75bc1c2009-08-14 17:18:54 +03001560 *p++ = cpu_to_be32(OP_EXCHANGE_ID);
Benny Halevy34558512009-08-14 17:19:30 +03001561 xdr_encode_opaque_fixed(p, args->verifier->data, sizeof(args->verifier->data));
Benny Halevy99fe60d2009-04-01 09:22:29 -04001562
1563 encode_string(xdr, args->id_len, args->id);
1564
Benny Halevy13c65ce2009-08-14 17:19:25 +03001565 p = reserve_space(xdr, 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001566 *p++ = cpu_to_be32(args->flags);
1567 *p++ = cpu_to_be32(0); /* zero length state_protect4_a */
Benny Halevy34558512009-08-14 17:19:30 +03001568 *p = cpu_to_be32(0); /* zero length implementation id array */
Benny Halevy99fe60d2009-04-01 09:22:29 -04001569 hdr->nops++;
1570 hdr->replen += decode_exchange_id_maxsz;
1571}
Andy Adamsonfc931582009-04-01 09:22:31 -04001572
1573static void encode_create_session(struct xdr_stream *xdr,
1574 struct nfs41_create_session_args *args,
1575 struct compound_hdr *hdr)
1576{
1577 __be32 *p;
1578 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1579 uint32_t len;
1580 struct nfs_client *clp = args->client;
Mike Sager8e0d46e2009-12-17 12:06:26 -05001581 u32 max_resp_sz_cached;
1582
1583 /*
1584 * Assumes OPEN is the biggest non-idempotent compound.
1585 * 2 is the verifier.
1586 */
1587 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1588 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
Andy Adamsonfc931582009-04-01 09:22:31 -04001589
Andy Adamsonfc931582009-04-01 09:22:31 -04001590 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1591 clp->cl_ipaddr);
Benny Halevy42edd692009-08-14 17:19:13 +03001592
Benny Halevy13c65ce2009-08-14 17:19:25 +03001593 p = reserve_space(xdr, 20 + 2*28 + 20 + len + 12);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001594 *p++ = cpu_to_be32(OP_CREATE_SESSION);
Benny Halevyb95be5a2009-08-14 17:19:01 +03001595 p = xdr_encode_hyper(p, clp->cl_ex_clid);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001596 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1597 *p++ = cpu_to_be32(args->flags); /*flags */
Andy Adamsonfc931582009-04-01 09:22:31 -04001598
Andy Adamsonfc931582009-04-01 09:22:31 -04001599 /* Fore Channel */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001600 *p++ = cpu_to_be32(args->fc_attrs.headerpadsz); /* header padding size */
1601 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1602 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
Mike Sager8e0d46e2009-12-17 12:06:26 -05001603 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001604 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1605 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1606 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001607
1608 /* Back Channel */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001609 *p++ = cpu_to_be32(args->fc_attrs.headerpadsz); /* header padding size */
1610 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1611 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1612 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1613 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1614 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1615 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
Andy Adamsonfc931582009-04-01 09:22:31 -04001616
Benny Halevye75bc1c2009-08-14 17:18:54 +03001617 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001618 *p++ = cpu_to_be32(1);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001619 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
Andy Adamsonfc931582009-04-01 09:22:31 -04001620
1621 /* authsys_parms rfc1831 */
Benny Halevye75bc1c2009-08-14 17:18:54 +03001622 *p++ = cpu_to_be32((u32)clp->cl_boot_time.tv_nsec); /* stamp */
Benny Halevy811652b2009-08-14 17:19:34 +03001623 p = xdr_encode_opaque(p, machine_name, len);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001624 *p++ = cpu_to_be32(0); /* UID */
1625 *p++ = cpu_to_be32(0); /* GID */
Benny Halevy34558512009-08-14 17:19:30 +03001626 *p = cpu_to_be32(0); /* No more gids */
Andy Adamsonfc931582009-04-01 09:22:31 -04001627 hdr->nops++;
1628 hdr->replen += decode_create_session_maxsz;
1629}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001630
1631static void encode_destroy_session(struct xdr_stream *xdr,
1632 struct nfs4_session *session,
1633 struct compound_hdr *hdr)
1634{
1635 __be32 *p;
Benny Halevy13c65ce2009-08-14 17:19:25 +03001636 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001637 *p++ = cpu_to_be32(OP_DESTROY_SESSION);
Benny Halevy34558512009-08-14 17:19:30 +03001638 xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04001639 hdr->nops++;
1640 hdr->replen += decode_destroy_session_maxsz;
1641}
Ricardo Labiaga180197532009-12-05 16:08:40 -05001642
1643static void encode_reclaim_complete(struct xdr_stream *xdr,
1644 struct nfs41_reclaim_complete_args *args,
1645 struct compound_hdr *hdr)
1646{
1647 __be32 *p;
1648
1649 p = reserve_space(xdr, 8);
1650 *p++ = cpu_to_be32(OP_RECLAIM_COMPLETE);
1651 *p++ = cpu_to_be32(args->one_fs);
1652 hdr->nops++;
1653 hdr->replen += decode_reclaim_complete_maxsz;
1654}
Benny Halevy99fe60d2009-04-01 09:22:29 -04001655#endif /* CONFIG_NFS_V4_1 */
1656
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001657static void encode_sequence(struct xdr_stream *xdr,
1658 const struct nfs4_sequence_args *args,
1659 struct compound_hdr *hdr)
1660{
1661#if defined(CONFIG_NFS_V4_1)
1662 struct nfs4_session *session = args->sa_session;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001663 struct nfs4_slot_table *tp;
1664 struct nfs4_slot *slot;
1665 __be32 *p;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001666
1667 if (!session)
1668 return;
1669
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001670 tp = &session->fc_slot_table;
1671
1672 WARN_ON(args->sa_slotid == NFS4_MAX_SLOT_TABLE);
1673 slot = tp->slots + args->sa_slotid;
1674
Benny Halevy13c65ce2009-08-14 17:19:25 +03001675 p = reserve_space(xdr, 4 + NFS4_MAX_SESSIONID_LEN + 16);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001676 *p++ = cpu_to_be32(OP_SEQUENCE);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04001677
1678 /*
1679 * Sessionid + seqid + slotid + max slotid + cache_this
1680 */
1681 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1682 "max_slotid=%d cache_this=%d\n",
1683 __func__,
1684 ((u32 *)session->sess_id.data)[0],
1685 ((u32 *)session->sess_id.data)[1],
1686 ((u32 *)session->sess_id.data)[2],
1687 ((u32 *)session->sess_id.data)[3],
1688 slot->seq_nr, args->sa_slotid,
1689 tp->highest_used_slotid, args->sa_cache_this);
Benny Halevy93f0cf22009-08-14 17:19:06 +03001690 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
Benny Halevye75bc1c2009-08-14 17:18:54 +03001691 *p++ = cpu_to_be32(slot->seq_nr);
1692 *p++ = cpu_to_be32(args->sa_slotid);
1693 *p++ = cpu_to_be32(tp->highest_used_slotid);
Benny Halevy34558512009-08-14 17:19:30 +03001694 *p = cpu_to_be32(args->sa_cache_this);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001695 hdr->nops++;
1696 hdr->replen += decode_sequence_maxsz;
1697#endif /* CONFIG_NFS_V4_1 */
1698}
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700/*
1701 * END OF "GENERIC" ENCODE ROUTINES.
1702 */
1703
Benny Halevy66cc0422009-04-01 09:22:10 -04001704static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
1705{
1706#if defined(CONFIG_NFS_V4_1)
1707 if (args->sa_session)
1708 return args->sa_session->clp->cl_minorversion;
1709#endif /* CONFIG_NFS_V4_1 */
1710 return 0;
1711}
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713/*
1714 * Encode an ACCESS request
1715 */
Al Viro8687b632006-10-19 23:28:48 -07001716static int nfs4_xdr_enc_access(struct rpc_rqst *req, __be32 *p, const struct nfs4_accessargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 struct xdr_stream xdr;
1719 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001720 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001724 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001725 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001726 encode_putfh(&xdr, args->fh, &hdr);
1727 encode_access(&xdr, args->access, &hdr);
1728 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001729 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001730 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731}
1732
1733/*
1734 * Encode LOOKUP request
1735 */
Al Viro8687b632006-10-19 23:28:48 -07001736static int nfs4_xdr_enc_lookup(struct rpc_rqst *req, __be32 *p, const struct nfs4_lookup_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 struct xdr_stream xdr;
1739 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001740 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001744 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001745 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001746 encode_putfh(&xdr, args->dir_fh, &hdr);
1747 encode_lookup(&xdr, args->name, &hdr);
1748 encode_getfh(&xdr, &hdr);
1749 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001750 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
1754/*
1755 * Encode LOOKUP_ROOT request
1756 */
Al Viro8687b632006-10-19 23:28:48 -07001757static 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 -07001758{
1759 struct xdr_stream xdr;
1760 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001761 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001765 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001766 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001767 encode_putrootfh(&xdr, &hdr);
1768 encode_getfh(&xdr, &hdr);
1769 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001770 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772}
1773
1774/*
1775 * Encode REMOVE request
1776 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04001777static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 struct xdr_stream xdr;
1780 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001781 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001785 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001786 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001787 encode_putfh(&xdr, args->fh, &hdr);
1788 encode_remove(&xdr, &args->name, &hdr);
1789 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001790 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
1794/*
1795 * Encode RENAME request
1796 */
Al Viro8687b632006-10-19 23:28:48 -07001797static int nfs4_xdr_enc_rename(struct rpc_rqst *req, __be32 *p, const struct nfs4_rename_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
1799 struct xdr_stream xdr;
1800 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001801 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001805 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001806 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001807 encode_putfh(&xdr, args->old_dir, &hdr);
1808 encode_savefh(&xdr, &hdr);
1809 encode_putfh(&xdr, args->new_dir, &hdr);
1810 encode_rename(&xdr, args->old_name, args->new_name, &hdr);
1811 encode_getfattr(&xdr, args->bitmask, &hdr);
1812 encode_restorefh(&xdr, &hdr);
1813 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001814 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001815 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
1818/*
1819 * Encode LINK request
1820 */
Al Viro8687b632006-10-19 23:28:48 -07001821static int nfs4_xdr_enc_link(struct rpc_rqst *req, __be32 *p, const struct nfs4_link_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 struct xdr_stream xdr;
1824 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001825 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001829 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001830 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001831 encode_putfh(&xdr, args->fh, &hdr);
1832 encode_savefh(&xdr, &hdr);
1833 encode_putfh(&xdr, args->dir_fh, &hdr);
1834 encode_link(&xdr, args->name, &hdr);
1835 encode_getfattr(&xdr, args->bitmask, &hdr);
1836 encode_restorefh(&xdr, &hdr);
1837 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001838 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
1842/*
1843 * Encode CREATE request
1844 */
Al Viro8687b632006-10-19 23:28:48 -07001845static int nfs4_xdr_enc_create(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct xdr_stream xdr;
1848 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001849 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001853 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001854 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001855 encode_putfh(&xdr, args->dir_fh, &hdr);
1856 encode_savefh(&xdr, &hdr);
1857 encode_create(&xdr, args, &hdr);
1858 encode_getfh(&xdr, &hdr);
1859 encode_getfattr(&xdr, args->bitmask, &hdr);
1860 encode_restorefh(&xdr, &hdr);
1861 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001862 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
1866/*
1867 * Encode SYMLINK request
1868 */
Al Viro8687b632006-10-19 23:28:48 -07001869static int nfs4_xdr_enc_symlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_create_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 return nfs4_xdr_enc_create(req, p, args);
1872}
1873
1874/*
1875 * Encode GETATTR request
1876 */
Al Viro8687b632006-10-19 23:28:48 -07001877static int nfs4_xdr_enc_getattr(struct rpc_rqst *req, __be32 *p, const struct nfs4_getattr_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 struct xdr_stream xdr;
1880 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001881 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001885 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001886 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001887 encode_putfh(&xdr, args->fh, &hdr);
1888 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001889 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
1893/*
1894 * Encode a CLOSE request
1895 */
Al Viro8687b632006-10-19 23:28:48 -07001896static int nfs4_xdr_enc_close(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Andy Adamson05d564f2008-12-23 16:06:15 -05001898 struct xdr_stream xdr;
1899 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001900 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05001901 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Andy Adamson05d564f2008-12-23 16:06:15 -05001903 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001904 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001905 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001906 encode_putfh(&xdr, args->fh, &hdr);
1907 encode_close(&xdr, args, &hdr);
1908 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001909 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001910 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
1912
1913/*
1914 * Encode an OPEN request
1915 */
Al Viro8687b632006-10-19 23:28:48 -07001916static int nfs4_xdr_enc_open(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
1918 struct xdr_stream xdr;
1919 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001920 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001924 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001925 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001926 encode_putfh(&xdr, args->fh, &hdr);
1927 encode_savefh(&xdr, &hdr);
1928 encode_open(&xdr, args, &hdr);
1929 encode_getfh(&xdr, &hdr);
1930 encode_getfattr(&xdr, args->bitmask, &hdr);
1931 encode_restorefh(&xdr, &hdr);
1932 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001933 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937/*
1938 * Encode an OPEN_CONFIRM request
1939 */
Al Viro8687b632006-10-19 23:28:48 -07001940static int nfs4_xdr_enc_open_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_open_confirmargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 struct xdr_stream xdr;
1943 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05001944 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001948 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001949 encode_putfh(&xdr, args->fh, &hdr);
1950 encode_open_confirm(&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 an OPEN request with no attributes.
1957 */
Al Viro8687b632006-10-19 23:28:48 -07001958static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, __be32 *p, struct nfs_openargs *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_open(&xdr, args, &hdr);
1970 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001971 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001972 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
1975/*
1976 * Encode an OPEN_DOWNGRADE request
1977 */
Al Viro8687b632006-10-19 23:28:48 -07001978static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req, __be32 *p, struct nfs_closeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 struct xdr_stream xdr;
1981 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04001982 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04001986 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04001987 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001988 encode_putfh(&xdr, args->fh, &hdr);
1989 encode_open_downgrade(&xdr, args, &hdr);
1990 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05001991 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05001992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
1994
1995/*
1996 * Encode a LOCK request
1997 */
Al Viro8687b632006-10-19 23:28:48 -07001998static int nfs4_xdr_enc_lock(struct rpc_rqst *req, __be32 *p, struct nfs_lock_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 struct xdr_stream xdr;
2001 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002002 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002006 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002007 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002008 encode_putfh(&xdr, args->fh, &hdr);
2009 encode_lock(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002010 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002011 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
2014/*
2015 * Encode a LOCKT request
2016 */
Al Viro8687b632006-10-19 23:28:48 -07002017static int nfs4_xdr_enc_lockt(struct rpc_rqst *req, __be32 *p, struct nfs_lockt_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 struct xdr_stream xdr;
2020 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002021 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002025 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002026 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002027 encode_putfh(&xdr, args->fh, &hdr);
2028 encode_lockt(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002029 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
2032
2033/*
2034 * Encode a LOCKU request
2035 */
Al Viro8687b632006-10-19 23:28:48 -07002036static int nfs4_xdr_enc_locku(struct rpc_rqst *req, __be32 *p, struct nfs_locku_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
2038 struct xdr_stream xdr;
2039 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002040 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002044 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002045 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002046 encode_putfh(&xdr, args->fh, &hdr);
2047 encode_locku(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002048 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053 * Encode a READLINK request
2054 */
Al Viro8687b632006-10-19 23:28:48 -07002055static int nfs4_xdr_enc_readlink(struct rpc_rqst *req, __be32 *p, const struct nfs4_readlink *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 struct xdr_stream xdr;
2058 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002059 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002063 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002064 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002065 encode_putfh(&xdr, args->fh, &hdr);
2066 encode_readlink(&xdr, args, req, &hdr);
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002067
Benny Halevy28f56692009-04-01 09:22:09 -04002068 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebuste3a535e2007-07-19 10:03:38 -04002069 args->pgbase, args->pglen);
Andy Adamsond0179312008-12-23 16:06:17 -05002070 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
2074/*
2075 * Encode a READDIR request
2076 */
Al Viro8687b632006-10-19 23:28:48 -07002077static int nfs4_xdr_enc_readdir(struct rpc_rqst *req, __be32 *p, const struct nfs4_readdir_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 struct xdr_stream xdr;
2080 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002081 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002085 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002086 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002087 encode_putfh(&xdr, args->fh, &hdr);
2088 encode_readdir(&xdr, args, req, &hdr);
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002089
Benny Halevy28f56692009-04-01 09:22:09 -04002090 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002091 args->pgbase, args->count);
2092 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
Benny Halevy28f56692009-04-01 09:22:09 -04002093 __func__, hdr.replen << 2, args->pages,
Trond Myklebustd6ac02d2007-07-19 10:03:37 -04002094 args->pgbase, args->count);
Andy Adamsond0179312008-12-23 16:06:17 -05002095 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
2099/*
2100 * Encode a READ request
2101 */
Al Viro8687b632006-10-19 23:28:48 -07002102static int nfs4_xdr_enc_read(struct rpc_rqst *req, __be32 *p, struct nfs_readargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct xdr_stream xdr;
2105 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002106 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002110 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002111 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002112 encode_putfh(&xdr, args->fh, &hdr);
2113 encode_read(&xdr, args, &hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Benny Halevy28f56692009-04-01 09:22:09 -04002115 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 args->pages, args->pgbase, args->count);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002117 req->rq_rcv_buf.flags |= XDRBUF_READ;
Andy Adamsond0179312008-12-23 16:06:17 -05002118 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122/*
2123 * Encode an SETATTR request
2124 */
Al Viro8687b632006-10-19 23:28:48 -07002125static int nfs4_xdr_enc_setattr(struct rpc_rqst *req, __be32 *p, struct nfs_setattrargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Andy Adamson05d564f2008-12-23 16:06:15 -05002127 struct xdr_stream xdr;
2128 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002129 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05002130 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Andy Adamson05d564f2008-12-23 16:06:15 -05002132 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002133 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002134 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002135 encode_putfh(&xdr, args->fh, &hdr);
2136 encode_setattr(&xdr, args, args->server, &hdr);
2137 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002138 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
2142/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00002143 * Encode a GETACL request
2144 */
2145static int
Al Viro8687b632006-10-19 23:28:48 -07002146nfs4_xdr_enc_getacl(struct rpc_rqst *req, __be32 *p,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002147 struct nfs_getaclargs *args)
2148{
2149 struct xdr_stream xdr;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002150 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002151 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
J. Bruce Fields029d1052005-06-22 17:16:22 +00002152 };
Benny Halevy28f56692009-04-01 09:22:09 -04002153 uint32_t replen;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002154
2155 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002156 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002157 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002158 encode_putfh(&xdr, args->fh, &hdr);
J. Bruce Fieldsd327cf72009-12-03 08:10:17 -05002159 replen = hdr.replen + op_decode_hdr_maxsz + nfs4_fattr_bitmap_maxsz + 1;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002160 encode_getattr_two(&xdr, FATTR4_WORD0_ACL, 0, &hdr);
2161
Benny Halevy28f56692009-04-01 09:22:09 -04002162 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
J. Bruce Fields029d1052005-06-22 17:16:22 +00002163 args->acl_pages, args->acl_pgbase, args->acl_len);
Andy Adamsond0179312008-12-23 16:06:17 -05002164 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002165 return 0;
J. Bruce Fields029d1052005-06-22 17:16:22 +00002166}
2167
2168/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 * Encode a WRITE request
2170 */
Al Viro8687b632006-10-19 23:28:48 -07002171static int nfs4_xdr_enc_write(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 struct xdr_stream xdr;
2174 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002175 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002179 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002180 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002181 encode_putfh(&xdr, args->fh, &hdr);
2182 encode_write(&xdr, args, &hdr);
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04002183 req->rq_snd_buf.flags |= XDRBUF_WRITE;
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002184 encode_getfattr(&xdr, args->bitmask, &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 COMMIT request
2191 */
Al Viro8687b632006-10-19 23:28:48 -07002192static int nfs4_xdr_enc_commit(struct rpc_rqst *req, __be32 *p, struct nfs_writeargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 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_commit(&xdr, args, &hdr);
2204 encode_getfattr(&xdr, args->bitmask, &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 * FSINFO request
2211 */
Al Viro8687b632006-10-19 23:28:48 -07002212static int nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, __be32 *p, struct nfs4_fsinfo_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
2214 struct xdr_stream xdr;
2215 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002216 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002220 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002221 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002222 encode_putfh(&xdr, args->fh, &hdr);
2223 encode_fsinfo(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002224 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
2228/*
2229 * a PATHCONF request
2230 */
Al Viro8687b632006-10-19 23:28:48 -07002231static int nfs4_xdr_enc_pathconf(struct rpc_rqst *req, __be32 *p, const struct nfs4_pathconf_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 struct xdr_stream xdr;
2234 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002235 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002239 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002240 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002241 encode_putfh(&xdr, args->fh, &hdr);
2242 encode_getattr_one(&xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2243 &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002244 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
2248/*
2249 * a STATFS request
2250 */
Al Viro8687b632006-10-19 23:28:48 -07002251static int nfs4_xdr_enc_statfs(struct rpc_rqst *req, __be32 *p, const struct nfs4_statfs_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 struct xdr_stream xdr;
2254 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002255 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002259 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002260 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002261 encode_putfh(&xdr, args->fh, &hdr);
2262 encode_getattr_two(&xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
2263 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002264 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
2267
2268/*
2269 * GETATTR_BITMAP request
2270 */
Benny Halevy43652ad2009-04-01 09:21:54 -04002271static int nfs4_xdr_enc_server_caps(struct rpc_rqst *req, __be32 *p,
2272 struct nfs4_server_caps_arg *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 struct xdr_stream xdr;
2275 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002276 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002280 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002281 encode_sequence(&xdr, &args->seq_args, &hdr);
Benny Halevy43652ad2009-04-01 09:21:54 -04002282 encode_putfh(&xdr, args->fhandle, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002283 encode_getattr_one(&xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
2284 FATTR4_WORD0_LINK_SUPPORT|
2285 FATTR4_WORD0_SYMLINK_SUPPORT|
2286 FATTR4_WORD0_ACLSUPPORT, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002287 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/*
2292 * a RENEW request
2293 */
Al Viro8687b632006-10-19 23:28:48 -07002294static int nfs4_xdr_enc_renew(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
2296 struct xdr_stream xdr;
2297 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002298 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 };
2300
2301 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002302 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002303 encode_renew(&xdr, clp, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002304 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
2308/*
2309 * a SETCLIENTID request
2310 */
Al Viro8687b632006-10-19 23:28:48 -07002311static int nfs4_xdr_enc_setclientid(struct rpc_rqst *req, __be32 *p, struct nfs4_setclientid *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
2313 struct xdr_stream xdr;
2314 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002315 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 };
2317
2318 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002319 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002320 encode_setclientid(&xdr, sc, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002321 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324
2325/*
2326 * a SETCLIENTID_CONFIRM request
2327 */
Al Viro8687b632006-10-19 23:28:48 -07002328static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
2330 struct xdr_stream xdr;
2331 struct compound_hdr hdr = {
Andy Adamsond0179312008-12-23 16:06:17 -05002332 .nops = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 };
2334 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002337 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002338 encode_setclientid_confirm(&xdr, clp, &hdr);
2339 encode_putrootfh(&xdr, &hdr);
2340 encode_fsinfo(&xdr, lease_bitmap, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002341 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
2345/*
2346 * DELEGRETURN request
2347 */
Al Viro8687b632006-10-19 23:28:48 -07002348static int nfs4_xdr_enc_delegreturn(struct rpc_rqst *req, __be32 *p, const struct nfs4_delegreturnargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 struct xdr_stream xdr;
2351 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002352 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002356 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002357 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002358 encode_putfh(&xdr, args->fhandle, &hdr);
2359 encode_delegreturn(&xdr, args->stateid, &hdr);
2360 encode_getfattr(&xdr, args->bitmask, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05002361 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363}
2364
2365/*
Trond Myklebust683b57b2006-06-09 09:34:22 -04002366 * Encode FS_LOCATIONS request
2367 */
Al Viro8687b632006-10-19 23:28:48 -07002368static 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 -04002369{
2370 struct xdr_stream xdr;
2371 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04002372 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Trond Myklebust683b57b2006-06-09 09:34:22 -04002373 };
Benny Halevy28f56692009-04-01 09:22:09 -04002374 uint32_t replen;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002375
2376 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04002377 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04002378 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002379 encode_putfh(&xdr, args->dir_fh, &hdr);
2380 encode_lookup(&xdr, args->name, &hdr);
Benny Halevy28f56692009-04-01 09:22:09 -04002381 replen = hdr.replen; /* get the attribute into args->page */
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002382 encode_fs_locations(&xdr, args->bitmask, &hdr);
2383
Benny Halevy28f56692009-04-01 09:22:09 -04002384 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
Trond Myklebust683b57b2006-06-09 09:34:22 -04002385 0, PAGE_SIZE);
Andy Adamsond0179312008-12-23 16:06:17 -05002386 encode_nops(&hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05002387 return 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002388}
2389
Benny Halevy99fe60d2009-04-01 09:22:29 -04002390#if defined(CONFIG_NFS_V4_1)
2391/*
2392 * EXCHANGE_ID request
2393 */
2394static int nfs4_xdr_enc_exchange_id(struct rpc_rqst *req, uint32_t *p,
2395 struct nfs41_exchange_id_args *args)
2396{
2397 struct xdr_stream xdr;
2398 struct compound_hdr hdr = {
2399 .minorversion = args->client->cl_minorversion,
2400 };
2401
2402 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2403 encode_compound_hdr(&xdr, req, &hdr);
2404 encode_exchange_id(&xdr, args, &hdr);
2405 encode_nops(&hdr);
2406 return 0;
2407}
Andy Adamson2050f0c2009-04-01 09:22:30 -04002408
2409/*
Andy Adamsonfc931582009-04-01 09:22:31 -04002410 * a CREATE_SESSION request
2411 */
2412static int nfs4_xdr_enc_create_session(struct rpc_rqst *req, uint32_t *p,
2413 struct nfs41_create_session_args *args)
2414{
2415 struct xdr_stream xdr;
2416 struct compound_hdr hdr = {
2417 .minorversion = args->client->cl_minorversion,
2418 };
2419
2420 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2421 encode_compound_hdr(&xdr, req, &hdr);
2422 encode_create_session(&xdr, args, &hdr);
2423 encode_nops(&hdr);
2424 return 0;
2425}
2426
2427/*
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002428 * a DESTROY_SESSION request
2429 */
2430static int nfs4_xdr_enc_destroy_session(struct rpc_rqst *req, uint32_t *p,
2431 struct nfs4_session *session)
2432{
2433 struct xdr_stream xdr;
2434 struct compound_hdr hdr = {
2435 .minorversion = session->clp->cl_minorversion,
2436 };
2437
2438 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2439 encode_compound_hdr(&xdr, req, &hdr);
2440 encode_destroy_session(&xdr, session, &hdr);
2441 encode_nops(&hdr);
2442 return 0;
2443}
2444
2445/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04002446 * a SEQUENCE request
2447 */
2448static int nfs4_xdr_enc_sequence(struct rpc_rqst *req, uint32_t *p,
2449 struct nfs4_sequence_args *args)
2450{
2451 struct xdr_stream xdr;
2452 struct compound_hdr hdr = {
2453 .minorversion = nfs4_xdr_minorversion(args),
2454 };
2455
2456 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2457 encode_compound_hdr(&xdr, req, &hdr);
2458 encode_sequence(&xdr, args, &hdr);
2459 encode_nops(&hdr);
2460 return 0;
2461}
2462
2463/*
Andy Adamson2050f0c2009-04-01 09:22:30 -04002464 * a GET_LEASE_TIME request
2465 */
2466static int nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req, uint32_t *p,
2467 struct nfs4_get_lease_time_args *args)
2468{
2469 struct xdr_stream xdr;
2470 struct compound_hdr hdr = {
2471 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2472 };
2473 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
2474
2475 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2476 encode_compound_hdr(&xdr, req, &hdr);
2477 encode_sequence(&xdr, &args->la_seq_args, &hdr);
2478 encode_putrootfh(&xdr, &hdr);
2479 encode_fsinfo(&xdr, lease_bitmap, &hdr);
2480 encode_nops(&hdr);
2481 return 0;
2482}
Ricardo Labiaga180197532009-12-05 16:08:40 -05002483
2484/*
2485 * a RECLAIM_COMPLETE request
2486 */
2487static int nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req, uint32_t *p,
2488 struct nfs41_reclaim_complete_args *args)
2489{
2490 struct xdr_stream xdr;
2491 struct compound_hdr hdr = {
2492 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2493 };
2494
2495 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
2496 encode_compound_hdr(&xdr, req, &hdr);
2497 encode_sequence(&xdr, &args->seq_args, &hdr);
2498 encode_reclaim_complete(&xdr, args, &hdr);
2499 encode_nops(&hdr);
2500 return 0;
2501}
2502
Benny Halevy99fe60d2009-04-01 09:22:29 -04002503#endif /* CONFIG_NFS_V4_1 */
2504
Benny Halevy686841b2009-08-14 17:19:48 +03002505static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
2506{
2507 dprintk("nfs: %s: prematurely hit end of receive buffer. "
2508 "Remaining buffer length is %tu words.\n",
2509 func, xdr->end - xdr->p);
2510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Trond Myklebust683b57b2006-06-09 09:34:22 -04002512static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Al Viro8687b632006-10-19 23:28:48 -07002514 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Benny Halevyc0eae662009-08-14 17:20:14 +03002516 p = xdr_inline_decode(xdr, 4);
2517 if (unlikely(!p))
2518 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002519 *len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03002520 p = xdr_inline_decode(xdr, *len);
2521 if (unlikely(!p))
2522 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 *string = (char *)p;
2524 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002525out_overflow:
2526 print_overflow_msg(__func__, xdr);
2527 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
2530static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2531{
Al Viro8687b632006-10-19 23:28:48 -07002532 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Benny Halevyc0eae662009-08-14 17:20:14 +03002534 p = xdr_inline_decode(xdr, 8);
2535 if (unlikely(!p))
2536 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03002537 hdr->status = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03002538 hdr->taglen = be32_to_cpup(p);
Andy Adamson6c0195a2008-12-23 16:06:15 -05002539
Benny Halevyc0eae662009-08-14 17:20:14 +03002540 p = xdr_inline_decode(xdr, hdr->taglen + 4);
2541 if (unlikely(!p))
2542 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 hdr->tag = (char *)p;
2544 p += XDR_QUADLEN(hdr->taglen);
Benny Halevycccddf42009-08-14 17:20:19 +03002545 hdr->nops = be32_to_cpup(p);
Benny Halevyaadf6152008-12-23 16:06:13 -05002546 if (unlikely(hdr->nops < 1))
2547 return nfs4_stat_to_errno(hdr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002549out_overflow:
2550 print_overflow_msg(__func__, xdr);
2551 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
2554static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2555{
Al Viro8687b632006-10-19 23:28:48 -07002556 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 uint32_t opnum;
2558 int32_t nfserr;
2559
Benny Halevyc0eae662009-08-14 17:20:14 +03002560 p = xdr_inline_decode(xdr, 8);
2561 if (unlikely(!p))
2562 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03002563 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 if (opnum != expected) {
Chuck Leverfe82a182007-09-11 18:01:10 -04002565 dprintk("nfs: Server returned operation"
2566 " %d but we issued a request for %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 opnum, expected);
2568 return -EIO;
2569 }
Benny Halevycccddf42009-08-14 17:20:19 +03002570 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (nfserr != NFS_OK)
Benny Halevy856dff32008-03-31 17:39:06 +03002572 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002574out_overflow:
2575 print_overflow_msg(__func__, xdr);
2576 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
2579/* Dummy routine */
David Howellsadfa6f92006-08-22 20:06:08 -04002580static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
Al Viro8687b632006-10-19 23:28:48 -07002582 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002583 unsigned int strlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 char *str;
2585
Benny Halevyc0eae662009-08-14 17:20:14 +03002586 p = xdr_inline_decode(xdr, 12);
2587 if (likely(p))
2588 return decode_opaque_inline(xdr, &strlen, &str);
2589 print_overflow_msg(__func__, xdr);
2590 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591}
2592
2593static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2594{
Al Viro8687b632006-10-19 23:28:48 -07002595 uint32_t bmlen;
2596 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Benny Halevyc0eae662009-08-14 17:20:14 +03002598 p = xdr_inline_decode(xdr, 4);
2599 if (unlikely(!p))
2600 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002601 bmlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 bitmap[0] = bitmap[1] = 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002604 p = xdr_inline_decode(xdr, (bmlen << 2));
2605 if (unlikely(!p))
2606 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 if (bmlen > 0) {
Benny Halevy6f723f72009-08-14 17:19:37 +03002608 bitmap[0] = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (bmlen > 1)
Benny Halevycccddf42009-08-14 17:20:19 +03002610 bitmap[1] = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
2612 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002613out_overflow:
2614 print_overflow_msg(__func__, xdr);
2615 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
Al Viro8687b632006-10-19 23:28:48 -07002618static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
Al Viro8687b632006-10-19 23:28:48 -07002620 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Benny Halevyc0eae662009-08-14 17:20:14 +03002622 p = xdr_inline_decode(xdr, 4);
2623 if (unlikely(!p))
2624 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002625 *attrlen = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 *savep = xdr->p;
2627 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002628out_overflow:
2629 print_overflow_msg(__func__, xdr);
2630 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
2633static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
2634{
2635 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
2636 decode_attr_bitmap(xdr, bitmask);
2637 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
2638 } else
2639 bitmask[0] = bitmask[1] = 0;
Fred Isaman44109242008-04-02 15:21:15 +03002640 dprintk("%s: bitmask=%08x:%08x\n", __func__, bitmask[0], bitmask[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return 0;
2642}
2643
2644static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
2645{
Al Viro8687b632006-10-19 23:28:48 -07002646 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002647 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 *type = 0;
2650 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
2651 return -EIO;
2652 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002653 p = xdr_inline_decode(xdr, 4);
2654 if (unlikely(!p))
2655 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002656 *type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (*type < NF4REG || *type > NF4NAMEDATTR) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002658 dprintk("%s: bad type %d\n", __func__, *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 return -EIO;
2660 }
2661 bitmap[0] &= ~FATTR4_WORD0_TYPE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002662 ret = NFS_ATTR_FATTR_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
Trond Myklebustbca79472009-03-11 14:10:26 -04002664 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
Trond Myklebust409924e2009-03-11 14:10:27 -04002665 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002666out_overflow:
2667 print_overflow_msg(__func__, xdr);
2668 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
2671static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
2672{
Al Viro8687b632006-10-19 23:28:48 -07002673 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002674 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676 *change = 0;
2677 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
2678 return -EIO;
2679 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002680 p = xdr_inline_decode(xdr, 8);
2681 if (unlikely(!p))
2682 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002683 xdr_decode_hyper(p, change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002685 ret = NFS_ATTR_FATTR_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002687 dprintk("%s: change attribute=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 (unsigned long long)*change);
Trond Myklebust409924e2009-03-11 14:10:27 -04002689 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002690out_overflow:
2691 print_overflow_msg(__func__, xdr);
2692 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693}
2694
2695static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
2696{
Al Viro8687b632006-10-19 23:28:48 -07002697 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002698 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 *size = 0;
2701 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
2702 return -EIO;
2703 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002704 p = xdr_inline_decode(xdr, 8);
2705 if (unlikely(!p))
2706 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002707 xdr_decode_hyper(p, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 bitmap[0] &= ~FATTR4_WORD0_SIZE;
Trond Myklebust409924e2009-03-11 14:10:27 -04002709 ret = NFS_ATTR_FATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002711 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
Trond Myklebust409924e2009-03-11 14:10:27 -04002712 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002713out_overflow:
2714 print_overflow_msg(__func__, xdr);
2715 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
2717
2718static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2719{
Al Viro8687b632006-10-19 23:28:48 -07002720 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 *res = 0;
2723 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
2724 return -EIO;
2725 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002726 p = xdr_inline_decode(xdr, 4);
2727 if (unlikely(!p))
2728 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002729 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
2731 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002732 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002734out_overflow:
2735 print_overflow_msg(__func__, xdr);
2736 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
2739static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2740{
Al Viro8687b632006-10-19 23:28:48 -07002741 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 *res = 0;
2744 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
2745 return -EIO;
2746 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002747 p = xdr_inline_decode(xdr, 4);
2748 if (unlikely(!p))
2749 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002750 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
2752 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002753 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002755out_overflow:
2756 print_overflow_msg(__func__, xdr);
2757 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -04002760static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
Al Viro8687b632006-10-19 23:28:48 -07002762 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002763 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 fsid->major = 0;
2766 fsid->minor = 0;
2767 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
2768 return -EIO;
2769 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002770 p = xdr_inline_decode(xdr, 16);
2771 if (unlikely(!p))
2772 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03002773 p = xdr_decode_hyper(p, &fsid->major);
Benny Halevycccddf42009-08-14 17:20:19 +03002774 xdr_decode_hyper(p, &fsid->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 bitmap[0] &= ~FATTR4_WORD0_FSID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002776 ret = NFS_ATTR_FATTR_FSID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002778 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 (unsigned long long)fsid->major,
2780 (unsigned long long)fsid->minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04002781 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002782out_overflow:
2783 print_overflow_msg(__func__, xdr);
2784 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785}
2786
2787static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2788{
Al Viro8687b632006-10-19 23:28:48 -07002789 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791 *res = 60;
2792 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
2793 return -EIO;
2794 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002795 p = xdr_inline_decode(xdr, 4);
2796 if (unlikely(!p))
2797 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002798 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
2800 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002801 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002803out_overflow:
2804 print_overflow_msg(__func__, xdr);
2805 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806}
2807
2808static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2809{
Al Viro8687b632006-10-19 23:28:48 -07002810 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
2813 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
2814 return -EIO;
2815 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002816 p = xdr_inline_decode(xdr, 4);
2817 if (unlikely(!p))
2818 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002819 *res = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
2821 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002822 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03002824out_overflow:
2825 print_overflow_msg(__func__, xdr);
2826 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
2829static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2830{
Al Viro8687b632006-10-19 23:28:48 -07002831 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002832 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 *fileid = 0;
2835 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
2836 return -EIO;
2837 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002838 p = xdr_inline_decode(xdr, 8);
2839 if (unlikely(!p))
2840 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002841 xdr_decode_hyper(p, fileid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 bitmap[0] &= ~FATTR4_WORD0_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002843 ret = NFS_ATTR_FATTR_FILEID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002845 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002846 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002847out_overflow:
2848 print_overflow_msg(__func__, xdr);
2849 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850}
2851
Manoj Naik99baf622006-06-09 09:34:24 -04002852static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2853{
Al Viro8687b632006-10-19 23:28:48 -07002854 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04002855 int ret = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04002856
2857 *fileid = 0;
2858 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
2859 return -EIO;
2860 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002861 p = xdr_inline_decode(xdr, 8);
2862 if (unlikely(!p))
2863 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002864 xdr_decode_hyper(p, fileid);
Manoj Naik99baf622006-06-09 09:34:24 -04002865 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
Trond Myklebust409924e2009-03-11 14:10:27 -04002866 ret = NFS_ATTR_FATTR_FILEID;
Manoj Naik99baf622006-06-09 09:34:24 -04002867 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002868 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
Trond Myklebust409924e2009-03-11 14:10:27 -04002869 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03002870out_overflow:
2871 print_overflow_msg(__func__, xdr);
2872 return -EIO;
Manoj Naik99baf622006-06-09 09:34:24 -04002873}
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2876{
Al Viro8687b632006-10-19 23:28:48 -07002877 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 int status = 0;
2879
2880 *res = 0;
2881 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
2882 return -EIO;
2883 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002884 p = xdr_inline_decode(xdr, 8);
2885 if (unlikely(!p))
2886 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002887 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
2889 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002890 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03002892out_overflow:
2893 print_overflow_msg(__func__, xdr);
2894 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
2897static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2898{
Al Viro8687b632006-10-19 23:28:48 -07002899 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 int status = 0;
2901
2902 *res = 0;
2903 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
2904 return -EIO;
2905 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002906 p = xdr_inline_decode(xdr, 8);
2907 if (unlikely(!p))
2908 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002909 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
2911 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002912 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03002914out_overflow:
2915 print_overflow_msg(__func__, xdr);
2916 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
2919static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2920{
Al Viro8687b632006-10-19 23:28:48 -07002921 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 int status = 0;
2923
2924 *res = 0;
2925 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
2926 return -EIO;
2927 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03002928 p = xdr_inline_decode(xdr, 8);
2929 if (unlikely(!p))
2930 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002931 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
2933 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07002934 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03002936out_overflow:
2937 print_overflow_msg(__func__, xdr);
2938 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939}
2940
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002941static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
2942{
Chuck Lever464ad6b2007-10-26 13:32:08 -04002943 u32 n;
Al Viro8687b632006-10-19 23:28:48 -07002944 __be32 *p;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002945 int status = 0;
2946
Benny Halevyc0eae662009-08-14 17:20:14 +03002947 p = xdr_inline_decode(xdr, 4);
2948 if (unlikely(!p))
2949 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03002950 n = be32_to_cpup(p);
Andy Adamson33a43f22006-06-09 09:34:30 -04002951 if (n == 0)
2952 goto root_path;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002953 dprintk("path ");
2954 path->ncomponents = 0;
2955 while (path->ncomponents < n) {
2956 struct nfs4_string *component = &path->components[path->ncomponents];
2957 status = decode_opaque_inline(xdr, &component->len, &component->data);
2958 if (unlikely(status != 0))
2959 goto out_eio;
2960 if (path->ncomponents != n)
2961 dprintk("/");
2962 dprintk("%s", component->data);
2963 if (path->ncomponents < NFS4_PATHNAME_MAXCOMPONENTS)
2964 path->ncomponents++;
2965 else {
2966 dprintk("cannot parse %d components in path\n", n);
2967 goto out_eio;
2968 }
2969 }
2970out:
2971 dprintk("\n");
2972 return status;
Andy Adamson33a43f22006-06-09 09:34:30 -04002973root_path:
2974/* a root pathname is sent as a zero component4 */
2975 path->ncomponents = 1;
2976 path->components[0].len=0;
2977 path->components[0].data=NULL;
2978 dprintk("path /\n");
2979 goto out;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002980out_eio:
2981 dprintk(" status %d", status);
2982 status = -EIO;
2983 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03002984out_overflow:
2985 print_overflow_msg(__func__, xdr);
2986 return -EIO;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04002987}
2988
2989static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04002990{
2991 int n;
Al Viro8687b632006-10-19 23:28:48 -07002992 __be32 *p;
Trond Myklebust683b57b2006-06-09 09:34:22 -04002993 int status = -EIO;
2994
2995 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
2996 goto out;
2997 status = 0;
2998 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
2999 goto out;
Harvey Harrison3110ff82008-05-02 13:42:44 -07003000 dprintk("%s: fsroot ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003001 status = decode_pathname(xdr, &res->fs_path);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003002 if (unlikely(status != 0))
3003 goto out;
Benny Halevyc0eae662009-08-14 17:20:14 +03003004 p = xdr_inline_decode(xdr, 4);
3005 if (unlikely(!p))
3006 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003007 n = be32_to_cpup(p);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003008 if (n <= 0)
3009 goto out_eio;
3010 res->nlocations = 0;
3011 while (res->nlocations < n) {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003012 u32 m;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003013 struct nfs4_fs_location *loc = &res->locations[res->nlocations];
Trond Myklebust683b57b2006-06-09 09:34:22 -04003014
Benny Halevyc0eae662009-08-14 17:20:14 +03003015 p = xdr_inline_decode(xdr, 4);
3016 if (unlikely(!p))
3017 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003018 m = be32_to_cpup(p);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003019
3020 loc->nservers = 0;
Harvey Harrison3110ff82008-05-02 13:42:44 -07003021 dprintk("%s: servers ", __func__);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003022 while (loc->nservers < m) {
3023 struct nfs4_string *server = &loc->servers[loc->nservers];
3024 status = decode_opaque_inline(xdr, &server->len, &server->data);
3025 if (unlikely(status != 0))
3026 goto out_eio;
3027 dprintk("%s ", server->data);
3028 if (loc->nservers < NFS4_FS_LOCATION_MAXSERVERS)
3029 loc->nservers++;
3030 else {
Chuck Lever464ad6b2007-10-26 13:32:08 -04003031 unsigned int i;
3032 dprintk("%s: using first %u of %u servers "
3033 "returned for location %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003034 __func__,
Chuck Lever464ad6b2007-10-26 13:32:08 -04003035 NFS4_FS_LOCATION_MAXSERVERS,
3036 m, res->nlocations);
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003037 for (i = loc->nservers; i < m; i++) {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -04003038 unsigned int len;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003039 char *data;
3040 status = decode_opaque_inline(xdr, &len, &data);
3041 if (unlikely(status != 0))
3042 goto out_eio;
3043 }
3044 }
3045 }
3046 status = decode_pathname(xdr, &loc->rootpath);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003047 if (unlikely(status != 0))
3048 goto out_eio;
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003049 if (res->nlocations < NFS4_FS_LOCATIONS_MAXENTRIES)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003050 res->nlocations++;
3051 }
Trond Myklebust409924e2009-03-11 14:10:27 -04003052 if (res->nlocations != 0)
3053 status = NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003054out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003055 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003056 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003057out_overflow:
3058 print_overflow_msg(__func__, xdr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003059out_eio:
3060 status = -EIO;
3061 goto out;
3062}
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3065{
Al Viro8687b632006-10-19 23:28:48 -07003066 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 int status = 0;
3068
3069 *res = 0;
3070 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3071 return -EIO;
3072 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003073 p = xdr_inline_decode(xdr, 8);
3074 if (unlikely(!p))
3075 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003076 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3078 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003079 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003081out_overflow:
3082 print_overflow_msg(__func__, xdr);
3083 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
3085
3086static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3087{
Al Viro8687b632006-10-19 23:28:48 -07003088 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 int status = 0;
3090
3091 *maxlink = 1;
3092 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3093 return -EIO;
3094 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003095 p = xdr_inline_decode(xdr, 4);
3096 if (unlikely(!p))
3097 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003098 *maxlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3100 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003101 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003103out_overflow:
3104 print_overflow_msg(__func__, xdr);
3105 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
3107
3108static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3109{
Al Viro8687b632006-10-19 23:28:48 -07003110 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 int status = 0;
3112
3113 *maxname = 1024;
3114 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3115 return -EIO;
3116 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003117 p = xdr_inline_decode(xdr, 4);
3118 if (unlikely(!p))
3119 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003120 *maxname = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3122 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003123 dprintk("%s: maxname=%u\n", __func__, *maxname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003125out_overflow:
3126 print_overflow_msg(__func__, xdr);
3127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
3129
3130static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3131{
Al Viro8687b632006-10-19 23:28:48 -07003132 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 int status = 0;
3134
3135 *res = 1024;
3136 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3137 return -EIO;
3138 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3139 uint64_t maxread;
Benny Halevyc0eae662009-08-14 17:20:14 +03003140 p = xdr_inline_decode(xdr, 8);
3141 if (unlikely(!p))
3142 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003143 xdr_decode_hyper(p, &maxread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (maxread > 0x7FFFFFFF)
3145 maxread = 0x7FFFFFFF;
3146 *res = (uint32_t)maxread;
3147 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3148 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003149 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003151out_overflow:
3152 print_overflow_msg(__func__, xdr);
3153 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
3155
3156static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3157{
Al Viro8687b632006-10-19 23:28:48 -07003158 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 int status = 0;
3160
3161 *res = 1024;
3162 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3163 return -EIO;
3164 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3165 uint64_t maxwrite;
Benny Halevyc0eae662009-08-14 17:20:14 +03003166 p = xdr_inline_decode(xdr, 8);
3167 if (unlikely(!p))
3168 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003169 xdr_decode_hyper(p, &maxwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (maxwrite > 0x7FFFFFFF)
3171 maxwrite = 0x7FFFFFFF;
3172 *res = (uint32_t)maxwrite;
3173 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3174 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003175 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003177out_overflow:
3178 print_overflow_msg(__func__, xdr);
3179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180}
3181
Trond Myklebustbca79472009-03-11 14:10:26 -04003182static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183{
Trond Myklebustbca79472009-03-11 14:10:26 -04003184 uint32_t tmp;
Al Viro8687b632006-10-19 23:28:48 -07003185 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003186 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188 *mode = 0;
3189 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3190 return -EIO;
3191 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003192 p = xdr_inline_decode(xdr, 4);
3193 if (unlikely(!p))
3194 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003195 tmp = be32_to_cpup(p);
Trond Myklebustbca79472009-03-11 14:10:26 -04003196 *mode = tmp & ~S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 bitmap[1] &= ~FATTR4_WORD1_MODE;
Trond Myklebust409924e2009-03-11 14:10:27 -04003198 ret = NFS_ATTR_FATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003200 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
Trond Myklebust409924e2009-03-11 14:10:27 -04003201 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003202out_overflow:
3203 print_overflow_msg(__func__, xdr);
3204 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205}
3206
3207static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3208{
Al Viro8687b632006-10-19 23:28:48 -07003209 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003210 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
3212 *nlink = 1;
3213 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3214 return -EIO;
3215 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003216 p = xdr_inline_decode(xdr, 4);
3217 if (unlikely(!p))
3218 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003219 *nlink = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
Trond Myklebust409924e2009-03-11 14:10:27 -04003221 ret = NFS_ATTR_FATTR_NLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003223 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
Trond Myklebust409924e2009-03-11 14:10:27 -04003224 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003225out_overflow:
3226 print_overflow_msg(__func__, xdr);
3227 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228}
3229
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003230static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
3231 struct nfs_client *clp, uint32_t *uid, int may_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232{
Al Viro8687b632006-10-19 23:28:48 -07003233 uint32_t len;
3234 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003235 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 *uid = -2;
3238 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3239 return -EIO;
3240 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003241 p = xdr_inline_decode(xdr, 4);
3242 if (unlikely(!p))
3243 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003244 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003245 p = xdr_inline_decode(xdr, len);
3246 if (unlikely(!p))
3247 goto out_overflow;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003248 if (!may_sleep) {
3249 /* do nothing */
3250 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003251 if (nfs_map_name_to_uid(clp, (char *)p, len, uid) == 0)
3252 ret = NFS_ATTR_FATTR_OWNER;
3253 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 dprintk("%s: nfs_map_name_to_uid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003255 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003257 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003258 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3260 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003261 dprintk("%s: uid=%d\n", __func__, (int)*uid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003262 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003263out_overflow:
3264 print_overflow_msg(__func__, xdr);
3265 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266}
3267
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003268static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
3269 struct nfs_client *clp, uint32_t *gid, int may_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270{
Al Viro8687b632006-10-19 23:28:48 -07003271 uint32_t len;
3272 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003273 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
3275 *gid = -2;
3276 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3277 return -EIO;
3278 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003279 p = xdr_inline_decode(xdr, 4);
3280 if (unlikely(!p))
3281 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003282 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003283 p = xdr_inline_decode(xdr, len);
3284 if (unlikely(!p))
3285 goto out_overflow;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003286 if (!may_sleep) {
3287 /* do nothing */
3288 } else if (len < XDR_MAX_NETOBJ) {
Trond Myklebust409924e2009-03-11 14:10:27 -04003289 if (nfs_map_group_to_gid(clp, (char *)p, len, gid) == 0)
3290 ret = NFS_ATTR_FATTR_GROUP;
3291 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 dprintk("%s: nfs_map_group_to_gid failed!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003293 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 } else
Chuck Leverfe82a182007-09-11 18:01:10 -04003295 dprintk("%s: name too long (%u)!\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003296 __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3298 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003299 dprintk("%s: gid=%d\n", __func__, (int)*gid);
Trond Myklebust409924e2009-03-11 14:10:27 -04003300 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003301out_overflow:
3302 print_overflow_msg(__func__, xdr);
3303 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304}
3305
3306static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3307{
Al Viro8687b632006-10-19 23:28:48 -07003308 uint32_t major = 0, minor = 0;
3309 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003310 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
3312 *rdev = MKDEV(0,0);
3313 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3314 return -EIO;
3315 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3316 dev_t tmp;
3317
Benny Halevyc0eae662009-08-14 17:20:14 +03003318 p = xdr_inline_decode(xdr, 8);
3319 if (unlikely(!p))
3320 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003321 major = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003322 minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 tmp = MKDEV(major, minor);
3324 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3325 *rdev = tmp;
3326 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
Trond Myklebust409924e2009-03-11 14:10:27 -04003327 ret = NFS_ATTR_FATTR_RDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003329 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
Trond Myklebust409924e2009-03-11 14:10:27 -04003330 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003331out_overflow:
3332 print_overflow_msg(__func__, xdr);
3333 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334}
3335
3336static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3337{
Al Viro8687b632006-10-19 23:28:48 -07003338 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 int status = 0;
3340
3341 *res = 0;
3342 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3343 return -EIO;
3344 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003345 p = xdr_inline_decode(xdr, 8);
3346 if (unlikely(!p))
3347 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003348 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
3350 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003351 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003353out_overflow:
3354 print_overflow_msg(__func__, xdr);
3355 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356}
3357
3358static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3359{
Al Viro8687b632006-10-19 23:28:48 -07003360 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 int status = 0;
3362
3363 *res = 0;
3364 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
3365 return -EIO;
3366 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003367 p = xdr_inline_decode(xdr, 8);
3368 if (unlikely(!p))
3369 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003370 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
3372 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003373 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003375out_overflow:
3376 print_overflow_msg(__func__, xdr);
3377 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378}
3379
3380static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3381{
Al Viro8687b632006-10-19 23:28:48 -07003382 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 int status = 0;
3384
3385 *res = 0;
3386 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
3387 return -EIO;
3388 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003389 p = xdr_inline_decode(xdr, 8);
3390 if (unlikely(!p))
3391 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003392 xdr_decode_hyper(p, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
3394 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003395 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003397out_overflow:
3398 print_overflow_msg(__func__, xdr);
3399 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400}
3401
3402static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
3403{
Al Viro8687b632006-10-19 23:28:48 -07003404 __be32 *p;
Trond Myklebust409924e2009-03-11 14:10:27 -04003405 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
3407 *used = 0;
3408 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
3409 return -EIO;
3410 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
Benny Halevyc0eae662009-08-14 17:20:14 +03003411 p = xdr_inline_decode(xdr, 8);
3412 if (unlikely(!p))
3413 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003414 xdr_decode_hyper(p, used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
Trond Myklebust409924e2009-03-11 14:10:27 -04003416 ret = NFS_ATTR_FATTR_SPACE_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003418 dprintk("%s: space used=%Lu\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 (unsigned long long)*used);
Trond Myklebust409924e2009-03-11 14:10:27 -04003420 return ret;
Benny Halevyc0eae662009-08-14 17:20:14 +03003421out_overflow:
3422 print_overflow_msg(__func__, xdr);
3423 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
3426static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
3427{
Al Viro8687b632006-10-19 23:28:48 -07003428 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 uint64_t sec;
3430 uint32_t nsec;
3431
Benny Halevyc0eae662009-08-14 17:20:14 +03003432 p = xdr_inline_decode(xdr, 12);
3433 if (unlikely(!p))
3434 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003435 p = xdr_decode_hyper(p, &sec);
Benny Halevycccddf42009-08-14 17:20:19 +03003436 nsec = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 time->tv_sec = (time_t)sec;
3438 time->tv_nsec = (long)nsec;
3439 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003440out_overflow:
3441 print_overflow_msg(__func__, xdr);
3442 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
3445static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3446{
3447 int status = 0;
3448
3449 time->tv_sec = 0;
3450 time->tv_nsec = 0;
3451 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
3452 return -EIO;
3453 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
3454 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003455 if (status == 0)
3456 status = NFS_ATTR_FATTR_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
3458 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003459 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 return status;
3461}
3462
3463static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3464{
3465 int status = 0;
3466
3467 time->tv_sec = 0;
3468 time->tv_nsec = 0;
3469 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
3470 return -EIO;
3471 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
3472 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003473 if (status == 0)
3474 status = NFS_ATTR_FATTR_CTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
3476 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003477 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 return status;
3479}
3480
3481static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
3482{
3483 int status = 0;
3484
3485 time->tv_sec = 0;
3486 time->tv_nsec = 0;
3487 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
3488 return -EIO;
3489 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
3490 status = decode_attr_time(xdr, time);
Trond Myklebust409924e2009-03-11 14:10:27 -04003491 if (status == 0)
3492 status = NFS_ATTR_FATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
3494 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07003495 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 return status;
3497}
3498
Al Viro8687b632006-10-19 23:28:48 -07003499static int verify_attr_len(struct xdr_stream *xdr, __be32 *savep, uint32_t attrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500{
3501 unsigned int attrwords = XDR_QUADLEN(attrlen);
3502 unsigned int nwords = xdr->p - savep;
3503
3504 if (unlikely(attrwords != nwords)) {
Chuck Leverfe82a182007-09-11 18:01:10 -04003505 dprintk("%s: server returned incorrect attribute length: "
3506 "%u %c %u\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07003507 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 attrwords << 2,
3509 (attrwords < nwords) ? '<' : '>',
3510 nwords << 2);
3511 return -EIO;
3512 }
3513 return 0;
3514}
3515
3516static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3517{
Al Viro8687b632006-10-19 23:28:48 -07003518 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Benny Halevyc0eae662009-08-14 17:20:14 +03003520 p = xdr_inline_decode(xdr, 20);
3521 if (unlikely(!p))
3522 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003523 cinfo->atomic = be32_to_cpup(p++);
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003524 p = xdr_decode_hyper(p, &cinfo->before);
Benny Halevycccddf42009-08-14 17:20:19 +03003525 xdr_decode_hyper(p, &cinfo->after);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003527out_overflow:
3528 print_overflow_msg(__func__, xdr);
3529 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530}
3531
3532static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
3533{
Al Viro8687b632006-10-19 23:28:48 -07003534 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 uint32_t supp, acc;
3536 int status;
3537
3538 status = decode_op_hdr(xdr, OP_ACCESS);
3539 if (status)
3540 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003541 p = xdr_inline_decode(xdr, 8);
3542 if (unlikely(!p))
3543 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003544 supp = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003545 acc = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 access->supported = supp;
3547 access->access = acc;
3548 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003549out_overflow:
3550 print_overflow_msg(__func__, xdr);
3551 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552}
3553
Benny Halevy07d30432009-08-14 17:19:52 +03003554static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555{
Al Viro8687b632006-10-19 23:28:48 -07003556 __be32 *p;
Benny Halevy07d30432009-08-14 17:19:52 +03003557
3558 p = xdr_inline_decode(xdr, len);
3559 if (likely(p)) {
3560 memcpy(buf, p, len);
3561 return 0;
3562 }
3563 print_overflow_msg(__func__, xdr);
3564 return -EIO;
3565}
3566
3567static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
3568{
3569 return decode_opaque_fixed(xdr, stateid->data, NFS4_STATEID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570}
3571
3572static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
3573{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 int status;
3575
3576 status = decode_op_hdr(xdr, OP_CLOSE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003577 if (status != -EIO)
3578 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003579 if (!status)
3580 status = decode_stateid(xdr, &res->stateid);
3581 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582}
3583
Benny Halevydb942bb2009-08-14 17:19:56 +03003584static int decode_verifier(struct xdr_stream *xdr, void *verifier)
3585{
3586 return decode_opaque_fixed(xdr, verifier, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587}
3588
3589static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
3590{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 int status;
3592
3593 status = decode_op_hdr(xdr, OP_COMMIT);
Benny Halevydb942bb2009-08-14 17:19:56 +03003594 if (!status)
3595 status = decode_verifier(xdr, res->verf->verifier);
3596 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597}
3598
3599static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3600{
Al Viro8687b632006-10-19 23:28:48 -07003601 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 uint32_t bmlen;
3603 int status;
3604
3605 status = decode_op_hdr(xdr, OP_CREATE);
3606 if (status)
3607 return status;
3608 if ((status = decode_change_info(xdr, cinfo)))
3609 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03003610 p = xdr_inline_decode(xdr, 4);
3611 if (unlikely(!p))
3612 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003613 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003614 p = xdr_inline_decode(xdr, bmlen << 2);
3615 if (likely(p))
3616 return 0;
3617out_overflow:
3618 print_overflow_msg(__func__, xdr);
3619 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620}
3621
3622static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
3623{
Al Viro8687b632006-10-19 23:28:48 -07003624 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003625 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 int status;
3627
3628 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3629 goto xdr_error;
3630 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3631 goto xdr_error;
3632 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3633 goto xdr_error;
3634 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
3635 goto xdr_error;
3636 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
3637 goto xdr_error;
3638 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
3639 goto xdr_error;
3640 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
3641 goto xdr_error;
3642 status = verify_attr_len(xdr, savep, attrlen);
3643xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003644 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 return status;
3646}
Andy Adamson6c0195a2008-12-23 16:06:15 -05003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
3649{
Al Viro8687b632006-10-19 23:28:48 -07003650 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003651 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3655 goto xdr_error;
3656 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3657 goto xdr_error;
3658 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3659 goto xdr_error;
3660
3661 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
3662 goto xdr_error;
3663 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
3664 goto xdr_error;
3665 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
3666 goto xdr_error;
3667 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
3668 goto xdr_error;
3669 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
3670 goto xdr_error;
3671 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
3672 goto xdr_error;
3673
3674 status = verify_attr_len(xdr, savep, attrlen);
3675xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003676 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 return status;
3678}
3679
3680static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
3681{
Al Viro8687b632006-10-19 23:28:48 -07003682 __be32 *savep;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003683 uint32_t attrlen, bitmap[2] = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3687 goto xdr_error;
3688 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3689 goto xdr_error;
3690 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3691 goto xdr_error;
3692
3693 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
3694 goto xdr_error;
3695 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
3696 goto xdr_error;
3697
3698 status = verify_attr_len(xdr, savep, attrlen);
3699xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003700 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 return status;
3702}
3703
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003704static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
3705 const struct nfs_server *server, int may_sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706{
Al Viro8687b632006-10-19 23:28:48 -07003707 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 uint32_t attrlen,
3709 bitmap[2] = {0},
3710 type;
Trond Myklebustbca79472009-03-11 14:10:26 -04003711 int status;
3712 umode_t fmode = 0;
Manoj Naik99baf622006-06-09 09:34:24 -04003713 uint64_t fileid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003715 status = decode_op_hdr(xdr, OP_GETATTR);
3716 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 goto xdr_error;
3718
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003719 status = decode_attr_bitmap(xdr, bitmap);
3720 if (status < 0)
3721 goto xdr_error;
3722
3723 status = decode_attr_length(xdr, &attrlen, &savep);
3724 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 goto xdr_error;
3726
3727
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003728 status = decode_attr_type(xdr, bitmap, &type);
3729 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003731 fattr->mode = 0;
3732 if (status != 0) {
3733 fattr->mode |= nfs_type2fmt[type];
3734 fattr->valid |= status;
3735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003737 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
3738 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003740 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003741
3742 status = decode_attr_size(xdr, bitmap, &fattr->size);
3743 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003745 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003746
3747 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
3748 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003750 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003751
3752 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
3753 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003755 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003756
3757 status = decode_attr_fs_locations(xdr, bitmap, container_of(fattr,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003758 struct nfs4_fs_locations,
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003759 fattr));
3760 if (status < 0)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003761 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003762 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003763
3764 status = decode_attr_mode(xdr, bitmap, &fmode);
3765 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003767 if (status != 0) {
3768 fattr->mode |= fmode;
3769 fattr->valid |= status;
3770 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003771
3772 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
3773 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003775 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003776
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003777 status = decode_attr_owner(xdr, bitmap, server->nfs_client,
3778 &fattr->uid, may_sleep);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003779 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003781 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003782
Trond Myklebust80e52ac2009-08-09 15:06:19 -04003783 status = decode_attr_group(xdr, bitmap, server->nfs_client,
3784 &fattr->gid, may_sleep);
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003785 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003787 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003788
3789 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
3790 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003792 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003793
3794 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
3795 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003797 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003798
3799 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
3800 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003802 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003803
3804 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
3805 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003807 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003808
3809 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
3810 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003812 fattr->valid |= status;
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003813
3814 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fileid);
3815 if (status < 0)
Manoj Naik99baf622006-06-09 09:34:24 -04003816 goto xdr_error;
Trond Myklebust409924e2009-03-11 14:10:27 -04003817 if (status != 0 && !(fattr->valid & status)) {
Manoj Naik99baf622006-06-09 09:34:24 -04003818 fattr->fileid = fileid;
Trond Myklebust409924e2009-03-11 14:10:27 -04003819 fattr->valid |= status;
3820 }
Trond Myklebustf26c7a72009-03-11 14:10:26 -04003821
3822 status = verify_attr_len(xdr, savep, attrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003824 dprintk("%s: xdr returned %d\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 return status;
3826}
3827
3828
3829static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
3830{
Al Viro8687b632006-10-19 23:28:48 -07003831 __be32 *savep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 uint32_t attrlen, bitmap[2];
3833 int status;
3834
3835 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3836 goto xdr_error;
3837 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3838 goto xdr_error;
3839 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3840 goto xdr_error;
3841
3842 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
3843
3844 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
3845 goto xdr_error;
3846 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
3847 goto xdr_error;
3848 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
3849 goto xdr_error;
3850 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
3851 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
3852 goto xdr_error;
3853 fsinfo->wtpref = fsinfo->wtmax;
3854
3855 status = verify_attr_len(xdr, savep, attrlen);
3856xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003857 dprintk("%s: xdr returned %d!\n", __func__, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 return status;
3859}
3860
3861static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
3862{
Al Viro8687b632006-10-19 23:28:48 -07003863 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 uint32_t len;
3865 int status;
3866
Trond Myklebust99367812007-07-17 21:52:41 -04003867 /* Zero handle first to allow comparisons */
3868 memset(fh, 0, sizeof(*fh));
3869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 status = decode_op_hdr(xdr, OP_GETFH);
3871 if (status)
3872 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
Benny Halevyc0eae662009-08-14 17:20:14 +03003874 p = xdr_inline_decode(xdr, 4);
3875 if (unlikely(!p))
3876 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03003877 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 if (len > NFS4_FHSIZE)
3879 return -EIO;
3880 fh->size = len;
Benny Halevyc0eae662009-08-14 17:20:14 +03003881 p = xdr_inline_decode(xdr, len);
3882 if (unlikely(!p))
3883 goto out_overflow;
Benny Halevy99398d02009-08-14 17:20:05 +03003884 memcpy(fh->data, p, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03003886out_overflow:
3887 print_overflow_msg(__func__, xdr);
3888 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889}
3890
3891static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3892{
3893 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05003894
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 status = decode_op_hdr(xdr, OP_LINK);
3896 if (status)
3897 return status;
3898 return decode_change_info(xdr, cinfo);
3899}
3900
3901/*
3902 * We create the owner, so we know a proper owner.id length is 4.
3903 */
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003904static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003906 uint64_t offset, length, clientid;
Al Viro8687b632006-10-19 23:28:48 -07003907 __be32 *p;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003908 uint32_t namelen, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Benny Halevyc0eae662009-08-14 17:20:14 +03003910 p = xdr_inline_decode(xdr, 32);
3911 if (unlikely(!p))
3912 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003913 p = xdr_decode_hyper(p, &offset);
3914 p = xdr_decode_hyper(p, &length);
Benny Halevy6f723f72009-08-14 17:19:37 +03003915 type = be32_to_cpup(p++);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003916 if (fl != NULL) {
3917 fl->fl_start = (loff_t)offset;
3918 fl->fl_end = fl->fl_start + (loff_t)length - 1;
3919 if (length == ~(uint64_t)0)
3920 fl->fl_end = OFFSET_MAX;
3921 fl->fl_type = F_WRLCK;
3922 if (type & 1)
3923 fl->fl_type = F_RDLCK;
3924 fl->fl_pid = 0;
3925 }
Benny Halevy3ceb4db2009-08-14 17:19:41 +03003926 p = xdr_decode_hyper(p, &clientid);
Benny Halevycccddf42009-08-14 17:20:19 +03003927 namelen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03003928 p = xdr_inline_decode(xdr, namelen);
3929 if (likely(p))
3930 return -NFS4ERR_DENIED;
3931out_overflow:
3932 print_overflow_msg(__func__, xdr);
3933 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934}
3935
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003936static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 int status;
3939
3940 status = decode_op_hdr(xdr, OP_LOCK);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003941 if (status == -EIO)
3942 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 if (status == 0) {
Benny Halevy07d30432009-08-14 17:19:52 +03003944 status = decode_stateid(xdr, &res->stateid);
3945 if (unlikely(status))
3946 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 } else if (status == -NFS4ERR_DENIED)
Trond Myklebustc1d51932008-04-07 13:20:54 -04003948 status = decode_lock_denied(xdr, NULL);
3949 if (res->open_seqid != NULL)
3950 nfs_increment_open_seqid(status, res->open_seqid);
3951 nfs_increment_lock_seqid(status, res->lock_seqid);
3952out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return status;
3954}
3955
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003956static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957{
3958 int status;
3959 status = decode_op_hdr(xdr, OP_LOCKT);
3960 if (status == -NFS4ERR_DENIED)
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003961 return decode_lock_denied(xdr, res->denied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 return status;
3963}
3964
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003965static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 int status;
3968
3969 status = decode_op_hdr(xdr, OP_LOCKU);
Trond Myklebustc1d51932008-04-07 13:20:54 -04003970 if (status != -EIO)
3971 nfs_increment_lock_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03003972 if (status == 0)
3973 status = decode_stateid(xdr, &res->stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 return status;
3975}
3976
3977static int decode_lookup(struct xdr_stream *xdr)
3978{
3979 return decode_op_hdr(xdr, OP_LOOKUP);
3980}
3981
3982/* This is too sick! */
3983static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
3984{
Andy Adamson05d564f2008-12-23 16:06:15 -05003985 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 uint32_t limit_type, nblocks, blocksize;
3987
Benny Halevyc0eae662009-08-14 17:20:14 +03003988 p = xdr_inline_decode(xdr, 12);
3989 if (unlikely(!p))
3990 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03003991 limit_type = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 switch (limit_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05003993 case 1:
Benny Halevycccddf42009-08-14 17:20:19 +03003994 xdr_decode_hyper(p, maxsize);
Andy Adamson05d564f2008-12-23 16:06:15 -05003995 break;
3996 case 2:
Benny Halevy6f723f72009-08-14 17:19:37 +03003997 nblocks = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03003998 blocksize = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05003999 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 }
4001 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004002out_overflow:
4003 print_overflow_msg(__func__, xdr);
4004 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005}
4006
4007static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4008{
Andy Adamson05d564f2008-12-23 16:06:15 -05004009 __be32 *p;
4010 uint32_t delegation_type;
Benny Halevy07d30432009-08-14 17:19:52 +03004011 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Benny Halevyc0eae662009-08-14 17:20:14 +03004013 p = xdr_inline_decode(xdr, 4);
4014 if (unlikely(!p))
4015 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004016 delegation_type = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4018 res->delegation_type = 0;
4019 return 0;
4020 }
Benny Halevy07d30432009-08-14 17:19:52 +03004021 status = decode_stateid(xdr, &res->delegation);
4022 if (unlikely(status))
4023 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004024 p = xdr_inline_decode(xdr, 4);
4025 if (unlikely(!p))
4026 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004027 res->do_recall = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 switch (delegation_type) {
Andy Adamson05d564f2008-12-23 16:06:15 -05004030 case NFS4_OPEN_DELEGATE_READ:
4031 res->delegation_type = FMODE_READ;
4032 break;
4033 case NFS4_OPEN_DELEGATE_WRITE:
4034 res->delegation_type = FMODE_WRITE|FMODE_READ;
4035 if (decode_space_limit(xdr, &res->maxsize) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 return -EIO;
4037 }
David Howells7539bba2006-08-22 20:06:09 -04004038 return decode_ace(xdr, NULL, res->server->nfs_client);
Benny Halevyc0eae662009-08-14 17:20:14 +03004039out_overflow:
4040 print_overflow_msg(__func__, xdr);
4041 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042}
4043
4044static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
4045{
Andy Adamson05d564f2008-12-23 16:06:15 -05004046 __be32 *p;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004047 uint32_t savewords, bmlen, i;
Andy Adamson05d564f2008-12-23 16:06:15 -05004048 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
Andy Adamson05d564f2008-12-23 16:06:15 -05004050 status = decode_op_hdr(xdr, OP_OPEN);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004051 if (status != -EIO)
4052 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004053 if (!status)
4054 status = decode_stateid(xdr, &res->stateid);
4055 if (unlikely(status))
Andy Adamson05d564f2008-12-23 16:06:15 -05004056 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Andy Adamson05d564f2008-12-23 16:06:15 -05004058 decode_change_info(xdr, &res->cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Benny Halevyc0eae662009-08-14 17:20:14 +03004060 p = xdr_inline_decode(xdr, 8);
4061 if (unlikely(!p))
4062 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004063 res->rflags = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004064 bmlen = be32_to_cpup(p);
Andy Adamson05d564f2008-12-23 16:06:15 -05004065 if (bmlen > 10)
4066 goto xdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Benny Halevyc0eae662009-08-14 17:20:14 +03004068 p = xdr_inline_decode(xdr, bmlen << 2);
4069 if (unlikely(!p))
4070 goto out_overflow;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004071 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
4072 for (i = 0; i < savewords; ++i)
Benny Halevy6f723f72009-08-14 17:19:37 +03004073 res->attrset[i] = be32_to_cpup(p++);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04004074 for (; i < NFS4_BITMAP_SIZE; i++)
4075 res->attrset[i] = 0;
4076
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 return decode_delegation(xdr, res);
4078xdr_error:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004079 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 return -EIO;
Benny Halevyc0eae662009-08-14 17:20:14 +03004081out_overflow:
4082 print_overflow_msg(__func__, xdr);
4083 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084}
4085
4086static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
4087{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 int status;
4089
Andy Adamson05d564f2008-12-23 16:06:15 -05004090 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004091 if (status != -EIO)
4092 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004093 if (!status)
4094 status = decode_stateid(xdr, &res->stateid);
4095 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096}
4097
4098static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
4099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 int status;
4101
4102 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
Trond Myklebustc1d51932008-04-07 13:20:54 -04004103 if (status != -EIO)
4104 nfs_increment_open_seqid(status, res->seqid);
Benny Halevy07d30432009-08-14 17:19:52 +03004105 if (!status)
4106 status = decode_stateid(xdr, &res->stateid);
4107 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108}
4109
4110static int decode_putfh(struct xdr_stream *xdr)
4111{
4112 return decode_op_hdr(xdr, OP_PUTFH);
4113}
4114
4115static int decode_putrootfh(struct xdr_stream *xdr)
4116{
4117 return decode_op_hdr(xdr, OP_PUTROOTFH);
4118}
4119
4120static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
4121{
4122 struct kvec *iov = req->rq_rcv_buf.head;
Al Viro8687b632006-10-19 23:28:48 -07004123 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 uint32_t count, eof, recvd, hdrlen;
4125 int status;
4126
4127 status = decode_op_hdr(xdr, OP_READ);
4128 if (status)
4129 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004130 p = xdr_inline_decode(xdr, 8);
4131 if (unlikely(!p))
4132 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004133 eof = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004134 count = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 hdrlen = (u8 *) p - (u8 *) iov->iov_base;
4136 recvd = req->rq_rcv_buf.len - hdrlen;
4137 if (count > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004138 dprintk("NFS: server cheating in read reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 "count %u > recvd %u\n", count, recvd);
4140 count = recvd;
4141 eof = 0;
4142 }
4143 xdr_read_pages(xdr, count);
4144 res->eof = eof;
4145 res->count = count;
4146 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004147out_overflow:
4148 print_overflow_msg(__func__, xdr);
4149 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
4152static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
4153{
4154 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
4155 struct page *page = *rcvbuf->pages;
4156 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004157 size_t hdrlen;
4158 u32 recvd, pglen = rcvbuf->page_len;
Al Viro8687b632006-10-19 23:28:48 -07004159 __be32 *end, *entry, *p, *kaddr;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004160 unsigned int nr = 0;
Chuck Leverbcecff72007-10-26 13:32:03 -04004161 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
4163 status = decode_op_hdr(xdr, OP_READDIR);
Benny Halevydb942bb2009-08-14 17:19:56 +03004164 if (!status)
4165 status = decode_verifier(xdr, readdir->verifier.data);
4166 if (unlikely(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 return status;
Fred Isaman44109242008-04-02 15:21:15 +03004168 dprintk("%s: verifier = %08x:%08x\n",
4169 __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00004170 ((u32 *)readdir->verifier.data)[0],
4171 ((u32 *)readdir->verifier.data)[1]);
4172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
Benny Halevydb942bb2009-08-14 17:19:56 +03004174 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 recvd = rcvbuf->len - hdrlen;
4176 if (pglen > recvd)
4177 pglen = recvd;
4178 xdr_read_pages(xdr, pglen);
4179
4180 BUG_ON(pglen + readdir->pgbase > PAGE_CACHE_SIZE);
Al Viro8687b632006-10-19 23:28:48 -07004181 kaddr = p = kmap_atomic(page, KM_USER0);
David Howellse8896492006-08-24 15:44:19 -04004182 end = p + ((pglen + readdir->pgbase) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 entry = p;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004184
4185 /* Make sure the packet actually has a value_follows and EOF entry */
4186 if ((entry + 1) > end)
4187 goto short_pkt;
4188
4189 for (; *p++; nr++) {
Chuck Leverbcecff72007-10-26 13:32:03 -04004190 u32 len, attrlen, xlen;
David Howellse8896492006-08-24 15:44:19 -04004191 if (end - p < 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00004193 dprintk("cookie = %Lu, ", *((unsigned long long *)p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 p += 2; /* cookie */
4195 len = ntohl(*p++); /* filename length */
4196 if (len > NFS4_MAXNAMLEN) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004197 dprintk("NFS: giant filename in readdir (len 0x%x)\n",
4198 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 goto err_unmap;
4200 }
David Howellse8896492006-08-24 15:44:19 -04004201 xlen = XDR_QUADLEN(len);
4202 if (end - p < xlen + 1)
4203 goto short_pkt;
Trond Myklebusteadf4592005-06-22 17:16:39 +00004204 dprintk("filename = %*s\n", len, (char *)p);
David Howellse8896492006-08-24 15:44:19 -04004205 p += xlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 len = ntohl(*p++); /* bitmap length */
David Howellse8896492006-08-24 15:44:19 -04004207 if (end - p < len + 1)
4208 goto short_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 p += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 attrlen = XDR_QUADLEN(ntohl(*p++));
David Howellse8896492006-08-24 15:44:19 -04004211 if (end - p < attrlen + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 goto short_pkt;
David Howellse8896492006-08-24 15:44:19 -04004213 p += attrlen; /* attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 entry = p;
4215 }
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004216 /*
4217 * Apparently some server sends responses that are a valid size, but
4218 * contain no entries, and have value_follows==0 and EOF==0. For
4219 * those, just set the EOF marker.
4220 */
4221 if (!nr && entry[1] == 0) {
4222 dprintk("NFS: readdir reply truncated!\n");
4223 entry[1] = 1;
4224 }
Andy Adamson6c0195a2008-12-23 16:06:15 -05004225out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 kunmap_atomic(kaddr, KM_USER0);
4227 return 0;
4228short_pkt:
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004229 /*
4230 * When we get a short packet there are 2 possibilities. We can
4231 * return an error, or fix up the response to look like a valid
4232 * response and return what we have so far. If there are no
4233 * entries and the packet was short, then return -EIO. If there
4234 * are valid entries in the response, return them and pretend that
4235 * the call was successful, but incomplete. The caller can retry the
4236 * readdir starting at the last cookie.
4237 */
Harvey Harrison3110ff82008-05-02 13:42:44 -07004238 dprintk("%s: short packet at entry %d\n", __func__, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 entry[0] = entry[1] = 0;
Jeff Layton7bda2cd2008-02-22 14:50:01 -05004240 if (nr)
4241 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242err_unmap:
4243 kunmap_atomic(kaddr, KM_USER0);
4244 return -errno_NFSERR_IO;
4245}
4246
4247static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
4248{
4249 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
4250 struct kvec *iov = rcvbuf->head;
Chuck Leverbcecff72007-10-26 13:32:03 -04004251 size_t hdrlen;
4252 u32 len, recvd;
Al Viro8687b632006-10-19 23:28:48 -07004253 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 char *kaddr;
4255 int status;
4256
4257 status = decode_op_hdr(xdr, OP_READLINK);
4258 if (status)
4259 return status;
4260
4261 /* Convert length of symlink */
Benny Halevyc0eae662009-08-14 17:20:14 +03004262 p = xdr_inline_decode(xdr, 4);
4263 if (unlikely(!p))
4264 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004265 len = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 if (len >= rcvbuf->page_len || len <= 0) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004267 dprintk("nfs: server returned giant symlink!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 return -ENAMETOOLONG;
4269 }
4270 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
4271 recvd = req->rq_rcv_buf.len - hdrlen;
4272 if (recvd < len) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004273 dprintk("NFS: server cheating in readlink reply: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 "count %u > recvd %u\n", len, recvd);
4275 return -EIO;
4276 }
4277 xdr_read_pages(xdr, len);
4278 /*
4279 * The XDR encode routine has set things up so that
4280 * the link text will be copied directly into the
4281 * buffer. We just have to do overflow-checking,
4282 * and and null-terminate the text (the VFS expects
4283 * null-termination).
4284 */
4285 kaddr = (char *)kmap_atomic(rcvbuf->pages[0], KM_USER0);
4286 kaddr[len+rcvbuf->page_base] = '\0';
4287 kunmap_atomic(kaddr, KM_USER0);
4288 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004289out_overflow:
4290 print_overflow_msg(__func__, xdr);
4291 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292}
4293
4294static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4295{
4296 int status;
4297
4298 status = decode_op_hdr(xdr, OP_REMOVE);
4299 if (status)
4300 goto out;
4301 status = decode_change_info(xdr, cinfo);
4302out:
4303 return status;
4304}
4305
4306static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
4307 struct nfs4_change_info *new_cinfo)
4308{
4309 int status;
4310
4311 status = decode_op_hdr(xdr, OP_RENAME);
4312 if (status)
4313 goto out;
4314 if ((status = decode_change_info(xdr, old_cinfo)))
4315 goto out;
4316 status = decode_change_info(xdr, new_cinfo);
4317out:
4318 return status;
4319}
4320
4321static int decode_renew(struct xdr_stream *xdr)
4322{
4323 return decode_op_hdr(xdr, OP_RENEW);
4324}
4325
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004326static int
4327decode_restorefh(struct xdr_stream *xdr)
4328{
4329 return decode_op_hdr(xdr, OP_RESTOREFH);
4330}
4331
J. Bruce Fields029d1052005-06-22 17:16:22 +00004332static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
4333 size_t *acl_len)
4334{
Al Viro8687b632006-10-19 23:28:48 -07004335 __be32 *savep;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004336 uint32_t attrlen,
4337 bitmap[2] = {0};
4338 struct kvec *iov = req->rq_rcv_buf.head;
4339 int status;
4340
4341 *acl_len = 0;
4342 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4343 goto out;
4344 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4345 goto out;
4346 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4347 goto out;
4348
4349 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
4350 return -EIO;
4351 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
Chuck Leverbcecff72007-10-26 13:32:03 -04004352 size_t hdrlen;
4353 u32 recvd;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004354
4355 /* We ignore &savep and don't do consistency checks on
4356 * the attr length. Let userspace figure it out.... */
4357 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
4358 recvd = req->rq_rcv_buf.len - hdrlen;
4359 if (attrlen > recvd) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004360 dprintk("NFS: server cheating in getattr"
J. Bruce Fields029d1052005-06-22 17:16:22 +00004361 " acl reply: attrlen %u > recvd %u\n",
4362 attrlen, recvd);
4363 return -EINVAL;
4364 }
J. Bruce Fieldsc04871e2006-05-30 16:28:58 -04004365 xdr_read_pages(xdr, attrlen);
J. Bruce Fields029d1052005-06-22 17:16:22 +00004366 *acl_len = attrlen;
J. Bruce Fields8c233cf2005-10-13 16:54:27 -04004367 } else
4368 status = -EOPNOTSUPP;
J. Bruce Fields029d1052005-06-22 17:16:22 +00004369
4370out:
4371 return status;
4372}
4373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374static int
4375decode_savefh(struct xdr_stream *xdr)
4376{
4377 return decode_op_hdr(xdr, OP_SAVEFH);
4378}
4379
Benny Halevy9e9ecc02009-04-01 09:22:00 -04004380static int decode_setattr(struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381{
Al Viro8687b632006-10-19 23:28:48 -07004382 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 uint32_t bmlen;
4384 int status;
4385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 status = decode_op_hdr(xdr, OP_SETATTR);
4387 if (status)
4388 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004389 p = xdr_inline_decode(xdr, 4);
4390 if (unlikely(!p))
4391 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004392 bmlen = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004393 p = xdr_inline_decode(xdr, bmlen << 2);
4394 if (likely(p))
4395 return 0;
4396out_overflow:
4397 print_overflow_msg(__func__, xdr);
4398 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399}
4400
David Howellsadfa6f92006-08-22 20:06:08 -04004401static int decode_setclientid(struct xdr_stream *xdr, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402{
Al Viro8687b632006-10-19 23:28:48 -07004403 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 uint32_t opnum;
4405 int32_t nfserr;
4406
Benny Halevyc0eae662009-08-14 17:20:14 +03004407 p = xdr_inline_decode(xdr, 8);
4408 if (unlikely(!p))
4409 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004410 opnum = be32_to_cpup(p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 if (opnum != OP_SETCLIENTID) {
Chuck Leverfe82a182007-09-11 18:01:10 -04004412 dprintk("nfs: decode_setclientid: Server returned operation"
Andy Adamson6c0195a2008-12-23 16:06:15 -05004413 " %d\n", opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 return -EIO;
4415 }
Benny Halevycccddf42009-08-14 17:20:19 +03004416 nfserr = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 if (nfserr == NFS_OK) {
Benny Halevyc0eae662009-08-14 17:20:14 +03004418 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
4419 if (unlikely(!p))
4420 goto out_overflow;
Benny Halevy3ceb4db2009-08-14 17:19:41 +03004421 p = xdr_decode_hyper(p, &clp->cl_clientid);
Benny Halevy99398d02009-08-14 17:20:05 +03004422 memcpy(clp->cl_confirm.data, p, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 } else if (nfserr == NFSERR_CLID_INUSE) {
4424 uint32_t len;
4425
4426 /* skip netid string */
Benny Halevyc0eae662009-08-14 17:20:14 +03004427 p = xdr_inline_decode(xdr, 4);
4428 if (unlikely(!p))
4429 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004430 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004431 p = xdr_inline_decode(xdr, len);
4432 if (unlikely(!p))
4433 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435 /* skip uaddr string */
Benny Halevyc0eae662009-08-14 17:20:14 +03004436 p = xdr_inline_decode(xdr, 4);
4437 if (unlikely(!p))
4438 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004439 len = be32_to_cpup(p);
Benny Halevyc0eae662009-08-14 17:20:14 +03004440 p = xdr_inline_decode(xdr, len);
4441 if (unlikely(!p))
4442 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 return -NFSERR_CLID_INUSE;
4444 } else
Benny Halevy856dff32008-03-31 17:39:06 +03004445 return nfs4_stat_to_errno(nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
4447 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004448out_overflow:
4449 print_overflow_msg(__func__, xdr);
4450 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452
4453static int decode_setclientid_confirm(struct xdr_stream *xdr)
4454{
4455 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
4456}
4457
4458static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
4459{
Al Viro8687b632006-10-19 23:28:48 -07004460 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 int status;
4462
4463 status = decode_op_hdr(xdr, OP_WRITE);
4464 if (status)
4465 return status;
4466
Benny Halevyc0eae662009-08-14 17:20:14 +03004467 p = xdr_inline_decode(xdr, 16);
4468 if (unlikely(!p))
4469 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004470 res->count = be32_to_cpup(p++);
4471 res->verf->committed = be32_to_cpup(p++);
Benny Halevy99398d02009-08-14 17:20:05 +03004472 memcpy(res->verf->verifier, p, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004474out_overflow:
4475 print_overflow_msg(__func__, xdr);
4476 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477}
4478
4479static int decode_delegreturn(struct xdr_stream *xdr)
4480{
4481 return decode_op_hdr(xdr, OP_DELEGRETURN);
4482}
4483
Benny Halevy99fe60d2009-04-01 09:22:29 -04004484#if defined(CONFIG_NFS_V4_1)
4485static int decode_exchange_id(struct xdr_stream *xdr,
4486 struct nfs41_exchange_id_res *res)
4487{
4488 __be32 *p;
4489 uint32_t dummy;
Benny Halevy2460ba52009-08-14 17:20:10 +03004490 char *dummy_str;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004491 int status;
4492 struct nfs_client *clp = res->client;
4493
4494 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
4495 if (status)
4496 return status;
4497
Benny Halevyc0eae662009-08-14 17:20:14 +03004498 p = xdr_inline_decode(xdr, 8);
4499 if (unlikely(!p))
4500 goto out_overflow;
Benny Halevycccddf42009-08-14 17:20:19 +03004501 xdr_decode_hyper(p, &clp->cl_ex_clid);
Benny Halevyc0eae662009-08-14 17:20:14 +03004502 p = xdr_inline_decode(xdr, 12);
4503 if (unlikely(!p))
4504 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004505 clp->cl_seqid = be32_to_cpup(p++);
4506 clp->cl_exchange_flags = be32_to_cpup(p++);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004507
4508 /* We ask for SP4_NONE */
Benny Halevycccddf42009-08-14 17:20:19 +03004509 dummy = be32_to_cpup(p);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004510 if (dummy != SP4_NONE)
4511 return -EIO;
4512
4513 /* Throw away minor_id */
Benny Halevyc0eae662009-08-14 17:20:14 +03004514 p = xdr_inline_decode(xdr, 8);
4515 if (unlikely(!p))
4516 goto out_overflow;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004517
4518 /* Throw away Major id */
Benny Halevy2460ba52009-08-14 17:20:10 +03004519 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
4520 if (unlikely(status))
4521 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004522
4523 /* Throw away server_scope */
Benny Halevy2460ba52009-08-14 17:20:10 +03004524 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
4525 if (unlikely(status))
4526 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004527
4528 /* Throw away Implementation id array */
Benny Halevy2460ba52009-08-14 17:20:10 +03004529 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
4530 if (unlikely(status))
4531 return status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004532
4533 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004534out_overflow:
4535 print_overflow_msg(__func__, xdr);
4536 return -EIO;
Benny Halevy99fe60d2009-04-01 09:22:29 -04004537}
Andy Adamsonfc931582009-04-01 09:22:31 -04004538
4539static int decode_chan_attrs(struct xdr_stream *xdr,
4540 struct nfs4_channel_attrs *attrs)
4541{
4542 __be32 *p;
4543 u32 nr_attrs;
4544
Benny Halevyc0eae662009-08-14 17:20:14 +03004545 p = xdr_inline_decode(xdr, 28);
4546 if (unlikely(!p))
4547 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004548 attrs->headerpadsz = be32_to_cpup(p++);
4549 attrs->max_rqst_sz = be32_to_cpup(p++);
4550 attrs->max_resp_sz = be32_to_cpup(p++);
4551 attrs->max_resp_sz_cached = be32_to_cpup(p++);
4552 attrs->max_ops = be32_to_cpup(p++);
4553 attrs->max_reqs = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004554 nr_attrs = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04004555 if (unlikely(nr_attrs > 1)) {
4556 printk(KERN_WARNING "%s: Invalid rdma channel attrs count %u\n",
4557 __func__, nr_attrs);
4558 return -EINVAL;
4559 }
Benny Halevyc0eae662009-08-14 17:20:14 +03004560 if (nr_attrs == 1) {
4561 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
4562 if (unlikely(!p))
4563 goto out_overflow;
4564 }
Andy Adamsonfc931582009-04-01 09:22:31 -04004565 return 0;
Benny Halevyc0eae662009-08-14 17:20:14 +03004566out_overflow:
4567 print_overflow_msg(__func__, xdr);
4568 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04004569}
4570
Benny Halevye78291e2009-08-14 17:20:00 +03004571static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
4572{
4573 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004574}
4575
4576static int decode_create_session(struct xdr_stream *xdr,
4577 struct nfs41_create_session_res *res)
4578{
4579 __be32 *p;
4580 int status;
4581 struct nfs_client *clp = res->client;
4582 struct nfs4_session *session = clp->cl_session;
4583
4584 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
Benny Halevye78291e2009-08-14 17:20:00 +03004585 if (!status)
4586 status = decode_sessionid(xdr, &session->sess_id);
4587 if (unlikely(status))
Andy Adamsonfc931582009-04-01 09:22:31 -04004588 return status;
4589
Andy Adamsonfc931582009-04-01 09:22:31 -04004590 /* seqid, flags */
Benny Halevyc0eae662009-08-14 17:20:14 +03004591 p = xdr_inline_decode(xdr, 8);
4592 if (unlikely(!p))
4593 goto out_overflow;
Benny Halevy6f723f72009-08-14 17:19:37 +03004594 clp->cl_seqid = be32_to_cpup(p++);
Benny Halevycccddf42009-08-14 17:20:19 +03004595 session->flags = be32_to_cpup(p);
Andy Adamsonfc931582009-04-01 09:22:31 -04004596
4597 /* Channel attributes */
4598 status = decode_chan_attrs(xdr, &session->fc_attrs);
4599 if (!status)
4600 status = decode_chan_attrs(xdr, &session->bc_attrs);
4601 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004602out_overflow:
4603 print_overflow_msg(__func__, xdr);
4604 return -EIO;
Andy Adamsonfc931582009-04-01 09:22:31 -04004605}
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004606
4607static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
4608{
4609 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
4610}
Ricardo Labiaga180197532009-12-05 16:08:40 -05004611
4612static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
4613{
4614 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
4615}
Benny Halevy99fe60d2009-04-01 09:22:29 -04004616#endif /* CONFIG_NFS_V4_1 */
4617
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004618static int decode_sequence(struct xdr_stream *xdr,
4619 struct nfs4_sequence_res *res,
4620 struct rpc_rqst *rqstp)
4621{
4622#if defined(CONFIG_NFS_V4_1)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004623 struct nfs4_slot *slot;
4624 struct nfs4_sessionid id;
4625 u32 dummy;
4626 int status;
4627 __be32 *p;
4628
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004629 if (!res->sr_session)
4630 return 0;
4631
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004632 status = decode_op_hdr(xdr, OP_SEQUENCE);
Benny Halevye78291e2009-08-14 17:20:00 +03004633 if (!status)
4634 status = decode_sessionid(xdr, &id);
4635 if (unlikely(status))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004636 goto out_err;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004637
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004638 /*
4639 * If the server returns different values for sessionID, slotID or
4640 * sequence number, the server is looney tunes.
4641 */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05004642 status = -EREMOTEIO;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004643
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004644 if (memcmp(id.data, res->sr_session->sess_id.data,
4645 NFS4_MAX_SESSIONID_LEN)) {
4646 dprintk("%s Invalid session id\n", __func__);
4647 goto out_err;
4648 }
Benny Halevye78291e2009-08-14 17:20:00 +03004649
Benny Halevyc0eae662009-08-14 17:20:14 +03004650 p = xdr_inline_decode(xdr, 20);
4651 if (unlikely(!p))
4652 goto out_overflow;
Benny Halevye78291e2009-08-14 17:20:00 +03004653
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004654 /* seqid */
Benny Halevye78291e2009-08-14 17:20:00 +03004655 slot = &res->sr_session->fc_slot_table.slots[res->sr_slotid];
Benny Halevy6f723f72009-08-14 17:19:37 +03004656 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004657 if (dummy != slot->seq_nr) {
4658 dprintk("%s Invalid sequence number\n", __func__);
4659 goto out_err;
4660 }
4661 /* slot id */
Benny Halevy6f723f72009-08-14 17:19:37 +03004662 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004663 if (dummy != res->sr_slotid) {
4664 dprintk("%s Invalid slot id\n", __func__);
4665 goto out_err;
4666 }
4667 /* highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03004668 dummy = be32_to_cpup(p++);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004669 /* target highest slot id - currently not processed */
Benny Halevy6f723f72009-08-14 17:19:37 +03004670 dummy = be32_to_cpup(p++);
Alexandros Batsakis0629e372009-12-05 13:46:14 -05004671 /* result flags */
4672 res->sr_status_flags = be32_to_cpup(p);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004673 status = 0;
4674out_err:
4675 res->sr_status = status;
4676 return status;
Benny Halevyc0eae662009-08-14 17:20:14 +03004677out_overflow:
4678 print_overflow_msg(__func__, xdr);
4679 status = -EIO;
4680 goto out_err;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004681#else /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004682 return 0;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004683#endif /* CONFIG_NFS_V4_1 */
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004684}
4685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686/*
Benny Halevy49c25592008-12-23 16:06:16 -05004687 * END OF "GENERIC" DECODE ROUTINES.
4688 */
4689
4690/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 * Decode OPEN_DOWNGRADE response
4692 */
Al Viro8687b632006-10-19 23:28:48 -07004693static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694{
Andy Adamson05d564f2008-12-23 16:06:15 -05004695 struct xdr_stream xdr;
4696 struct compound_hdr hdr;
4697 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Andy Adamson05d564f2008-12-23 16:06:15 -05004699 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4700 status = decode_compound_hdr(&xdr, &hdr);
4701 if (status)
4702 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004703 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4704 if (status)
4705 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05004706 status = decode_putfh(&xdr);
4707 if (status)
4708 goto out;
4709 status = decode_open_downgrade(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04004710 if (status != 0)
4711 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004712 decode_getfattr(&xdr, res->fattr, res->server,
4713 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714out:
Andy Adamson05d564f2008-12-23 16:06:15 -05004715 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716}
4717
4718/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 * Decode ACCESS response
4720 */
Al Viro8687b632006-10-19 23:28:48 -07004721static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_accessres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722{
4723 struct xdr_stream xdr;
4724 struct compound_hdr hdr;
4725 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004726
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004728 status = decode_compound_hdr(&xdr, &hdr);
4729 if (status)
4730 goto out;
4731 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4732 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 goto out;
Trond Myklebust76b32992007-08-10 17:45:11 -04004734 status = decode_putfh(&xdr);
4735 if (status != 0)
4736 goto out;
4737 status = decode_access(&xdr, res);
4738 if (status != 0)
4739 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004740 decode_getfattr(&xdr, res->fattr, res->server,
4741 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742out:
4743 return status;
4744}
4745
4746/*
4747 * Decode LOOKUP response
4748 */
Al Viro8687b632006-10-19 23:28:48 -07004749static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750{
4751 struct xdr_stream xdr;
4752 struct compound_hdr hdr;
4753 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004754
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004756 status = decode_compound_hdr(&xdr, &hdr);
4757 if (status)
4758 goto out;
4759 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4760 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 goto out;
4762 if ((status = decode_putfh(&xdr)) != 0)
4763 goto out;
4764 if ((status = decode_lookup(&xdr)) != 0)
4765 goto out;
4766 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4767 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004768 status = decode_getfattr(&xdr, res->fattr, res->server
4769 ,!RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770out:
4771 return status;
4772}
4773
4774/*
4775 * Decode LOOKUP_ROOT response
4776 */
Al Viro8687b632006-10-19 23:28:48 -07004777static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_lookup_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778{
4779 struct xdr_stream xdr;
4780 struct compound_hdr hdr;
4781 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004784 status = decode_compound_hdr(&xdr, &hdr);
4785 if (status)
4786 goto out;
4787 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4788 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 goto out;
4790 if ((status = decode_putrootfh(&xdr)) != 0)
4791 goto out;
4792 if ((status = decode_getfh(&xdr, res->fh)) == 0)
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004793 status = decode_getfattr(&xdr, res->fattr, res->server,
4794 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795out:
4796 return status;
4797}
4798
4799/*
4800 * Decode REMOVE response
4801 */
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004802static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_removeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
4804 struct xdr_stream xdr;
4805 struct compound_hdr hdr;
4806 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004809 status = decode_compound_hdr(&xdr, &hdr);
4810 if (status)
4811 goto out;
4812 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4813 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 goto out;
Trond Myklebust16e42952005-10-27 22:12:44 -04004815 if ((status = decode_putfh(&xdr)) != 0)
4816 goto out;
4817 if ((status = decode_remove(&xdr, &res->cinfo)) != 0)
4818 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004819 decode_getfattr(&xdr, &res->dir_attr, res->server,
4820 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821out:
4822 return status;
4823}
4824
4825/*
4826 * Decode RENAME response
4827 */
Al Viro8687b632006-10-19 23:28:48 -07004828static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_rename_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829{
4830 struct xdr_stream xdr;
4831 struct compound_hdr hdr;
4832 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004835 status = decode_compound_hdr(&xdr, &hdr);
4836 if (status)
4837 goto out;
4838 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4839 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 goto out;
4841 if ((status = decode_putfh(&xdr)) != 0)
4842 goto out;
4843 if ((status = decode_savefh(&xdr)) != 0)
4844 goto out;
4845 if ((status = decode_putfh(&xdr)) != 0)
4846 goto out;
Trond Myklebust6caf2c82005-10-27 22:12:43 -04004847 if ((status = decode_rename(&xdr, &res->old_cinfo, &res->new_cinfo)) != 0)
4848 goto out;
4849 /* Current FH is target directory */
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004850 if (decode_getfattr(&xdr, res->new_fattr, res->server,
4851 !RPC_IS_ASYNC(rqstp->rq_task)) != 0)
Trond Myklebust6caf2c82005-10-27 22:12:43 -04004852 goto out;
4853 if ((status = decode_restorefh(&xdr)) != 0)
4854 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004855 decode_getfattr(&xdr, res->old_fattr, res->server,
4856 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857out:
4858 return status;
4859}
4860
4861/*
4862 * Decode LINK response
4863 */
Al Viro8687b632006-10-19 23:28:48 -07004864static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_link_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865{
4866 struct xdr_stream xdr;
4867 struct compound_hdr hdr;
4868 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004871 status = decode_compound_hdr(&xdr, &hdr);
4872 if (status)
4873 goto out;
4874 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4875 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 goto out;
4877 if ((status = decode_putfh(&xdr)) != 0)
4878 goto out;
4879 if ((status = decode_savefh(&xdr)) != 0)
4880 goto out;
4881 if ((status = decode_putfh(&xdr)) != 0)
4882 goto out;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004883 if ((status = decode_link(&xdr, &res->cinfo)) != 0)
4884 goto out;
4885 /*
4886 * Note order: OP_LINK leaves the directory as the current
4887 * filehandle.
4888 */
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004889 if (decode_getfattr(&xdr, res->dir_attr, res->server,
4890 !RPC_IS_ASYNC(rqstp->rq_task)) != 0)
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004891 goto out;
4892 if ((status = decode_restorefh(&xdr)) != 0)
4893 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004894 decode_getfattr(&xdr, res->fattr, res->server,
4895 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896out:
4897 return status;
4898}
4899
4900/*
4901 * Decode CREATE response
4902 */
Al Viro8687b632006-10-19 23:28:48 -07004903static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904{
4905 struct xdr_stream xdr;
4906 struct compound_hdr hdr;
4907 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004910 status = decode_compound_hdr(&xdr, &hdr);
4911 if (status)
4912 goto out;
4913 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4914 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 goto out;
4916 if ((status = decode_putfh(&xdr)) != 0)
4917 goto out;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004918 if ((status = decode_savefh(&xdr)) != 0)
4919 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 if ((status = decode_create(&xdr,&res->dir_cinfo)) != 0)
4921 goto out;
4922 if ((status = decode_getfh(&xdr, res->fh)) != 0)
4923 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004924 if (decode_getfattr(&xdr, res->fattr, res->server,
4925 !RPC_IS_ASYNC(rqstp->rq_task)) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04004926 goto out;
4927 if ((status = decode_restorefh(&xdr)) != 0)
4928 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004929 decode_getfattr(&xdr, res->dir_fattr, res->server,
4930 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931out:
4932 return status;
4933}
4934
4935/*
4936 * Decode SYMLINK response
4937 */
Al Viro8687b632006-10-19 23:28:48 -07004938static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_create_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939{
4940 return nfs4_xdr_dec_create(rqstp, p, res);
4941}
4942
4943/*
4944 * Decode GETATTR response
4945 */
Al Viro8687b632006-10-19 23:28:48 -07004946static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_getattr_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947{
4948 struct xdr_stream xdr;
4949 struct compound_hdr hdr;
4950 int status;
Andy Adamson6c0195a2008-12-23 16:06:15 -05004951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4953 status = decode_compound_hdr(&xdr, &hdr);
4954 if (status)
4955 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004956 status = decode_sequence(&xdr, &res->seq_res, rqstp);
4957 if (status)
4958 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 status = decode_putfh(&xdr);
4960 if (status)
4961 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04004962 status = decode_getfattr(&xdr, res->fattr, res->server,
4963 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964out:
4965 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966}
4967
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004968/*
4969 * Encode an SETACL request
4970 */
4971static int
Al Viro8687b632006-10-19 23:28:48 -07004972nfs4_xdr_enc_setacl(struct rpc_rqst *req, __be32 *p, struct nfs_setaclargs *args)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004973{
Andy Adamson05d564f2008-12-23 16:06:15 -05004974 struct xdr_stream xdr;
4975 struct compound_hdr hdr = {
Benny Halevy66cc0422009-04-01 09:22:10 -04004976 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
Andy Adamson05d564f2008-12-23 16:06:15 -05004977 };
4978 int status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004979
Andy Adamson05d564f2008-12-23 16:06:15 -05004980 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
Benny Halevy0c4e8c12009-04-01 09:22:07 -04004981 encode_compound_hdr(&xdr, req, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04004982 encode_sequence(&xdr, &args->seq_args, &hdr);
Andy Adamsoncf8cdbe2008-12-23 16:06:18 -05004983 encode_putfh(&xdr, args->fh, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004984 status = encode_setacl(&xdr, args, &hdr);
Andy Adamsond0179312008-12-23 16:06:17 -05004985 encode_nops(&hdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05004986 return status;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004987}
Andy Adamson05d564f2008-12-23 16:06:15 -05004988
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004989/*
4990 * Decode SETACL response
4991 */
4992static int
Benny Halevy73c403a2009-04-01 09:22:01 -04004993nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, __be32 *p,
4994 struct nfs_setaclres *res)
J. Bruce Fields23ec6962005-06-22 17:16:22 +00004995{
4996 struct xdr_stream xdr;
4997 struct compound_hdr hdr;
4998 int status;
4999
5000 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5001 status = decode_compound_hdr(&xdr, &hdr);
5002 if (status)
5003 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005004 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5005 if (status)
5006 goto out;
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005007 status = decode_putfh(&xdr);
5008 if (status)
5009 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005010 status = decode_setattr(&xdr);
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005011out:
5012 return status;
5013}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014
5015/*
J. Bruce Fields029d1052005-06-22 17:16:22 +00005016 * Decode GETACL response
5017 */
5018static int
Benny Halevy663c79b2009-04-01 09:21:59 -04005019nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, __be32 *p,
5020 struct nfs_getaclres *res)
J. Bruce Fields029d1052005-06-22 17:16:22 +00005021{
5022 struct xdr_stream xdr;
5023 struct compound_hdr hdr;
5024 int status;
5025
5026 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5027 status = decode_compound_hdr(&xdr, &hdr);
5028 if (status)
5029 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005030 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5031 if (status)
5032 goto out;
J. Bruce Fields029d1052005-06-22 17:16:22 +00005033 status = decode_putfh(&xdr);
5034 if (status)
5035 goto out;
Benny Halevy663c79b2009-04-01 09:21:59 -04005036 status = decode_getacl(&xdr, rqstp, &res->acl_len);
J. Bruce Fields029d1052005-06-22 17:16:22 +00005037
5038out:
5039 return status;
5040}
5041
5042/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 * Decode CLOSE response
5044 */
Al Viro8687b632006-10-19 23:28:48 -07005045static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, __be32 *p, struct nfs_closeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046{
Andy Adamson05d564f2008-12-23 16:06:15 -05005047 struct xdr_stream xdr;
5048 struct compound_hdr hdr;
5049 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
Andy Adamson05d564f2008-12-23 16:06:15 -05005051 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5052 status = decode_compound_hdr(&xdr, &hdr);
5053 if (status)
5054 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005055 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5056 if (status)
5057 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05005058 status = decode_putfh(&xdr);
5059 if (status)
5060 goto out;
5061 status = decode_close(&xdr, res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04005062 if (status != 0)
5063 goto out;
5064 /*
5065 * Note: Server may do delete on close for this file
5066 * in which case the getattr call will fail with
5067 * an ESTALE error. Shouldn't be a problem,
5068 * though, since fattr->valid will remain unset.
5069 */
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005070 decode_getfattr(&xdr, res->fattr, res->server,
5071 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005073 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074}
5075
5076/*
5077 * Decode OPEN response
5078 */
Al Viro8687b632006-10-19 23:28:48 -07005079static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080{
Andy Adamson05d564f2008-12-23 16:06:15 -05005081 struct xdr_stream xdr;
5082 struct compound_hdr hdr;
5083 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Andy Adamson05d564f2008-12-23 16:06:15 -05005085 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5086 status = decode_compound_hdr(&xdr, &hdr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005087 if (status)
5088 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005089 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5090 if (status)
5091 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05005092 status = decode_putfh(&xdr);
5093 if (status)
5094 goto out;
5095 status = decode_savefh(&xdr);
5096 if (status)
5097 goto out;
5098 status = decode_open(&xdr, res);
5099 if (status)
5100 goto out;
Trond Myklebust99367812007-07-17 21:52:41 -04005101 if (decode_getfh(&xdr, &res->fh) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005103 if (decode_getfattr(&xdr, res->f_attr, res->server,
5104 !RPC_IS_ASYNC(rqstp->rq_task)) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005105 goto out;
Trond Myklebust365c8f52007-07-17 21:52:37 -04005106 if (decode_restorefh(&xdr) != 0)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04005107 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005108 decode_getfattr(&xdr, res->dir_attr, res->server,
5109 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005111 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112}
5113
5114/*
5115 * Decode OPEN_CONFIRM response
5116 */
Al Viro8687b632006-10-19 23:28:48 -07005117static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp, __be32 *p, struct nfs_open_confirmres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118{
Andy Adamson05d564f2008-12-23 16:06:15 -05005119 struct xdr_stream xdr;
5120 struct compound_hdr hdr;
5121 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Andy Adamson05d564f2008-12-23 16:06:15 -05005123 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5124 status = decode_compound_hdr(&xdr, &hdr);
5125 if (status)
5126 goto out;
5127 status = decode_putfh(&xdr);
5128 if (status)
5129 goto out;
5130 status = decode_open_confirm(&xdr, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005132 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133}
5134
5135/*
5136 * Decode OPEN response
5137 */
Al Viro8687b632006-10-19 23:28:48 -07005138static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_openres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139{
Andy Adamson05d564f2008-12-23 16:06:15 -05005140 struct xdr_stream xdr;
5141 struct compound_hdr hdr;
5142 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
Andy Adamson05d564f2008-12-23 16:06:15 -05005144 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5145 status = decode_compound_hdr(&xdr, &hdr);
5146 if (status)
5147 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005148 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5149 if (status)
5150 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05005151 status = decode_putfh(&xdr);
5152 if (status)
5153 goto out;
5154 status = decode_open(&xdr, res);
5155 if (status)
5156 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005157 decode_getfattr(&xdr, res->f_attr, res->server,
5158 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005160 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161}
5162
5163/*
5164 * Decode SETATTR response
5165 */
Al Viro8687b632006-10-19 23:28:48 -07005166static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, __be32 *p, struct nfs_setattrres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167{
Andy Adamson05d564f2008-12-23 16:06:15 -05005168 struct xdr_stream xdr;
5169 struct compound_hdr hdr;
5170 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
Andy Adamson05d564f2008-12-23 16:06:15 -05005172 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5173 status = decode_compound_hdr(&xdr, &hdr);
5174 if (status)
5175 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005176 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5177 if (status)
5178 goto out;
Andy Adamson05d564f2008-12-23 16:06:15 -05005179 status = decode_putfh(&xdr);
5180 if (status)
5181 goto out;
Benny Halevy9e9ecc02009-04-01 09:22:00 -04005182 status = decode_setattr(&xdr);
Andy Adamson05d564f2008-12-23 16:06:15 -05005183 if (status)
5184 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005185 decode_getfattr(&xdr, res->fattr, res->server,
5186 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187out:
Andy Adamson05d564f2008-12-23 16:06:15 -05005188 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189}
5190
5191/*
5192 * Decode LOCK response
5193 */
Al Viro8687b632006-10-19 23:28:48 -07005194static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lock_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195{
5196 struct xdr_stream xdr;
5197 struct compound_hdr hdr;
5198 int status;
5199
5200 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5201 status = decode_compound_hdr(&xdr, &hdr);
5202 if (status)
5203 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005204 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5205 if (status)
5206 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 status = decode_putfh(&xdr);
5208 if (status)
5209 goto out;
5210 status = decode_lock(&xdr, res);
5211out:
5212 return status;
5213}
5214
5215/*
5216 * Decode LOCKT response
5217 */
Al Viro8687b632006-10-19 23:28:48 -07005218static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, __be32 *p, struct nfs_lockt_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219{
5220 struct xdr_stream xdr;
5221 struct compound_hdr hdr;
5222 int status;
5223
5224 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5225 status = decode_compound_hdr(&xdr, &hdr);
5226 if (status)
5227 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005228 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5229 if (status)
5230 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 status = decode_putfh(&xdr);
5232 if (status)
5233 goto out;
5234 status = decode_lockt(&xdr, res);
5235out:
5236 return status;
5237}
5238
5239/*
5240 * Decode LOCKU response
5241 */
Al Viro8687b632006-10-19 23:28:48 -07005242static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, __be32 *p, struct nfs_locku_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243{
5244 struct xdr_stream xdr;
5245 struct compound_hdr hdr;
5246 int status;
5247
5248 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5249 status = decode_compound_hdr(&xdr, &hdr);
5250 if (status)
5251 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005252 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5253 if (status)
5254 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 status = decode_putfh(&xdr);
5256 if (status)
5257 goto out;
5258 status = decode_locku(&xdr, res);
5259out:
5260 return status;
5261}
5262
5263/*
5264 * Decode READLINK response
5265 */
Benny Halevyf50c7002009-04-01 09:21:55 -04005266static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp, __be32 *p,
5267 struct nfs4_readlink_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268{
5269 struct xdr_stream xdr;
5270 struct compound_hdr hdr;
5271 int status;
5272
5273 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5274 status = decode_compound_hdr(&xdr, &hdr);
5275 if (status)
5276 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005277 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5278 if (status)
5279 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 status = decode_putfh(&xdr);
5281 if (status)
5282 goto out;
5283 status = decode_readlink(&xdr, rqstp);
5284out:
5285 return status;
5286}
5287
5288/*
5289 * Decode READDIR response
5290 */
Al Viro8687b632006-10-19 23:28:48 -07005291static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_readdir_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292{
5293 struct xdr_stream xdr;
5294 struct compound_hdr hdr;
5295 int status;
5296
5297 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5298 status = decode_compound_hdr(&xdr, &hdr);
5299 if (status)
5300 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005301 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5302 if (status)
5303 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 status = decode_putfh(&xdr);
5305 if (status)
5306 goto out;
5307 status = decode_readdir(&xdr, rqstp, res);
5308out:
5309 return status;
5310}
5311
5312/*
5313 * Decode Read response
5314 */
Al Viro8687b632006-10-19 23:28:48 -07005315static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, __be32 *p, struct nfs_readres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316{
5317 struct xdr_stream xdr;
5318 struct compound_hdr hdr;
5319 int status;
5320
5321 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5322 status = decode_compound_hdr(&xdr, &hdr);
5323 if (status)
5324 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005325 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5326 if (status)
5327 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 status = decode_putfh(&xdr);
5329 if (status)
5330 goto out;
5331 status = decode_read(&xdr, rqstp, res);
5332 if (!status)
5333 status = res->count;
5334out:
5335 return status;
5336}
5337
5338/*
5339 * Decode WRITE response
5340 */
Al Viro8687b632006-10-19 23:28:48 -07005341static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342{
5343 struct xdr_stream xdr;
5344 struct compound_hdr hdr;
5345 int status;
5346
5347 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5348 status = decode_compound_hdr(&xdr, &hdr);
5349 if (status)
5350 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005351 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5352 if (status)
5353 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 status = decode_putfh(&xdr);
5355 if (status)
5356 goto out;
5357 status = decode_write(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04005358 if (status)
5359 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005360 decode_getfattr(&xdr, res->fattr, res->server,
5361 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 if (!status)
5363 status = res->count;
5364out:
5365 return status;
5366}
5367
5368/*
5369 * Decode COMMIT response
5370 */
Al Viro8687b632006-10-19 23:28:48 -07005371static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, __be32 *p, struct nfs_writeres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372{
5373 struct xdr_stream xdr;
5374 struct compound_hdr hdr;
5375 int status;
5376
5377 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5378 status = decode_compound_hdr(&xdr, &hdr);
5379 if (status)
5380 goto out;
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005381 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5382 if (status)
5383 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 status = decode_putfh(&xdr);
5385 if (status)
5386 goto out;
5387 status = decode_commit(&xdr, res);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04005388 if (status)
5389 goto out;
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005390 decode_getfattr(&xdr, res->fattr, res->server,
5391 !RPC_IS_ASYNC(rqstp->rq_task));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392out:
5393 return status;
5394}
5395
5396/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005397 * Decode FSINFO response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 */
Benny Halevy3dda5e42009-04-01 09:21:57 -04005399static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, __be32 *p,
5400 struct nfs4_fsinfo_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401{
5402 struct xdr_stream xdr;
5403 struct compound_hdr hdr;
5404 int status;
5405
5406 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5407 status = decode_compound_hdr(&xdr, &hdr);
5408 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005409 status = decode_sequence(&xdr, &res->seq_res, req);
5410 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 status = decode_putfh(&xdr);
5412 if (!status)
Benny Halevy3dda5e42009-04-01 09:21:57 -04005413 status = decode_fsinfo(&xdr, res->fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 return status;
5415}
5416
5417/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005418 * Decode PATHCONF response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 */
Benny Halevyd45b2982009-04-01 09:21:58 -04005420static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, __be32 *p,
5421 struct nfs4_pathconf_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422{
5423 struct xdr_stream xdr;
5424 struct compound_hdr hdr;
5425 int status;
5426
5427 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5428 status = decode_compound_hdr(&xdr, &hdr);
5429 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005430 status = decode_sequence(&xdr, &res->seq_res, req);
5431 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 status = decode_putfh(&xdr);
5433 if (!status)
Benny Halevyd45b2982009-04-01 09:21:58 -04005434 status = decode_pathconf(&xdr, res->pathconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 return status;
5436}
5437
5438/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005439 * Decode STATFS response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 */
Benny Halevy24ad1482009-04-01 09:21:56 -04005441static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p,
5442 struct nfs4_statfs_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443{
5444 struct xdr_stream xdr;
5445 struct compound_hdr hdr;
5446 int status;
5447
5448 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5449 status = decode_compound_hdr(&xdr, &hdr);
5450 if (!status)
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005451 status = decode_sequence(&xdr, &res->seq_res, req);
5452 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 status = decode_putfh(&xdr);
5454 if (!status)
Benny Halevy24ad1482009-04-01 09:21:56 -04005455 status = decode_statfs(&xdr, res->fsstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 return status;
5457}
5458
5459/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005460 * Decode GETATTR_BITMAP response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461 */
Al Viro8687b632006-10-19 23:28:48 -07005462static 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 -07005463{
5464 struct xdr_stream xdr;
5465 struct compound_hdr hdr;
5466 int status;
5467
5468 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005469 status = decode_compound_hdr(&xdr, &hdr);
5470 if (status)
5471 goto out;
5472 status = decode_sequence(&xdr, &res->seq_res, req);
5473 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 goto out;
5475 if ((status = decode_putfh(&xdr)) != 0)
5476 goto out;
5477 status = decode_server_caps(&xdr, res);
5478out:
5479 return status;
5480}
5481
5482/*
5483 * Decode RENEW response
5484 */
Al Viro8687b632006-10-19 23:28:48 -07005485static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486{
5487 struct xdr_stream xdr;
5488 struct compound_hdr hdr;
5489 int status;
5490
5491 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5492 status = decode_compound_hdr(&xdr, &hdr);
5493 if (!status)
5494 status = decode_renew(&xdr);
5495 return status;
5496}
5497
5498/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005499 * Decode SETCLIENTID response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 */
Al Viro8687b632006-10-19 23:28:48 -07005501static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req, __be32 *p,
David Howellsadfa6f92006-08-22 20:06:08 -04005502 struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503{
5504 struct xdr_stream xdr;
5505 struct compound_hdr hdr;
5506 int status;
5507
5508 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5509 status = decode_compound_hdr(&xdr, &hdr);
5510 if (!status)
5511 status = decode_setclientid(&xdr, clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 return status;
5513}
5514
5515/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005516 * Decode SETCLIENTID_CONFIRM response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 */
Al Viro8687b632006-10-19 23:28:48 -07005518static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req, __be32 *p, struct nfs_fsinfo *fsinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519{
5520 struct xdr_stream xdr;
5521 struct compound_hdr hdr;
5522 int status;
5523
5524 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5525 status = decode_compound_hdr(&xdr, &hdr);
5526 if (!status)
5527 status = decode_setclientid_confirm(&xdr);
5528 if (!status)
5529 status = decode_putrootfh(&xdr);
5530 if (!status)
5531 status = decode_fsinfo(&xdr, fsinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 return status;
5533}
5534
5535/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005536 * Decode DELEGRETURN response
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 */
Al Viro8687b632006-10-19 23:28:48 -07005538static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_delegreturnres *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539{
5540 struct xdr_stream xdr;
5541 struct compound_hdr hdr;
5542 int status;
5543
5544 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5545 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005546 if (status)
5547 goto out;
5548 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5549 if (status)
Trond Myklebustfa178f22006-01-03 09:55:38 +01005550 goto out;
5551 status = decode_putfh(&xdr);
5552 if (status != 0)
5553 goto out;
5554 status = decode_delegreturn(&xdr);
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005555 decode_getfattr(&xdr, res->fattr, res->server,
5556 !RPC_IS_ASYNC(rqstp->rq_task));
Trond Myklebustfa178f22006-01-03 09:55:38 +01005557out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 return status;
5559}
5560
Trond Myklebust683b57b2006-06-09 09:34:22 -04005561/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005562 * Decode FS_LOCATIONS response
Trond Myklebust683b57b2006-06-09 09:34:22 -04005563 */
Benny Halevy22958462009-04-01 09:22:02 -04005564static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p,
5565 struct nfs4_fs_locations_res *res)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005566{
5567 struct xdr_stream xdr;
5568 struct compound_hdr hdr;
5569 int status;
5570
5571 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
5572 status = decode_compound_hdr(&xdr, &hdr);
Andy Adamson9b7b9fc2009-04-01 09:22:11 -04005573 if (status)
5574 goto out;
5575 status = decode_sequence(&xdr, &res->seq_res, req);
5576 if (status)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005577 goto out;
5578 if ((status = decode_putfh(&xdr)) != 0)
5579 goto out;
5580 if ((status = decode_lookup(&xdr)) != 0)
5581 goto out;
5582 xdr_enter_page(&xdr, PAGE_SIZE);
Benny Halevy22958462009-04-01 09:22:02 -04005583 status = decode_getfattr(&xdr, &res->fs_locations->fattr,
Trond Myklebust80e52ac2009-08-09 15:06:19 -04005584 res->fs_locations->server,
5585 !RPC_IS_ASYNC(req->rq_task));
Trond Myklebust683b57b2006-06-09 09:34:22 -04005586out:
5587 return status;
5588}
5589
Benny Halevy99fe60d2009-04-01 09:22:29 -04005590#if defined(CONFIG_NFS_V4_1)
5591/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005592 * Decode EXCHANGE_ID response
Benny Halevy99fe60d2009-04-01 09:22:29 -04005593 */
5594static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp, uint32_t *p,
5595 void *res)
5596{
5597 struct xdr_stream xdr;
5598 struct compound_hdr hdr;
5599 int status;
5600
5601 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5602 status = decode_compound_hdr(&xdr, &hdr);
5603 if (!status)
5604 status = decode_exchange_id(&xdr, res);
5605 return status;
5606}
Andy Adamson2050f0c2009-04-01 09:22:30 -04005607
5608/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005609 * Decode CREATE_SESSION response
Andy Adamsonfc931582009-04-01 09:22:31 -04005610 */
5611static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp, uint32_t *p,
5612 struct nfs41_create_session_res *res)
5613{
5614 struct xdr_stream xdr;
5615 struct compound_hdr hdr;
5616 int status;
5617
5618 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5619 status = decode_compound_hdr(&xdr, &hdr);
5620 if (!status)
5621 status = decode_create_session(&xdr, res);
5622 return status;
5623}
5624
5625/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005626 * Decode DESTROY_SESSION response
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005627 */
5628static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp, uint32_t *p,
5629 void *dummy)
5630{
5631 struct xdr_stream xdr;
5632 struct compound_hdr hdr;
5633 int status;
5634
5635 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5636 status = decode_compound_hdr(&xdr, &hdr);
5637 if (!status)
5638 status = decode_destroy_session(&xdr, dummy);
5639 return status;
5640}
5641
5642/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005643 * Decode SEQUENCE response
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005644 */
5645static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp, uint32_t *p,
5646 struct nfs4_sequence_res *res)
5647{
5648 struct xdr_stream xdr;
5649 struct compound_hdr hdr;
5650 int status;
5651
5652 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5653 status = decode_compound_hdr(&xdr, &hdr);
5654 if (!status)
5655 status = decode_sequence(&xdr, res, rqstp);
5656 return status;
5657}
5658
5659/*
Ricardo Labiaga8b173212009-12-05 16:08:39 -05005660 * Decode GET_LEASE_TIME response
Andy Adamson2050f0c2009-04-01 09:22:30 -04005661 */
5662static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp, uint32_t *p,
5663 struct nfs4_get_lease_time_res *res)
5664{
5665 struct xdr_stream xdr;
5666 struct compound_hdr hdr;
5667 int status;
5668
5669 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5670 status = decode_compound_hdr(&xdr, &hdr);
5671 if (!status)
5672 status = decode_sequence(&xdr, &res->lr_seq_res, rqstp);
5673 if (!status)
5674 status = decode_putrootfh(&xdr);
5675 if (!status)
5676 status = decode_fsinfo(&xdr, res->lr_fsinfo);
5677 return status;
5678}
Ricardo Labiaga180197532009-12-05 16:08:40 -05005679
5680/*
5681 * Decode RECLAIM_COMPLETE response
5682 */
5683static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp, uint32_t *p,
5684 struct nfs41_reclaim_complete_res *res)
5685{
5686 struct xdr_stream xdr;
5687 struct compound_hdr hdr;
5688 int status;
5689
5690 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
5691 status = decode_compound_hdr(&xdr, &hdr);
5692 if (!status)
5693 status = decode_sequence(&xdr, &res->seq_res, rqstp);
5694 if (!status)
5695 status = decode_reclaim_complete(&xdr, (void *)NULL);
5696 return status;
5697}
Benny Halevy99fe60d2009-04-01 09:22:29 -04005698#endif /* CONFIG_NFS_V4_1 */
5699
Al Viro0dbb4c62006-10-19 23:28:49 -07005700__be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701{
5702 uint32_t bitmap[2] = {0};
5703 uint32_t len;
5704
5705 if (!*p++) {
5706 if (!*p)
5707 return ERR_PTR(-EAGAIN);
5708 entry->eof = 1;
5709 return ERR_PTR(-EBADCOOKIE);
5710 }
5711
5712 entry->prev_cookie = entry->cookie;
5713 p = xdr_decode_hyper(p, &entry->cookie);
5714 entry->len = ntohl(*p++);
5715 entry->name = (const char *) p;
5716 p += XDR_QUADLEN(entry->len);
5717
5718 /*
5719 * In case the server doesn't return an inode number,
5720 * we fake one here. (We don't use inode number 0,
5721 * since glibc seems to choke on it...)
5722 */
5723 entry->ino = 1;
5724
5725 len = ntohl(*p++); /* bitmap length */
5726 if (len-- > 0) {
5727 bitmap[0] = ntohl(*p++);
5728 if (len-- > 0) {
5729 bitmap[1] = ntohl(*p++);
5730 p += len;
5731 }
5732 }
5733 len = XDR_QUADLEN(ntohl(*p++)); /* attribute buffer length */
5734 if (len > 0) {
Manoj Naik97d312d2005-06-22 17:16:39 +00005735 if (bitmap[0] & FATTR4_WORD0_RDATTR_ERROR) {
5736 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
5737 /* Ignore the return value of rdattr_error for now */
5738 p++;
5739 len--;
5740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 if (bitmap[0] == 0 && bitmap[1] == FATTR4_WORD1_MOUNTED_ON_FILEID)
5742 xdr_decode_hyper(p, &entry->ino);
5743 else if (bitmap[0] == FATTR4_WORD0_FILEID)
5744 xdr_decode_hyper(p, &entry->ino);
5745 p += len;
5746 }
5747
5748 entry->eof = !p[0] && p[1];
5749 return p;
5750}
5751
5752/*
5753 * We need to translate between nfs status return values and
5754 * the local errno values which may not be the same.
5755 */
5756static struct {
5757 int stat;
5758 int errno;
5759} nfs_errtbl[] = {
5760 { NFS4_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03005761 { NFS4ERR_PERM, -EPERM },
5762 { NFS4ERR_NOENT, -ENOENT },
5763 { NFS4ERR_IO, -errno_NFSERR_IO},
5764 { NFS4ERR_NXIO, -ENXIO },
5765 { NFS4ERR_ACCESS, -EACCES },
5766 { NFS4ERR_EXIST, -EEXIST },
5767 { NFS4ERR_XDEV, -EXDEV },
5768 { NFS4ERR_NOTDIR, -ENOTDIR },
5769 { NFS4ERR_ISDIR, -EISDIR },
5770 { NFS4ERR_INVAL, -EINVAL },
5771 { NFS4ERR_FBIG, -EFBIG },
5772 { NFS4ERR_NOSPC, -ENOSPC },
5773 { NFS4ERR_ROFS, -EROFS },
5774 { NFS4ERR_MLINK, -EMLINK },
5775 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
5776 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
5777 { NFS4ERR_DQUOT, -EDQUOT },
5778 { NFS4ERR_STALE, -ESTALE },
5779 { NFS4ERR_BADHANDLE, -EBADHANDLE },
5780 { NFS4ERR_BADOWNER, -EINVAL },
5781 { NFS4ERR_BADNAME, -EINVAL },
5782 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
5783 { NFS4ERR_NOTSUPP, -ENOTSUPP },
5784 { NFS4ERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005785 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03005786 { NFS4ERR_BADTYPE, -EBADTYPE },
5787 { NFS4ERR_LOCKED, -EAGAIN },
Benny Halevy856dff32008-03-31 17:39:06 +03005788 { NFS4ERR_SYMLINK, -ELOOP },
5789 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
5790 { NFS4ERR_DEADLOCK, -EDEADLK },
5791 { NFS4ERR_WRONGSEC, -EPERM }, /* FIXME: this needs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 * to be handled by a
5793 * middle-layer.
5794 */
Benny Halevy856dff32008-03-31 17:39:06 +03005795 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796};
5797
5798/*
5799 * Convert an NFS error code to a local one.
5800 * This one is used jointly by NFSv2 and NFSv3.
5801 */
5802static int
David Howells0a8ea432006-08-22 20:06:08 -04005803nfs4_stat_to_errno(int stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804{
5805 int i;
5806 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
5807 if (nfs_errtbl[i].stat == stat)
5808 return nfs_errtbl[i].errno;
5809 }
5810 if (stat <= 10000 || stat > 10100) {
5811 /* The server is looney tunes. */
Trond Myklebustfdcb4572010-02-08 09:32:40 -05005812 return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 }
5814 /* If we cannot translate the error, the recovery routines should
5815 * handle it.
5816 * Note: remaining NFSv4 error codes have values > 10000, so should
5817 * not conflict with native Linux error codes.
5818 */
Benny Halevy856dff32008-03-31 17:39:06 +03005819 return -stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820}
5821
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822#define PROC(proc, argtype, restype) \
5823[NFSPROC4_CLNT_##proc] = { \
5824 .p_proc = NFSPROC4_COMPOUND, \
5825 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
5826 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04005827 .p_arglen = NFS4_##argtype##_sz, \
5828 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05005829 .p_statidx = NFSPROC4_CLNT_##proc, \
5830 .p_name = #proc, \
Andy Adamson05d564f2008-12-23 16:06:15 -05005831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
5833struct rpc_procinfo nfs4_procedures[] = {
5834 PROC(READ, enc_read, dec_read),
5835 PROC(WRITE, enc_write, dec_write),
5836 PROC(COMMIT, enc_commit, dec_commit),
5837 PROC(OPEN, enc_open, dec_open),
5838 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
5839 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
5840 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
5841 PROC(CLOSE, enc_close, dec_close),
5842 PROC(SETATTR, enc_setattr, dec_setattr),
5843 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
5844 PROC(RENEW, enc_renew, dec_renew),
5845 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
5846 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
5847 PROC(LOCK, enc_lock, dec_lock),
5848 PROC(LOCKT, enc_lockt, dec_lockt),
5849 PROC(LOCKU, enc_locku, dec_locku),
5850 PROC(ACCESS, enc_access, dec_access),
5851 PROC(GETATTR, enc_getattr, dec_getattr),
5852 PROC(LOOKUP, enc_lookup, dec_lookup),
5853 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
5854 PROC(REMOVE, enc_remove, dec_remove),
5855 PROC(RENAME, enc_rename, dec_rename),
5856 PROC(LINK, enc_link, dec_link),
5857 PROC(SYMLINK, enc_symlink, dec_symlink),
5858 PROC(CREATE, enc_create, dec_create),
5859 PROC(PATHCONF, enc_pathconf, dec_pathconf),
5860 PROC(STATFS, enc_statfs, dec_statfs),
5861 PROC(READLINK, enc_readlink, dec_readlink),
5862 PROC(READDIR, enc_readdir, dec_readdir),
5863 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
5864 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
J. Bruce Fields029d1052005-06-22 17:16:22 +00005865 PROC(GETACL, enc_getacl, dec_getacl),
J. Bruce Fields23ec6962005-06-22 17:16:22 +00005866 PROC(SETACL, enc_setacl, dec_setacl),
Trond Myklebust683b57b2006-06-09 09:34:22 -04005867 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005868#if defined(CONFIG_NFS_V4_1)
5869 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
Andy Adamsonfc931582009-04-01 09:22:31 -04005870 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005871 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005872 PROC(SEQUENCE, enc_sequence, dec_sequence),
Andy Adamson2050f0c2009-04-01 09:22:30 -04005873 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
Ricardo Labiaga180197532009-12-05 16:08:40 -05005874 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
Benny Halevy99fe60d2009-04-01 09:22:29 -04005875#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876};
5877
5878struct rpc_version nfs_version4 = {
5879 .number = 4,
Tobias Klausere8c96f82006-03-24 03:15:34 -08005880 .nrprocs = ARRAY_SIZE(nfs4_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 .procs = nfs4_procedures
5882};
5883
5884/*
5885 * Local variables:
5886 * c-basic-offset: 8
5887 * End:
5888 */