4 * Client-side XDR for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
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.
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.
38 #include <linux/param.h>
39 #include <linux/time.h>
41 #include <linux/errno.h>
42 #include <linux/string.h>
44 #include <linux/pagemap.h>
45 #include <linux/proc_fs.h>
46 #include <linux/kdev_t.h>
47 #include <linux/module.h>
48 #include <linux/utsname.h>
49 #include <linux/sunrpc/clnt.h>
50 #include <linux/sunrpc/msg_prot.h>
51 #include <linux/sunrpc/gss_api.h>
52 #include <linux/nfs.h>
53 #include <linux/nfs4.h>
54 #include <linux/nfs_fs.h>
55 #include <linux/nfs_idmap.h>
59 #include "nfs4session.h"
63 #define NFSDBG_FACILITY NFSDBG_XDR
65 /* Mapping from NFS error code to "errno" error code. */
66 #define errno_NFSERR_IO EIO
68 static int nfs4_stat_to_errno(int);
70 /* NFSv4 COMPOUND tags are only wanted for debugging purposes */
72 #define NFS4_MAXTAGLEN 20
74 #define NFS4_MAXTAGLEN 0
77 /* lock,open owner id:
78 * we currently use size 2 (u64) out of (NFS4_OPAQUE_LIMIT >> 2)
80 #define open_owner_id_maxsz (1 + 2 + 1 + 1 + 2)
81 #define lock_owner_id_maxsz (1 + 1 + 4)
82 #define decode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
83 #define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
84 #define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
85 #define op_encode_hdr_maxsz (1)
86 #define op_decode_hdr_maxsz (2)
87 #define encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
88 #define decode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
89 #define encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
90 #define decode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
91 #define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
93 #define decode_putfh_maxsz (op_decode_hdr_maxsz)
94 #define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
95 #define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
96 #define encode_getfh_maxsz (op_encode_hdr_maxsz)
97 #define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
98 ((3+NFS4_FHSIZE) >> 2))
99 #define nfs4_fattr_bitmap_maxsz 4
100 #define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
101 #define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
102 #define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
103 #define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
104 #define nfs4_group_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
105 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
106 /* PI(4 bytes) + LFS(4 bytes) + 1(for null terminator?) + MAXLABELLEN */
107 #define nfs4_label_maxsz (4 + 4 + 1 + XDR_QUADLEN(NFS4_MAXLABELLEN))
109 #define nfs4_label_maxsz 0
111 /* We support only one layout type per file system */
112 #define decode_mdsthreshold_maxsz (1 + 1 + nfs4_fattr_bitmap_maxsz + 1 + 8)
113 /* This is based on getfattr, which uses the most attributes: */
114 #define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
115 3 + 3 + 3 + nfs4_owner_maxsz + \
116 nfs4_group_maxsz + nfs4_label_maxsz + \
117 decode_mdsthreshold_maxsz))
118 #define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
119 nfs4_fattr_value_maxsz)
120 #define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
121 #define encode_attrs_maxsz (nfs4_fattr_bitmap_maxsz + \
127 #define encode_savefh_maxsz (op_encode_hdr_maxsz)
128 #define decode_savefh_maxsz (op_decode_hdr_maxsz)
129 #define encode_restorefh_maxsz (op_encode_hdr_maxsz)
130 #define decode_restorefh_maxsz (op_decode_hdr_maxsz)
131 #define encode_fsinfo_maxsz (encode_getattr_maxsz)
132 /* The 5 accounts for the PNFS attributes, and assumes that at most three
133 * layout types will be returned.
135 #define decode_fsinfo_maxsz (op_decode_hdr_maxsz + \
136 nfs4_fattr_bitmap_maxsz + 4 + 8 + 5)
137 #define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
138 #define decode_renew_maxsz (op_decode_hdr_maxsz)
139 #define encode_setclientid_maxsz \
140 (op_encode_hdr_maxsz + \
141 XDR_QUADLEN(NFS4_VERIFIER_SIZE) + \
142 XDR_QUADLEN(NFS4_SETCLIENTID_NAMELEN) + \
144 XDR_QUADLEN(RPCBIND_MAXNETIDLEN) + \
145 XDR_QUADLEN(RPCBIND_MAXUADDRLEN) + \
147 #define decode_setclientid_maxsz \
148 (op_decode_hdr_maxsz + \
150 1024) /* large value for CLID_INUSE */
151 #define encode_setclientid_confirm_maxsz \
152 (op_encode_hdr_maxsz + \
153 3 + (NFS4_VERIFIER_SIZE >> 2))
154 #define decode_setclientid_confirm_maxsz \
155 (op_decode_hdr_maxsz)
156 #define encode_lookup_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
157 #define decode_lookup_maxsz (op_decode_hdr_maxsz)
158 #define encode_share_access_maxsz \
160 #define encode_createmode_maxsz (1 + encode_attrs_maxsz + encode_verifier_maxsz)
161 #define encode_opentype_maxsz (1 + encode_createmode_maxsz)
162 #define encode_claim_null_maxsz (1 + nfs4_name_maxsz)
163 #define encode_open_maxsz (op_encode_hdr_maxsz + \
164 2 + encode_share_access_maxsz + 2 + \
165 open_owner_id_maxsz + \
166 encode_opentype_maxsz + \
167 encode_claim_null_maxsz)
168 #define decode_ace_maxsz (3 + nfs4_owner_maxsz)
169 #define decode_delegation_maxsz (1 + decode_stateid_maxsz + 1 + \
171 #define decode_change_info_maxsz (5)
172 #define decode_open_maxsz (op_decode_hdr_maxsz + \
173 decode_stateid_maxsz + \
174 decode_change_info_maxsz + 1 + \
175 nfs4_fattr_bitmap_maxsz + \
176 decode_delegation_maxsz)
177 #define encode_open_confirm_maxsz \
178 (op_encode_hdr_maxsz + \
179 encode_stateid_maxsz + 1)
180 #define decode_open_confirm_maxsz \
181 (op_decode_hdr_maxsz + \
182 decode_stateid_maxsz)
183 #define encode_open_downgrade_maxsz \
184 (op_encode_hdr_maxsz + \
185 encode_stateid_maxsz + 1 + \
186 encode_share_access_maxsz)
187 #define decode_open_downgrade_maxsz \
188 (op_decode_hdr_maxsz + \
189 decode_stateid_maxsz)
190 #define encode_close_maxsz (op_encode_hdr_maxsz + \
191 1 + encode_stateid_maxsz)
192 #define decode_close_maxsz (op_decode_hdr_maxsz + \
193 decode_stateid_maxsz)
194 #define encode_setattr_maxsz (op_encode_hdr_maxsz + \
195 encode_stateid_maxsz + \
197 #define decode_setattr_maxsz (op_decode_hdr_maxsz + \
198 nfs4_fattr_bitmap_maxsz)
199 #define encode_read_maxsz (op_encode_hdr_maxsz + \
200 encode_stateid_maxsz + 3)
201 #define decode_read_maxsz (op_decode_hdr_maxsz + 2)
202 #define encode_readdir_maxsz (op_encode_hdr_maxsz + \
203 2 + encode_verifier_maxsz + 5 + \
205 #define decode_readdir_maxsz (op_decode_hdr_maxsz + \
206 decode_verifier_maxsz + \
207 nfs4_label_maxsz + nfs4_fattr_maxsz)
208 #define encode_readlink_maxsz (op_encode_hdr_maxsz)
209 #define decode_readlink_maxsz (op_decode_hdr_maxsz + 1)
210 #define encode_write_maxsz (op_encode_hdr_maxsz + \
211 encode_stateid_maxsz + 4)
212 #define decode_write_maxsz (op_decode_hdr_maxsz + \
213 2 + decode_verifier_maxsz)
214 #define encode_commit_maxsz (op_encode_hdr_maxsz + 3)
215 #define decode_commit_maxsz (op_decode_hdr_maxsz + \
216 decode_verifier_maxsz)
217 #define encode_remove_maxsz (op_encode_hdr_maxsz + \
219 #define decode_remove_maxsz (op_decode_hdr_maxsz + \
220 decode_change_info_maxsz)
221 #define encode_rename_maxsz (op_encode_hdr_maxsz + \
223 #define decode_rename_maxsz (op_decode_hdr_maxsz + \
224 decode_change_info_maxsz + \
225 decode_change_info_maxsz)
226 #define encode_link_maxsz (op_encode_hdr_maxsz + \
228 #define decode_link_maxsz (op_decode_hdr_maxsz + decode_change_info_maxsz)
229 #define encode_lockowner_maxsz (7)
230 #define encode_lock_maxsz (op_encode_hdr_maxsz + \
232 1 + encode_stateid_maxsz + 1 + \
233 encode_lockowner_maxsz)
234 #define decode_lock_denied_maxsz \
235 (8 + decode_lockowner_maxsz)
236 #define decode_lock_maxsz (op_decode_hdr_maxsz + \
237 decode_lock_denied_maxsz)
238 #define encode_lockt_maxsz (op_encode_hdr_maxsz + 5 + \
239 encode_lockowner_maxsz)
240 #define decode_lockt_maxsz (op_decode_hdr_maxsz + \
241 decode_lock_denied_maxsz)
242 #define encode_locku_maxsz (op_encode_hdr_maxsz + 3 + \
243 encode_stateid_maxsz + \
245 #define decode_locku_maxsz (op_decode_hdr_maxsz + \
246 decode_stateid_maxsz)
247 #define encode_release_lockowner_maxsz \
248 (op_encode_hdr_maxsz + \
249 encode_lockowner_maxsz)
250 #define decode_release_lockowner_maxsz \
251 (op_decode_hdr_maxsz)
252 #define encode_access_maxsz (op_encode_hdr_maxsz + 1)
253 #define decode_access_maxsz (op_decode_hdr_maxsz + 2)
254 #define encode_symlink_maxsz (op_encode_hdr_maxsz + \
255 1 + nfs4_name_maxsz + \
258 #define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
259 #define encode_create_maxsz (op_encode_hdr_maxsz + \
260 1 + 2 + nfs4_name_maxsz + \
262 #define decode_create_maxsz (op_decode_hdr_maxsz + \
263 decode_change_info_maxsz + \
264 nfs4_fattr_bitmap_maxsz)
265 #define encode_statfs_maxsz (encode_getattr_maxsz)
266 #define decode_statfs_maxsz (decode_getattr_maxsz)
267 #define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
268 #define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
269 #define encode_getacl_maxsz (encode_getattr_maxsz)
270 #define decode_getacl_maxsz (op_decode_hdr_maxsz + \
271 nfs4_fattr_bitmap_maxsz + 1)
272 #define encode_setacl_maxsz (op_encode_hdr_maxsz + \
273 encode_stateid_maxsz + 3)
274 #define decode_setacl_maxsz (decode_setattr_maxsz)
275 #define encode_fs_locations_maxsz \
276 (encode_getattr_maxsz)
277 #define decode_fs_locations_maxsz \
279 #define encode_secinfo_maxsz (op_encode_hdr_maxsz + nfs4_name_maxsz)
280 #define decode_secinfo_maxsz (op_decode_hdr_maxsz + 1 + ((NFS_MAX_SECFLAVORS * (16 + GSS_OID_MAX_LEN)) / 4))
282 #if defined(CONFIG_NFS_V4_1)
283 #define NFS4_MAX_MACHINE_NAME_LEN (64)
284 #define IMPL_NAME_LIMIT (sizeof(utsname()->sysname) + sizeof(utsname()->release) + \
285 sizeof(utsname()->version) + sizeof(utsname()->machine) + 8)
287 #define encode_exchange_id_maxsz (op_encode_hdr_maxsz + \
288 encode_verifier_maxsz + \
289 1 /* co_ownerid.len */ + \
290 XDR_QUADLEN(NFS4_EXCHANGE_ID_LEN) + \
293 /* max is SP4_MACH_CRED (for now) */ + \
294 1 + NFS4_OP_MAP_NUM_WORDS + \
295 1 + NFS4_OP_MAP_NUM_WORDS + \
296 1 /* implementation id array of size 1 */ + \
297 1 /* nii_domain */ + \
298 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
300 XDR_QUADLEN(IMPL_NAME_LIMIT) + \
302 #define decode_exchange_id_maxsz (op_decode_hdr_maxsz + \
303 2 /* eir_clientid */ + \
304 1 /* eir_sequenceid */ + \
305 1 /* eir_flags */ + \
307 /* max is SP4_MACH_CRED (for now) */ + \
308 1 + NFS4_OP_MAP_NUM_WORDS + \
309 1 + NFS4_OP_MAP_NUM_WORDS + \
310 2 /* eir_server_owner.so_minor_id */ + \
311 /* eir_server_owner.so_major_id<> */ \
312 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
313 /* eir_server_scope<> */ \
314 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 + \
315 1 /* eir_server_impl_id array length */ + \
316 1 /* nii_domain */ + \
317 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
319 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + \
321 #define encode_channel_attrs_maxsz (6 + 1 /* ca_rdma_ird.len (0) */)
322 #define decode_channel_attrs_maxsz (6 + \
323 1 /* ca_rdma_ird.len */ + \
325 #define encode_create_session_maxsz (op_encode_hdr_maxsz + \
326 2 /* csa_clientid */ + \
327 1 /* csa_sequence */ + \
328 1 /* csa_flags */ + \
329 encode_channel_attrs_maxsz + \
330 encode_channel_attrs_maxsz + \
331 1 /* csa_cb_program */ + \
332 1 /* csa_sec_parms.len (1) */ + \
333 1 /* cb_secflavor (AUTH_SYS) */ + \
335 1 /* machinename.len */ + \
336 XDR_QUADLEN(NFS4_MAX_MACHINE_NAME_LEN) + \
339 1 /* gids.len (0) */)
340 #define decode_create_session_maxsz (op_decode_hdr_maxsz + \
341 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
342 1 /* csr_sequence */ + \
343 1 /* csr_flags */ + \
344 decode_channel_attrs_maxsz + \
345 decode_channel_attrs_maxsz)
346 #define encode_bind_conn_to_session_maxsz (op_encode_hdr_maxsz + \
348 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
349 1 /* bctsa_dir */ + \
350 1 /* bctsa_use_conn_in_rdma_mode */)
351 #define decode_bind_conn_to_session_maxsz (op_decode_hdr_maxsz + \
353 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
354 1 /* bctsr_dir */ + \
355 1 /* bctsr_use_conn_in_rdma_mode */)
356 #define encode_destroy_session_maxsz (op_encode_hdr_maxsz + 4)
357 #define decode_destroy_session_maxsz (op_decode_hdr_maxsz)
358 #define encode_destroy_clientid_maxsz (op_encode_hdr_maxsz + 2)
359 #define decode_destroy_clientid_maxsz (op_decode_hdr_maxsz)
360 #define encode_sequence_maxsz (op_encode_hdr_maxsz + \
361 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 4)
362 #define decode_sequence_maxsz (op_decode_hdr_maxsz + \
363 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5)
364 #define encode_reclaim_complete_maxsz (op_encode_hdr_maxsz + 4)
365 #define decode_reclaim_complete_maxsz (op_decode_hdr_maxsz + 4)
366 #define encode_getdevicelist_maxsz (op_encode_hdr_maxsz + 4 + \
367 encode_verifier_maxsz)
368 #define decode_getdevicelist_maxsz (op_decode_hdr_maxsz + \
369 2 /* nfs_cookie4 gdlr_cookie */ + \
370 decode_verifier_maxsz \
371 /* verifier4 gdlr_verifier */ + \
372 1 /* gdlr_deviceid_list count */ + \
373 XDR_QUADLEN(NFS4_PNFS_GETDEVLIST_MAXNUM * \
374 NFS4_DEVICEID4_SIZE) \
375 /* gdlr_deviceid_list */ + \
376 1 /* bool gdlr_eof */)
377 #define encode_getdeviceinfo_maxsz (op_encode_hdr_maxsz + 4 + \
378 XDR_QUADLEN(NFS4_DEVICEID4_SIZE))
379 #define decode_getdeviceinfo_maxsz (op_decode_hdr_maxsz + \
380 1 /* layout type */ + \
381 1 /* opaque devaddr4 length */ + \
382 /* devaddr4 payload is read into page */ \
383 1 /* notification bitmap length */ + \
384 1 /* notification bitmap */)
385 #define encode_layoutget_maxsz (op_encode_hdr_maxsz + 10 + \
386 encode_stateid_maxsz)
387 #define decode_layoutget_maxsz (op_decode_hdr_maxsz + 8 + \
388 decode_stateid_maxsz + \
389 XDR_QUADLEN(PNFS_LAYOUT_MAXSIZE))
390 #define encode_layoutcommit_maxsz (op_encode_hdr_maxsz + \
394 encode_stateid_maxsz + \
395 1 /* new offset (true) */ + \
396 2 /* last byte written */ + \
397 1 /* nt_timechanged (false) */ + \
398 1 /* layoutupdate4 layout type */ + \
399 1 /* NULL filelayout layoutupdate4 payload */)
400 #define decode_layoutcommit_maxsz (op_decode_hdr_maxsz + 3)
401 #define encode_layoutreturn_maxsz (8 + op_encode_hdr_maxsz + \
402 encode_stateid_maxsz + \
403 1 /* FIXME: opaque lrf_body always empty at the moment */)
404 #define decode_layoutreturn_maxsz (op_decode_hdr_maxsz + \
405 1 + decode_stateid_maxsz)
406 #define encode_secinfo_no_name_maxsz (op_encode_hdr_maxsz + 1)
407 #define decode_secinfo_no_name_maxsz decode_secinfo_maxsz
408 #define encode_test_stateid_maxsz (op_encode_hdr_maxsz + 2 + \
409 XDR_QUADLEN(NFS4_STATEID_SIZE))
410 #define decode_test_stateid_maxsz (op_decode_hdr_maxsz + 2 + 1)
411 #define encode_free_stateid_maxsz (op_encode_hdr_maxsz + 1 + \
412 XDR_QUADLEN(NFS4_STATEID_SIZE))
413 #define decode_free_stateid_maxsz (op_decode_hdr_maxsz)
414 #else /* CONFIG_NFS_V4_1 */
415 #define encode_sequence_maxsz 0
416 #define decode_sequence_maxsz 0
417 #endif /* CONFIG_NFS_V4_1 */
419 #define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
420 #define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
421 #define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
422 encode_sequence_maxsz + \
423 encode_putfh_maxsz + \
425 #define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
426 decode_sequence_maxsz + \
427 decode_putfh_maxsz + \
429 #define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
430 encode_sequence_maxsz + \
431 encode_putfh_maxsz + \
432 encode_readlink_maxsz)
433 #define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
434 decode_sequence_maxsz + \
435 decode_putfh_maxsz + \
436 decode_readlink_maxsz)
437 #define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
438 encode_sequence_maxsz + \
439 encode_putfh_maxsz + \
440 encode_readdir_maxsz)
441 #define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
442 decode_sequence_maxsz + \
443 decode_putfh_maxsz + \
444 decode_readdir_maxsz)
445 #define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
446 encode_sequence_maxsz + \
447 encode_putfh_maxsz + \
448 encode_write_maxsz + \
449 encode_getattr_maxsz)
450 #define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
451 decode_sequence_maxsz + \
452 decode_putfh_maxsz + \
453 decode_write_maxsz + \
454 decode_getattr_maxsz)
455 #define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
456 encode_sequence_maxsz + \
457 encode_putfh_maxsz + \
459 #define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
460 decode_sequence_maxsz + \
461 decode_putfh_maxsz + \
463 #define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
464 encode_sequence_maxsz + \
465 encode_putfh_maxsz + \
466 encode_open_maxsz + \
467 encode_access_maxsz + \
468 encode_getfh_maxsz + \
469 encode_getattr_maxsz)
470 #define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
471 decode_sequence_maxsz + \
472 decode_putfh_maxsz + \
473 decode_open_maxsz + \
474 decode_access_maxsz + \
475 decode_getfh_maxsz + \
476 decode_getattr_maxsz)
477 #define NFS4_enc_open_confirm_sz \
478 (compound_encode_hdr_maxsz + \
479 encode_putfh_maxsz + \
480 encode_open_confirm_maxsz)
481 #define NFS4_dec_open_confirm_sz \
482 (compound_decode_hdr_maxsz + \
483 decode_putfh_maxsz + \
484 decode_open_confirm_maxsz)
485 #define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
486 encode_sequence_maxsz + \
487 encode_putfh_maxsz + \
488 encode_open_maxsz + \
489 encode_access_maxsz + \
490 encode_getattr_maxsz)
491 #define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
492 decode_sequence_maxsz + \
493 decode_putfh_maxsz + \
494 decode_open_maxsz + \
495 decode_access_maxsz + \
496 decode_getattr_maxsz)
497 #define NFS4_enc_open_downgrade_sz \
498 (compound_encode_hdr_maxsz + \
499 encode_sequence_maxsz + \
500 encode_putfh_maxsz + \
501 encode_open_downgrade_maxsz + \
502 encode_getattr_maxsz)
503 #define NFS4_dec_open_downgrade_sz \
504 (compound_decode_hdr_maxsz + \
505 decode_sequence_maxsz + \
506 decode_putfh_maxsz + \
507 decode_open_downgrade_maxsz + \
508 decode_getattr_maxsz)
509 #define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
510 encode_sequence_maxsz + \
511 encode_putfh_maxsz + \
512 encode_close_maxsz + \
513 encode_getattr_maxsz)
514 #define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
515 decode_sequence_maxsz + \
516 decode_putfh_maxsz + \
517 decode_close_maxsz + \
518 decode_getattr_maxsz)
519 #define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
520 encode_sequence_maxsz + \
521 encode_putfh_maxsz + \
522 encode_setattr_maxsz + \
523 encode_getattr_maxsz)
524 #define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
525 decode_sequence_maxsz + \
526 decode_putfh_maxsz + \
527 decode_setattr_maxsz + \
528 decode_getattr_maxsz)
529 #define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
530 encode_sequence_maxsz + \
531 encode_putfh_maxsz + \
533 #define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
534 decode_sequence_maxsz + \
535 decode_putfh_maxsz + \
537 #define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
539 #define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
541 #define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
542 encode_setclientid_maxsz)
543 #define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
544 decode_setclientid_maxsz)
545 #define NFS4_enc_setclientid_confirm_sz \
546 (compound_encode_hdr_maxsz + \
547 encode_setclientid_confirm_maxsz)
548 #define NFS4_dec_setclientid_confirm_sz \
549 (compound_decode_hdr_maxsz + \
550 decode_setclientid_confirm_maxsz)
551 #define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
552 encode_sequence_maxsz + \
553 encode_putfh_maxsz + \
555 #define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
556 decode_sequence_maxsz + \
557 decode_putfh_maxsz + \
559 #define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
560 encode_sequence_maxsz + \
561 encode_putfh_maxsz + \
563 #define NFS4_dec_lockt_sz (compound_decode_hdr_maxsz + \
564 decode_sequence_maxsz + \
565 decode_putfh_maxsz + \
567 #define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
568 encode_sequence_maxsz + \
569 encode_putfh_maxsz + \
571 #define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
572 decode_sequence_maxsz + \
573 decode_putfh_maxsz + \
575 #define NFS4_enc_release_lockowner_sz \
576 (compound_encode_hdr_maxsz + \
577 encode_lockowner_maxsz)
578 #define NFS4_dec_release_lockowner_sz \
579 (compound_decode_hdr_maxsz + \
580 decode_lockowner_maxsz)
581 #define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
582 encode_sequence_maxsz + \
583 encode_putfh_maxsz + \
584 encode_access_maxsz + \
585 encode_getattr_maxsz)
586 #define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
587 decode_sequence_maxsz + \
588 decode_putfh_maxsz + \
589 decode_access_maxsz + \
590 decode_getattr_maxsz)
591 #define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
592 encode_sequence_maxsz + \
593 encode_putfh_maxsz + \
594 encode_getattr_maxsz + \
596 #define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
597 decode_sequence_maxsz + \
598 decode_putfh_maxsz + \
599 decode_getattr_maxsz + \
601 #define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
602 encode_sequence_maxsz + \
603 encode_putfh_maxsz + \
604 encode_lookup_maxsz + \
605 encode_getattr_maxsz + \
607 #define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
608 decode_sequence_maxsz + \
609 decode_putfh_maxsz + \
610 decode_lookup_maxsz + \
611 decode_getattr_maxsz + \
613 #define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
614 encode_sequence_maxsz + \
615 encode_putrootfh_maxsz + \
616 encode_getattr_maxsz + \
618 #define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
619 decode_sequence_maxsz + \
620 decode_putrootfh_maxsz + \
621 decode_getattr_maxsz + \
623 #define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
624 encode_sequence_maxsz + \
625 encode_putfh_maxsz + \
627 #define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
628 decode_sequence_maxsz + \
629 decode_putfh_maxsz + \
631 #define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
632 encode_sequence_maxsz + \
633 encode_putfh_maxsz + \
634 encode_savefh_maxsz + \
635 encode_putfh_maxsz + \
637 #define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
638 decode_sequence_maxsz + \
639 decode_putfh_maxsz + \
640 decode_savefh_maxsz + \
641 decode_putfh_maxsz + \
643 #define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
644 encode_sequence_maxsz + \
645 encode_putfh_maxsz + \
646 encode_savefh_maxsz + \
647 encode_putfh_maxsz + \
648 encode_link_maxsz + \
649 encode_restorefh_maxsz + \
650 encode_getattr_maxsz)
651 #define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
652 decode_sequence_maxsz + \
653 decode_putfh_maxsz + \
654 decode_savefh_maxsz + \
655 decode_putfh_maxsz + \
656 decode_link_maxsz + \
657 decode_restorefh_maxsz + \
658 decode_getattr_maxsz)
659 #define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
660 encode_sequence_maxsz + \
661 encode_putfh_maxsz + \
662 encode_symlink_maxsz + \
663 encode_getattr_maxsz + \
665 #define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
666 decode_sequence_maxsz + \
667 decode_putfh_maxsz + \
668 decode_symlink_maxsz + \
669 decode_getattr_maxsz + \
671 #define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
672 encode_sequence_maxsz + \
673 encode_putfh_maxsz + \
674 encode_create_maxsz + \
675 encode_getfh_maxsz + \
676 encode_getattr_maxsz)
677 #define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
678 decode_sequence_maxsz + \
679 decode_putfh_maxsz + \
680 decode_create_maxsz + \
681 decode_getfh_maxsz + \
682 decode_getattr_maxsz)
683 #define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
684 encode_sequence_maxsz + \
685 encode_putfh_maxsz + \
686 encode_getattr_maxsz)
687 #define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
688 decode_sequence_maxsz + \
689 decode_putfh_maxsz + \
690 decode_getattr_maxsz)
691 #define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
692 encode_sequence_maxsz + \
693 encode_putfh_maxsz + \
695 #define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
696 decode_sequence_maxsz + \
697 decode_putfh_maxsz + \
699 #define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
700 encode_sequence_maxsz + \
701 encode_putfh_maxsz + \
702 encode_getattr_maxsz)
703 #define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
704 decode_sequence_maxsz + \
705 decode_putfh_maxsz + \
706 decode_getattr_maxsz)
707 #define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
708 encode_sequence_maxsz + \
709 encode_putfh_maxsz + \
710 encode_delegreturn_maxsz + \
711 encode_getattr_maxsz)
712 #define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
713 decode_sequence_maxsz + \
714 decode_delegreturn_maxsz + \
715 decode_getattr_maxsz)
716 #define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
717 encode_sequence_maxsz + \
718 encode_putfh_maxsz + \
720 #define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
721 decode_sequence_maxsz + \
722 decode_putfh_maxsz + \
724 #define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
725 encode_sequence_maxsz + \
726 encode_putfh_maxsz + \
728 #define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
729 decode_sequence_maxsz + \
730 decode_putfh_maxsz + \
732 #define NFS4_enc_fs_locations_sz \
733 (compound_encode_hdr_maxsz + \
734 encode_sequence_maxsz + \
735 encode_putfh_maxsz + \
736 encode_lookup_maxsz + \
737 encode_fs_locations_maxsz + \
739 #define NFS4_dec_fs_locations_sz \
740 (compound_decode_hdr_maxsz + \
741 decode_sequence_maxsz + \
742 decode_putfh_maxsz + \
743 decode_lookup_maxsz + \
744 decode_fs_locations_maxsz + \
746 #define NFS4_enc_secinfo_sz (compound_encode_hdr_maxsz + \
747 encode_sequence_maxsz + \
748 encode_putfh_maxsz + \
749 encode_secinfo_maxsz)
750 #define NFS4_dec_secinfo_sz (compound_decode_hdr_maxsz + \
751 decode_sequence_maxsz + \
752 decode_putfh_maxsz + \
753 decode_secinfo_maxsz)
754 #define NFS4_enc_fsid_present_sz \
755 (compound_encode_hdr_maxsz + \
756 encode_sequence_maxsz + \
757 encode_putfh_maxsz + \
758 encode_getfh_maxsz + \
760 #define NFS4_dec_fsid_present_sz \
761 (compound_decode_hdr_maxsz + \
762 decode_sequence_maxsz + \
763 decode_putfh_maxsz + \
764 decode_getfh_maxsz + \
766 #if defined(CONFIG_NFS_V4_1)
767 #define NFS4_enc_bind_conn_to_session_sz \
768 (compound_encode_hdr_maxsz + \
769 encode_bind_conn_to_session_maxsz)
770 #define NFS4_dec_bind_conn_to_session_sz \
771 (compound_decode_hdr_maxsz + \
772 decode_bind_conn_to_session_maxsz)
773 #define NFS4_enc_exchange_id_sz \
774 (compound_encode_hdr_maxsz + \
775 encode_exchange_id_maxsz)
776 #define NFS4_dec_exchange_id_sz \
777 (compound_decode_hdr_maxsz + \
778 decode_exchange_id_maxsz)
779 #define NFS4_enc_create_session_sz \
780 (compound_encode_hdr_maxsz + \
781 encode_create_session_maxsz)
782 #define NFS4_dec_create_session_sz \
783 (compound_decode_hdr_maxsz + \
784 decode_create_session_maxsz)
785 #define NFS4_enc_destroy_session_sz (compound_encode_hdr_maxsz + \
786 encode_destroy_session_maxsz)
787 #define NFS4_dec_destroy_session_sz (compound_decode_hdr_maxsz + \
788 decode_destroy_session_maxsz)
789 #define NFS4_enc_destroy_clientid_sz (compound_encode_hdr_maxsz + \
790 encode_destroy_clientid_maxsz)
791 #define NFS4_dec_destroy_clientid_sz (compound_decode_hdr_maxsz + \
792 decode_destroy_clientid_maxsz)
793 #define NFS4_enc_sequence_sz \
794 (compound_decode_hdr_maxsz + \
795 encode_sequence_maxsz)
796 #define NFS4_dec_sequence_sz \
797 (compound_decode_hdr_maxsz + \
798 decode_sequence_maxsz)
799 #define NFS4_enc_get_lease_time_sz (compound_encode_hdr_maxsz + \
800 encode_sequence_maxsz + \
801 encode_putrootfh_maxsz + \
803 #define NFS4_dec_get_lease_time_sz (compound_decode_hdr_maxsz + \
804 decode_sequence_maxsz + \
805 decode_putrootfh_maxsz + \
807 #define NFS4_enc_reclaim_complete_sz (compound_encode_hdr_maxsz + \
808 encode_sequence_maxsz + \
809 encode_reclaim_complete_maxsz)
810 #define NFS4_dec_reclaim_complete_sz (compound_decode_hdr_maxsz + \
811 decode_sequence_maxsz + \
812 decode_reclaim_complete_maxsz)
813 #define NFS4_enc_getdevicelist_sz (compound_encode_hdr_maxsz + \
814 encode_sequence_maxsz + \
815 encode_putfh_maxsz + \
816 encode_getdevicelist_maxsz)
817 #define NFS4_dec_getdevicelist_sz (compound_decode_hdr_maxsz + \
818 decode_sequence_maxsz + \
819 decode_putfh_maxsz + \
820 decode_getdevicelist_maxsz)
821 #define NFS4_enc_getdeviceinfo_sz (compound_encode_hdr_maxsz + \
822 encode_sequence_maxsz +\
823 encode_getdeviceinfo_maxsz)
824 #define NFS4_dec_getdeviceinfo_sz (compound_decode_hdr_maxsz + \
825 decode_sequence_maxsz + \
826 decode_getdeviceinfo_maxsz)
827 #define NFS4_enc_layoutget_sz (compound_encode_hdr_maxsz + \
828 encode_sequence_maxsz + \
829 encode_putfh_maxsz + \
830 encode_layoutget_maxsz)
831 #define NFS4_dec_layoutget_sz (compound_decode_hdr_maxsz + \
832 decode_sequence_maxsz + \
833 decode_putfh_maxsz + \
834 decode_layoutget_maxsz)
835 #define NFS4_enc_layoutcommit_sz (compound_encode_hdr_maxsz + \
836 encode_sequence_maxsz +\
837 encode_putfh_maxsz + \
838 encode_layoutcommit_maxsz + \
839 encode_getattr_maxsz)
840 #define NFS4_dec_layoutcommit_sz (compound_decode_hdr_maxsz + \
841 decode_sequence_maxsz + \
842 decode_putfh_maxsz + \
843 decode_layoutcommit_maxsz + \
844 decode_getattr_maxsz)
845 #define NFS4_enc_layoutreturn_sz (compound_encode_hdr_maxsz + \
846 encode_sequence_maxsz + \
847 encode_putfh_maxsz + \
848 encode_layoutreturn_maxsz)
849 #define NFS4_dec_layoutreturn_sz (compound_decode_hdr_maxsz + \
850 decode_sequence_maxsz + \
851 decode_putfh_maxsz + \
852 decode_layoutreturn_maxsz)
853 #define NFS4_enc_secinfo_no_name_sz (compound_encode_hdr_maxsz + \
854 encode_sequence_maxsz + \
855 encode_putrootfh_maxsz +\
856 encode_secinfo_no_name_maxsz)
857 #define NFS4_dec_secinfo_no_name_sz (compound_decode_hdr_maxsz + \
858 decode_sequence_maxsz + \
859 decode_putrootfh_maxsz + \
860 decode_secinfo_no_name_maxsz)
861 #define NFS4_enc_test_stateid_sz (compound_encode_hdr_maxsz + \
862 encode_sequence_maxsz + \
863 encode_test_stateid_maxsz)
864 #define NFS4_dec_test_stateid_sz (compound_decode_hdr_maxsz + \
865 decode_sequence_maxsz + \
866 decode_test_stateid_maxsz)
867 #define NFS4_enc_free_stateid_sz (compound_encode_hdr_maxsz + \
868 encode_sequence_maxsz + \
869 encode_free_stateid_maxsz)
870 #define NFS4_dec_free_stateid_sz (compound_decode_hdr_maxsz + \
871 decode_sequence_maxsz + \
872 decode_free_stateid_maxsz)
874 const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
875 compound_encode_hdr_maxsz +
876 encode_sequence_maxsz +
878 encode_getattr_maxsz) *
881 const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
882 compound_decode_hdr_maxsz +
883 decode_sequence_maxsz +
884 decode_putfh_maxsz) *
887 const u32 nfs41_maxgetdevinfo_overhead = ((RPC_MAX_REPHEADER_WITH_AUTH +
888 compound_decode_hdr_maxsz +
889 decode_sequence_maxsz) *
891 EXPORT_SYMBOL_GPL(nfs41_maxgetdevinfo_overhead);
892 #endif /* CONFIG_NFS_V4_1 */
894 static const umode_t nfs_type2fmt[] = {
901 [NF4SOCK] = S_IFSOCK,
907 struct compound_hdr {
913 uint32_t replen; /* expected reply words */
917 static __be32 *reserve_space(struct xdr_stream *xdr, size_t nbytes)
919 __be32 *p = xdr_reserve_space(xdr, nbytes);
924 static void encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
928 p = xdr_reserve_space(xdr, len);
929 xdr_encode_opaque_fixed(p, buf, len);
932 static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
936 p = reserve_space(xdr, 4 + len);
937 xdr_encode_opaque(p, str, len);
940 static void encode_uint32(struct xdr_stream *xdr, u32 n)
944 p = reserve_space(xdr, 4);
948 static void encode_uint64(struct xdr_stream *xdr, u64 n)
952 p = reserve_space(xdr, 8);
953 xdr_encode_hyper(p, n);
956 static void encode_nfs4_seqid(struct xdr_stream *xdr,
957 const struct nfs_seqid *seqid)
959 encode_uint32(xdr, seqid->sequence->counter);
962 static void encode_compound_hdr(struct xdr_stream *xdr,
963 struct rpc_rqst *req,
964 struct compound_hdr *hdr)
967 struct rpc_auth *auth = req->rq_cred->cr_auth;
969 /* initialize running count of expected bytes in reply.
970 * NOTE: the replied tag SHOULD be the same is the one sent,
971 * but this is not required as a MUST for the server to do so. */
972 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen;
974 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN);
975 encode_string(xdr, hdr->taglen, hdr->tag);
976 p = reserve_space(xdr, 8);
977 *p++ = cpu_to_be32(hdr->minorversion);
979 *p = cpu_to_be32(hdr->nops);
982 static void encode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 op,
984 struct compound_hdr *hdr)
986 encode_uint32(xdr, op);
988 hdr->replen += replen;
991 static void encode_nops(struct compound_hdr *hdr)
993 WARN_ON_ONCE(hdr->nops > NFS4_MAX_OPS);
994 *hdr->nops_p = htonl(hdr->nops);
997 static void encode_nfs4_stateid(struct xdr_stream *xdr, const nfs4_stateid *stateid)
999 encode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
1002 static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
1004 encode_opaque_fixed(xdr, verf->data, NFS4_VERIFIER_SIZE);
1007 static void encode_attrs(struct xdr_stream *xdr, const struct iattr *iap,
1008 const struct nfs4_label *label,
1009 const struct nfs_server *server)
1011 char owner_name[IDMAP_NAMESZ];
1012 char owner_group[IDMAP_NAMESZ];
1013 int owner_namelen = 0;
1014 int owner_grouplen = 0;
1019 uint32_t bmval[3] = { 0 };
1022 * We reserve enough space to write the entire attribute buffer at once.
1023 * In the worst-case, this would be
1024 * 16(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
1025 * = 40 bytes, plus any contribution from variable-length fields
1026 * such as owner/group.
1028 if (iap->ia_valid & ATTR_SIZE) {
1029 bmval[0] |= FATTR4_WORD0_SIZE;
1032 if (iap->ia_valid & ATTR_MODE) {
1033 bmval[1] |= FATTR4_WORD1_MODE;
1036 if (iap->ia_valid & ATTR_UID) {
1037 owner_namelen = nfs_map_uid_to_name(server, iap->ia_uid, owner_name, IDMAP_NAMESZ);
1038 if (owner_namelen < 0) {
1039 dprintk("nfs: couldn't resolve uid %d to string\n",
1040 from_kuid(&init_user_ns, iap->ia_uid));
1042 strcpy(owner_name, "nobody");
1043 owner_namelen = sizeof("nobody") - 1;
1046 bmval[1] |= FATTR4_WORD1_OWNER;
1047 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
1049 if (iap->ia_valid & ATTR_GID) {
1050 owner_grouplen = nfs_map_gid_to_group(server, iap->ia_gid, owner_group, IDMAP_NAMESZ);
1051 if (owner_grouplen < 0) {
1052 dprintk("nfs: couldn't resolve gid %d to string\n",
1053 from_kgid(&init_user_ns, iap->ia_gid));
1054 strcpy(owner_group, "nobody");
1055 owner_grouplen = sizeof("nobody") - 1;
1058 bmval[1] |= FATTR4_WORD1_OWNER_GROUP;
1059 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
1061 if (iap->ia_valid & ATTR_ATIME_SET) {
1062 bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
1064 } else if (iap->ia_valid & ATTR_ATIME) {
1065 bmval[1] |= FATTR4_WORD1_TIME_ACCESS_SET;
1068 if (iap->ia_valid & ATTR_MTIME_SET) {
1069 bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
1071 } else if (iap->ia_valid & ATTR_MTIME) {
1072 bmval[1] |= FATTR4_WORD1_TIME_MODIFY_SET;
1076 len += 4 + 4 + 4 + (XDR_QUADLEN(label->len) << 2);
1077 bmval[2] |= FATTR4_WORD2_SECURITY_LABEL;
1082 else if (bmval[1] != 0)
1087 p = reserve_space(xdr, 4 + (bmval_len << 2) + 4 + len);
1089 *p++ = cpu_to_be32(bmval_len);
1090 for (i = 0; i < bmval_len; i++)
1091 *p++ = cpu_to_be32(bmval[i]);
1092 *p++ = cpu_to_be32(len);
1094 if (bmval[0] & FATTR4_WORD0_SIZE)
1095 p = xdr_encode_hyper(p, iap->ia_size);
1096 if (bmval[1] & FATTR4_WORD1_MODE)
1097 *p++ = cpu_to_be32(iap->ia_mode & S_IALLUGO);
1098 if (bmval[1] & FATTR4_WORD1_OWNER)
1099 p = xdr_encode_opaque(p, owner_name, owner_namelen);
1100 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP)
1101 p = xdr_encode_opaque(p, owner_group, owner_grouplen);
1102 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
1103 if (iap->ia_valid & ATTR_ATIME_SET) {
1104 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1105 p = xdr_encode_hyper(p, (s64)iap->ia_atime.tv_sec);
1106 *p++ = cpu_to_be32(iap->ia_atime.tv_nsec);
1108 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
1110 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
1111 if (iap->ia_valid & ATTR_MTIME_SET) {
1112 *p++ = cpu_to_be32(NFS4_SET_TO_CLIENT_TIME);
1113 p = xdr_encode_hyper(p, (s64)iap->ia_mtime.tv_sec);
1114 *p++ = cpu_to_be32(iap->ia_mtime.tv_nsec);
1116 *p++ = cpu_to_be32(NFS4_SET_TO_SERVER_TIME);
1118 if (bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
1119 *p++ = cpu_to_be32(label->lfs);
1120 *p++ = cpu_to_be32(label->pi);
1121 *p++ = cpu_to_be32(label->len);
1122 p = xdr_encode_opaque_fixed(p, label->label, label->len);
1128 static void encode_access(struct xdr_stream *xdr, u32 access, struct compound_hdr *hdr)
1130 encode_op_hdr(xdr, OP_ACCESS, decode_access_maxsz, hdr);
1131 encode_uint32(xdr, access);
1134 static void encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
1136 encode_op_hdr(xdr, OP_CLOSE, decode_close_maxsz, hdr);
1137 encode_nfs4_seqid(xdr, arg->seqid);
1138 encode_nfs4_stateid(xdr, arg->stateid);
1141 static void encode_commit(struct xdr_stream *xdr, const struct nfs_commitargs *args, struct compound_hdr *hdr)
1145 encode_op_hdr(xdr, OP_COMMIT, decode_commit_maxsz, hdr);
1146 p = reserve_space(xdr, 12);
1147 p = xdr_encode_hyper(p, args->offset);
1148 *p = cpu_to_be32(args->count);
1151 static void encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create, struct compound_hdr *hdr)
1155 encode_op_hdr(xdr, OP_CREATE, decode_create_maxsz, hdr);
1156 encode_uint32(xdr, create->ftype);
1158 switch (create->ftype) {
1160 p = reserve_space(xdr, 4);
1161 *p = cpu_to_be32(create->u.symlink.len);
1162 xdr_write_pages(xdr, create->u.symlink.pages, 0, create->u.symlink.len);
1165 case NF4BLK: case NF4CHR:
1166 p = reserve_space(xdr, 8);
1167 *p++ = cpu_to_be32(create->u.device.specdata1);
1168 *p = cpu_to_be32(create->u.device.specdata2);
1175 encode_string(xdr, create->name->len, create->name->name);
1176 encode_attrs(xdr, create->attrs, create->label, create->server);
1179 static void encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap, struct compound_hdr *hdr)
1183 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1184 p = reserve_space(xdr, 8);
1185 *p++ = cpu_to_be32(1);
1186 *p = cpu_to_be32(bitmap);
1189 static void encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1, struct compound_hdr *hdr)
1193 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1194 p = reserve_space(xdr, 12);
1195 *p++ = cpu_to_be32(2);
1196 *p++ = cpu_to_be32(bm0);
1197 *p = cpu_to_be32(bm1);
1201 encode_getattr_three(struct xdr_stream *xdr,
1202 uint32_t bm0, uint32_t bm1, uint32_t bm2,
1203 struct compound_hdr *hdr)
1207 encode_op_hdr(xdr, OP_GETATTR, decode_getattr_maxsz, hdr);
1209 p = reserve_space(xdr, 16);
1210 *p++ = cpu_to_be32(3);
1211 *p++ = cpu_to_be32(bm0);
1212 *p++ = cpu_to_be32(bm1);
1213 *p = cpu_to_be32(bm2);
1215 p = reserve_space(xdr, 12);
1216 *p++ = cpu_to_be32(2);
1217 *p++ = cpu_to_be32(bm0);
1218 *p = cpu_to_be32(bm1);
1220 p = reserve_space(xdr, 8);
1221 *p++ = cpu_to_be32(1);
1222 *p = cpu_to_be32(bm0);
1226 static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1228 encode_getattr_three(xdr, bitmask[0] & nfs4_fattr_bitmap[0],
1229 bitmask[1] & nfs4_fattr_bitmap[1],
1230 bitmask[2] & nfs4_fattr_bitmap[2],
1234 static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask,
1235 const u32 *open_bitmap,
1236 struct compound_hdr *hdr)
1238 encode_getattr_three(xdr,
1239 bitmask[0] & open_bitmap[0],
1240 bitmask[1] & open_bitmap[1],
1241 bitmask[2] & open_bitmap[2],
1245 static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1247 encode_getattr_three(xdr,
1248 bitmask[0] & nfs4_fsinfo_bitmap[0],
1249 bitmask[1] & nfs4_fsinfo_bitmap[1],
1250 bitmask[2] & nfs4_fsinfo_bitmap[2],
1254 static void encode_fs_locations(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr)
1256 encode_getattr_two(xdr, bitmask[0] & nfs4_fs_locations_bitmap[0],
1257 bitmask[1] & nfs4_fs_locations_bitmap[1], hdr);
1260 static void encode_getfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1262 encode_op_hdr(xdr, OP_GETFH, decode_getfh_maxsz, hdr);
1265 static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1267 encode_op_hdr(xdr, OP_LINK, decode_link_maxsz, hdr);
1268 encode_string(xdr, name->len, name->name);
1271 static inline int nfs4_lock_type(struct file_lock *fl, int block)
1273 if (fl->fl_type == F_RDLCK)
1274 return block ? NFS4_READW_LT : NFS4_READ_LT;
1275 return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
1278 static inline uint64_t nfs4_lock_length(struct file_lock *fl)
1280 if (fl->fl_end == OFFSET_MAX)
1281 return ~(uint64_t)0;
1282 return fl->fl_end - fl->fl_start + 1;
1285 static void encode_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner)
1289 p = reserve_space(xdr, 32);
1290 p = xdr_encode_hyper(p, lowner->clientid);
1291 *p++ = cpu_to_be32(20);
1292 p = xdr_encode_opaque_fixed(p, "lock id:", 8);
1293 *p++ = cpu_to_be32(lowner->s_dev);
1294 xdr_encode_hyper(p, lowner->id);
1298 * opcode,type,reclaim,offset,length,new_lock_owner = 32
1299 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
1301 static void encode_lock(struct xdr_stream *xdr, const struct nfs_lock_args *args, struct compound_hdr *hdr)
1305 encode_op_hdr(xdr, OP_LOCK, decode_lock_maxsz, hdr);
1306 p = reserve_space(xdr, 28);
1307 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, args->block));
1308 *p++ = cpu_to_be32(args->reclaim);
1309 p = xdr_encode_hyper(p, args->fl->fl_start);
1310 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
1311 *p = cpu_to_be32(args->new_lock_owner);
1312 if (args->new_lock_owner){
1313 encode_nfs4_seqid(xdr, args->open_seqid);
1314 encode_nfs4_stateid(xdr, args->open_stateid);
1315 encode_nfs4_seqid(xdr, args->lock_seqid);
1316 encode_lockowner(xdr, &args->lock_owner);
1319 encode_nfs4_stateid(xdr, args->lock_stateid);
1320 encode_nfs4_seqid(xdr, args->lock_seqid);
1324 static void encode_lockt(struct xdr_stream *xdr, const struct nfs_lockt_args *args, struct compound_hdr *hdr)
1328 encode_op_hdr(xdr, OP_LOCKT, decode_lockt_maxsz, hdr);
1329 p = reserve_space(xdr, 20);
1330 *p++ = cpu_to_be32(nfs4_lock_type(args->fl, 0));
1331 p = xdr_encode_hyper(p, args->fl->fl_start);
1332 p = xdr_encode_hyper(p, nfs4_lock_length(args->fl));
1333 encode_lockowner(xdr, &args->lock_owner);
1336 static void encode_locku(struct xdr_stream *xdr, const struct nfs_locku_args *args, struct compound_hdr *hdr)
1340 encode_op_hdr(xdr, OP_LOCKU, decode_locku_maxsz, hdr);
1341 encode_uint32(xdr, nfs4_lock_type(args->fl, 0));
1342 encode_nfs4_seqid(xdr, args->seqid);
1343 encode_nfs4_stateid(xdr, args->stateid);
1344 p = reserve_space(xdr, 16);
1345 p = xdr_encode_hyper(p, args->fl->fl_start);
1346 xdr_encode_hyper(p, nfs4_lock_length(args->fl));
1349 static void encode_release_lockowner(struct xdr_stream *xdr, const struct nfs_lowner *lowner, struct compound_hdr *hdr)
1351 encode_op_hdr(xdr, OP_RELEASE_LOCKOWNER, decode_release_lockowner_maxsz, hdr);
1352 encode_lockowner(xdr, lowner);
1355 static void encode_lookup(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1357 encode_op_hdr(xdr, OP_LOOKUP, decode_lookup_maxsz, hdr);
1358 encode_string(xdr, name->len, name->name);
1361 static void encode_share_access(struct xdr_stream *xdr, fmode_t fmode)
1365 p = reserve_space(xdr, 8);
1366 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1368 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_READ);
1371 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_WRITE);
1373 case FMODE_READ|FMODE_WRITE:
1374 *p++ = cpu_to_be32(NFS4_SHARE_ACCESS_BOTH);
1377 *p++ = cpu_to_be32(0);
1379 *p = cpu_to_be32(0); /* for linux, share_deny = 0 always */
1382 static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1386 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
1389 encode_nfs4_seqid(xdr, arg->seqid);
1390 encode_share_access(xdr, arg->fmode);
1391 p = reserve_space(xdr, 36);
1392 p = xdr_encode_hyper(p, arg->clientid);
1393 *p++ = cpu_to_be32(24);
1394 p = xdr_encode_opaque_fixed(p, "open id:", 8);
1395 *p++ = cpu_to_be32(arg->server->s_dev);
1396 *p++ = cpu_to_be32(arg->id.uniquifier);
1397 xdr_encode_hyper(p, arg->id.create_time);
1400 static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1405 p = reserve_space(xdr, 4);
1406 switch(arg->createmode) {
1407 case NFS4_CREATE_UNCHECKED:
1408 *p = cpu_to_be32(NFS4_CREATE_UNCHECKED);
1409 encode_attrs(xdr, arg->u.attrs, arg->label, arg->server);
1411 case NFS4_CREATE_GUARDED:
1412 *p = cpu_to_be32(NFS4_CREATE_GUARDED);
1413 encode_attrs(xdr, arg->u.attrs, arg->label, arg->server);
1415 case NFS4_CREATE_EXCLUSIVE:
1416 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE);
1417 encode_nfs4_verifier(xdr, &arg->u.verifier);
1419 case NFS4_CREATE_EXCLUSIVE4_1:
1420 *p = cpu_to_be32(NFS4_CREATE_EXCLUSIVE4_1);
1421 encode_nfs4_verifier(xdr, &arg->u.verifier);
1423 encode_attrs(xdr, &dummy, arg->label, arg->server);
1427 static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
1431 p = reserve_space(xdr, 4);
1432 switch (arg->open_flags & O_CREAT) {
1434 *p = cpu_to_be32(NFS4_OPEN_NOCREATE);
1437 *p = cpu_to_be32(NFS4_OPEN_CREATE);
1438 encode_createmode(xdr, arg);
1442 static inline void encode_delegation_type(struct xdr_stream *xdr, fmode_t delegation_type)
1446 p = reserve_space(xdr, 4);
1447 switch (delegation_type) {
1449 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_NONE);
1452 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_READ);
1454 case FMODE_WRITE|FMODE_READ:
1455 *p = cpu_to_be32(NFS4_OPEN_DELEGATE_WRITE);
1462 static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
1466 p = reserve_space(xdr, 4);
1467 *p = cpu_to_be32(NFS4_OPEN_CLAIM_NULL);
1468 encode_string(xdr, name->len, name->name);
1471 static inline void encode_claim_previous(struct xdr_stream *xdr, fmode_t type)
1475 p = reserve_space(xdr, 4);
1476 *p = cpu_to_be32(NFS4_OPEN_CLAIM_PREVIOUS);
1477 encode_delegation_type(xdr, type);
1480 static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
1484 p = reserve_space(xdr, 4);
1485 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
1486 encode_nfs4_stateid(xdr, stateid);
1487 encode_string(xdr, name->len, name->name);
1490 static inline void encode_claim_fh(struct xdr_stream *xdr)
1494 p = reserve_space(xdr, 4);
1495 *p = cpu_to_be32(NFS4_OPEN_CLAIM_FH);
1498 static inline void encode_claim_delegate_cur_fh(struct xdr_stream *xdr, const nfs4_stateid *stateid)
1502 p = reserve_space(xdr, 4);
1503 *p = cpu_to_be32(NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1504 encode_nfs4_stateid(xdr, stateid);
1507 static void encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg, struct compound_hdr *hdr)
1509 encode_op_hdr(xdr, OP_OPEN, decode_open_maxsz, hdr);
1510 encode_openhdr(xdr, arg);
1511 encode_opentype(xdr, arg);
1512 switch (arg->claim) {
1513 case NFS4_OPEN_CLAIM_NULL:
1514 encode_claim_null(xdr, arg->name);
1516 case NFS4_OPEN_CLAIM_PREVIOUS:
1517 encode_claim_previous(xdr, arg->u.delegation_type);
1519 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1520 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
1522 case NFS4_OPEN_CLAIM_FH:
1523 encode_claim_fh(xdr);
1525 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1526 encode_claim_delegate_cur_fh(xdr, &arg->u.delegation);
1533 static void encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg, struct compound_hdr *hdr)
1535 encode_op_hdr(xdr, OP_OPEN_CONFIRM, decode_open_confirm_maxsz, hdr);
1536 encode_nfs4_stateid(xdr, arg->stateid);
1537 encode_nfs4_seqid(xdr, arg->seqid);
1540 static void encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg, struct compound_hdr *hdr)
1542 encode_op_hdr(xdr, OP_OPEN_DOWNGRADE, decode_open_downgrade_maxsz, hdr);
1543 encode_nfs4_stateid(xdr, arg->stateid);
1544 encode_nfs4_seqid(xdr, arg->seqid);
1545 encode_share_access(xdr, arg->fmode);
1549 encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh, struct compound_hdr *hdr)
1551 encode_op_hdr(xdr, OP_PUTFH, decode_putfh_maxsz, hdr);
1552 encode_string(xdr, fh->size, fh->data);
1555 static void encode_putrootfh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1557 encode_op_hdr(xdr, OP_PUTROOTFH, decode_putrootfh_maxsz, hdr);
1560 static void encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args, struct compound_hdr *hdr)
1564 encode_op_hdr(xdr, OP_READ, decode_read_maxsz, hdr);
1565 encode_nfs4_stateid(xdr, &args->stateid);
1567 p = reserve_space(xdr, 12);
1568 p = xdr_encode_hyper(p, args->offset);
1569 *p = cpu_to_be32(args->count);
1572 static void encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req, struct compound_hdr *hdr)
1574 uint32_t attrs[3] = {
1575 FATTR4_WORD0_RDATTR_ERROR,
1576 FATTR4_WORD1_MOUNTED_ON_FILEID,
1578 uint32_t dircount = readdir->count >> 1;
1580 uint32_t attrlen = 0;
1583 if (readdir->plus) {
1584 attrs[0] |= FATTR4_WORD0_TYPE|FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE|
1585 FATTR4_WORD0_FSID|FATTR4_WORD0_FILEHANDLE|FATTR4_WORD0_FILEID;
1586 attrs[1] |= FATTR4_WORD1_MODE|FATTR4_WORD1_NUMLINKS|FATTR4_WORD1_OWNER|
1587 FATTR4_WORD1_OWNER_GROUP|FATTR4_WORD1_RAWDEV|
1588 FATTR4_WORD1_SPACE_USED|FATTR4_WORD1_TIME_ACCESS|
1589 FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
1590 attrs[2] |= FATTR4_WORD2_SECURITY_LABEL;
1593 /* Use mounted_on_fileid only if the server supports it */
1594 if (!(readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID))
1595 attrs[0] |= FATTR4_WORD0_FILEID;
1596 for (i = 0; i < ARRAY_SIZE(attrs); i++) {
1597 attrs[i] &= readdir->bitmask[i];
1602 encode_op_hdr(xdr, OP_READDIR, decode_readdir_maxsz, hdr);
1603 encode_uint64(xdr, readdir->cookie);
1604 encode_nfs4_verifier(xdr, &readdir->verifier);
1605 p = reserve_space(xdr, 12 + (attrlen << 2));
1606 *p++ = cpu_to_be32(dircount);
1607 *p++ = cpu_to_be32(readdir->count);
1608 *p++ = cpu_to_be32(attrlen);
1609 for (i = 0; i < attrlen; i++)
1610 *p++ = cpu_to_be32(attrs[i]);
1611 memcpy(verf, readdir->verifier.data, sizeof(verf));
1613 dprintk("%s: cookie = %llu, verifier = %08x:%08x, bitmap = %08x:%08x:%08x\n",
1615 (unsigned long long)readdir->cookie,
1617 attrs[0] & readdir->bitmask[0],
1618 attrs[1] & readdir->bitmask[1],
1619 attrs[2] & readdir->bitmask[2]);
1622 static void encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req, struct compound_hdr *hdr)
1624 encode_op_hdr(xdr, OP_READLINK, decode_readlink_maxsz, hdr);
1627 static void encode_remove(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1629 encode_op_hdr(xdr, OP_REMOVE, decode_remove_maxsz, hdr);
1630 encode_string(xdr, name->len, name->name);
1633 static void encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_hdr *hdr)
1635 encode_op_hdr(xdr, OP_RENAME, decode_rename_maxsz, hdr);
1636 encode_string(xdr, oldname->len, oldname->name);
1637 encode_string(xdr, newname->len, newname->name);
1640 static void encode_renew(struct xdr_stream *xdr, clientid4 clid,
1641 struct compound_hdr *hdr)
1643 encode_op_hdr(xdr, OP_RENEW, decode_renew_maxsz, hdr);
1644 encode_uint64(xdr, clid);
1648 encode_restorefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1650 encode_op_hdr(xdr, OP_RESTOREFH, decode_restorefh_maxsz, hdr);
1654 encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg, struct compound_hdr *hdr)
1658 encode_op_hdr(xdr, OP_SETATTR, decode_setacl_maxsz, hdr);
1659 encode_nfs4_stateid(xdr, &zero_stateid);
1660 p = reserve_space(xdr, 2*4);
1661 *p++ = cpu_to_be32(1);
1662 *p = cpu_to_be32(FATTR4_WORD0_ACL);
1663 p = reserve_space(xdr, 4);
1664 *p = cpu_to_be32(arg->acl_len);
1665 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
1669 encode_savefh(struct xdr_stream *xdr, struct compound_hdr *hdr)
1671 encode_op_hdr(xdr, OP_SAVEFH, decode_savefh_maxsz, hdr);
1674 static void encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server, struct compound_hdr *hdr)
1676 encode_op_hdr(xdr, OP_SETATTR, decode_setattr_maxsz, hdr);
1677 encode_nfs4_stateid(xdr, &arg->stateid);
1678 encode_attrs(xdr, arg->iap, arg->label, server);
1681 static void encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid, struct compound_hdr *hdr)
1685 encode_op_hdr(xdr, OP_SETCLIENTID, decode_setclientid_maxsz, hdr);
1686 encode_nfs4_verifier(xdr, setclientid->sc_verifier);
1688 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
1689 p = reserve_space(xdr, 4);
1690 *p = cpu_to_be32(setclientid->sc_prog);
1691 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1692 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
1693 p = reserve_space(xdr, 4);
1694 *p = cpu_to_be32(setclientid->sc_cb_ident);
1697 static void encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs4_setclientid_res *arg, struct compound_hdr *hdr)
1699 encode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM,
1700 decode_setclientid_confirm_maxsz, hdr);
1701 encode_uint64(xdr, arg->clientid);
1702 encode_nfs4_verifier(xdr, &arg->confirm);
1705 static void encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args, struct compound_hdr *hdr)
1709 encode_op_hdr(xdr, OP_WRITE, decode_write_maxsz, hdr);
1710 encode_nfs4_stateid(xdr, &args->stateid);
1712 p = reserve_space(xdr, 16);
1713 p = xdr_encode_hyper(p, args->offset);
1714 *p++ = cpu_to_be32(args->stable);
1715 *p = cpu_to_be32(args->count);
1717 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
1720 static void encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid, struct compound_hdr *hdr)
1722 encode_op_hdr(xdr, OP_DELEGRETURN, decode_delegreturn_maxsz, hdr);
1723 encode_nfs4_stateid(xdr, stateid);
1726 static void encode_secinfo(struct xdr_stream *xdr, const struct qstr *name, struct compound_hdr *hdr)
1728 encode_op_hdr(xdr, OP_SECINFO, decode_secinfo_maxsz, hdr);
1729 encode_string(xdr, name->len, name->name);
1732 #if defined(CONFIG_NFS_V4_1)
1733 /* NFSv4.1 operations */
1734 static void encode_bind_conn_to_session(struct xdr_stream *xdr,
1735 struct nfs4_session *session,
1736 struct compound_hdr *hdr)
1740 encode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION,
1741 decode_bind_conn_to_session_maxsz, hdr);
1742 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1743 p = xdr_reserve_space(xdr, 8);
1744 *p++ = cpu_to_be32(NFS4_CDFC4_BACK_OR_BOTH);
1745 *p = 0; /* use_conn_in_rdma_mode = False */
1748 static void encode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
1751 encode_uint32(xdr, NFS4_OP_MAP_NUM_WORDS);
1752 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++)
1753 encode_uint32(xdr, op_map->u.words[i]);
1756 static void encode_exchange_id(struct xdr_stream *xdr,
1757 struct nfs41_exchange_id_args *args,
1758 struct compound_hdr *hdr)
1761 char impl_name[IMPL_NAME_LIMIT];
1764 encode_op_hdr(xdr, OP_EXCHANGE_ID, decode_exchange_id_maxsz, hdr);
1765 encode_nfs4_verifier(xdr, args->verifier);
1767 encode_string(xdr, args->id_len, args->id);
1769 encode_uint32(xdr, args->flags);
1770 encode_uint32(xdr, args->state_protect.how);
1772 switch (args->state_protect.how) {
1776 encode_op_map(xdr, &args->state_protect.enforce);
1777 encode_op_map(xdr, &args->state_protect.allow);
1784 if (send_implementation_id &&
1785 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) > 1 &&
1786 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN)
1787 <= sizeof(impl_name) + 1)
1788 len = snprintf(impl_name, sizeof(impl_name), "%s %s %s %s",
1789 utsname()->sysname, utsname()->release,
1790 utsname()->version, utsname()->machine);
1793 encode_uint32(xdr, 1); /* implementation id array length=1 */
1796 sizeof(CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN) - 1,
1797 CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN);
1798 encode_string(xdr, len, impl_name);
1799 /* just send zeros for nii_date - the date is in nii_name */
1800 p = reserve_space(xdr, 12);
1801 p = xdr_encode_hyper(p, 0);
1802 *p = cpu_to_be32(0);
1804 encode_uint32(xdr, 0); /* implementation id array length=0 */
1807 static void encode_create_session(struct xdr_stream *xdr,
1808 struct nfs41_create_session_args *args,
1809 struct compound_hdr *hdr)
1812 char machine_name[NFS4_MAX_MACHINE_NAME_LEN];
1814 struct nfs_client *clp = args->client;
1815 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
1816 u32 max_resp_sz_cached;
1819 * Assumes OPEN is the biggest non-idempotent compound.
1820 * 2 is the verifier.
1822 max_resp_sz_cached = (NFS4_dec_open_sz + RPC_REPHDRSIZE +
1823 RPC_MAX_AUTH_SIZE + 2) * XDR_UNIT;
1825 len = scnprintf(machine_name, sizeof(machine_name), "%s",
1828 encode_op_hdr(xdr, OP_CREATE_SESSION, decode_create_session_maxsz, hdr);
1829 p = reserve_space(xdr, 16 + 2*28 + 20 + len + 12);
1830 p = xdr_encode_hyper(p, clp->cl_clientid);
1831 *p++ = cpu_to_be32(clp->cl_seqid); /*Sequence id */
1832 *p++ = cpu_to_be32(args->flags); /*flags */
1835 *p++ = cpu_to_be32(0); /* header padding size */
1836 *p++ = cpu_to_be32(args->fc_attrs.max_rqst_sz); /* max req size */
1837 *p++ = cpu_to_be32(args->fc_attrs.max_resp_sz); /* max resp size */
1838 *p++ = cpu_to_be32(max_resp_sz_cached); /* Max resp sz cached */
1839 *p++ = cpu_to_be32(args->fc_attrs.max_ops); /* max operations */
1840 *p++ = cpu_to_be32(args->fc_attrs.max_reqs); /* max requests */
1841 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
1844 *p++ = cpu_to_be32(0); /* header padding size */
1845 *p++ = cpu_to_be32(args->bc_attrs.max_rqst_sz); /* max req size */
1846 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz); /* max resp size */
1847 *p++ = cpu_to_be32(args->bc_attrs.max_resp_sz_cached); /* Max resp sz cached */
1848 *p++ = cpu_to_be32(args->bc_attrs.max_ops); /* max operations */
1849 *p++ = cpu_to_be32(args->bc_attrs.max_reqs); /* max requests */
1850 *p++ = cpu_to_be32(0); /* rdmachannel_attrs */
1852 *p++ = cpu_to_be32(args->cb_program); /* cb_program */
1853 *p++ = cpu_to_be32(1);
1854 *p++ = cpu_to_be32(RPC_AUTH_UNIX); /* auth_sys */
1856 /* authsys_parms rfc1831 */
1857 *p++ = cpu_to_be32(nn->boot_time.tv_nsec); /* stamp */
1858 p = xdr_encode_opaque(p, machine_name, len);
1859 *p++ = cpu_to_be32(0); /* UID */
1860 *p++ = cpu_to_be32(0); /* GID */
1861 *p = cpu_to_be32(0); /* No more gids */
1864 static void encode_destroy_session(struct xdr_stream *xdr,
1865 struct nfs4_session *session,
1866 struct compound_hdr *hdr)
1868 encode_op_hdr(xdr, OP_DESTROY_SESSION, decode_destroy_session_maxsz, hdr);
1869 encode_opaque_fixed(xdr, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1872 static void encode_destroy_clientid(struct xdr_stream *xdr,
1874 struct compound_hdr *hdr)
1876 encode_op_hdr(xdr, OP_DESTROY_CLIENTID, decode_destroy_clientid_maxsz, hdr);
1877 encode_uint64(xdr, clientid);
1880 static void encode_reclaim_complete(struct xdr_stream *xdr,
1881 struct nfs41_reclaim_complete_args *args,
1882 struct compound_hdr *hdr)
1884 encode_op_hdr(xdr, OP_RECLAIM_COMPLETE, decode_reclaim_complete_maxsz, hdr);
1885 encode_uint32(xdr, args->one_fs);
1887 #endif /* CONFIG_NFS_V4_1 */
1889 static void encode_sequence(struct xdr_stream *xdr,
1890 const struct nfs4_sequence_args *args,
1891 struct compound_hdr *hdr)
1893 #if defined(CONFIG_NFS_V4_1)
1894 struct nfs4_session *session;
1895 struct nfs4_slot_table *tp;
1896 struct nfs4_slot *slot = args->sa_slot;
1900 session = tp->session;
1904 encode_op_hdr(xdr, OP_SEQUENCE, decode_sequence_maxsz, hdr);
1907 * Sessionid + seqid + slotid + max slotid + cache_this
1909 dprintk("%s: sessionid=%u:%u:%u:%u seqid=%d slotid=%d "
1910 "max_slotid=%d cache_this=%d\n",
1912 ((u32 *)session->sess_id.data)[0],
1913 ((u32 *)session->sess_id.data)[1],
1914 ((u32 *)session->sess_id.data)[2],
1915 ((u32 *)session->sess_id.data)[3],
1916 slot->seq_nr, slot->slot_nr,
1917 tp->highest_used_slotid, args->sa_cache_this);
1918 p = reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 16);
1919 p = xdr_encode_opaque_fixed(p, session->sess_id.data, NFS4_MAX_SESSIONID_LEN);
1920 *p++ = cpu_to_be32(slot->seq_nr);
1921 *p++ = cpu_to_be32(slot->slot_nr);
1922 *p++ = cpu_to_be32(tp->highest_used_slotid);
1923 *p = cpu_to_be32(args->sa_cache_this);
1924 #endif /* CONFIG_NFS_V4_1 */
1927 #ifdef CONFIG_NFS_V4_1
1929 encode_getdevicelist(struct xdr_stream *xdr,
1930 const struct nfs4_getdevicelist_args *args,
1931 struct compound_hdr *hdr)
1934 nfs4_verifier dummy = {
1938 encode_op_hdr(xdr, OP_GETDEVICELIST, decode_getdevicelist_maxsz, hdr);
1939 p = reserve_space(xdr, 16);
1940 *p++ = cpu_to_be32(args->layoutclass);
1941 *p++ = cpu_to_be32(NFS4_PNFS_GETDEVLIST_MAXNUM);
1942 xdr_encode_hyper(p, 0ULL); /* cookie */
1943 encode_nfs4_verifier(xdr, &dummy);
1947 encode_getdeviceinfo(struct xdr_stream *xdr,
1948 const struct nfs4_getdeviceinfo_args *args,
1949 struct compound_hdr *hdr)
1953 encode_op_hdr(xdr, OP_GETDEVICEINFO, decode_getdeviceinfo_maxsz, hdr);
1954 p = reserve_space(xdr, 12 + NFS4_DEVICEID4_SIZE);
1955 p = xdr_encode_opaque_fixed(p, args->pdev->dev_id.data,
1956 NFS4_DEVICEID4_SIZE);
1957 *p++ = cpu_to_be32(args->pdev->layout_type);
1958 *p++ = cpu_to_be32(args->pdev->maxcount); /* gdia_maxcount */
1959 *p++ = cpu_to_be32(0); /* bitmap length 0 */
1963 encode_layoutget(struct xdr_stream *xdr,
1964 const struct nfs4_layoutget_args *args,
1965 struct compound_hdr *hdr)
1969 encode_op_hdr(xdr, OP_LAYOUTGET, decode_layoutget_maxsz, hdr);
1970 p = reserve_space(xdr, 36);
1971 *p++ = cpu_to_be32(0); /* Signal layout available */
1972 *p++ = cpu_to_be32(args->type);
1973 *p++ = cpu_to_be32(args->range.iomode);
1974 p = xdr_encode_hyper(p, args->range.offset);
1975 p = xdr_encode_hyper(p, args->range.length);
1976 p = xdr_encode_hyper(p, args->minlength);
1977 encode_nfs4_stateid(xdr, &args->stateid);
1978 encode_uint32(xdr, args->maxcount);
1980 dprintk("%s: 1st type:0x%x iomode:%d off:%lu len:%lu mc:%d\n",
1984 (unsigned long)args->range.offset,
1985 (unsigned long)args->range.length,
1990 encode_layoutcommit(struct xdr_stream *xdr,
1991 struct inode *inode,
1992 const struct nfs4_layoutcommit_args *args,
1993 struct compound_hdr *hdr)
1997 dprintk("%s: lbw: %llu type: %d\n", __func__, args->lastbytewritten,
1998 NFS_SERVER(args->inode)->pnfs_curr_ld->id);
2000 encode_op_hdr(xdr, OP_LAYOUTCOMMIT, decode_layoutcommit_maxsz, hdr);
2001 p = reserve_space(xdr, 20);
2002 /* Only whole file layouts */
2003 p = xdr_encode_hyper(p, 0); /* offset */
2004 p = xdr_encode_hyper(p, args->lastbytewritten + 1); /* length */
2005 *p = cpu_to_be32(0); /* reclaim */
2006 encode_nfs4_stateid(xdr, &args->stateid);
2007 p = reserve_space(xdr, 20);
2008 *p++ = cpu_to_be32(1); /* newoffset = TRUE */
2009 p = xdr_encode_hyper(p, args->lastbytewritten);
2010 *p++ = cpu_to_be32(0); /* Never send time_modify_changed */
2011 *p++ = cpu_to_be32(NFS_SERVER(args->inode)->pnfs_curr_ld->id);/* type */
2013 if (NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit)
2014 NFS_SERVER(inode)->pnfs_curr_ld->encode_layoutcommit(
2015 NFS_I(inode)->layout, xdr, args);
2017 encode_uint32(xdr, 0); /* no layout-type payload */
2023 encode_layoutreturn(struct xdr_stream *xdr,
2024 const struct nfs4_layoutreturn_args *args,
2025 struct compound_hdr *hdr)
2029 encode_op_hdr(xdr, OP_LAYOUTRETURN, decode_layoutreturn_maxsz, hdr);
2030 p = reserve_space(xdr, 16);
2031 *p++ = cpu_to_be32(0); /* reclaim. always 0 for now */
2032 *p++ = cpu_to_be32(args->layout_type);
2033 *p++ = cpu_to_be32(IOMODE_ANY);
2034 *p = cpu_to_be32(RETURN_FILE);
2035 p = reserve_space(xdr, 16);
2036 p = xdr_encode_hyper(p, 0);
2037 p = xdr_encode_hyper(p, NFS4_MAX_UINT64);
2038 spin_lock(&args->inode->i_lock);
2039 encode_nfs4_stateid(xdr, &args->stateid);
2040 spin_unlock(&args->inode->i_lock);
2041 if (NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn) {
2042 NFS_SERVER(args->inode)->pnfs_curr_ld->encode_layoutreturn(
2043 NFS_I(args->inode)->layout, xdr, args);
2045 encode_uint32(xdr, 0);
2049 encode_secinfo_no_name(struct xdr_stream *xdr,
2050 const struct nfs41_secinfo_no_name_args *args,
2051 struct compound_hdr *hdr)
2053 encode_op_hdr(xdr, OP_SECINFO_NO_NAME, decode_secinfo_no_name_maxsz, hdr);
2054 encode_uint32(xdr, args->style);
2058 static void encode_test_stateid(struct xdr_stream *xdr,
2059 struct nfs41_test_stateid_args *args,
2060 struct compound_hdr *hdr)
2062 encode_op_hdr(xdr, OP_TEST_STATEID, decode_test_stateid_maxsz, hdr);
2063 encode_uint32(xdr, 1);
2064 encode_nfs4_stateid(xdr, args->stateid);
2067 static void encode_free_stateid(struct xdr_stream *xdr,
2068 struct nfs41_free_stateid_args *args,
2069 struct compound_hdr *hdr)
2071 encode_op_hdr(xdr, OP_FREE_STATEID, decode_free_stateid_maxsz, hdr);
2072 encode_nfs4_stateid(xdr, &args->stateid);
2074 #endif /* CONFIG_NFS_V4_1 */
2077 * END OF "GENERIC" ENCODE ROUTINES.
2080 static u32 nfs4_xdr_minorversion(const struct nfs4_sequence_args *args)
2082 #if defined(CONFIG_NFS_V4_1)
2083 struct nfs4_session *session = args->sa_slot->table->session;
2085 return session->clp->cl_mvops->minor_version;
2086 #endif /* CONFIG_NFS_V4_1 */
2091 * Encode an ACCESS request
2093 static void nfs4_xdr_enc_access(struct rpc_rqst *req, struct xdr_stream *xdr,
2094 const struct nfs4_accessargs *args)
2096 struct compound_hdr hdr = {
2097 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2100 encode_compound_hdr(xdr, req, &hdr);
2101 encode_sequence(xdr, &args->seq_args, &hdr);
2102 encode_putfh(xdr, args->fh, &hdr);
2103 encode_access(xdr, args->access, &hdr);
2104 encode_getfattr(xdr, args->bitmask, &hdr);
2109 * Encode LOOKUP request
2111 static void nfs4_xdr_enc_lookup(struct rpc_rqst *req, struct xdr_stream *xdr,
2112 const struct nfs4_lookup_arg *args)
2114 struct compound_hdr hdr = {
2115 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2118 encode_compound_hdr(xdr, req, &hdr);
2119 encode_sequence(xdr, &args->seq_args, &hdr);
2120 encode_putfh(xdr, args->dir_fh, &hdr);
2121 encode_lookup(xdr, args->name, &hdr);
2122 encode_getfh(xdr, &hdr);
2123 encode_getfattr(xdr, args->bitmask, &hdr);
2128 * Encode LOOKUP_ROOT request
2130 static void nfs4_xdr_enc_lookup_root(struct rpc_rqst *req,
2131 struct xdr_stream *xdr,
2132 const struct nfs4_lookup_root_arg *args)
2134 struct compound_hdr hdr = {
2135 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2138 encode_compound_hdr(xdr, req, &hdr);
2139 encode_sequence(xdr, &args->seq_args, &hdr);
2140 encode_putrootfh(xdr, &hdr);
2141 encode_getfh(xdr, &hdr);
2142 encode_getfattr(xdr, args->bitmask, &hdr);
2147 * Encode REMOVE request
2149 static void nfs4_xdr_enc_remove(struct rpc_rqst *req, struct xdr_stream *xdr,
2150 const struct nfs_removeargs *args)
2152 struct compound_hdr hdr = {
2153 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2156 encode_compound_hdr(xdr, req, &hdr);
2157 encode_sequence(xdr, &args->seq_args, &hdr);
2158 encode_putfh(xdr, args->fh, &hdr);
2159 encode_remove(xdr, &args->name, &hdr);
2164 * Encode RENAME request
2166 static void nfs4_xdr_enc_rename(struct rpc_rqst *req, struct xdr_stream *xdr,
2167 const struct nfs_renameargs *args)
2169 struct compound_hdr hdr = {
2170 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2173 encode_compound_hdr(xdr, req, &hdr);
2174 encode_sequence(xdr, &args->seq_args, &hdr);
2175 encode_putfh(xdr, args->old_dir, &hdr);
2176 encode_savefh(xdr, &hdr);
2177 encode_putfh(xdr, args->new_dir, &hdr);
2178 encode_rename(xdr, args->old_name, args->new_name, &hdr);
2183 * Encode LINK request
2185 static void nfs4_xdr_enc_link(struct rpc_rqst *req, struct xdr_stream *xdr,
2186 const struct nfs4_link_arg *args)
2188 struct compound_hdr hdr = {
2189 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2192 encode_compound_hdr(xdr, req, &hdr);
2193 encode_sequence(xdr, &args->seq_args, &hdr);
2194 encode_putfh(xdr, args->fh, &hdr);
2195 encode_savefh(xdr, &hdr);
2196 encode_putfh(xdr, args->dir_fh, &hdr);
2197 encode_link(xdr, args->name, &hdr);
2198 encode_restorefh(xdr, &hdr);
2199 encode_getfattr(xdr, args->bitmask, &hdr);
2204 * Encode CREATE request
2206 static void nfs4_xdr_enc_create(struct rpc_rqst *req, struct xdr_stream *xdr,
2207 const struct nfs4_create_arg *args)
2209 struct compound_hdr hdr = {
2210 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2213 encode_compound_hdr(xdr, req, &hdr);
2214 encode_sequence(xdr, &args->seq_args, &hdr);
2215 encode_putfh(xdr, args->dir_fh, &hdr);
2216 encode_create(xdr, args, &hdr);
2217 encode_getfh(xdr, &hdr);
2218 encode_getfattr(xdr, args->bitmask, &hdr);
2223 * Encode SYMLINK request
2225 static void nfs4_xdr_enc_symlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2226 const struct nfs4_create_arg *args)
2228 nfs4_xdr_enc_create(req, xdr, args);
2232 * Encode GETATTR request
2234 static void nfs4_xdr_enc_getattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2235 const struct nfs4_getattr_arg *args)
2237 struct compound_hdr hdr = {
2238 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2241 encode_compound_hdr(xdr, req, &hdr);
2242 encode_sequence(xdr, &args->seq_args, &hdr);
2243 encode_putfh(xdr, args->fh, &hdr);
2244 encode_getfattr(xdr, args->bitmask, &hdr);
2249 * Encode a CLOSE request
2251 static void nfs4_xdr_enc_close(struct rpc_rqst *req, struct xdr_stream *xdr,
2252 struct nfs_closeargs *args)
2254 struct compound_hdr hdr = {
2255 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2258 encode_compound_hdr(xdr, req, &hdr);
2259 encode_sequence(xdr, &args->seq_args, &hdr);
2260 encode_putfh(xdr, args->fh, &hdr);
2261 encode_close(xdr, args, &hdr);
2262 encode_getfattr(xdr, args->bitmask, &hdr);
2267 * Encode an OPEN request
2269 static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
2270 struct nfs_openargs *args)
2272 struct compound_hdr hdr = {
2273 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2276 encode_compound_hdr(xdr, req, &hdr);
2277 encode_sequence(xdr, &args->seq_args, &hdr);
2278 encode_putfh(xdr, args->fh, &hdr);
2279 encode_open(xdr, args, &hdr);
2280 encode_getfh(xdr, &hdr);
2282 encode_access(xdr, args->access, &hdr);
2283 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
2288 * Encode an OPEN_CONFIRM request
2290 static void nfs4_xdr_enc_open_confirm(struct rpc_rqst *req,
2291 struct xdr_stream *xdr,
2292 struct nfs_open_confirmargs *args)
2294 struct compound_hdr hdr = {
2298 encode_compound_hdr(xdr, req, &hdr);
2299 encode_putfh(xdr, args->fh, &hdr);
2300 encode_open_confirm(xdr, args, &hdr);
2305 * Encode an OPEN request with no attributes.
2307 static void nfs4_xdr_enc_open_noattr(struct rpc_rqst *req,
2308 struct xdr_stream *xdr,
2309 struct nfs_openargs *args)
2311 struct compound_hdr hdr = {
2312 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2315 encode_compound_hdr(xdr, req, &hdr);
2316 encode_sequence(xdr, &args->seq_args, &hdr);
2317 encode_putfh(xdr, args->fh, &hdr);
2318 encode_open(xdr, args, &hdr);
2320 encode_access(xdr, args->access, &hdr);
2321 encode_getfattr_open(xdr, args->bitmask, args->open_bitmap, &hdr);
2326 * Encode an OPEN_DOWNGRADE request
2328 static void nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req,
2329 struct xdr_stream *xdr,
2330 struct nfs_closeargs *args)
2332 struct compound_hdr hdr = {
2333 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2336 encode_compound_hdr(xdr, req, &hdr);
2337 encode_sequence(xdr, &args->seq_args, &hdr);
2338 encode_putfh(xdr, args->fh, &hdr);
2339 encode_open_downgrade(xdr, args, &hdr);
2340 encode_getfattr(xdr, args->bitmask, &hdr);
2345 * Encode a LOCK request
2347 static void nfs4_xdr_enc_lock(struct rpc_rqst *req, struct xdr_stream *xdr,
2348 struct nfs_lock_args *args)
2350 struct compound_hdr hdr = {
2351 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2354 encode_compound_hdr(xdr, req, &hdr);
2355 encode_sequence(xdr, &args->seq_args, &hdr);
2356 encode_putfh(xdr, args->fh, &hdr);
2357 encode_lock(xdr, args, &hdr);
2362 * Encode a LOCKT request
2364 static void nfs4_xdr_enc_lockt(struct rpc_rqst *req, struct xdr_stream *xdr,
2365 struct nfs_lockt_args *args)
2367 struct compound_hdr hdr = {
2368 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2371 encode_compound_hdr(xdr, req, &hdr);
2372 encode_sequence(xdr, &args->seq_args, &hdr);
2373 encode_putfh(xdr, args->fh, &hdr);
2374 encode_lockt(xdr, args, &hdr);
2379 * Encode a LOCKU request
2381 static void nfs4_xdr_enc_locku(struct rpc_rqst *req, struct xdr_stream *xdr,
2382 struct nfs_locku_args *args)
2384 struct compound_hdr hdr = {
2385 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2388 encode_compound_hdr(xdr, req, &hdr);
2389 encode_sequence(xdr, &args->seq_args, &hdr);
2390 encode_putfh(xdr, args->fh, &hdr);
2391 encode_locku(xdr, args, &hdr);
2395 static void nfs4_xdr_enc_release_lockowner(struct rpc_rqst *req,
2396 struct xdr_stream *xdr,
2397 struct nfs_release_lockowner_args *args)
2399 struct compound_hdr hdr = {
2403 encode_compound_hdr(xdr, req, &hdr);
2404 encode_release_lockowner(xdr, &args->lock_owner, &hdr);
2409 * Encode a READLINK request
2411 static void nfs4_xdr_enc_readlink(struct rpc_rqst *req, struct xdr_stream *xdr,
2412 const struct nfs4_readlink *args)
2414 struct compound_hdr hdr = {
2415 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2418 encode_compound_hdr(xdr, req, &hdr);
2419 encode_sequence(xdr, &args->seq_args, &hdr);
2420 encode_putfh(xdr, args->fh, &hdr);
2421 encode_readlink(xdr, args, req, &hdr);
2423 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
2424 args->pgbase, args->pglen);
2429 * Encode a READDIR request
2431 static void nfs4_xdr_enc_readdir(struct rpc_rqst *req, struct xdr_stream *xdr,
2432 const struct nfs4_readdir_arg *args)
2434 struct compound_hdr hdr = {
2435 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2438 encode_compound_hdr(xdr, req, &hdr);
2439 encode_sequence(xdr, &args->seq_args, &hdr);
2440 encode_putfh(xdr, args->fh, &hdr);
2441 encode_readdir(xdr, args, req, &hdr);
2443 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2, args->pages,
2444 args->pgbase, args->count);
2445 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
2446 __func__, hdr.replen << 2, args->pages,
2447 args->pgbase, args->count);
2452 * Encode a READ request
2454 static void nfs4_xdr_enc_read(struct rpc_rqst *req, struct xdr_stream *xdr,
2455 struct nfs_readargs *args)
2457 struct compound_hdr hdr = {
2458 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2461 encode_compound_hdr(xdr, req, &hdr);
2462 encode_sequence(xdr, &args->seq_args, &hdr);
2463 encode_putfh(xdr, args->fh, &hdr);
2464 encode_read(xdr, args, &hdr);
2466 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2467 args->pages, args->pgbase, args->count);
2468 req->rq_rcv_buf.flags |= XDRBUF_READ;
2473 * Encode an SETATTR request
2475 static void nfs4_xdr_enc_setattr(struct rpc_rqst *req, struct xdr_stream *xdr,
2476 struct nfs_setattrargs *args)
2478 struct compound_hdr hdr = {
2479 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2482 encode_compound_hdr(xdr, req, &hdr);
2483 encode_sequence(xdr, &args->seq_args, &hdr);
2484 encode_putfh(xdr, args->fh, &hdr);
2485 encode_setattr(xdr, args, args->server, &hdr);
2486 encode_getfattr(xdr, args->bitmask, &hdr);
2491 * Encode a GETACL request
2493 static void nfs4_xdr_enc_getacl(struct rpc_rqst *req, struct xdr_stream *xdr,
2494 struct nfs_getaclargs *args)
2496 struct compound_hdr hdr = {
2497 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2501 encode_compound_hdr(xdr, req, &hdr);
2502 encode_sequence(xdr, &args->seq_args, &hdr);
2503 encode_putfh(xdr, args->fh, &hdr);
2504 replen = hdr.replen + op_decode_hdr_maxsz + 1;
2505 encode_getattr_two(xdr, FATTR4_WORD0_ACL, 0, &hdr);
2507 xdr_inline_pages(&req->rq_rcv_buf, replen << 2,
2508 args->acl_pages, args->acl_pgbase, args->acl_len);
2514 * Encode a WRITE request
2516 static void nfs4_xdr_enc_write(struct rpc_rqst *req, struct xdr_stream *xdr,
2517 struct nfs_writeargs *args)
2519 struct compound_hdr hdr = {
2520 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2523 encode_compound_hdr(xdr, req, &hdr);
2524 encode_sequence(xdr, &args->seq_args, &hdr);
2525 encode_putfh(xdr, args->fh, &hdr);
2526 encode_write(xdr, args, &hdr);
2527 req->rq_snd_buf.flags |= XDRBUF_WRITE;
2529 encode_getfattr(xdr, args->bitmask, &hdr);
2536 static void nfs4_xdr_enc_commit(struct rpc_rqst *req, struct xdr_stream *xdr,
2537 struct nfs_commitargs *args)
2539 struct compound_hdr hdr = {
2540 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2543 encode_compound_hdr(xdr, req, &hdr);
2544 encode_sequence(xdr, &args->seq_args, &hdr);
2545 encode_putfh(xdr, args->fh, &hdr);
2546 encode_commit(xdr, args, &hdr);
2553 static void nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
2554 struct nfs4_fsinfo_arg *args)
2556 struct compound_hdr hdr = {
2557 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2560 encode_compound_hdr(xdr, req, &hdr);
2561 encode_sequence(xdr, &args->seq_args, &hdr);
2562 encode_putfh(xdr, args->fh, &hdr);
2563 encode_fsinfo(xdr, args->bitmask, &hdr);
2568 * a PATHCONF request
2570 static void nfs4_xdr_enc_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
2571 const struct nfs4_pathconf_arg *args)
2573 struct compound_hdr hdr = {
2574 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2577 encode_compound_hdr(xdr, req, &hdr);
2578 encode_sequence(xdr, &args->seq_args, &hdr);
2579 encode_putfh(xdr, args->fh, &hdr);
2580 encode_getattr_one(xdr, args->bitmask[0] & nfs4_pathconf_bitmap[0],
2588 static void nfs4_xdr_enc_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
2589 const struct nfs4_statfs_arg *args)
2591 struct compound_hdr hdr = {
2592 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2595 encode_compound_hdr(xdr, req, &hdr);
2596 encode_sequence(xdr, &args->seq_args, &hdr);
2597 encode_putfh(xdr, args->fh, &hdr);
2598 encode_getattr_two(xdr, args->bitmask[0] & nfs4_statfs_bitmap[0],
2599 args->bitmask[1] & nfs4_statfs_bitmap[1], &hdr);
2604 * GETATTR_BITMAP request
2606 static void nfs4_xdr_enc_server_caps(struct rpc_rqst *req,
2607 struct xdr_stream *xdr,
2608 struct nfs4_server_caps_arg *args)
2610 struct compound_hdr hdr = {
2611 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2614 encode_compound_hdr(xdr, req, &hdr);
2615 encode_sequence(xdr, &args->seq_args, &hdr);
2616 encode_putfh(xdr, args->fhandle, &hdr);
2617 encode_getattr_one(xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
2618 FATTR4_WORD0_FH_EXPIRE_TYPE|
2619 FATTR4_WORD0_LINK_SUPPORT|
2620 FATTR4_WORD0_SYMLINK_SUPPORT|
2621 FATTR4_WORD0_ACLSUPPORT, &hdr);
2628 static void nfs4_xdr_enc_renew(struct rpc_rqst *req, struct xdr_stream *xdr,
2629 struct nfs_client *clp)
2631 struct compound_hdr hdr = {
2635 encode_compound_hdr(xdr, req, &hdr);
2636 encode_renew(xdr, clp->cl_clientid, &hdr);
2641 * a SETCLIENTID request
2643 static void nfs4_xdr_enc_setclientid(struct rpc_rqst *req,
2644 struct xdr_stream *xdr,
2645 struct nfs4_setclientid *sc)
2647 struct compound_hdr hdr = {
2651 encode_compound_hdr(xdr, req, &hdr);
2652 encode_setclientid(xdr, sc, &hdr);
2657 * a SETCLIENTID_CONFIRM request
2659 static void nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req,
2660 struct xdr_stream *xdr,
2661 struct nfs4_setclientid_res *arg)
2663 struct compound_hdr hdr = {
2667 encode_compound_hdr(xdr, req, &hdr);
2668 encode_setclientid_confirm(xdr, arg, &hdr);
2673 * DELEGRETURN request
2675 static void nfs4_xdr_enc_delegreturn(struct rpc_rqst *req,
2676 struct xdr_stream *xdr,
2677 const struct nfs4_delegreturnargs *args)
2679 struct compound_hdr hdr = {
2680 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2683 encode_compound_hdr(xdr, req, &hdr);
2684 encode_sequence(xdr, &args->seq_args, &hdr);
2685 encode_putfh(xdr, args->fhandle, &hdr);
2686 encode_getfattr(xdr, args->bitmask, &hdr);
2687 encode_delegreturn(xdr, args->stateid, &hdr);
2692 * Encode FS_LOCATIONS request
2694 static void nfs4_xdr_enc_fs_locations(struct rpc_rqst *req,
2695 struct xdr_stream *xdr,
2696 struct nfs4_fs_locations_arg *args)
2698 struct compound_hdr hdr = {
2699 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2703 encode_compound_hdr(xdr, req, &hdr);
2704 encode_sequence(xdr, &args->seq_args, &hdr);
2705 if (args->migration) {
2706 encode_putfh(xdr, args->fh, &hdr);
2707 replen = hdr.replen;
2708 encode_fs_locations(xdr, args->bitmask, &hdr);
2710 encode_renew(xdr, args->clientid, &hdr);
2712 encode_putfh(xdr, args->dir_fh, &hdr);
2713 encode_lookup(xdr, args->name, &hdr);
2714 replen = hdr.replen;
2715 encode_fs_locations(xdr, args->bitmask, &hdr);
2718 /* Set up reply kvec to capture returned fs_locations array. */
2719 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, &args->page,
2725 * Encode SECINFO request
2727 static void nfs4_xdr_enc_secinfo(struct rpc_rqst *req,
2728 struct xdr_stream *xdr,
2729 struct nfs4_secinfo_arg *args)
2731 struct compound_hdr hdr = {
2732 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2735 encode_compound_hdr(xdr, req, &hdr);
2736 encode_sequence(xdr, &args->seq_args, &hdr);
2737 encode_putfh(xdr, args->dir_fh, &hdr);
2738 encode_secinfo(xdr, args->name, &hdr);
2743 * Encode FSID_PRESENT request
2745 static void nfs4_xdr_enc_fsid_present(struct rpc_rqst *req,
2746 struct xdr_stream *xdr,
2747 struct nfs4_fsid_present_arg *args)
2749 struct compound_hdr hdr = {
2750 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2753 encode_compound_hdr(xdr, req, &hdr);
2754 encode_sequence(xdr, &args->seq_args, &hdr);
2755 encode_putfh(xdr, args->fh, &hdr);
2756 encode_getfh(xdr, &hdr);
2758 encode_renew(xdr, args->clientid, &hdr);
2762 #if defined(CONFIG_NFS_V4_1)
2764 * BIND_CONN_TO_SESSION request
2766 static void nfs4_xdr_enc_bind_conn_to_session(struct rpc_rqst *req,
2767 struct xdr_stream *xdr,
2768 struct nfs_client *clp)
2770 struct compound_hdr hdr = {
2771 .minorversion = clp->cl_mvops->minor_version,
2774 encode_compound_hdr(xdr, req, &hdr);
2775 encode_bind_conn_to_session(xdr, clp->cl_session, &hdr);
2780 * EXCHANGE_ID request
2782 static void nfs4_xdr_enc_exchange_id(struct rpc_rqst *req,
2783 struct xdr_stream *xdr,
2784 struct nfs41_exchange_id_args *args)
2786 struct compound_hdr hdr = {
2787 .minorversion = args->client->cl_mvops->minor_version,
2790 encode_compound_hdr(xdr, req, &hdr);
2791 encode_exchange_id(xdr, args, &hdr);
2796 * a CREATE_SESSION request
2798 static void nfs4_xdr_enc_create_session(struct rpc_rqst *req,
2799 struct xdr_stream *xdr,
2800 struct nfs41_create_session_args *args)
2802 struct compound_hdr hdr = {
2803 .minorversion = args->client->cl_mvops->minor_version,
2806 encode_compound_hdr(xdr, req, &hdr);
2807 encode_create_session(xdr, args, &hdr);
2812 * a DESTROY_SESSION request
2814 static void nfs4_xdr_enc_destroy_session(struct rpc_rqst *req,
2815 struct xdr_stream *xdr,
2816 struct nfs4_session *session)
2818 struct compound_hdr hdr = {
2819 .minorversion = session->clp->cl_mvops->minor_version,
2822 encode_compound_hdr(xdr, req, &hdr);
2823 encode_destroy_session(xdr, session, &hdr);
2828 * a DESTROY_CLIENTID request
2830 static void nfs4_xdr_enc_destroy_clientid(struct rpc_rqst *req,
2831 struct xdr_stream *xdr,
2832 struct nfs_client *clp)
2834 struct compound_hdr hdr = {
2835 .minorversion = clp->cl_mvops->minor_version,
2838 encode_compound_hdr(xdr, req, &hdr);
2839 encode_destroy_clientid(xdr, clp->cl_clientid, &hdr);
2844 * a SEQUENCE request
2846 static void nfs4_xdr_enc_sequence(struct rpc_rqst *req, struct xdr_stream *xdr,
2847 struct nfs4_sequence_args *args)
2849 struct compound_hdr hdr = {
2850 .minorversion = nfs4_xdr_minorversion(args),
2853 encode_compound_hdr(xdr, req, &hdr);
2854 encode_sequence(xdr, args, &hdr);
2859 * a GET_LEASE_TIME request
2861 static void nfs4_xdr_enc_get_lease_time(struct rpc_rqst *req,
2862 struct xdr_stream *xdr,
2863 struct nfs4_get_lease_time_args *args)
2865 struct compound_hdr hdr = {
2866 .minorversion = nfs4_xdr_minorversion(&args->la_seq_args),
2868 const u32 lease_bitmap[3] = { FATTR4_WORD0_LEASE_TIME };
2870 encode_compound_hdr(xdr, req, &hdr);
2871 encode_sequence(xdr, &args->la_seq_args, &hdr);
2872 encode_putrootfh(xdr, &hdr);
2873 encode_fsinfo(xdr, lease_bitmap, &hdr);
2878 * a RECLAIM_COMPLETE request
2880 static void nfs4_xdr_enc_reclaim_complete(struct rpc_rqst *req,
2881 struct xdr_stream *xdr,
2882 struct nfs41_reclaim_complete_args *args)
2884 struct compound_hdr hdr = {
2885 .minorversion = nfs4_xdr_minorversion(&args->seq_args)
2888 encode_compound_hdr(xdr, req, &hdr);
2889 encode_sequence(xdr, &args->seq_args, &hdr);
2890 encode_reclaim_complete(xdr, args, &hdr);
2895 * Encode GETDEVICELIST request
2897 static void nfs4_xdr_enc_getdevicelist(struct rpc_rqst *req,
2898 struct xdr_stream *xdr,
2899 struct nfs4_getdevicelist_args *args)
2901 struct compound_hdr hdr = {
2902 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2905 encode_compound_hdr(xdr, req, &hdr);
2906 encode_sequence(xdr, &args->seq_args, &hdr);
2907 encode_putfh(xdr, args->fh, &hdr);
2908 encode_getdevicelist(xdr, args, &hdr);
2913 * Encode GETDEVICEINFO request
2915 static void nfs4_xdr_enc_getdeviceinfo(struct rpc_rqst *req,
2916 struct xdr_stream *xdr,
2917 struct nfs4_getdeviceinfo_args *args)
2919 struct compound_hdr hdr = {
2920 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2923 encode_compound_hdr(xdr, req, &hdr);
2924 encode_sequence(xdr, &args->seq_args, &hdr);
2925 encode_getdeviceinfo(xdr, args, &hdr);
2927 /* set up reply kvec. Subtract notification bitmap max size (2)
2928 * so that notification bitmap is put in xdr_buf tail */
2929 xdr_inline_pages(&req->rq_rcv_buf, (hdr.replen - 2) << 2,
2930 args->pdev->pages, args->pdev->pgbase,
2937 * Encode LAYOUTGET request
2939 static void nfs4_xdr_enc_layoutget(struct rpc_rqst *req,
2940 struct xdr_stream *xdr,
2941 struct nfs4_layoutget_args *args)
2943 struct compound_hdr hdr = {
2944 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2947 encode_compound_hdr(xdr, req, &hdr);
2948 encode_sequence(xdr, &args->seq_args, &hdr);
2949 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2950 encode_layoutget(xdr, args, &hdr);
2952 xdr_inline_pages(&req->rq_rcv_buf, hdr.replen << 2,
2953 args->layout.pages, 0, args->layout.pglen);
2959 * Encode LAYOUTCOMMIT request
2961 static void nfs4_xdr_enc_layoutcommit(struct rpc_rqst *req,
2962 struct xdr_stream *xdr,
2963 struct nfs4_layoutcommit_args *args)
2965 struct nfs4_layoutcommit_data *data =
2966 container_of(args, struct nfs4_layoutcommit_data, args);
2967 struct compound_hdr hdr = {
2968 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2971 encode_compound_hdr(xdr, req, &hdr);
2972 encode_sequence(xdr, &args->seq_args, &hdr);
2973 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2974 encode_layoutcommit(xdr, data->args.inode, args, &hdr);
2975 encode_getfattr(xdr, args->bitmask, &hdr);
2980 * Encode LAYOUTRETURN request
2982 static void nfs4_xdr_enc_layoutreturn(struct rpc_rqst *req,
2983 struct xdr_stream *xdr,
2984 struct nfs4_layoutreturn_args *args)
2986 struct compound_hdr hdr = {
2987 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
2990 encode_compound_hdr(xdr, req, &hdr);
2991 encode_sequence(xdr, &args->seq_args, &hdr);
2992 encode_putfh(xdr, NFS_FH(args->inode), &hdr);
2993 encode_layoutreturn(xdr, args, &hdr);
2998 * Encode SECINFO_NO_NAME request
3000 static int nfs4_xdr_enc_secinfo_no_name(struct rpc_rqst *req,
3001 struct xdr_stream *xdr,
3002 struct nfs41_secinfo_no_name_args *args)
3004 struct compound_hdr hdr = {
3005 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3008 encode_compound_hdr(xdr, req, &hdr);
3009 encode_sequence(xdr, &args->seq_args, &hdr);
3010 encode_putrootfh(xdr, &hdr);
3011 encode_secinfo_no_name(xdr, args, &hdr);
3017 * Encode TEST_STATEID request
3019 static void nfs4_xdr_enc_test_stateid(struct rpc_rqst *req,
3020 struct xdr_stream *xdr,
3021 struct nfs41_test_stateid_args *args)
3023 struct compound_hdr hdr = {
3024 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3027 encode_compound_hdr(xdr, req, &hdr);
3028 encode_sequence(xdr, &args->seq_args, &hdr);
3029 encode_test_stateid(xdr, args, &hdr);
3034 * Encode FREE_STATEID request
3036 static void nfs4_xdr_enc_free_stateid(struct rpc_rqst *req,
3037 struct xdr_stream *xdr,
3038 struct nfs41_free_stateid_args *args)
3040 struct compound_hdr hdr = {
3041 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
3044 encode_compound_hdr(xdr, req, &hdr);
3045 encode_sequence(xdr, &args->seq_args, &hdr);
3046 encode_free_stateid(xdr, args, &hdr);
3049 #endif /* CONFIG_NFS_V4_1 */
3051 static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
3053 dprintk("nfs: %s: prematurely hit end of receive buffer. "
3054 "Remaining buffer length is %tu words.\n",
3055 func, xdr->end - xdr->p);
3058 static int decode_opaque_inline(struct xdr_stream *xdr, unsigned int *len, char **string)
3062 p = xdr_inline_decode(xdr, 4);
3065 *len = be32_to_cpup(p);
3066 p = xdr_inline_decode(xdr, *len);
3069 *string = (char *)p;
3072 print_overflow_msg(__func__, xdr);
3076 static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
3080 p = xdr_inline_decode(xdr, 8);
3083 hdr->status = be32_to_cpup(p++);
3084 hdr->taglen = be32_to_cpup(p);
3086 p = xdr_inline_decode(xdr, hdr->taglen + 4);
3089 hdr->tag = (char *)p;
3090 p += XDR_QUADLEN(hdr->taglen);
3091 hdr->nops = be32_to_cpup(p);
3092 if (unlikely(hdr->nops < 1))
3093 return nfs4_stat_to_errno(hdr->status);
3096 print_overflow_msg(__func__, xdr);
3100 static bool __decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected,
3107 p = xdr_inline_decode(xdr, 8);
3110 opnum = be32_to_cpup(p++);
3111 if (unlikely(opnum != expected))
3112 goto out_bad_operation;
3113 nfserr = be32_to_cpup(p);
3114 if (nfserr == NFS_OK)
3117 *nfs_retval = nfs4_stat_to_errno(nfserr);
3120 dprintk("nfs: Server returned operation"
3121 " %d but we issued a request for %d\n",
3123 *nfs_retval = -EREMOTEIO;
3126 print_overflow_msg(__func__, xdr);
3131 static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
3135 __decode_op_hdr(xdr, expected, &retval);
3140 static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
3143 unsigned int strlen;
3146 p = xdr_inline_decode(xdr, 12);
3148 return decode_opaque_inline(xdr, &strlen, &str);
3149 print_overflow_msg(__func__, xdr);
3153 static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
3158 p = xdr_inline_decode(xdr, 4);
3161 bmlen = be32_to_cpup(p);
3163 bitmap[0] = bitmap[1] = bitmap[2] = 0;
3164 p = xdr_inline_decode(xdr, (bmlen << 2));
3168 bitmap[0] = be32_to_cpup(p++);
3170 bitmap[1] = be32_to_cpup(p++);
3172 bitmap[2] = be32_to_cpup(p);
3177 print_overflow_msg(__func__, xdr);
3181 static int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, unsigned int *savep)
3185 p = xdr_inline_decode(xdr, 4);
3188 *attrlen = be32_to_cpup(p);
3189 *savep = xdr_stream_pos(xdr);
3192 print_overflow_msg(__func__, xdr);
3196 static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
3198 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
3200 ret = decode_attr_bitmap(xdr, bitmask);
3201 if (unlikely(ret < 0))
3203 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
3205 bitmask[0] = bitmask[1] = bitmask[2] = 0;
3206 dprintk("%s: bitmask=%08x:%08x:%08x\n", __func__,
3207 bitmask[0], bitmask[1], bitmask[2]);
3211 static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
3217 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
3219 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
3220 p = xdr_inline_decode(xdr, 4);
3223 *type = be32_to_cpup(p);
3224 if (*type < NF4REG || *type > NF4NAMEDATTR) {
3225 dprintk("%s: bad type %d\n", __func__, *type);
3228 bitmap[0] &= ~FATTR4_WORD0_TYPE;
3229 ret = NFS_ATTR_FATTR_TYPE;
3231 dprintk("%s: type=0%o\n", __func__, nfs_type2fmt[*type]);
3234 print_overflow_msg(__func__, xdr);
3238 static int decode_attr_fh_expire_type(struct xdr_stream *xdr,
3239 uint32_t *bitmap, uint32_t *type)
3244 if (unlikely(bitmap[0] & (FATTR4_WORD0_FH_EXPIRE_TYPE - 1U)))
3246 if (likely(bitmap[0] & FATTR4_WORD0_FH_EXPIRE_TYPE)) {
3247 p = xdr_inline_decode(xdr, 4);
3250 *type = be32_to_cpup(p);
3251 bitmap[0] &= ~FATTR4_WORD0_FH_EXPIRE_TYPE;
3253 dprintk("%s: expire type=0x%x\n", __func__, *type);
3256 print_overflow_msg(__func__, xdr);
3260 static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
3266 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
3268 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
3269 p = xdr_inline_decode(xdr, 8);
3272 xdr_decode_hyper(p, change);
3273 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
3274 ret = NFS_ATTR_FATTR_CHANGE;
3276 dprintk("%s: change attribute=%Lu\n", __func__,
3277 (unsigned long long)*change);
3280 print_overflow_msg(__func__, xdr);
3284 static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
3290 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
3292 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
3293 p = xdr_inline_decode(xdr, 8);
3296 xdr_decode_hyper(p, size);
3297 bitmap[0] &= ~FATTR4_WORD0_SIZE;
3298 ret = NFS_ATTR_FATTR_SIZE;
3300 dprintk("%s: file size=%Lu\n", __func__, (unsigned long long)*size);
3303 print_overflow_msg(__func__, xdr);
3307 static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3312 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
3314 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
3315 p = xdr_inline_decode(xdr, 4);
3318 *res = be32_to_cpup(p);
3319 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
3321 dprintk("%s: link support=%s\n", __func__, *res == 0 ? "false" : "true");
3324 print_overflow_msg(__func__, xdr);
3328 static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3333 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
3335 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
3336 p = xdr_inline_decode(xdr, 4);
3339 *res = be32_to_cpup(p);
3340 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
3342 dprintk("%s: symlink support=%s\n", __func__, *res == 0 ? "false" : "true");
3345 print_overflow_msg(__func__, xdr);
3349 static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
3356 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
3358 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
3359 p = xdr_inline_decode(xdr, 16);
3362 p = xdr_decode_hyper(p, &fsid->major);
3363 xdr_decode_hyper(p, &fsid->minor);
3364 bitmap[0] &= ~FATTR4_WORD0_FSID;
3365 ret = NFS_ATTR_FATTR_FSID;
3367 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __func__,
3368 (unsigned long long)fsid->major,
3369 (unsigned long long)fsid->minor);
3372 print_overflow_msg(__func__, xdr);
3376 static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3381 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
3383 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
3384 p = xdr_inline_decode(xdr, 4);
3387 *res = be32_to_cpup(p);
3388 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
3390 dprintk("%s: file size=%u\n", __func__, (unsigned int)*res);
3393 print_overflow_msg(__func__, xdr);
3397 static int decode_attr_error(struct xdr_stream *xdr, uint32_t *bitmap, int32_t *res)
3401 if (unlikely(bitmap[0] & (FATTR4_WORD0_RDATTR_ERROR - 1U)))
3403 if (likely(bitmap[0] & FATTR4_WORD0_RDATTR_ERROR)) {
3404 p = xdr_inline_decode(xdr, 4);
3407 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
3408 *res = -be32_to_cpup(p);
3412 print_overflow_msg(__func__, xdr);
3416 static int decode_attr_filehandle(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fh *fh)
3422 memset(fh, 0, sizeof(*fh));
3424 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEHANDLE - 1U)))
3426 if (likely(bitmap[0] & FATTR4_WORD0_FILEHANDLE)) {
3427 p = xdr_inline_decode(xdr, 4);
3430 len = be32_to_cpup(p);
3431 if (len > NFS4_FHSIZE)
3433 p = xdr_inline_decode(xdr, len);
3437 memcpy(fh->data, p, len);
3440 bitmap[0] &= ~FATTR4_WORD0_FILEHANDLE;
3444 print_overflow_msg(__func__, xdr);
3448 static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3453 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
3455 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
3456 p = xdr_inline_decode(xdr, 4);
3459 *res = be32_to_cpup(p);
3460 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
3462 dprintk("%s: ACLs supported=%u\n", __func__, (unsigned int)*res);
3465 print_overflow_msg(__func__, xdr);
3469 static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3475 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
3477 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
3478 p = xdr_inline_decode(xdr, 8);
3481 xdr_decode_hyper(p, fileid);
3482 bitmap[0] &= ~FATTR4_WORD0_FILEID;
3483 ret = NFS_ATTR_FATTR_FILEID;
3485 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
3488 print_overflow_msg(__func__, xdr);
3492 static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
3498 if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
3500 if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
3501 p = xdr_inline_decode(xdr, 8);
3504 xdr_decode_hyper(p, fileid);
3505 bitmap[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
3506 ret = NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
3508 dprintk("%s: fileid=%Lu\n", __func__, (unsigned long long)*fileid);
3511 print_overflow_msg(__func__, xdr);
3515 static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3521 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
3523 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
3524 p = xdr_inline_decode(xdr, 8);
3527 xdr_decode_hyper(p, res);
3528 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
3530 dprintk("%s: files avail=%Lu\n", __func__, (unsigned long long)*res);
3533 print_overflow_msg(__func__, xdr);
3537 static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3543 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
3545 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
3546 p = xdr_inline_decode(xdr, 8);
3549 xdr_decode_hyper(p, res);
3550 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
3552 dprintk("%s: files free=%Lu\n", __func__, (unsigned long long)*res);
3555 print_overflow_msg(__func__, xdr);
3559 static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3565 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
3567 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
3568 p = xdr_inline_decode(xdr, 8);
3571 xdr_decode_hyper(p, res);
3572 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
3574 dprintk("%s: files total=%Lu\n", __func__, (unsigned long long)*res);
3577 print_overflow_msg(__func__, xdr);
3581 static int decode_pathname(struct xdr_stream *xdr, struct nfs4_pathname *path)
3587 p = xdr_inline_decode(xdr, 4);
3590 n = be32_to_cpup(p);
3593 dprintk("pathname4: ");
3594 if (n > NFS4_PATHNAME_MAXCOMPONENTS) {
3595 dprintk("cannot parse %d components in path\n", n);
3598 for (path->ncomponents = 0; path->ncomponents < n; path->ncomponents++) {
3599 struct nfs4_string *component = &path->components[path->ncomponents];
3600 status = decode_opaque_inline(xdr, &component->len, &component->data);
3601 if (unlikely(status != 0))
3605 (path->ncomponents != n ? "/ " : ""),
3606 component->len, component->data);
3611 /* a root pathname is sent as a zero component4 */
3612 path->ncomponents = 1;
3613 path->components[0].len=0;
3614 path->components[0].data=NULL;
3615 dprintk("pathname4: /\n");
3618 dprintk(" status %d", status);
3622 print_overflow_msg(__func__, xdr);
3626 static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
3632 if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
3635 if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
3638 /* Ignore borken servers that return unrequested attrs */
3639 if (unlikely(res == NULL))
3641 dprintk("%s: fsroot:\n", __func__);
3642 status = decode_pathname(xdr, &res->fs_path);
3643 if (unlikely(status != 0))
3645 p = xdr_inline_decode(xdr, 4);
3648 n = be32_to_cpup(p);
3651 for (res->nlocations = 0; res->nlocations < n; res->nlocations++) {
3653 struct nfs4_fs_location *loc;
3655 if (res->nlocations == NFS4_FS_LOCATIONS_MAXENTRIES)
3657 loc = &res->locations[res->nlocations];
3658 p = xdr_inline_decode(xdr, 4);
3661 m = be32_to_cpup(p);
3663 dprintk("%s: servers:\n", __func__);
3664 for (loc->nservers = 0; loc->nservers < m; loc->nservers++) {
3665 struct nfs4_string *server;
3667 if (loc->nservers == NFS4_FS_LOCATION_MAXSERVERS) {
3669 dprintk("%s: using first %u of %u servers "
3670 "returned for location %u\n",
3672 NFS4_FS_LOCATION_MAXSERVERS,
3673 m, res->nlocations);
3674 for (i = loc->nservers; i < m; i++) {
3677 status = decode_opaque_inline(xdr, &len, &data);
3678 if (unlikely(status != 0))
3683 server = &loc->servers[loc->nservers];
3684 status = decode_opaque_inline(xdr, &server->len, &server->data);
3685 if (unlikely(status != 0))
3687 dprintk("%s ", server->data);
3689 status = decode_pathname(xdr, &loc->rootpath);
3690 if (unlikely(status != 0))
3693 if (res->nlocations != 0)
3694 status = NFS_ATTR_FATTR_V4_LOCATIONS;
3696 dprintk("%s: fs_locations done, error = %d\n", __func__, status);
3699 print_overflow_msg(__func__, xdr);
3705 static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3711 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
3713 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
3714 p = xdr_inline_decode(xdr, 8);
3717 xdr_decode_hyper(p, res);
3718 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
3720 dprintk("%s: maxfilesize=%Lu\n", __func__, (unsigned long long)*res);
3723 print_overflow_msg(__func__, xdr);
3727 static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
3733 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
3735 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
3736 p = xdr_inline_decode(xdr, 4);
3739 *maxlink = be32_to_cpup(p);
3740 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
3742 dprintk("%s: maxlink=%u\n", __func__, *maxlink);
3745 print_overflow_msg(__func__, xdr);
3749 static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
3755 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
3757 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
3758 p = xdr_inline_decode(xdr, 4);
3761 *maxname = be32_to_cpup(p);
3762 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
3764 dprintk("%s: maxname=%u\n", __func__, *maxname);
3767 print_overflow_msg(__func__, xdr);
3771 static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3777 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
3779 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
3781 p = xdr_inline_decode(xdr, 8);
3784 xdr_decode_hyper(p, &maxread);
3785 if (maxread > 0x7FFFFFFF)
3786 maxread = 0x7FFFFFFF;
3787 *res = (uint32_t)maxread;
3788 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
3790 dprintk("%s: maxread=%lu\n", __func__, (unsigned long)*res);
3793 print_overflow_msg(__func__, xdr);
3797 static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
3803 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
3805 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
3807 p = xdr_inline_decode(xdr, 8);
3810 xdr_decode_hyper(p, &maxwrite);
3811 if (maxwrite > 0x7FFFFFFF)
3812 maxwrite = 0x7FFFFFFF;
3813 *res = (uint32_t)maxwrite;
3814 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
3816 dprintk("%s: maxwrite=%lu\n", __func__, (unsigned long)*res);
3819 print_overflow_msg(__func__, xdr);
3823 static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, umode_t *mode)
3830 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
3832 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
3833 p = xdr_inline_decode(xdr, 4);
3836 tmp = be32_to_cpup(p);
3837 *mode = tmp & ~S_IFMT;
3838 bitmap[1] &= ~FATTR4_WORD1_MODE;
3839 ret = NFS_ATTR_FATTR_MODE;
3841 dprintk("%s: file mode=0%o\n", __func__, (unsigned int)*mode);
3844 print_overflow_msg(__func__, xdr);
3848 static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
3854 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
3856 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
3857 p = xdr_inline_decode(xdr, 4);
3860 *nlink = be32_to_cpup(p);
3861 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
3862 ret = NFS_ATTR_FATTR_NLINK;
3864 dprintk("%s: nlink=%u\n", __func__, (unsigned int)*nlink);
3867 print_overflow_msg(__func__, xdr);
3871 static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap,
3872 const struct nfs_server *server, kuid_t *uid,
3873 struct nfs4_string *owner_name)
3879 *uid = make_kuid(&init_user_ns, -2);
3880 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
3882 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
3883 p = xdr_inline_decode(xdr, 4);
3886 len = be32_to_cpup(p);
3887 p = xdr_inline_decode(xdr, len);
3890 if (owner_name != NULL) {
3891 owner_name->data = kmemdup(p, len, GFP_NOWAIT);
3892 if (owner_name->data != NULL) {
3893 owner_name->len = len;
3894 ret = NFS_ATTR_FATTR_OWNER_NAME;
3896 } else if (len < XDR_MAX_NETOBJ) {
3897 if (nfs_map_name_to_uid(server, (char *)p, len, uid) == 0)
3898 ret = NFS_ATTR_FATTR_OWNER;
3900 dprintk("%s: nfs_map_name_to_uid failed!\n",
3903 dprintk("%s: name too long (%u)!\n",
3905 bitmap[1] &= ~FATTR4_WORD1_OWNER;
3907 dprintk("%s: uid=%d\n", __func__, (int)from_kuid(&init_user_ns, *uid));
3910 print_overflow_msg(__func__, xdr);
3914 static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap,
3915 const struct nfs_server *server, kgid_t *gid,
3916 struct nfs4_string *group_name)
3922 *gid = make_kgid(&init_user_ns, -2);
3923 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
3925 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
3926 p = xdr_inline_decode(xdr, 4);
3929 len = be32_to_cpup(p);
3930 p = xdr_inline_decode(xdr, len);
3933 if (group_name != NULL) {
3934 group_name->data = kmemdup(p, len, GFP_NOWAIT);
3935 if (group_name->data != NULL) {
3936 group_name->len = len;
3937 ret = NFS_ATTR_FATTR_GROUP_NAME;
3939 } else if (len < XDR_MAX_NETOBJ) {
3940 if (nfs_map_group_to_gid(server, (char *)p, len, gid) == 0)
3941 ret = NFS_ATTR_FATTR_GROUP;
3943 dprintk("%s: nfs_map_group_to_gid failed!\n",
3946 dprintk("%s: name too long (%u)!\n",
3948 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
3950 dprintk("%s: gid=%d\n", __func__, (int)from_kgid(&init_user_ns, *gid));
3953 print_overflow_msg(__func__, xdr);
3957 static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
3959 uint32_t major = 0, minor = 0;
3964 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
3966 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
3969 p = xdr_inline_decode(xdr, 8);
3972 major = be32_to_cpup(p++);
3973 minor = be32_to_cpup(p);
3974 tmp = MKDEV(major, minor);
3975 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
3977 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
3978 ret = NFS_ATTR_FATTR_RDEV;
3980 dprintk("%s: rdev=(0x%x:0x%x)\n", __func__, major, minor);
3983 print_overflow_msg(__func__, xdr);
3987 static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
3993 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
3995 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
3996 p = xdr_inline_decode(xdr, 8);
3999 xdr_decode_hyper(p, res);
4000 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
4002 dprintk("%s: space avail=%Lu\n", __func__, (unsigned long long)*res);
4005 print_overflow_msg(__func__, xdr);
4009 static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4015 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
4017 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
4018 p = xdr_inline_decode(xdr, 8);
4021 xdr_decode_hyper(p, res);
4022 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
4024 dprintk("%s: space free=%Lu\n", __func__, (unsigned long long)*res);
4027 print_overflow_msg(__func__, xdr);
4031 static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
4037 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
4039 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
4040 p = xdr_inline_decode(xdr, 8);
4043 xdr_decode_hyper(p, res);
4044 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
4046 dprintk("%s: space total=%Lu\n", __func__, (unsigned long long)*res);
4049 print_overflow_msg(__func__, xdr);
4053 static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
4059 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
4061 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
4062 p = xdr_inline_decode(xdr, 8);
4065 xdr_decode_hyper(p, used);
4066 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
4067 ret = NFS_ATTR_FATTR_SPACE_USED;
4069 dprintk("%s: space used=%Lu\n", __func__,
4070 (unsigned long long)*used);
4073 print_overflow_msg(__func__, xdr);
4077 static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
4083 p = xdr_inline_decode(xdr, 12);
4086 p = xdr_decode_hyper(p, &sec);
4087 nsec = be32_to_cpup(p);
4088 time->tv_sec = (time_t)sec;
4089 time->tv_nsec = (long)nsec;
4092 print_overflow_msg(__func__, xdr);
4096 static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4102 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
4104 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
4105 status = decode_attr_time(xdr, time);
4107 status = NFS_ATTR_FATTR_ATIME;
4108 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
4110 dprintk("%s: atime=%ld\n", __func__, (long)time->tv_sec);
4114 static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4120 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
4122 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
4123 status = decode_attr_time(xdr, time);
4125 status = NFS_ATTR_FATTR_CTIME;
4126 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
4128 dprintk("%s: ctime=%ld\n", __func__, (long)time->tv_sec);
4132 static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap,
4133 struct timespec *time)
4139 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U)))
4141 if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) {
4142 status = decode_attr_time(xdr, time);
4143 bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA;
4145 dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec,
4146 (long)time->tv_nsec);
4150 static int decode_attr_security_label(struct xdr_stream *xdr, uint32_t *bitmap,
4151 struct nfs4_label *label)
4159 if (unlikely(bitmap[2] & (FATTR4_WORD2_SECURITY_LABEL - 1U)))
4161 if (likely(bitmap[2] & FATTR4_WORD2_SECURITY_LABEL)) {
4162 p = xdr_inline_decode(xdr, 4);
4165 lfs = be32_to_cpup(p++);
4166 p = xdr_inline_decode(xdr, 4);
4169 pi = be32_to_cpup(p++);
4170 p = xdr_inline_decode(xdr, 4);
4173 len = be32_to_cpup(p++);
4174 p = xdr_inline_decode(xdr, len);
4177 if (len < NFS4_MAXLABELLEN) {
4179 memcpy(label->label, p, len);
4183 status = NFS_ATTR_FATTR_V4_SECURITY_LABEL;
4185 bitmap[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
4187 printk(KERN_WARNING "%s: label too long (%u)!\n",
4190 if (label && label->label)
4191 dprintk("%s: label=%s, len=%d, PI=%d, LFS=%d\n", __func__,
4192 (char *)label->label, label->len, label->pi, label->lfs);
4196 print_overflow_msg(__func__, xdr);
4200 static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
4206 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
4208 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
4209 status = decode_attr_time(xdr, time);
4211 status = NFS_ATTR_FATTR_MTIME;
4212 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
4214 dprintk("%s: mtime=%ld\n", __func__, (long)time->tv_sec);
4218 static int verify_attr_len(struct xdr_stream *xdr, unsigned int savep, uint32_t attrlen)
4220 unsigned int attrwords = XDR_QUADLEN(attrlen);
4221 unsigned int nwords = (xdr_stream_pos(xdr) - savep) >> 2;
4223 if (unlikely(attrwords != nwords)) {
4224 dprintk("%s: server returned incorrect attribute length: "
4228 (attrwords < nwords) ? '<' : '>',
4235 static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4239 p = xdr_inline_decode(xdr, 20);
4242 cinfo->atomic = be32_to_cpup(p++);
4243 p = xdr_decode_hyper(p, &cinfo->before);
4244 xdr_decode_hyper(p, &cinfo->after);
4247 print_overflow_msg(__func__, xdr);
4251 static int decode_access(struct xdr_stream *xdr, u32 *supported, u32 *access)
4257 status = decode_op_hdr(xdr, OP_ACCESS);
4260 p = xdr_inline_decode(xdr, 8);
4263 supp = be32_to_cpup(p++);
4264 acc = be32_to_cpup(p);
4269 print_overflow_msg(__func__, xdr);
4273 static int decode_opaque_fixed(struct xdr_stream *xdr, void *buf, size_t len)
4277 p = xdr_inline_decode(xdr, len);
4279 memcpy(buf, p, len);
4282 print_overflow_msg(__func__, xdr);
4286 static int decode_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
4288 return decode_opaque_fixed(xdr, stateid, NFS4_STATEID_SIZE);
4291 static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
4295 status = decode_op_hdr(xdr, OP_CLOSE);
4297 nfs_increment_open_seqid(status, res->seqid);
4299 status = decode_stateid(xdr, &res->stateid);
4303 static int decode_verifier(struct xdr_stream *xdr, void *verifier)
4305 return decode_opaque_fixed(xdr, verifier, NFS4_VERIFIER_SIZE);
4308 static int decode_write_verifier(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
4310 return decode_opaque_fixed(xdr, verifier->data, NFS4_VERIFIER_SIZE);
4313 static int decode_commit(struct xdr_stream *xdr, struct nfs_commitres *res)
4317 status = decode_op_hdr(xdr, OP_COMMIT);
4319 status = decode_write_verifier(xdr, &res->verf->verifier);
4323 static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4329 status = decode_op_hdr(xdr, OP_CREATE);
4332 if ((status = decode_change_info(xdr, cinfo)))
4334 p = xdr_inline_decode(xdr, 4);
4337 bmlen = be32_to_cpup(p);
4338 p = xdr_inline_decode(xdr, bmlen << 2);
4342 print_overflow_msg(__func__, xdr);
4346 static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
4349 uint32_t attrlen, bitmap[3] = {0};
4352 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4354 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4356 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4358 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
4360 if ((status = decode_attr_fh_expire_type(xdr, bitmap,
4361 &res->fh_expire_type)) != 0)
4363 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
4365 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
4367 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
4369 status = verify_attr_len(xdr, savep, attrlen);
4371 dprintk("%s: xdr returned %d!\n", __func__, -status);
4375 static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
4378 uint32_t attrlen, bitmap[3] = {0};
4381 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4383 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4385 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4388 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
4390 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
4392 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
4394 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
4396 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
4398 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
4401 status = verify_attr_len(xdr, savep, attrlen);
4403 dprintk("%s: xdr returned %d!\n", __func__, -status);
4407 static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
4410 uint32_t attrlen, bitmap[3] = {0};
4413 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4415 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4417 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4420 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
4422 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
4425 status = verify_attr_len(xdr, savep, attrlen);
4427 dprintk("%s: xdr returned %d!\n", __func__, -status);
4431 static int decode_threshold_hint(struct xdr_stream *xdr,
4439 if (likely(bitmap[0] & hint_bit)) {
4440 p = xdr_inline_decode(xdr, 8);
4443 xdr_decode_hyper(p, res);
4447 print_overflow_msg(__func__, xdr);
4451 static int decode_first_threshold_item4(struct xdr_stream *xdr,
4452 struct nfs4_threshold *res)
4456 uint32_t bitmap[3] = {0,}, attrlen;
4460 p = xdr_inline_decode(xdr, 4);
4462 print_overflow_msg(__func__, xdr);
4465 res->l_type = be32_to_cpup(p);
4467 /* thi_hintset bitmap */
4468 status = decode_attr_bitmap(xdr, bitmap);
4472 /* thi_hintlist length */
4473 status = decode_attr_length(xdr, &attrlen, &savep);
4477 status = decode_threshold_hint(xdr, bitmap, &res->rd_sz, THRESHOLD_RD);
4480 status = decode_threshold_hint(xdr, bitmap, &res->wr_sz, THRESHOLD_WR);
4483 status = decode_threshold_hint(xdr, bitmap, &res->rd_io_sz,
4487 status = decode_threshold_hint(xdr, bitmap, &res->wr_io_sz,
4492 status = verify_attr_len(xdr, savep, attrlen);
4493 res->bm = bitmap[0];
4495 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
4496 __func__, res->bm, res->rd_sz, res->wr_sz, res->rd_io_sz,
4499 dprintk("%s ret=%d!\n", __func__, status);
4504 * Thresholds on pNFS direct I/O vrs MDS I/O
4506 static int decode_attr_mdsthreshold(struct xdr_stream *xdr,
4508 struct nfs4_threshold *res)
4514 if (unlikely(bitmap[2] & (FATTR4_WORD2_MDSTHRESHOLD - 1U)))
4516 if (bitmap[2] & FATTR4_WORD2_MDSTHRESHOLD) {
4517 /* Did the server return an unrequested attribute? */
4518 if (unlikely(res == NULL))
4520 p = xdr_inline_decode(xdr, 4);
4523 num = be32_to_cpup(p);
4527 printk(KERN_INFO "%s: Warning: Multiple pNFS layout "
4528 "drivers per filesystem not supported\n",
4531 status = decode_first_threshold_item4(xdr, res);
4532 bitmap[2] &= ~FATTR4_WORD2_MDSTHRESHOLD;
4536 print_overflow_msg(__func__, xdr);
4540 static int decode_getfattr_attrs(struct xdr_stream *xdr, uint32_t *bitmap,
4541 struct nfs_fattr *fattr, struct nfs_fh *fh,
4542 struct nfs4_fs_locations *fs_loc, struct nfs4_label *label,
4543 const struct nfs_server *server)
4550 status = decode_attr_type(xdr, bitmap, &type);
4555 fattr->mode |= nfs_type2fmt[type];
4556 fattr->valid |= status;
4559 status = decode_attr_change(xdr, bitmap, &fattr->change_attr);
4562 fattr->valid |= status;
4564 status = decode_attr_size(xdr, bitmap, &fattr->size);
4567 fattr->valid |= status;
4569 status = decode_attr_fsid(xdr, bitmap, &fattr->fsid);
4572 fattr->valid |= status;
4575 status = decode_attr_error(xdr, bitmap, &err);
4579 status = decode_attr_filehandle(xdr, bitmap, fh);
4583 status = decode_attr_fileid(xdr, bitmap, &fattr->fileid);
4586 fattr->valid |= status;
4588 status = decode_attr_fs_locations(xdr, bitmap, fs_loc);
4591 fattr->valid |= status;
4593 status = decode_attr_mode(xdr, bitmap, &fmode);
4597 fattr->mode |= fmode;
4598 fattr->valid |= status;
4601 status = decode_attr_nlink(xdr, bitmap, &fattr->nlink);
4604 fattr->valid |= status;
4606 status = decode_attr_owner(xdr, bitmap, server, &fattr->uid, fattr->owner_name);
4609 fattr->valid |= status;
4611 status = decode_attr_group(xdr, bitmap, server, &fattr->gid, fattr->group_name);
4614 fattr->valid |= status;
4616 status = decode_attr_rdev(xdr, bitmap, &fattr->rdev);
4619 fattr->valid |= status;
4621 status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used);
4624 fattr->valid |= status;
4626 status = decode_attr_time_access(xdr, bitmap, &fattr->atime);
4629 fattr->valid |= status;
4631 status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime);
4634 fattr->valid |= status;
4636 status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime);
4639 fattr->valid |= status;
4641 status = decode_attr_mounted_on_fileid(xdr, bitmap, &fattr->mounted_on_fileid);
4644 fattr->valid |= status;
4646 status = decode_attr_mdsthreshold(xdr, bitmap, fattr->mdsthreshold);
4651 status = decode_attr_security_label(xdr, bitmap, label);
4654 fattr->valid |= status;
4658 dprintk("%s: xdr returned %d\n", __func__, -status);
4662 static int decode_getfattr_generic(struct xdr_stream *xdr, struct nfs_fattr *fattr,
4663 struct nfs_fh *fh, struct nfs4_fs_locations *fs_loc,
4664 struct nfs4_label *label, const struct nfs_server *server)
4671 status = decode_op_hdr(xdr, OP_GETATTR);
4675 status = decode_attr_bitmap(xdr, bitmap);
4679 status = decode_attr_length(xdr, &attrlen, &savep);
4683 status = decode_getfattr_attrs(xdr, bitmap, fattr, fh, fs_loc,
4688 status = verify_attr_len(xdr, savep, attrlen);
4690 dprintk("%s: xdr returned %d\n", __func__, -status);
4694 static int decode_getfattr_label(struct xdr_stream *xdr, struct nfs_fattr *fattr,
4695 struct nfs4_label *label, const struct nfs_server *server)
4697 return decode_getfattr_generic(xdr, fattr, NULL, NULL, label, server);
4700 static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
4701 const struct nfs_server *server)
4703 return decode_getfattr_generic(xdr, fattr, NULL, NULL, NULL, server);
4707 * Decode potentially multiple layout types. Currently we only support
4708 * one layout driver per file system.
4710 static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
4711 uint32_t *layouttype)
4716 p = xdr_inline_decode(xdr, 4);
4719 num = be32_to_cpup(p);
4721 /* pNFS is not supported by the underlying file system */
4727 printk(KERN_INFO "NFS: %s: Warning: Multiple pNFS layout "
4728 "drivers per filesystem not supported\n", __func__);
4730 /* Decode and set first layout type, move xdr->p past unused types */
4731 p = xdr_inline_decode(xdr, num * 4);
4734 *layouttype = be32_to_cpup(p);
4737 print_overflow_msg(__func__, xdr);
4742 * The type of file system exported.
4743 * Note we must ensure that layouttype is set in any non-error case.
4745 static int decode_attr_pnfstype(struct xdr_stream *xdr, uint32_t *bitmap,
4746 uint32_t *layouttype)
4750 dprintk("%s: bitmap is %x\n", __func__, bitmap[1]);
4751 if (unlikely(bitmap[1] & (FATTR4_WORD1_FS_LAYOUT_TYPES - 1U)))
4753 if (bitmap[1] & FATTR4_WORD1_FS_LAYOUT_TYPES) {
4754 status = decode_first_pnfs_layout_type(xdr, layouttype);
4755 bitmap[1] &= ~FATTR4_WORD1_FS_LAYOUT_TYPES;
4762 * The prefered block size for layout directed io
4764 static int decode_attr_layout_blksize(struct xdr_stream *xdr, uint32_t *bitmap,
4769 dprintk("%s: bitmap is %x\n", __func__, bitmap[2]);
4771 if (bitmap[2] & FATTR4_WORD2_LAYOUT_BLKSIZE) {
4772 p = xdr_inline_decode(xdr, 4);
4774 print_overflow_msg(__func__, xdr);
4777 *res = be32_to_cpup(p);
4778 bitmap[2] &= ~FATTR4_WORD2_LAYOUT_BLKSIZE;
4783 static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
4786 uint32_t attrlen, bitmap[3];
4789 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
4791 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
4793 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
4796 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
4798 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
4800 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
4802 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
4804 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
4805 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
4807 fsinfo->wtpref = fsinfo->wtmax;
4808 status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta);
4811 status = decode_attr_pnfstype(xdr, bitmap, &fsinfo->layouttype);
4814 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize);
4818 status = verify_attr_len(xdr, savep, attrlen);
4820 dprintk("%s: xdr returned %d!\n", __func__, -status);
4824 static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
4830 /* Zero handle first to allow comparisons */
4831 memset(fh, 0, sizeof(*fh));
4833 status = decode_op_hdr(xdr, OP_GETFH);
4837 p = xdr_inline_decode(xdr, 4);
4840 len = be32_to_cpup(p);
4841 if (len > NFS4_FHSIZE)
4844 p = xdr_inline_decode(xdr, len);
4847 memcpy(fh->data, p, len);
4850 print_overflow_msg(__func__, xdr);
4854 static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
4858 status = decode_op_hdr(xdr, OP_LINK);
4861 return decode_change_info(xdr, cinfo);
4865 * We create the owner, so we know a proper owner.id length is 4.
4867 static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
4869 uint64_t offset, length, clientid;
4871 uint32_t namelen, type;
4873 p = xdr_inline_decode(xdr, 32); /* read 32 bytes */
4876 p = xdr_decode_hyper(p, &offset); /* read 2 8-byte long words */
4877 p = xdr_decode_hyper(p, &length);
4878 type = be32_to_cpup(p++); /* 4 byte read */
4879 if (fl != NULL) { /* manipulate file lock */
4880 fl->fl_start = (loff_t)offset;
4881 fl->fl_end = fl->fl_start + (loff_t)length - 1;
4882 if (length == ~(uint64_t)0)
4883 fl->fl_end = OFFSET_MAX;
4884 fl->fl_type = F_WRLCK;
4886 fl->fl_type = F_RDLCK;
4889 p = xdr_decode_hyper(p, &clientid); /* read 8 bytes */
4890 namelen = be32_to_cpup(p); /* read 4 bytes */ /* have read all 32 bytes now */
4891 p = xdr_inline_decode(xdr, namelen); /* variable size field */
4893 return -NFS4ERR_DENIED;
4895 print_overflow_msg(__func__, xdr);
4899 static int decode_lock(struct xdr_stream *xdr, struct nfs_lock_res *res)
4903 status = decode_op_hdr(xdr, OP_LOCK);
4907 status = decode_stateid(xdr, &res->stateid);
4908 if (unlikely(status))
4910 } else if (status == -NFS4ERR_DENIED)
4911 status = decode_lock_denied(xdr, NULL);
4912 if (res->open_seqid != NULL)
4913 nfs_increment_open_seqid(status, res->open_seqid);
4914 nfs_increment_lock_seqid(status, res->lock_seqid);
4919 static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
4922 status = decode_op_hdr(xdr, OP_LOCKT);
4923 if (status == -NFS4ERR_DENIED)
4924 return decode_lock_denied(xdr, res->denied);
4928 static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
4932 status = decode_op_hdr(xdr, OP_LOCKU);
4934 nfs_increment_lock_seqid(status, res->seqid);
4936 status = decode_stateid(xdr, &res->stateid);
4940 static int decode_release_lockowner(struct xdr_stream *xdr)
4942 return decode_op_hdr(xdr, OP_RELEASE_LOCKOWNER);
4945 static int decode_lookup(struct xdr_stream *xdr)
4947 return decode_op_hdr(xdr, OP_LOOKUP);
4950 /* This is too sick! */
4951 static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
4954 uint32_t limit_type, nblocks, blocksize;
4956 p = xdr_inline_decode(xdr, 12);
4959 limit_type = be32_to_cpup(p++);
4960 switch (limit_type) {
4962 xdr_decode_hyper(p, maxsize);
4965 nblocks = be32_to_cpup(p++);
4966 blocksize = be32_to_cpup(p);
4967 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
4971 print_overflow_msg(__func__, xdr);
4975 static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
4978 uint32_t delegation_type;
4981 p = xdr_inline_decode(xdr, 4);
4984 delegation_type = be32_to_cpup(p);
4985 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
4986 res->delegation_type = 0;
4989 status = decode_stateid(xdr, &res->delegation);
4990 if (unlikely(status))
4992 p = xdr_inline_decode(xdr, 4);
4995 res->do_recall = be32_to_cpup(p);
4997 switch (delegation_type) {
4998 case NFS4_OPEN_DELEGATE_READ:
4999 res->delegation_type = FMODE_READ;
5001 case NFS4_OPEN_DELEGATE_WRITE:
5002 res->delegation_type = FMODE_WRITE|FMODE_READ;
5003 if (decode_space_limit(xdr, &res->maxsize) < 0)
5006 return decode_ace(xdr, NULL, res->server->nfs_client);
5008 print_overflow_msg(__func__, xdr);
5012 static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
5015 uint32_t savewords, bmlen, i;
5018 if (!__decode_op_hdr(xdr, OP_OPEN, &status))
5020 nfs_increment_open_seqid(status, res->seqid);
5023 status = decode_stateid(xdr, &res->stateid);
5024 if (unlikely(status))
5027 decode_change_info(xdr, &res->cinfo);
5029 p = xdr_inline_decode(xdr, 8);
5032 res->rflags = be32_to_cpup(p++);
5033 bmlen = be32_to_cpup(p);
5037 p = xdr_inline_decode(xdr, bmlen << 2);
5040 savewords = min_t(uint32_t, bmlen, NFS4_BITMAP_SIZE);
5041 for (i = 0; i < savewords; ++i)
5042 res->attrset[i] = be32_to_cpup(p++);
5043 for (; i < NFS4_BITMAP_SIZE; i++)
5044 res->attrset[i] = 0;
5046 return decode_delegation(xdr, res);
5048 dprintk("%s: Bitmap too large! Length = %u\n", __func__, bmlen);
5051 print_overflow_msg(__func__, xdr);
5055 static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
5059 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
5061 nfs_increment_open_seqid(status, res->seqid);
5063 status = decode_stateid(xdr, &res->stateid);
5067 static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
5071 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
5073 nfs_increment_open_seqid(status, res->seqid);
5075 status = decode_stateid(xdr, &res->stateid);
5079 static int decode_putfh(struct xdr_stream *xdr)
5081 return decode_op_hdr(xdr, OP_PUTFH);
5084 static int decode_putrootfh(struct xdr_stream *xdr)
5086 return decode_op_hdr(xdr, OP_PUTROOTFH);
5089 static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
5092 uint32_t count, eof, recvd;
5095 status = decode_op_hdr(xdr, OP_READ);
5098 p = xdr_inline_decode(xdr, 8);
5101 eof = be32_to_cpup(p++);
5102 count = be32_to_cpup(p);
5103 recvd = xdr_read_pages(xdr, count);
5104 if (count > recvd) {
5105 dprintk("NFS: server cheating in read reply: "
5106 "count %u > recvd %u\n", count, recvd);
5114 print_overflow_msg(__func__, xdr);
5118 static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
5123 status = decode_op_hdr(xdr, OP_READDIR);
5125 status = decode_verifier(xdr, readdir->verifier.data);
5126 if (unlikely(status))
5128 memcpy(verf, readdir->verifier.data, sizeof(verf));
5129 dprintk("%s: verifier = %08x:%08x\n",
5130 __func__, verf[0], verf[1]);
5131 return xdr_read_pages(xdr, xdr->buf->page_len);
5134 static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
5136 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
5141 status = decode_op_hdr(xdr, OP_READLINK);
5145 /* Convert length of symlink */
5146 p = xdr_inline_decode(xdr, 4);
5149 len = be32_to_cpup(p);
5150 if (len >= rcvbuf->page_len || len <= 0) {
5151 dprintk("nfs: server returned giant symlink!\n");
5152 return -ENAMETOOLONG;
5154 recvd = xdr_read_pages(xdr, len);
5156 dprintk("NFS: server cheating in readlink reply: "
5157 "count %u > recvd %u\n", len, recvd);
5161 * The XDR encode routine has set things up so that
5162 * the link text will be copied directly into the
5163 * buffer. We just have to do overflow-checking,
5164 * and and null-terminate the text (the VFS expects
5165 * null-termination).
5167 xdr_terminate_string(rcvbuf, len);
5170 print_overflow_msg(__func__, xdr);
5174 static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
5178 status = decode_op_hdr(xdr, OP_REMOVE);
5181 status = decode_change_info(xdr, cinfo);
5186 static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
5187 struct nfs4_change_info *new_cinfo)
5191 status = decode_op_hdr(xdr, OP_RENAME);
5194 if ((status = decode_change_info(xdr, old_cinfo)))
5196 status = decode_change_info(xdr, new_cinfo);
5201 static int decode_renew(struct xdr_stream *xdr)
5203 return decode_op_hdr(xdr, OP_RENEW);
5207 decode_restorefh(struct xdr_stream *xdr)
5209 return decode_op_hdr(xdr, OP_RESTOREFH);
5212 static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
5213 struct nfs_getaclres *res)
5219 unsigned int pg_offset;
5222 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
5225 xdr_enter_page(xdr, xdr->buf->page_len);
5227 /* Calculate the offset of the page data */
5228 pg_offset = xdr->buf->head[0].iov_len;
5230 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
5232 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
5235 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
5237 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
5239 /* The bitmap (xdr len + bitmaps) and the attr xdr len words
5240 * are stored with the acl data to handle the problem of
5241 * variable length bitmaps.*/
5242 res->acl_data_offset = xdr_stream_pos(xdr) - pg_offset;
5243 res->acl_len = attrlen;
5245 /* Check for receive buffer overflow */
5246 if (res->acl_len > (xdr->nwords << 2) ||
5247 res->acl_len + res->acl_data_offset > xdr->buf->page_len) {
5248 res->acl_flags |= NFS4_ACL_TRUNC;
5249 dprintk("NFS: acl reply: attrlen %u > page_len %u\n",
5250 attrlen, xdr->nwords << 2);
5253 status = -EOPNOTSUPP;
5260 decode_savefh(struct xdr_stream *xdr)
5262 return decode_op_hdr(xdr, OP_SAVEFH);
5265 static int decode_setattr(struct xdr_stream *xdr)
5271 status = decode_op_hdr(xdr, OP_SETATTR);
5274 p = xdr_inline_decode(xdr, 4);
5277 bmlen = be32_to_cpup(p);
5278 p = xdr_inline_decode(xdr, bmlen << 2);
5282 print_overflow_msg(__func__, xdr);
5286 static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_setclientid_res *res)
5292 p = xdr_inline_decode(xdr, 8);
5295 opnum = be32_to_cpup(p++);
5296 if (opnum != OP_SETCLIENTID) {
5297 dprintk("nfs: decode_setclientid: Server returned operation"
5301 nfserr = be32_to_cpup(p);
5302 if (nfserr == NFS_OK) {
5303 p = xdr_inline_decode(xdr, 8 + NFS4_VERIFIER_SIZE);
5306 p = xdr_decode_hyper(p, &res->clientid);
5307 memcpy(res->confirm.data, p, NFS4_VERIFIER_SIZE);
5308 } else if (nfserr == NFSERR_CLID_INUSE) {
5311 /* skip netid string */
5312 p = xdr_inline_decode(xdr, 4);
5315 len = be32_to_cpup(p);
5316 p = xdr_inline_decode(xdr, len);
5320 /* skip uaddr string */
5321 p = xdr_inline_decode(xdr, 4);
5324 len = be32_to_cpup(p);
5325 p = xdr_inline_decode(xdr, len);
5328 return -NFSERR_CLID_INUSE;
5330 return nfs4_stat_to_errno(nfserr);
5334 print_overflow_msg(__func__, xdr);
5338 static int decode_setclientid_confirm(struct xdr_stream *xdr)
5340 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
5343 static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
5348 status = decode_op_hdr(xdr, OP_WRITE);
5352 p = xdr_inline_decode(xdr, 8);
5355 res->count = be32_to_cpup(p++);
5356 res->verf->committed = be32_to_cpup(p++);
5357 return decode_write_verifier(xdr, &res->verf->verifier);
5359 print_overflow_msg(__func__, xdr);
5363 static int decode_delegreturn(struct xdr_stream *xdr)
5365 return decode_op_hdr(xdr, OP_DELEGRETURN);
5368 static int decode_secinfo_gss(struct xdr_stream *xdr,
5369 struct nfs4_secinfo4 *flavor)
5374 p = xdr_inline_decode(xdr, 4);
5377 oid_len = be32_to_cpup(p);
5378 if (oid_len > GSS_OID_MAX_LEN)
5381 p = xdr_inline_decode(xdr, oid_len);
5384 memcpy(flavor->flavor_info.oid.data, p, oid_len);
5385 flavor->flavor_info.oid.len = oid_len;
5387 p = xdr_inline_decode(xdr, 8);
5390 flavor->flavor_info.qop = be32_to_cpup(p++);
5391 flavor->flavor_info.service = be32_to_cpup(p);
5396 print_overflow_msg(__func__, xdr);
5402 static int decode_secinfo_common(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5404 struct nfs4_secinfo4 *sec_flavor;
5405 unsigned int i, num_flavors;
5409 p = xdr_inline_decode(xdr, 4);
5413 res->flavors->num_flavors = 0;
5414 num_flavors = be32_to_cpup(p);
5416 for (i = 0; i < num_flavors; i++) {
5417 sec_flavor = &res->flavors->flavors[i];
5418 if ((char *)&sec_flavor[1] - (char *)res->flavors > PAGE_SIZE)
5421 p = xdr_inline_decode(xdr, 4);
5424 sec_flavor->flavor = be32_to_cpup(p);
5426 if (sec_flavor->flavor == RPC_AUTH_GSS) {
5427 status = decode_secinfo_gss(xdr, sec_flavor);
5431 res->flavors->num_flavors++;
5438 print_overflow_msg(__func__, xdr);
5442 static int decode_secinfo(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5444 int status = decode_op_hdr(xdr, OP_SECINFO);
5447 return decode_secinfo_common(xdr, res);
5450 #if defined(CONFIG_NFS_V4_1)
5451 static int decode_secinfo_no_name(struct xdr_stream *xdr, struct nfs4_secinfo_res *res)
5453 int status = decode_op_hdr(xdr, OP_SECINFO_NO_NAME);
5456 return decode_secinfo_common(xdr, res);
5459 static int decode_op_map(struct xdr_stream *xdr, struct nfs4_op_map *op_map)
5462 uint32_t bitmap_words;
5465 p = xdr_inline_decode(xdr, 4);
5466 bitmap_words = be32_to_cpup(p++);
5467 if (bitmap_words > NFS4_OP_MAP_NUM_WORDS)
5469 p = xdr_inline_decode(xdr, 4 * bitmap_words);
5470 for (i = 0; i < bitmap_words; i++)
5471 op_map->u.words[i] = be32_to_cpup(p++);
5476 static int decode_exchange_id(struct xdr_stream *xdr,
5477 struct nfs41_exchange_id_res *res)
5483 uint32_t impl_id_count;
5485 status = decode_op_hdr(xdr, OP_EXCHANGE_ID);
5489 p = xdr_inline_decode(xdr, 8);
5492 xdr_decode_hyper(p, &res->clientid);
5493 p = xdr_inline_decode(xdr, 12);
5496 res->seqid = be32_to_cpup(p++);
5497 res->flags = be32_to_cpup(p++);
5499 res->state_protect.how = be32_to_cpup(p);
5500 switch (res->state_protect.how) {
5504 status = decode_op_map(xdr, &res->state_protect.enforce);
5507 status = decode_op_map(xdr, &res->state_protect.allow);
5516 /* server_owner4.so_minor_id */
5517 p = xdr_inline_decode(xdr, 8);
5520 p = xdr_decode_hyper(p, &res->server_owner->minor_id);
5522 /* server_owner4.so_major_id */
5523 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5524 if (unlikely(status))
5526 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5528 memcpy(res->server_owner->major_id, dummy_str, dummy);
5529 res->server_owner->major_id_sz = dummy;
5532 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5533 if (unlikely(status))
5535 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5537 memcpy(res->server_scope->server_scope, dummy_str, dummy);
5538 res->server_scope->server_scope_sz = dummy;
5540 /* Implementation Id */
5541 p = xdr_inline_decode(xdr, 4);
5544 impl_id_count = be32_to_cpup(p++);
5546 if (impl_id_count) {
5548 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5549 if (unlikely(status))
5551 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5553 memcpy(res->impl_id->domain, dummy_str, dummy);
5556 status = decode_opaque_inline(xdr, &dummy, &dummy_str);
5557 if (unlikely(status))
5559 if (unlikely(dummy > NFS4_OPAQUE_LIMIT))
5561 memcpy(res->impl_id->name, dummy_str, dummy);
5564 p = xdr_inline_decode(xdr, 12);
5567 p = xdr_decode_hyper(p, &res->impl_id->date.seconds);
5568 res->impl_id->date.nseconds = be32_to_cpup(p);
5570 /* if there's more than one entry, ignore the rest */
5574 print_overflow_msg(__func__, xdr);
5578 static int decode_chan_attrs(struct xdr_stream *xdr,
5579 struct nfs4_channel_attrs *attrs)
5584 p = xdr_inline_decode(xdr, 28);
5587 val = be32_to_cpup(p++); /* headerpadsz */
5589 return -EINVAL; /* no support for header padding yet */
5590 attrs->max_rqst_sz = be32_to_cpup(p++);
5591 attrs->max_resp_sz = be32_to_cpup(p++);
5592 attrs->max_resp_sz_cached = be32_to_cpup(p++);
5593 attrs->max_ops = be32_to_cpup(p++);
5594 attrs->max_reqs = be32_to_cpup(p++);
5595 nr_attrs = be32_to_cpup(p);
5596 if (unlikely(nr_attrs > 1)) {
5597 printk(KERN_WARNING "NFS: %s: Invalid rdma channel attrs "
5598 "count %u\n", __func__, nr_attrs);
5601 if (nr_attrs == 1) {
5602 p = xdr_inline_decode(xdr, 4); /* skip rdma_attrs */
5608 print_overflow_msg(__func__, xdr);
5612 static int decode_sessionid(struct xdr_stream *xdr, struct nfs4_sessionid *sid)
5614 return decode_opaque_fixed(xdr, sid->data, NFS4_MAX_SESSIONID_LEN);
5617 static int decode_bind_conn_to_session(struct xdr_stream *xdr,
5618 struct nfs41_bind_conn_to_session_res *res)
5623 status = decode_op_hdr(xdr, OP_BIND_CONN_TO_SESSION);
5625 status = decode_sessionid(xdr, &res->session->sess_id);
5626 if (unlikely(status))
5629 /* dir flags, rdma mode bool */
5630 p = xdr_inline_decode(xdr, 8);
5634 res->dir = be32_to_cpup(p++);
5635 if (res->dir == 0 || res->dir > NFS4_CDFS4_BOTH)
5637 if (be32_to_cpup(p) == 0)
5638 res->use_conn_in_rdma_mode = false;
5640 res->use_conn_in_rdma_mode = true;
5644 print_overflow_msg(__func__, xdr);
5648 static int decode_create_session(struct xdr_stream *xdr,
5649 struct nfs41_create_session_res *res)
5653 struct nfs_client *clp = res->client;
5654 struct nfs4_session *session = clp->cl_session;
5656 status = decode_op_hdr(xdr, OP_CREATE_SESSION);
5658 status = decode_sessionid(xdr, &session->sess_id);
5659 if (unlikely(status))
5663 p = xdr_inline_decode(xdr, 8);
5666 clp->cl_seqid = be32_to_cpup(p++);
5667 session->flags = be32_to_cpup(p);
5669 /* Channel attributes */
5670 status = decode_chan_attrs(xdr, &session->fc_attrs);
5672 status = decode_chan_attrs(xdr, &session->bc_attrs);
5675 print_overflow_msg(__func__, xdr);
5679 static int decode_destroy_session(struct xdr_stream *xdr, void *dummy)
5681 return decode_op_hdr(xdr, OP_DESTROY_SESSION);
5684 static int decode_destroy_clientid(struct xdr_stream *xdr, void *dummy)
5686 return decode_op_hdr(xdr, OP_DESTROY_CLIENTID);
5689 static int decode_reclaim_complete(struct xdr_stream *xdr, void *dummy)
5691 return decode_op_hdr(xdr, OP_RECLAIM_COMPLETE);
5693 #endif /* CONFIG_NFS_V4_1 */
5695 static int decode_sequence(struct xdr_stream *xdr,
5696 struct nfs4_sequence_res *res,
5697 struct rpc_rqst *rqstp)
5699 #if defined(CONFIG_NFS_V4_1)
5700 struct nfs4_session *session;
5701 struct nfs4_sessionid id;
5706 if (res->sr_slot == NULL)
5708 if (!res->sr_slot->table->session)
5711 status = decode_op_hdr(xdr, OP_SEQUENCE);
5713 status = decode_sessionid(xdr, &id);
5714 if (unlikely(status))
5718 * If the server returns different values for sessionID, slotID or
5719 * sequence number, the server is looney tunes.
5721 status = -EREMOTEIO;
5722 session = res->sr_slot->table->session;
5724 if (memcmp(id.data, session->sess_id.data,
5725 NFS4_MAX_SESSIONID_LEN)) {
5726 dprintk("%s Invalid session id\n", __func__);
5730 p = xdr_inline_decode(xdr, 20);
5735 dummy = be32_to_cpup(p++);
5736 if (dummy != res->sr_slot->seq_nr) {
5737 dprintk("%s Invalid sequence number\n", __func__);
5741 dummy = be32_to_cpup(p++);
5742 if (dummy != res->sr_slot->slot_nr) {
5743 dprintk("%s Invalid slot id\n", __func__);
5746 /* highest slot id */
5747 res->sr_highest_slotid = be32_to_cpup(p++);
5748 /* target highest slot id */
5749 res->sr_target_highest_slotid = be32_to_cpup(p++);
5751 res->sr_status_flags = be32_to_cpup(p);
5754 res->sr_status = status;
5757 print_overflow_msg(__func__, xdr);
5760 #else /* CONFIG_NFS_V4_1 */
5762 #endif /* CONFIG_NFS_V4_1 */
5765 #if defined(CONFIG_NFS_V4_1)
5767 * TODO: Need to handle case when EOF != true;
5769 static int decode_getdevicelist(struct xdr_stream *xdr,
5770 struct pnfs_devicelist *res)
5774 nfs4_verifier verftemp;
5776 status = decode_op_hdr(xdr, OP_GETDEVICELIST);
5780 p = xdr_inline_decode(xdr, 8 + 8 + 4);
5784 /* TODO: Skip cookie for now */
5788 p = xdr_decode_opaque_fixed(p, verftemp.data, NFS4_VERIFIER_SIZE);
5790 res->num_devs = be32_to_cpup(p);
5792 dprintk("%s: num_dev %d\n", __func__, res->num_devs);
5794 if (res->num_devs > NFS4_PNFS_GETDEVLIST_MAXNUM) {
5795 printk(KERN_ERR "NFS: %s too many result dev_num %u\n",
5796 __func__, res->num_devs);
5800 p = xdr_inline_decode(xdr,
5801 res->num_devs * NFS4_DEVICEID4_SIZE + 4);
5804 for (i = 0; i < res->num_devs; i++)
5805 p = xdr_decode_opaque_fixed(p, res->dev_id[i].data,
5806 NFS4_DEVICEID4_SIZE);
5807 res->eof = be32_to_cpup(p);
5810 print_overflow_msg(__func__, xdr);
5814 static int decode_getdeviceinfo(struct xdr_stream *xdr,
5815 struct pnfs_device *pdev)
5821 status = decode_op_hdr(xdr, OP_GETDEVICEINFO);
5823 if (status == -ETOOSMALL) {
5824 p = xdr_inline_decode(xdr, 4);
5827 pdev->mincount = be32_to_cpup(p);
5828 dprintk("%s: Min count too small. mincnt = %u\n",
5829 __func__, pdev->mincount);
5834 p = xdr_inline_decode(xdr, 8);
5837 type = be32_to_cpup(p++);
5838 if (type != pdev->layout_type) {
5839 dprintk("%s: layout mismatch req: %u pdev: %u\n",
5840 __func__, pdev->layout_type, type);
5844 * Get the length of the opaque device_addr4. xdr_read_pages places
5845 * the opaque device_addr4 in the xdr_buf->pages (pnfs_device->pages)
5846 * and places the remaining xdr data in xdr_buf->tail
5848 pdev->mincount = be32_to_cpup(p);
5849 if (xdr_read_pages(xdr, pdev->mincount) != pdev->mincount)
5852 /* Parse notification bitmap, verifying that it is zero. */
5853 p = xdr_inline_decode(xdr, 4);
5856 len = be32_to_cpup(p);
5860 p = xdr_inline_decode(xdr, 4 * len);
5863 for (i = 0; i < len; i++, p++) {
5864 if (be32_to_cpup(p)) {
5865 dprintk("%s: notifications not supported\n",
5873 print_overflow_msg(__func__, xdr);
5877 static int decode_layoutget(struct xdr_stream *xdr, struct rpc_rqst *req,
5878 struct nfs4_layoutget_res *res)
5885 status = decode_op_hdr(xdr, OP_LAYOUTGET);
5888 p = xdr_inline_decode(xdr, 4);
5891 res->return_on_close = be32_to_cpup(p);
5892 decode_stateid(xdr, &res->stateid);
5893 p = xdr_inline_decode(xdr, 4);
5896 layout_count = be32_to_cpup(p);
5897 if (!layout_count) {
5898 dprintk("%s: server responded with empty layout array\n",
5903 p = xdr_inline_decode(xdr, 28);
5906 p = xdr_decode_hyper(p, &res->range.offset);
5907 p = xdr_decode_hyper(p, &res->range.length);
5908 res->range.iomode = be32_to_cpup(p++);
5909 res->type = be32_to_cpup(p++);
5910 res->layoutp->len = be32_to_cpup(p);
5912 dprintk("%s roff:%lu rlen:%lu riomode:%d, lo_type:0x%x, lo.len:%d\n",
5914 (unsigned long)res->range.offset,
5915 (unsigned long)res->range.length,
5920 recvd = xdr_read_pages(xdr, res->layoutp->len);
5921 if (res->layoutp->len > recvd) {
5922 dprintk("NFS: server cheating in layoutget reply: "
5923 "layout len %u > recvd %u\n",
5924 res->layoutp->len, recvd);
5928 if (layout_count > 1) {
5929 /* We only handle a length one array at the moment. Any
5930 * further entries are just ignored. Note that this means
5931 * the client may see a response that is less than the
5932 * minimum it requested.
5934 dprintk("%s: server responded with %d layouts, dropping tail\n",
5935 __func__, layout_count);
5940 print_overflow_msg(__func__, xdr);
5944 static int decode_layoutreturn(struct xdr_stream *xdr,
5945 struct nfs4_layoutreturn_res *res)
5950 status = decode_op_hdr(xdr, OP_LAYOUTRETURN);
5953 p = xdr_inline_decode(xdr, 4);
5956 res->lrs_present = be32_to_cpup(p);
5957 if (res->lrs_present)
5958 status = decode_stateid(xdr, &res->stateid);
5961 print_overflow_msg(__func__, xdr);
5965 static int decode_layoutcommit(struct xdr_stream *xdr,
5966 struct rpc_rqst *req,
5967 struct nfs4_layoutcommit_res *res)
5973 status = decode_op_hdr(xdr, OP_LAYOUTCOMMIT);
5974 res->status = status;
5978 p = xdr_inline_decode(xdr, 4);
5981 sizechanged = be32_to_cpup(p);
5984 /* throw away new size */
5985 p = xdr_inline_decode(xdr, 8);
5991 print_overflow_msg(__func__, xdr);
5995 static int decode_test_stateid(struct xdr_stream *xdr,
5996 struct nfs41_test_stateid_res *res)
6002 status = decode_op_hdr(xdr, OP_TEST_STATEID);
6006 p = xdr_inline_decode(xdr, 4);
6009 num_res = be32_to_cpup(p++);
6013 p = xdr_inline_decode(xdr, 4);
6016 res->status = be32_to_cpup(p++);
6020 print_overflow_msg(__func__, xdr);
6025 static int decode_free_stateid(struct xdr_stream *xdr,
6026 struct nfs41_free_stateid_res *res)
6028 res->status = decode_op_hdr(xdr, OP_FREE_STATEID);
6031 #endif /* CONFIG_NFS_V4_1 */
6034 * END OF "GENERIC" DECODE ROUTINES.
6038 * Decode OPEN_DOWNGRADE response
6040 static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp,
6041 struct xdr_stream *xdr,
6042 struct nfs_closeres *res)
6044 struct compound_hdr hdr;
6047 status = decode_compound_hdr(xdr, &hdr);
6050 status = decode_sequence(xdr, &res->seq_res, rqstp);
6053 status = decode_putfh(xdr);
6056 status = decode_open_downgrade(xdr, res);
6059 decode_getfattr(xdr, res->fattr, res->server);
6065 * Decode ACCESS response
6067 static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6068 struct nfs4_accessres *res)
6070 struct compound_hdr hdr;
6073 status = decode_compound_hdr(xdr, &hdr);
6076 status = decode_sequence(xdr, &res->seq_res, rqstp);
6079 status = decode_putfh(xdr);
6082 status = decode_access(xdr, &res->supported, &res->access);
6085 decode_getfattr(xdr, res->fattr, res->server);
6091 * Decode LOOKUP response
6093 static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6094 struct nfs4_lookup_res *res)
6096 struct compound_hdr hdr;
6099 status = decode_compound_hdr(xdr, &hdr);
6102 status = decode_sequence(xdr, &res->seq_res, rqstp);
6105 status = decode_putfh(xdr);
6108 status = decode_lookup(xdr);
6111 status = decode_getfh(xdr, res->fh);
6114 status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
6120 * Decode LOOKUP_ROOT response
6122 static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp,
6123 struct xdr_stream *xdr,
6124 struct nfs4_lookup_res *res)
6126 struct compound_hdr hdr;
6129 status = decode_compound_hdr(xdr, &hdr);
6132 status = decode_sequence(xdr, &res->seq_res, rqstp);
6135 status = decode_putrootfh(xdr);
6138 status = decode_getfh(xdr, res->fh);
6140 status = decode_getfattr_label(xdr, res->fattr,
6141 res->label, res->server);
6147 * Decode REMOVE response
6149 static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6150 struct nfs_removeres *res)
6152 struct compound_hdr hdr;
6155 status = decode_compound_hdr(xdr, &hdr);
6158 status = decode_sequence(xdr, &res->seq_res, rqstp);
6161 status = decode_putfh(xdr);
6164 status = decode_remove(xdr, &res->cinfo);
6170 * Decode RENAME response
6172 static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6173 struct nfs_renameres *res)
6175 struct compound_hdr hdr;
6178 status = decode_compound_hdr(xdr, &hdr);
6181 status = decode_sequence(xdr, &res->seq_res, rqstp);
6184 status = decode_putfh(xdr);
6187 status = decode_savefh(xdr);
6190 status = decode_putfh(xdr);
6193 status = decode_rename(xdr, &res->old_cinfo, &res->new_cinfo);
6199 * Decode LINK response
6201 static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6202 struct nfs4_link_res *res)
6204 struct compound_hdr hdr;
6207 status = decode_compound_hdr(xdr, &hdr);
6210 status = decode_sequence(xdr, &res->seq_res, rqstp);
6213 status = decode_putfh(xdr);
6216 status = decode_savefh(xdr);
6219 status = decode_putfh(xdr);
6222 status = decode_link(xdr, &res->cinfo);
6226 * Note order: OP_LINK leaves the directory as the current
6229 status = decode_restorefh(xdr);
6232 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
6238 * Decode CREATE response
6240 static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6241 struct nfs4_create_res *res)
6243 struct compound_hdr hdr;
6246 status = decode_compound_hdr(xdr, &hdr);
6249 status = decode_sequence(xdr, &res->seq_res, rqstp);
6252 status = decode_putfh(xdr);
6255 status = decode_create(xdr, &res->dir_cinfo);
6258 status = decode_getfh(xdr, res->fh);
6261 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
6267 * Decode SYMLINK response
6269 static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6270 struct nfs4_create_res *res)
6272 return nfs4_xdr_dec_create(rqstp, xdr, res);
6276 * Decode GETATTR response
6278 static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6279 struct nfs4_getattr_res *res)
6281 struct compound_hdr hdr;
6284 status = decode_compound_hdr(xdr, &hdr);
6287 status = decode_sequence(xdr, &res->seq_res, rqstp);
6290 status = decode_putfh(xdr);
6293 status = decode_getfattr_label(xdr, res->fattr, res->label, res->server);
6299 * Encode an SETACL request
6301 static void nfs4_xdr_enc_setacl(struct rpc_rqst *req, struct xdr_stream *xdr,
6302 struct nfs_setaclargs *args)
6304 struct compound_hdr hdr = {
6305 .minorversion = nfs4_xdr_minorversion(&args->seq_args),
6308 encode_compound_hdr(xdr, req, &hdr);
6309 encode_sequence(xdr, &args->seq_args, &hdr);
6310 encode_putfh(xdr, args->fh, &hdr);
6311 encode_setacl(xdr, args, &hdr);
6316 * Decode SETACL response
6319 nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6320 struct nfs_setaclres *res)
6322 struct compound_hdr hdr;
6325 status = decode_compound_hdr(xdr, &hdr);
6328 status = decode_sequence(xdr, &res->seq_res, rqstp);
6331 status = decode_putfh(xdr);
6334 status = decode_setattr(xdr);
6340 * Decode GETACL response
6343 nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6344 struct nfs_getaclres *res)
6346 struct compound_hdr hdr;
6349 if (res->acl_scratch != NULL) {
6350 void *p = page_address(res->acl_scratch);
6351 xdr_set_scratch_buffer(xdr, p, PAGE_SIZE);
6353 status = decode_compound_hdr(xdr, &hdr);
6356 status = decode_sequence(xdr, &res->seq_res, rqstp);
6359 status = decode_putfh(xdr);
6362 status = decode_getacl(xdr, rqstp, res);
6369 * Decode CLOSE response
6371 static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6372 struct nfs_closeres *res)
6374 struct compound_hdr hdr;
6377 status = decode_compound_hdr(xdr, &hdr);
6380 status = decode_sequence(xdr, &res->seq_res, rqstp);
6383 status = decode_putfh(xdr);
6386 status = decode_close(xdr, res);
6390 * Note: Server may do delete on close for this file
6391 * in which case the getattr call will fail with
6392 * an ESTALE error. Shouldn't be a problem,
6393 * though, since fattr->valid will remain unset.
6395 decode_getfattr(xdr, res->fattr, res->server);
6401 * Decode OPEN response
6403 static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6404 struct nfs_openres *res)
6406 struct compound_hdr hdr;
6409 status = decode_compound_hdr(xdr, &hdr);
6412 status = decode_sequence(xdr, &res->seq_res, rqstp);
6415 status = decode_putfh(xdr);
6418 status = decode_open(xdr, res);
6421 status = decode_getfh(xdr, &res->fh);
6424 if (res->access_request)
6425 decode_access(xdr, &res->access_supported, &res->access_result);
6426 decode_getfattr_label(xdr, res->f_attr, res->f_label, res->server);
6432 * Decode OPEN_CONFIRM response
6434 static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp,
6435 struct xdr_stream *xdr,
6436 struct nfs_open_confirmres *res)
6438 struct compound_hdr hdr;
6441 status = decode_compound_hdr(xdr, &hdr);
6444 status = decode_putfh(xdr);
6447 status = decode_open_confirm(xdr, res);
6453 * Decode OPEN response
6455 static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp,
6456 struct xdr_stream *xdr,
6457 struct nfs_openres *res)
6459 struct compound_hdr hdr;
6462 status = decode_compound_hdr(xdr, &hdr);
6465 status = decode_sequence(xdr, &res->seq_res, rqstp);
6468 status = decode_putfh(xdr);
6471 status = decode_open(xdr, res);
6474 if (res->access_request)
6475 decode_access(xdr, &res->access_supported, &res->access_result);
6476 decode_getfattr(xdr, res->f_attr, res->server);
6482 * Decode SETATTR response
6484 static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp,
6485 struct xdr_stream *xdr,
6486 struct nfs_setattrres *res)
6488 struct compound_hdr hdr;
6491 status = decode_compound_hdr(xdr, &hdr);
6494 status = decode_sequence(xdr, &res->seq_res, rqstp);
6497 status = decode_putfh(xdr);
6500 status = decode_setattr(xdr);
6503 decode_getfattr_label(xdr, res->fattr, res->label, res->server);
6509 * Decode LOCK response
6511 static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6512 struct nfs_lock_res *res)
6514 struct compound_hdr hdr;
6517 status = decode_compound_hdr(xdr, &hdr);
6520 status = decode_sequence(xdr, &res->seq_res, rqstp);
6523 status = decode_putfh(xdr);
6526 status = decode_lock(xdr, res);
6532 * Decode LOCKT response
6534 static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6535 struct nfs_lockt_res *res)
6537 struct compound_hdr hdr;
6540 status = decode_compound_hdr(xdr, &hdr);
6543 status = decode_sequence(xdr, &res->seq_res, rqstp);
6546 status = decode_putfh(xdr);
6549 status = decode_lockt(xdr, res);
6555 * Decode LOCKU response
6557 static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6558 struct nfs_locku_res *res)
6560 struct compound_hdr hdr;
6563 status = decode_compound_hdr(xdr, &hdr);
6566 status = decode_sequence(xdr, &res->seq_res, rqstp);
6569 status = decode_putfh(xdr);
6572 status = decode_locku(xdr, res);
6577 static int nfs4_xdr_dec_release_lockowner(struct rpc_rqst *rqstp,
6578 struct xdr_stream *xdr, void *dummy)
6580 struct compound_hdr hdr;
6583 status = decode_compound_hdr(xdr, &hdr);
6585 status = decode_release_lockowner(xdr);
6590 * Decode READLINK response
6592 static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp,
6593 struct xdr_stream *xdr,
6594 struct nfs4_readlink_res *res)
6596 struct compound_hdr hdr;
6599 status = decode_compound_hdr(xdr, &hdr);
6602 status = decode_sequence(xdr, &res->seq_res, rqstp);
6605 status = decode_putfh(xdr);
6608 status = decode_readlink(xdr, rqstp);
6614 * Decode READDIR response
6616 static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6617 struct nfs4_readdir_res *res)
6619 struct compound_hdr hdr;
6622 status = decode_compound_hdr(xdr, &hdr);
6625 status = decode_sequence(xdr, &res->seq_res, rqstp);
6628 status = decode_putfh(xdr);
6631 status = decode_readdir(xdr, rqstp, res);
6637 * Decode Read response
6639 static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6640 struct nfs_readres *res)
6642 struct compound_hdr hdr;
6645 status = decode_compound_hdr(xdr, &hdr);
6648 status = decode_sequence(xdr, &res->seq_res, rqstp);
6651 status = decode_putfh(xdr);
6654 status = decode_read(xdr, rqstp, res);
6656 status = res->count;
6662 * Decode WRITE response
6664 static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6665 struct nfs_writeres *res)
6667 struct compound_hdr hdr;
6670 status = decode_compound_hdr(xdr, &hdr);
6673 status = decode_sequence(xdr, &res->seq_res, rqstp);
6676 status = decode_putfh(xdr);
6679 status = decode_write(xdr, res);
6683 decode_getfattr(xdr, res->fattr, res->server);
6685 status = res->count;
6691 * Decode COMMIT response
6693 static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6694 struct nfs_commitres *res)
6696 struct compound_hdr hdr;
6699 status = decode_compound_hdr(xdr, &hdr);
6702 status = decode_sequence(xdr, &res->seq_res, rqstp);
6705 status = decode_putfh(xdr);
6708 status = decode_commit(xdr, res);
6714 * Decode FSINFO response
6716 static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, struct xdr_stream *xdr,
6717 struct nfs4_fsinfo_res *res)
6719 struct compound_hdr hdr;
6722 status = decode_compound_hdr(xdr, &hdr);
6724 status = decode_sequence(xdr, &res->seq_res, req);
6726 status = decode_putfh(xdr);
6728 status = decode_fsinfo(xdr, res->fsinfo);
6733 * Decode PATHCONF response
6735 static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, struct xdr_stream *xdr,
6736 struct nfs4_pathconf_res *res)
6738 struct compound_hdr hdr;
6741 status = decode_compound_hdr(xdr, &hdr);
6743 status = decode_sequence(xdr, &res->seq_res, req);
6745 status = decode_putfh(xdr);
6747 status = decode_pathconf(xdr, res->pathconf);
6752 * Decode STATFS response
6754 static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, struct xdr_stream *xdr,
6755 struct nfs4_statfs_res *res)
6757 struct compound_hdr hdr;
6760 status = decode_compound_hdr(xdr, &hdr);
6762 status = decode_sequence(xdr, &res->seq_res, req);
6764 status = decode_putfh(xdr);
6766 status = decode_statfs(xdr, res->fsstat);
6771 * Decode GETATTR_BITMAP response
6773 static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req,
6774 struct xdr_stream *xdr,
6775 struct nfs4_server_caps_res *res)
6777 struct compound_hdr hdr;
6780 status = decode_compound_hdr(xdr, &hdr);
6783 status = decode_sequence(xdr, &res->seq_res, req);
6786 status = decode_putfh(xdr);
6789 status = decode_server_caps(xdr, res);
6795 * Decode RENEW response
6797 static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
6800 struct compound_hdr hdr;
6803 status = decode_compound_hdr(xdr, &hdr);
6805 status = decode_renew(xdr);
6810 * Decode SETCLIENTID response
6812 static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req,
6813 struct xdr_stream *xdr,
6814 struct nfs4_setclientid_res *res)
6816 struct compound_hdr hdr;
6819 status = decode_compound_hdr(xdr, &hdr);
6821 status = decode_setclientid(xdr, res);
6826 * Decode SETCLIENTID_CONFIRM response
6828 static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req,
6829 struct xdr_stream *xdr)
6831 struct compound_hdr hdr;
6834 status = decode_compound_hdr(xdr, &hdr);
6836 status = decode_setclientid_confirm(xdr);
6841 * Decode DELEGRETURN response
6843 static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp,
6844 struct xdr_stream *xdr,
6845 struct nfs4_delegreturnres *res)
6847 struct compound_hdr hdr;
6850 status = decode_compound_hdr(xdr, &hdr);
6853 status = decode_sequence(xdr, &res->seq_res, rqstp);
6856 status = decode_putfh(xdr);
6859 status = decode_getfattr(xdr, res->fattr, res->server);
6862 status = decode_delegreturn(xdr);
6868 * Decode FS_LOCATIONS response
6870 static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req,
6871 struct xdr_stream *xdr,
6872 struct nfs4_fs_locations_res *res)
6874 struct compound_hdr hdr;
6877 status = decode_compound_hdr(xdr, &hdr);
6880 status = decode_sequence(xdr, &res->seq_res, req);
6883 status = decode_putfh(xdr);
6886 if (res->migration) {
6887 xdr_enter_page(xdr, PAGE_SIZE);
6888 status = decode_getfattr_generic(xdr,
6889 &res->fs_locations->fattr,
6890 NULL, res->fs_locations,
6891 NULL, res->fs_locations->server);
6895 status = decode_renew(xdr);
6897 status = decode_lookup(xdr);
6900 xdr_enter_page(xdr, PAGE_SIZE);
6901 status = decode_getfattr_generic(xdr,
6902 &res->fs_locations->fattr,
6903 NULL, res->fs_locations,
6904 NULL, res->fs_locations->server);
6911 * Decode SECINFO response
6913 static int nfs4_xdr_dec_secinfo(struct rpc_rqst *rqstp,
6914 struct xdr_stream *xdr,
6915 struct nfs4_secinfo_res *res)
6917 struct compound_hdr hdr;
6920 status = decode_compound_hdr(xdr, &hdr);
6923 status = decode_sequence(xdr, &res->seq_res, rqstp);
6926 status = decode_putfh(xdr);
6929 status = decode_secinfo(xdr, res);
6935 * Decode FSID_PRESENT response
6937 static int nfs4_xdr_dec_fsid_present(struct rpc_rqst *rqstp,
6938 struct xdr_stream *xdr,
6939 struct nfs4_fsid_present_res *res)
6941 struct compound_hdr hdr;
6944 status = decode_compound_hdr(xdr, &hdr);
6947 status = decode_sequence(xdr, &res->seq_res, rqstp);
6950 status = decode_putfh(xdr);
6953 status = decode_getfh(xdr, res->fh);
6957 status = decode_renew(xdr);
6962 #if defined(CONFIG_NFS_V4_1)
6964 * Decode BIND_CONN_TO_SESSION response
6966 static int nfs4_xdr_dec_bind_conn_to_session(struct rpc_rqst *rqstp,
6967 struct xdr_stream *xdr,
6970 struct compound_hdr hdr;
6973 status = decode_compound_hdr(xdr, &hdr);
6975 status = decode_bind_conn_to_session(xdr, res);
6980 * Decode EXCHANGE_ID response
6982 static int nfs4_xdr_dec_exchange_id(struct rpc_rqst *rqstp,
6983 struct xdr_stream *xdr,
6986 struct compound_hdr hdr;
6989 status = decode_compound_hdr(xdr, &hdr);
6991 status = decode_exchange_id(xdr, res);
6996 * Decode CREATE_SESSION response
6998 static int nfs4_xdr_dec_create_session(struct rpc_rqst *rqstp,
6999 struct xdr_stream *xdr,
7000 struct nfs41_create_session_res *res)
7002 struct compound_hdr hdr;
7005 status = decode_compound_hdr(xdr, &hdr);
7007 status = decode_create_session(xdr, res);
7012 * Decode DESTROY_SESSION response
7014 static int nfs4_xdr_dec_destroy_session(struct rpc_rqst *rqstp,
7015 struct xdr_stream *xdr,
7018 struct compound_hdr hdr;
7021 status = decode_compound_hdr(xdr, &hdr);
7023 status = decode_destroy_session(xdr, res);
7028 * Decode DESTROY_CLIENTID response
7030 static int nfs4_xdr_dec_destroy_clientid(struct rpc_rqst *rqstp,
7031 struct xdr_stream *xdr,
7034 struct compound_hdr hdr;
7037 status = decode_compound_hdr(xdr, &hdr);
7039 status = decode_destroy_clientid(xdr, res);
7044 * Decode SEQUENCE response
7046 static int nfs4_xdr_dec_sequence(struct rpc_rqst *rqstp,
7047 struct xdr_stream *xdr,
7048 struct nfs4_sequence_res *res)
7050 struct compound_hdr hdr;
7053 status = decode_compound_hdr(xdr, &hdr);
7055 status = decode_sequence(xdr, res, rqstp);
7060 * Decode GET_LEASE_TIME response
7062 static int nfs4_xdr_dec_get_lease_time(struct rpc_rqst *rqstp,
7063 struct xdr_stream *xdr,
7064 struct nfs4_get_lease_time_res *res)
7066 struct compound_hdr hdr;
7069 status = decode_compound_hdr(xdr, &hdr);
7071 status = decode_sequence(xdr, &res->lr_seq_res, rqstp);
7073 status = decode_putrootfh(xdr);
7075 status = decode_fsinfo(xdr, res->lr_fsinfo);
7080 * Decode RECLAIM_COMPLETE response
7082 static int nfs4_xdr_dec_reclaim_complete(struct rpc_rqst *rqstp,
7083 struct xdr_stream *xdr,
7084 struct nfs41_reclaim_complete_res *res)
7086 struct compound_hdr hdr;
7089 status = decode_compound_hdr(xdr, &hdr);
7091 status = decode_sequence(xdr, &res->seq_res, rqstp);
7093 status = decode_reclaim_complete(xdr, (void *)NULL);
7098 * Decode GETDEVICELIST response
7100 static int nfs4_xdr_dec_getdevicelist(struct rpc_rqst *rqstp,
7101 struct xdr_stream *xdr,
7102 struct nfs4_getdevicelist_res *res)
7104 struct compound_hdr hdr;
7107 dprintk("encoding getdevicelist!\n");
7109 status = decode_compound_hdr(xdr, &hdr);
7112 status = decode_sequence(xdr, &res->seq_res, rqstp);
7115 status = decode_putfh(xdr);
7118 status = decode_getdevicelist(xdr, res->devlist);
7124 * Decode GETDEVINFO response
7126 static int nfs4_xdr_dec_getdeviceinfo(struct rpc_rqst *rqstp,
7127 struct xdr_stream *xdr,
7128 struct nfs4_getdeviceinfo_res *res)
7130 struct compound_hdr hdr;
7133 status = decode_compound_hdr(xdr, &hdr);
7136 status = decode_sequence(xdr, &res->seq_res, rqstp);
7139 status = decode_getdeviceinfo(xdr, res->pdev);
7145 * Decode LAYOUTGET response
7147 static int nfs4_xdr_dec_layoutget(struct rpc_rqst *rqstp,
7148 struct xdr_stream *xdr,
7149 struct nfs4_layoutget_res *res)
7151 struct compound_hdr hdr;
7154 status = decode_compound_hdr(xdr, &hdr);
7157 status = decode_sequence(xdr, &res->seq_res, rqstp);
7160 status = decode_putfh(xdr);
7163 status = decode_layoutget(xdr, rqstp, res);
7169 * Decode LAYOUTRETURN response
7171 static int nfs4_xdr_dec_layoutreturn(struct rpc_rqst *rqstp,
7172 struct xdr_stream *xdr,
7173 struct nfs4_layoutreturn_res *res)
7175 struct compound_hdr hdr;
7178 status = decode_compound_hdr(xdr, &hdr);
7181 status = decode_sequence(xdr, &res->seq_res, rqstp);
7184 status = decode_putfh(xdr);
7187 status = decode_layoutreturn(xdr, res);
7193 * Decode LAYOUTCOMMIT response
7195 static int nfs4_xdr_dec_layoutcommit(struct rpc_rqst *rqstp,
7196 struct xdr_stream *xdr,
7197 struct nfs4_layoutcommit_res *res)
7199 struct compound_hdr hdr;
7202 status = decode_compound_hdr(xdr, &hdr);
7205 status = decode_sequence(xdr, &res->seq_res, rqstp);
7208 status = decode_putfh(xdr);
7211 status = decode_layoutcommit(xdr, rqstp, res);
7214 decode_getfattr(xdr, res->fattr, res->server);
7220 * Decode SECINFO_NO_NAME response
7222 static int nfs4_xdr_dec_secinfo_no_name(struct rpc_rqst *rqstp,
7223 struct xdr_stream *xdr,
7224 struct nfs4_secinfo_res *res)
7226 struct compound_hdr hdr;
7229 status = decode_compound_hdr(xdr, &hdr);
7232 status = decode_sequence(xdr, &res->seq_res, rqstp);
7235 status = decode_putrootfh(xdr);
7238 status = decode_secinfo_no_name(xdr, res);
7244 * Decode TEST_STATEID response
7246 static int nfs4_xdr_dec_test_stateid(struct rpc_rqst *rqstp,
7247 struct xdr_stream *xdr,
7248 struct nfs41_test_stateid_res *res)
7250 struct compound_hdr hdr;
7253 status = decode_compound_hdr(xdr, &hdr);
7256 status = decode_sequence(xdr, &res->seq_res, rqstp);
7259 status = decode_test_stateid(xdr, res);
7265 * Decode FREE_STATEID response
7267 static int nfs4_xdr_dec_free_stateid(struct rpc_rqst *rqstp,
7268 struct xdr_stream *xdr,
7269 struct nfs41_free_stateid_res *res)
7271 struct compound_hdr hdr;
7274 status = decode_compound_hdr(xdr, &hdr);
7277 status = decode_sequence(xdr, &res->seq_res, rqstp);
7280 status = decode_free_stateid(xdr, res);
7284 #endif /* CONFIG_NFS_V4_1 */
7287 * nfs4_decode_dirent - Decode a single NFSv4 directory entry stored in
7288 * the local page cache.
7289 * @xdr: XDR stream where entry resides
7290 * @entry: buffer to fill in with entry data
7291 * @plus: boolean indicating whether this should be a readdirplus entry
7293 * Returns zero if successful, otherwise a negative errno value is
7296 * This function is not invoked during READDIR reply decoding, but
7297 * rather whenever an application invokes the getdents(2) system call
7298 * on a directory already in our cache.
7300 int nfs4_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
7304 uint32_t bitmap[3] = {0};
7306 __be32 *p = xdr_inline_decode(xdr, 4);
7309 if (*p == xdr_zero) {
7310 p = xdr_inline_decode(xdr, 4);
7319 p = xdr_inline_decode(xdr, 12);
7322 entry->prev_cookie = entry->cookie;
7323 p = xdr_decode_hyper(p, &entry->cookie);
7324 entry->len = be32_to_cpup(p);
7326 p = xdr_inline_decode(xdr, entry->len);
7329 entry->name = (const char *) p;
7332 * In case the server doesn't return an inode number,
7333 * we fake one here. (We don't use inode number 0,
7334 * since glibc seems to choke on it...)
7337 entry->fattr->valid = 0;
7339 if (decode_attr_bitmap(xdr, bitmap) < 0)
7342 if (decode_attr_length(xdr, &len, &savep) < 0)
7345 if (decode_getfattr_attrs(xdr, bitmap, entry->fattr, entry->fh,
7346 NULL, entry->label, entry->server) < 0)
7348 if (entry->fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID)
7349 entry->ino = entry->fattr->mounted_on_fileid;
7350 else if (entry->fattr->valid & NFS_ATTR_FATTR_FILEID)
7351 entry->ino = entry->fattr->fileid;
7353 entry->d_type = DT_UNKNOWN;
7354 if (entry->fattr->valid & NFS_ATTR_FATTR_TYPE)
7355 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
7360 print_overflow_msg(__func__, xdr);
7365 * We need to translate between nfs status return values and
7366 * the local errno values which may not be the same.
7373 { NFS4ERR_PERM, -EPERM },
7374 { NFS4ERR_NOENT, -ENOENT },
7375 { NFS4ERR_IO, -errno_NFSERR_IO},
7376 { NFS4ERR_NXIO, -ENXIO },
7377 { NFS4ERR_ACCESS, -EACCES },
7378 { NFS4ERR_EXIST, -EEXIST },
7379 { NFS4ERR_XDEV, -EXDEV },
7380 { NFS4ERR_NOTDIR, -ENOTDIR },
7381 { NFS4ERR_ISDIR, -EISDIR },
7382 { NFS4ERR_INVAL, -EINVAL },
7383 { NFS4ERR_FBIG, -EFBIG },
7384 { NFS4ERR_NOSPC, -ENOSPC },
7385 { NFS4ERR_ROFS, -EROFS },
7386 { NFS4ERR_MLINK, -EMLINK },
7387 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
7388 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
7389 { NFS4ERR_DQUOT, -EDQUOT },
7390 { NFS4ERR_STALE, -ESTALE },
7391 { NFS4ERR_BADHANDLE, -EBADHANDLE },
7392 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
7393 { NFS4ERR_NOTSUPP, -ENOTSUPP },
7394 { NFS4ERR_TOOSMALL, -ETOOSMALL },
7395 { NFS4ERR_SERVERFAULT, -EREMOTEIO },
7396 { NFS4ERR_BADTYPE, -EBADTYPE },
7397 { NFS4ERR_LOCKED, -EAGAIN },
7398 { NFS4ERR_SYMLINK, -ELOOP },
7399 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
7400 { NFS4ERR_DEADLOCK, -EDEADLK },
7405 * Convert an NFS error code to a local one.
7406 * This one is used jointly by NFSv2 and NFSv3.
7409 nfs4_stat_to_errno(int stat)
7412 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
7413 if (nfs_errtbl[i].stat == stat)
7414 return nfs_errtbl[i].errno;
7416 if (stat <= 10000 || stat > 10100) {
7417 /* The server is looney tunes. */
7420 /* If we cannot translate the error, the recovery routines should
7422 * Note: remaining NFSv4 error codes have values > 10000, so should
7423 * not conflict with native Linux error codes.
7428 #define PROC(proc, argtype, restype) \
7429 [NFSPROC4_CLNT_##proc] = { \
7430 .p_proc = NFSPROC4_COMPOUND, \
7431 .p_encode = (kxdreproc_t)nfs4_xdr_##argtype, \
7432 .p_decode = (kxdrdproc_t)nfs4_xdr_##restype, \
7433 .p_arglen = NFS4_##argtype##_sz, \
7434 .p_replen = NFS4_##restype##_sz, \
7435 .p_statidx = NFSPROC4_CLNT_##proc, \
7439 struct rpc_procinfo nfs4_procedures[] = {
7440 PROC(READ, enc_read, dec_read),
7441 PROC(WRITE, enc_write, dec_write),
7442 PROC(COMMIT, enc_commit, dec_commit),
7443 PROC(OPEN, enc_open, dec_open),
7444 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
7445 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
7446 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
7447 PROC(CLOSE, enc_close, dec_close),
7448 PROC(SETATTR, enc_setattr, dec_setattr),
7449 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
7450 PROC(RENEW, enc_renew, dec_renew),
7451 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
7452 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
7453 PROC(LOCK, enc_lock, dec_lock),
7454 PROC(LOCKT, enc_lockt, dec_lockt),
7455 PROC(LOCKU, enc_locku, dec_locku),
7456 PROC(ACCESS, enc_access, dec_access),
7457 PROC(GETATTR, enc_getattr, dec_getattr),
7458 PROC(LOOKUP, enc_lookup, dec_lookup),
7459 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
7460 PROC(REMOVE, enc_remove, dec_remove),
7461 PROC(RENAME, enc_rename, dec_rename),
7462 PROC(LINK, enc_link, dec_link),
7463 PROC(SYMLINK, enc_symlink, dec_symlink),
7464 PROC(CREATE, enc_create, dec_create),
7465 PROC(PATHCONF, enc_pathconf, dec_pathconf),
7466 PROC(STATFS, enc_statfs, dec_statfs),
7467 PROC(READLINK, enc_readlink, dec_readlink),
7468 PROC(READDIR, enc_readdir, dec_readdir),
7469 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
7470 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
7471 PROC(GETACL, enc_getacl, dec_getacl),
7472 PROC(SETACL, enc_setacl, dec_setacl),
7473 PROC(FS_LOCATIONS, enc_fs_locations, dec_fs_locations),
7474 PROC(RELEASE_LOCKOWNER, enc_release_lockowner, dec_release_lockowner),
7475 PROC(SECINFO, enc_secinfo, dec_secinfo),
7476 PROC(FSID_PRESENT, enc_fsid_present, dec_fsid_present),
7477 #if defined(CONFIG_NFS_V4_1)
7478 PROC(EXCHANGE_ID, enc_exchange_id, dec_exchange_id),
7479 PROC(CREATE_SESSION, enc_create_session, dec_create_session),
7480 PROC(DESTROY_SESSION, enc_destroy_session, dec_destroy_session),
7481 PROC(SEQUENCE, enc_sequence, dec_sequence),
7482 PROC(GET_LEASE_TIME, enc_get_lease_time, dec_get_lease_time),
7483 PROC(RECLAIM_COMPLETE, enc_reclaim_complete, dec_reclaim_complete),
7484 PROC(GETDEVICEINFO, enc_getdeviceinfo, dec_getdeviceinfo),
7485 PROC(LAYOUTGET, enc_layoutget, dec_layoutget),
7486 PROC(LAYOUTCOMMIT, enc_layoutcommit, dec_layoutcommit),
7487 PROC(LAYOUTRETURN, enc_layoutreturn, dec_layoutreturn),
7488 PROC(SECINFO_NO_NAME, enc_secinfo_no_name, dec_secinfo_no_name),
7489 PROC(TEST_STATEID, enc_test_stateid, dec_test_stateid),
7490 PROC(FREE_STATEID, enc_free_stateid, dec_free_stateid),
7491 PROC(GETDEVICELIST, enc_getdevicelist, dec_getdevicelist),
7492 PROC(BIND_CONN_TO_SESSION,
7493 enc_bind_conn_to_session, dec_bind_conn_to_session),
7494 PROC(DESTROY_CLIENTID, enc_destroy_clientid, dec_destroy_clientid),
7495 #endif /* CONFIG_NFS_V4_1 */
7498 const struct rpc_version nfs_version4 = {
7500 .nrprocs = ARRAY_SIZE(nfs4_procedures),
7501 .procs = nfs4_procedures