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/slab.h>
42 #include <linux/utsname.h>
43 #include <linux/errno.h>
44 #include <linux/string.h>
46 #include <linux/pagemap.h>
47 #include <linux/proc_fs.h>
48 #include <linux/kdev_t.h>
49 #include <linux/sunrpc/clnt.h>
50 #include <linux/nfs.h>
51 #include <linux/nfs4.h>
52 #include <linux/nfs_fs.h>
53 #include <linux/nfs_idmap.h>
56 #define NFSDBG_FACILITY NFSDBG_XDR
58 /* Mapping from NFS error code to "errno" error code. */
59 #define errno_NFSERR_IO EIO
61 static int nfs_stat_to_errno(int);
63 /* NFSv4 COMPOUND tags are only wanted for debugging purposes */
65 #define NFS4_MAXTAGLEN 20
67 #define NFS4_MAXTAGLEN 0
70 /* lock,open owner id:
71 * we currently use size 1 (u32) out of (NFS4_OPAQUE_LIMIT >> 2)
73 #define owner_id_maxsz (1 + 1)
74 #define compound_encode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
75 #define compound_decode_hdr_maxsz (3 + (NFS4_MAXTAGLEN >> 2))
76 #define op_encode_hdr_maxsz (1)
77 #define op_decode_hdr_maxsz (2)
78 #define encode_putfh_maxsz (op_encode_hdr_maxsz + 1 + \
80 #define decode_putfh_maxsz (op_decode_hdr_maxsz)
81 #define encode_putrootfh_maxsz (op_encode_hdr_maxsz)
82 #define decode_putrootfh_maxsz (op_decode_hdr_maxsz)
83 #define encode_getfh_maxsz (op_encode_hdr_maxsz)
84 #define decode_getfh_maxsz (op_decode_hdr_maxsz + 1 + \
85 ((3+NFS4_FHSIZE) >> 2))
86 #define nfs4_fattr_bitmap_maxsz 3
87 #define encode_getattr_maxsz (op_encode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
88 #define nfs4_name_maxsz (1 + ((3 + NFS4_MAXNAMLEN) >> 2))
89 #define nfs4_path_maxsz (1 + ((3 + NFS4_MAXPATHLEN) >> 2))
90 /* This is based on getfattr, which uses the most attributes: */
91 #define nfs4_fattr_value_maxsz (1 + (1 + 2 + 2 + 4 + 2 + 1 + 1 + 2 + 2 + \
92 3 + 3 + 3 + 2 * nfs4_name_maxsz))
93 #define nfs4_fattr_maxsz (nfs4_fattr_bitmap_maxsz + \
94 nfs4_fattr_value_maxsz)
95 #define decode_getattr_maxsz (op_decode_hdr_maxsz + nfs4_fattr_maxsz)
96 #define encode_savefh_maxsz (op_encode_hdr_maxsz)
97 #define decode_savefh_maxsz (op_decode_hdr_maxsz)
98 #define encode_restorefh_maxsz (op_encode_hdr_maxsz)
99 #define decode_restorefh_maxsz (op_decode_hdr_maxsz)
100 #define encode_fsinfo_maxsz (op_encode_hdr_maxsz + 2)
101 #define decode_fsinfo_maxsz (op_decode_hdr_maxsz + 11)
102 #define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
103 #define decode_renew_maxsz (op_decode_hdr_maxsz)
104 #define encode_setclientid_maxsz \
105 (op_encode_hdr_maxsz + \
106 4 /*server->ip_addr*/ + \
109 6 + (NFS4_VERIFIER_SIZE >> 2))
110 #define decode_setclientid_maxsz \
111 (op_decode_hdr_maxsz + \
113 1024) /* large value for CLID_INUSE */
114 #define encode_setclientid_confirm_maxsz \
115 (op_encode_hdr_maxsz + \
116 3 + (NFS4_VERIFIER_SIZE >> 2))
117 #define decode_setclientid_confirm_maxsz \
118 (op_decode_hdr_maxsz)
119 #define encode_lookup_maxsz (op_encode_hdr_maxsz + \
120 1 + ((3 + NFS4_FHSIZE) >> 2))
121 #define encode_remove_maxsz (op_encode_hdr_maxsz + \
123 #define encode_rename_maxsz (op_encode_hdr_maxsz + \
125 #define decode_rename_maxsz (op_decode_hdr_maxsz + 5 + 5)
126 #define encode_link_maxsz (op_encode_hdr_maxsz + \
128 #define decode_link_maxsz (op_decode_hdr_maxsz + 5)
129 #define encode_symlink_maxsz (op_encode_hdr_maxsz + \
130 1 + nfs4_name_maxsz + \
133 #define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
134 #define encode_create_maxsz (op_encode_hdr_maxsz + \
135 2 + nfs4_name_maxsz + \
137 #define decode_create_maxsz (op_decode_hdr_maxsz + 8)
138 #define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
139 #define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
140 #define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
141 #define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
142 #define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
143 encode_putfh_maxsz + \
144 op_encode_hdr_maxsz + 7)
145 #define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
146 decode_putfh_maxsz + \
147 op_decode_hdr_maxsz + 2)
148 #define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
149 encode_putfh_maxsz + \
151 #define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
152 decode_putfh_maxsz + \
154 #define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
155 encode_putfh_maxsz + \
156 op_encode_hdr_maxsz + 9)
157 #define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
158 decode_putfh_maxsz + \
159 op_decode_hdr_maxsz + 2)
160 #define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
161 encode_putfh_maxsz + \
162 op_encode_hdr_maxsz + 8 + \
163 encode_getattr_maxsz)
164 #define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
165 decode_putfh_maxsz + \
166 op_decode_hdr_maxsz + 4 + \
167 decode_getattr_maxsz)
168 #define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
169 encode_putfh_maxsz + \
170 op_encode_hdr_maxsz + 3 + \
171 encode_getattr_maxsz)
172 #define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
173 decode_putfh_maxsz + \
174 op_decode_hdr_maxsz + 2 + \
175 decode_getattr_maxsz)
176 #define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
177 encode_putfh_maxsz + \
178 op_encode_hdr_maxsz + \
180 encode_getattr_maxsz + \
182 #define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
183 decode_putfh_maxsz + \
184 op_decode_hdr_maxsz + 4 + 5 + 2 + 3 + \
185 decode_getattr_maxsz + \
187 #define NFS4_enc_open_confirm_sz \
188 (compound_encode_hdr_maxsz + \
189 encode_putfh_maxsz + \
190 op_encode_hdr_maxsz + 5)
191 #define NFS4_dec_open_confirm_sz (compound_decode_hdr_maxsz + \
192 decode_putfh_maxsz + \
193 op_decode_hdr_maxsz + 4)
194 #define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
195 encode_putfh_maxsz + \
196 op_encode_hdr_maxsz + \
198 #define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
199 decode_putfh_maxsz + \
200 op_decode_hdr_maxsz + \
202 #define NFS4_enc_open_downgrade_sz \
203 (compound_encode_hdr_maxsz + \
204 encode_putfh_maxsz + \
205 op_encode_hdr_maxsz + 7 + \
206 encode_getattr_maxsz)
207 #define NFS4_dec_open_downgrade_sz \
208 (compound_decode_hdr_maxsz + \
209 decode_putfh_maxsz + \
210 op_decode_hdr_maxsz + 4 + \
211 decode_getattr_maxsz)
212 #define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
213 encode_putfh_maxsz + \
214 op_encode_hdr_maxsz + 5 + \
215 encode_getattr_maxsz)
216 #define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
217 decode_putfh_maxsz + \
218 op_decode_hdr_maxsz + 4 + \
219 decode_getattr_maxsz)
220 #define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
221 encode_putfh_maxsz + \
222 op_encode_hdr_maxsz + 4 + \
224 encode_getattr_maxsz)
225 #define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
226 decode_putfh_maxsz + \
227 op_decode_hdr_maxsz + 3)
228 #define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
229 encode_putfh_maxsz + \
231 #define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
232 decode_putfh_maxsz + \
234 #define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
236 #define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
238 #define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
239 encode_setclientid_maxsz)
240 #define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
241 decode_setclientid_maxsz)
242 #define NFS4_enc_setclientid_confirm_sz \
243 (compound_encode_hdr_maxsz + \
244 encode_setclientid_confirm_maxsz + \
245 encode_putrootfh_maxsz + \
247 #define NFS4_dec_setclientid_confirm_sz \
248 (compound_decode_hdr_maxsz + \
249 decode_setclientid_confirm_maxsz + \
250 decode_putrootfh_maxsz + \
252 #define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
253 encode_putfh_maxsz + \
254 encode_getattr_maxsz + \
255 op_encode_hdr_maxsz + \
259 #define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
260 decode_putfh_maxsz + \
261 decode_getattr_maxsz + \
262 op_decode_hdr_maxsz + \
265 #define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
266 encode_putfh_maxsz + \
267 encode_getattr_maxsz + \
268 op_encode_hdr_maxsz + \
271 #define NFS4_dec_lockt_sz (NFS4_dec_lock_sz)
272 #define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
273 encode_putfh_maxsz + \
274 encode_getattr_maxsz + \
275 op_encode_hdr_maxsz + \
277 #define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
278 decode_putfh_maxsz + \
279 decode_getattr_maxsz + \
280 op_decode_hdr_maxsz + 4)
281 #define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
282 encode_putfh_maxsz + \
283 op_encode_hdr_maxsz + 1)
284 #define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
285 decode_putfh_maxsz + \
286 op_decode_hdr_maxsz + 2)
287 #define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
288 encode_putfh_maxsz + \
289 encode_getattr_maxsz)
290 #define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
291 decode_putfh_maxsz + \
292 decode_getattr_maxsz)
293 #define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
294 encode_putfh_maxsz + \
295 encode_lookup_maxsz + \
296 encode_getattr_maxsz + \
298 #define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
299 decode_putfh_maxsz + \
300 op_decode_hdr_maxsz + \
301 decode_getattr_maxsz + \
303 #define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
304 encode_putrootfh_maxsz + \
305 encode_getattr_maxsz + \
307 #define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
308 decode_putrootfh_maxsz + \
309 decode_getattr_maxsz + \
311 #define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
312 encode_putfh_maxsz + \
313 encode_remove_maxsz + \
314 encode_getattr_maxsz)
315 #define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
316 decode_putfh_maxsz + \
317 op_decode_hdr_maxsz + 5 + \
318 decode_getattr_maxsz)
319 #define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
320 encode_putfh_maxsz + \
321 encode_savefh_maxsz + \
322 encode_putfh_maxsz + \
323 encode_rename_maxsz + \
324 encode_getattr_maxsz + \
325 encode_restorefh_maxsz + \
326 encode_getattr_maxsz)
327 #define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
328 decode_putfh_maxsz + \
329 decode_savefh_maxsz + \
330 decode_putfh_maxsz + \
331 decode_rename_maxsz + \
332 decode_getattr_maxsz + \
333 decode_restorefh_maxsz + \
334 decode_getattr_maxsz)
335 #define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
336 encode_putfh_maxsz + \
337 encode_savefh_maxsz + \
338 encode_putfh_maxsz + \
339 encode_link_maxsz + \
340 decode_getattr_maxsz + \
341 encode_restorefh_maxsz + \
342 decode_getattr_maxsz)
343 #define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
344 decode_putfh_maxsz + \
345 decode_savefh_maxsz + \
346 decode_putfh_maxsz + \
347 decode_link_maxsz + \
348 decode_getattr_maxsz + \
349 decode_restorefh_maxsz + \
350 decode_getattr_maxsz)
351 #define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
352 encode_putfh_maxsz + \
353 encode_symlink_maxsz + \
354 encode_getattr_maxsz + \
356 #define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
357 decode_putfh_maxsz + \
358 decode_symlink_maxsz + \
359 decode_getattr_maxsz + \
361 #define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
362 encode_putfh_maxsz + \
363 encode_savefh_maxsz + \
364 encode_create_maxsz + \
365 encode_getfh_maxsz + \
366 encode_getattr_maxsz + \
367 encode_restorefh_maxsz + \
368 encode_getattr_maxsz)
369 #define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
370 decode_putfh_maxsz + \
371 decode_savefh_maxsz + \
372 decode_create_maxsz + \
373 decode_getfh_maxsz + \
374 decode_getattr_maxsz + \
375 decode_restorefh_maxsz + \
376 decode_getattr_maxsz)
377 #define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
378 encode_putfh_maxsz + \
379 encode_getattr_maxsz)
380 #define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
381 decode_putfh_maxsz + \
382 decode_getattr_maxsz)
383 #define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
384 encode_putfh_maxsz + \
385 encode_getattr_maxsz)
386 #define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
387 decode_putfh_maxsz + \
388 op_decode_hdr_maxsz + 12)
389 #define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
390 encode_getattr_maxsz)
391 #define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
392 decode_getattr_maxsz)
393 #define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
394 encode_putfh_maxsz + \
395 encode_delegreturn_maxsz)
396 #define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
397 decode_delegreturn_maxsz)
398 #define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
399 encode_putfh_maxsz + \
400 encode_getattr_maxsz)
401 #define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
402 decode_putfh_maxsz + \
403 op_decode_hdr_maxsz + \
404 nfs4_fattr_bitmap_maxsz + 1)
405 #define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
406 encode_putfh_maxsz + \
407 op_encode_hdr_maxsz + 4 + \
408 nfs4_fattr_bitmap_maxsz + 1)
409 #define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
410 decode_putfh_maxsz + \
411 op_decode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
415 unsigned int nfs2type;
423 { S_IFSOCK, NFSOCK },
429 struct compound_hdr {
437 * START OF "GENERIC" ENCODE ROUTINES.
438 * These may look a little ugly since they are imported from a "generic"
439 * set of XDR encode/decode routines which are intended to be shared by
440 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
442 * If the pain of reading these is too great, it should be a straightforward
443 * task to translate them into Linux-specific versions which are more
444 * consistent with the style used in NFSv2/v3...
446 #define WRITE32(n) *p++ = htonl(n)
447 #define WRITE64(n) do { \
448 *p++ = htonl((uint32_t)((n) >> 32)); \
449 *p++ = htonl((uint32_t)(n)); \
451 #define WRITEMEM(ptr,nbytes) do { \
452 p = xdr_encode_opaque_fixed(p, ptr, nbytes); \
455 #define RESERVE_SPACE(nbytes) do { \
456 p = xdr_reserve_space(xdr, nbytes); \
457 if (!p) printk("RESERVE_SPACE(%d) failed in function %s\n", (int) (nbytes), __FUNCTION__); \
461 static void encode_string(struct xdr_stream *xdr, unsigned int len, const char *str)
465 p = xdr_reserve_space(xdr, 4 + len);
467 xdr_encode_opaque(p, str, len);
470 static int encode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
474 dprintk("encode_compound: tag=%.*s\n", (int)hdr->taglen, hdr->tag);
475 BUG_ON(hdr->taglen > NFS4_MAXTAGLEN);
476 RESERVE_SPACE(12+(XDR_QUADLEN(hdr->taglen)<<2));
477 WRITE32(hdr->taglen);
478 WRITEMEM(hdr->tag, hdr->taglen);
479 WRITE32(NFS4_MINOR_VERSION);
484 static void encode_nfs4_verifier(struct xdr_stream *xdr, const nfs4_verifier *verf)
488 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
490 xdr_encode_opaque_fixed(p, verf->data, NFS4_VERIFIER_SIZE);
493 static int encode_attrs(struct xdr_stream *xdr, const struct iattr *iap, const struct nfs_server *server)
495 char owner_name[IDMAP_NAMESZ];
496 char owner_group[IDMAP_NAMESZ];
497 int owner_namelen = 0;
498 int owner_grouplen = 0;
507 * We reserve enough space to write the entire attribute buffer at once.
508 * In the worst-case, this would be
509 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
510 * = 36 bytes, plus any contribution from variable-length fields
511 * such as owner/group.
516 if (iap->ia_valid & ATTR_SIZE)
518 if (iap->ia_valid & ATTR_MODE)
520 if (iap->ia_valid & ATTR_UID) {
521 owner_namelen = nfs_map_uid_to_name(server->nfs4_state, iap->ia_uid, owner_name);
522 if (owner_namelen < 0) {
523 printk(KERN_WARNING "nfs: couldn't resolve uid %d to string\n",
526 strcpy(owner_name, "nobody");
527 owner_namelen = sizeof("nobody") - 1;
530 len += 4 + (XDR_QUADLEN(owner_namelen) << 2);
532 if (iap->ia_valid & ATTR_GID) {
533 owner_grouplen = nfs_map_gid_to_group(server->nfs4_state, iap->ia_gid, owner_group);
534 if (owner_grouplen < 0) {
535 printk(KERN_WARNING "nfs4: couldn't resolve gid %d to string\n",
537 strcpy(owner_group, "nobody");
538 owner_grouplen = sizeof("nobody") - 1;
541 len += 4 + (XDR_QUADLEN(owner_grouplen) << 2);
543 if (iap->ia_valid & ATTR_ATIME_SET)
545 else if (iap->ia_valid & ATTR_ATIME)
547 if (iap->ia_valid & ATTR_MTIME_SET)
549 else if (iap->ia_valid & ATTR_MTIME)
554 * We write the bitmap length now, but leave the bitmap and the attribute
555 * buffer length to be backfilled at the end of this routine.
561 if (iap->ia_valid & ATTR_SIZE) {
562 bmval0 |= FATTR4_WORD0_SIZE;
563 WRITE64(iap->ia_size);
565 if (iap->ia_valid & ATTR_MODE) {
566 bmval1 |= FATTR4_WORD1_MODE;
567 WRITE32(iap->ia_mode);
569 if (iap->ia_valid & ATTR_UID) {
570 bmval1 |= FATTR4_WORD1_OWNER;
571 WRITE32(owner_namelen);
572 WRITEMEM(owner_name, owner_namelen);
574 if (iap->ia_valid & ATTR_GID) {
575 bmval1 |= FATTR4_WORD1_OWNER_GROUP;
576 WRITE32(owner_grouplen);
577 WRITEMEM(owner_group, owner_grouplen);
579 if (iap->ia_valid & ATTR_ATIME_SET) {
580 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
581 WRITE32(NFS4_SET_TO_CLIENT_TIME);
583 WRITE32(iap->ia_mtime.tv_sec);
584 WRITE32(iap->ia_mtime.tv_nsec);
586 else if (iap->ia_valid & ATTR_ATIME) {
587 bmval1 |= FATTR4_WORD1_TIME_ACCESS_SET;
588 WRITE32(NFS4_SET_TO_SERVER_TIME);
590 if (iap->ia_valid & ATTR_MTIME_SET) {
591 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
592 WRITE32(NFS4_SET_TO_CLIENT_TIME);
594 WRITE32(iap->ia_mtime.tv_sec);
595 WRITE32(iap->ia_mtime.tv_nsec);
597 else if (iap->ia_valid & ATTR_MTIME) {
598 bmval1 |= FATTR4_WORD1_TIME_MODIFY_SET;
599 WRITE32(NFS4_SET_TO_SERVER_TIME);
603 * Now we backfill the bitmap and the attribute buffer length.
605 if (len != ((char *)p - (char *)q) + 4) {
606 printk ("encode_attr: Attr length calculation error! %u != %Zu\n",
607 len, ((char *)p - (char *)q) + 4);
610 len = (char *)p - (char *)q - 12;
611 *q++ = htonl(bmval0);
612 *q++ = htonl(bmval1);
620 static int encode_access(struct xdr_stream *xdr, u32 access)
631 static int encode_close(struct xdr_stream *xdr, const struct nfs_closeargs *arg)
635 RESERVE_SPACE(8+sizeof(arg->stateid->data));
637 WRITE32(arg->seqid->sequence->counter);
638 WRITEMEM(arg->stateid->data, sizeof(arg->stateid->data));
643 static int encode_commit(struct xdr_stream *xdr, const struct nfs_writeargs *args)
649 WRITE64(args->offset);
650 WRITE32(args->count);
655 static int encode_create(struct xdr_stream *xdr, const struct nfs4_create_arg *create)
661 WRITE32(create->ftype);
663 switch (create->ftype) {
665 RESERVE_SPACE(4 + create->u.symlink->len);
666 WRITE32(create->u.symlink->len);
667 WRITEMEM(create->u.symlink->name, create->u.symlink->len);
670 case NF4BLK: case NF4CHR:
672 WRITE32(create->u.device.specdata1);
673 WRITE32(create->u.device.specdata2);
680 RESERVE_SPACE(4 + create->name->len);
681 WRITE32(create->name->len);
682 WRITEMEM(create->name->name, create->name->len);
684 return encode_attrs(xdr, create->attrs, create->server);
687 static int encode_getattr_one(struct xdr_stream *xdr, uint32_t bitmap)
698 static int encode_getattr_two(struct xdr_stream *xdr, uint32_t bm0, uint32_t bm1)
710 static int encode_getfattr(struct xdr_stream *xdr, const u32* bitmask)
712 return encode_getattr_two(xdr,
713 bitmask[0] & nfs4_fattr_bitmap[0],
714 bitmask[1] & nfs4_fattr_bitmap[1]);
717 static int encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask)
719 return encode_getattr_two(xdr, bitmask[0] & nfs4_fsinfo_bitmap[0],
720 bitmask[1] & nfs4_fsinfo_bitmap[1]);
723 static int encode_getfh(struct xdr_stream *xdr)
733 static int encode_link(struct xdr_stream *xdr, const struct qstr *name)
737 RESERVE_SPACE(8 + name->len);
740 WRITEMEM(name->name, name->len);
746 * opcode,type,reclaim,offset,length,new_lock_owner = 32
747 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
749 static int encode_lock(struct xdr_stream *xdr, const struct nfs_lockargs *arg)
752 struct nfs_lock_opargs *opargs = arg->u.lock;
757 WRITE32(opargs->reclaim);
758 WRITE64(arg->offset);
759 WRITE64(arg->length);
760 WRITE32(opargs->new_lock_owner);
761 if (opargs->new_lock_owner){
763 WRITE32(opargs->open_seqid->sequence->counter);
764 WRITEMEM(opargs->open_stateid->data, sizeof(opargs->open_stateid->data));
765 WRITE32(opargs->lock_seqid->sequence->counter);
766 WRITE64(opargs->lock_owner.clientid);
768 WRITE32(opargs->lock_owner.id);
772 WRITEMEM(opargs->lock_stateid->data, sizeof(opargs->lock_stateid->data));
773 WRITE32(opargs->lock_seqid->sequence->counter);
779 static int encode_lockt(struct xdr_stream *xdr, const struct nfs_lockargs *arg)
782 struct nfs_lowner *opargs = arg->u.lockt;
787 WRITE64(arg->offset);
788 WRITE64(arg->length);
789 WRITE64(opargs->clientid);
796 static int encode_locku(struct xdr_stream *xdr, const struct nfs_lockargs *arg)
799 struct nfs_locku_opargs *opargs = arg->u.locku;
804 WRITE32(opargs->seqid->sequence->counter);
805 WRITEMEM(opargs->stateid->data, sizeof(opargs->stateid->data));
806 WRITE64(arg->offset);
807 WRITE64(arg->length);
812 static int encode_lookup(struct xdr_stream *xdr, const struct qstr *name)
817 RESERVE_SPACE(8 + len);
820 WRITEMEM(name->name, len);
825 static void encode_share_access(struct xdr_stream *xdr, int open_flags)
830 switch (open_flags & (FMODE_READ|FMODE_WRITE)) {
832 WRITE32(NFS4_SHARE_ACCESS_READ);
835 WRITE32(NFS4_SHARE_ACCESS_WRITE);
837 case FMODE_READ|FMODE_WRITE:
838 WRITE32(NFS4_SHARE_ACCESS_BOTH);
843 WRITE32(0); /* for linux, share_deny = 0 always */
846 static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg)
850 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
855 WRITE32(arg->seqid->sequence->counter);
856 encode_share_access(xdr, arg->open_flags);
858 WRITE64(arg->clientid);
863 static inline void encode_createmode(struct xdr_stream *xdr, const struct nfs_openargs *arg)
868 switch(arg->open_flags & O_EXCL) {
870 WRITE32(NFS4_CREATE_UNCHECKED);
871 encode_attrs(xdr, arg->u.attrs, arg->server);
874 WRITE32(NFS4_CREATE_EXCLUSIVE);
875 encode_nfs4_verifier(xdr, &arg->u.verifier);
879 static void encode_opentype(struct xdr_stream *xdr, const struct nfs_openargs *arg)
884 switch (arg->open_flags & O_CREAT) {
886 WRITE32(NFS4_OPEN_NOCREATE);
889 BUG_ON(arg->claim != NFS4_OPEN_CLAIM_NULL);
890 WRITE32(NFS4_OPEN_CREATE);
891 encode_createmode(xdr, arg);
895 static inline void encode_delegation_type(struct xdr_stream *xdr, int delegation_type)
900 switch (delegation_type) {
902 WRITE32(NFS4_OPEN_DELEGATE_NONE);
905 WRITE32(NFS4_OPEN_DELEGATE_READ);
907 case FMODE_WRITE|FMODE_READ:
908 WRITE32(NFS4_OPEN_DELEGATE_WRITE);
915 static inline void encode_claim_null(struct xdr_stream *xdr, const struct qstr *name)
920 WRITE32(NFS4_OPEN_CLAIM_NULL);
921 encode_string(xdr, name->len, name->name);
924 static inline void encode_claim_previous(struct xdr_stream *xdr, int type)
929 WRITE32(NFS4_OPEN_CLAIM_PREVIOUS);
930 encode_delegation_type(xdr, type);
933 static inline void encode_claim_delegate_cur(struct xdr_stream *xdr, const struct qstr *name, const nfs4_stateid *stateid)
937 RESERVE_SPACE(4+sizeof(stateid->data));
938 WRITE32(NFS4_OPEN_CLAIM_DELEGATE_CUR);
939 WRITEMEM(stateid->data, sizeof(stateid->data));
940 encode_string(xdr, name->len, name->name);
943 static int encode_open(struct xdr_stream *xdr, const struct nfs_openargs *arg)
945 encode_openhdr(xdr, arg);
946 encode_opentype(xdr, arg);
947 switch (arg->claim) {
948 case NFS4_OPEN_CLAIM_NULL:
949 encode_claim_null(xdr, arg->name);
951 case NFS4_OPEN_CLAIM_PREVIOUS:
952 encode_claim_previous(xdr, arg->u.delegation_type);
954 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
955 encode_claim_delegate_cur(xdr, arg->name, &arg->u.delegation);
963 static int encode_open_confirm(struct xdr_stream *xdr, const struct nfs_open_confirmargs *arg)
967 RESERVE_SPACE(8+sizeof(arg->stateid.data));
968 WRITE32(OP_OPEN_CONFIRM);
969 WRITEMEM(arg->stateid.data, sizeof(arg->stateid.data));
970 WRITE32(arg->seqid->sequence->counter);
975 static int encode_open_downgrade(struct xdr_stream *xdr, const struct nfs_closeargs *arg)
979 RESERVE_SPACE(8+sizeof(arg->stateid->data));
980 WRITE32(OP_OPEN_DOWNGRADE);
981 WRITEMEM(arg->stateid->data, sizeof(arg->stateid->data));
982 WRITE32(arg->seqid->sequence->counter);
983 encode_share_access(xdr, arg->open_flags);
988 encode_putfh(struct xdr_stream *xdr, const struct nfs_fh *fh)
993 RESERVE_SPACE(8 + len);
996 WRITEMEM(fh->data, len);
1001 static int encode_putrootfh(struct xdr_stream *xdr)
1006 WRITE32(OP_PUTROOTFH);
1011 static void encode_stateid(struct xdr_stream *xdr, const struct nfs_open_context *ctx)
1013 nfs4_stateid stateid;
1017 if (ctx->state != NULL) {
1018 nfs4_copy_stateid(&stateid, ctx->state, ctx->lockowner);
1019 WRITEMEM(stateid.data, sizeof(stateid.data));
1021 WRITEMEM(zero_stateid.data, sizeof(zero_stateid.data));
1024 static int encode_read(struct xdr_stream *xdr, const struct nfs_readargs *args)
1031 encode_stateid(xdr, args->context);
1034 WRITE64(args->offset);
1035 WRITE32(args->count);
1040 static int encode_readdir(struct xdr_stream *xdr, const struct nfs4_readdir_arg *readdir, struct rpc_rqst *req)
1042 struct rpc_auth *auth = req->rq_task->tk_auth;
1043 uint32_t attrs[2] = {
1044 FATTR4_WORD0_RDATTR_ERROR|FATTR4_WORD0_FILEID,
1045 FATTR4_WORD1_MOUNTED_ON_FILEID,
1050 RESERVE_SPACE(32+sizeof(nfs4_verifier));
1051 WRITE32(OP_READDIR);
1052 WRITE64(readdir->cookie);
1053 WRITEMEM(readdir->verifier.data, sizeof(readdir->verifier.data));
1054 WRITE32(readdir->count >> 1); /* We're not doing readdirplus */
1055 WRITE32(readdir->count);
1057 /* Switch to mounted_on_fileid if the server supports it */
1058 if (readdir->bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
1059 attrs[0] &= ~FATTR4_WORD0_FILEID;
1061 attrs[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
1062 WRITE32(attrs[0] & readdir->bitmask[0]);
1063 WRITE32(attrs[1] & readdir->bitmask[1]);
1064 dprintk("%s: cookie = %Lu, verifier = 0x%x%x, bitmap = 0x%x%x\n",
1066 (unsigned long long)readdir->cookie,
1067 ((u32 *)readdir->verifier.data)[0],
1068 ((u32 *)readdir->verifier.data)[1],
1069 attrs[0] & readdir->bitmask[0],
1070 attrs[1] & readdir->bitmask[1]);
1072 /* set up reply kvec
1073 * toplevel_status + taglen + rescount + OP_PUTFH + status
1074 * + OP_READDIR + status + verifer(2) = 9
1076 replen = (RPC_REPHDRSIZE + auth->au_rslack + 9) << 2;
1077 xdr_inline_pages(&req->rq_rcv_buf, replen, readdir->pages,
1078 readdir->pgbase, readdir->count);
1079 dprintk("%s: inlined page args = (%u, %p, %u, %u)\n",
1080 __FUNCTION__, replen, readdir->pages,
1081 readdir->pgbase, readdir->count);
1086 static int encode_readlink(struct xdr_stream *xdr, const struct nfs4_readlink *readlink, struct rpc_rqst *req)
1088 struct rpc_auth *auth = req->rq_task->tk_auth;
1089 unsigned int replen;
1093 WRITE32(OP_READLINK);
1095 /* set up reply kvec
1096 * toplevel_status + taglen + rescount + OP_PUTFH + status
1097 * + OP_READLINK + status + string length = 8
1099 replen = (RPC_REPHDRSIZE + auth->au_rslack + 8) << 2;
1100 xdr_inline_pages(&req->rq_rcv_buf, replen, readlink->pages,
1101 readlink->pgbase, readlink->pglen);
1106 static int encode_remove(struct xdr_stream *xdr, const struct qstr *name)
1110 RESERVE_SPACE(8 + name->len);
1113 WRITEMEM(name->name, name->len);
1118 static int encode_rename(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname)
1122 RESERVE_SPACE(8 + oldname->len);
1124 WRITE32(oldname->len);
1125 WRITEMEM(oldname->name, oldname->len);
1127 RESERVE_SPACE(4 + newname->len);
1128 WRITE32(newname->len);
1129 WRITEMEM(newname->name, newname->len);
1134 static int encode_renew(struct xdr_stream *xdr, const struct nfs4_client *client_stateid)
1140 WRITE64(client_stateid->cl_clientid);
1146 encode_restorefh(struct xdr_stream *xdr)
1151 WRITE32(OP_RESTOREFH);
1157 encode_setacl(struct xdr_stream *xdr, struct nfs_setaclargs *arg)
1161 RESERVE_SPACE(4+sizeof(zero_stateid.data));
1162 WRITE32(OP_SETATTR);
1163 WRITEMEM(zero_stateid.data, sizeof(zero_stateid.data));
1166 WRITE32(FATTR4_WORD0_ACL);
1167 if (arg->acl_len % 4)
1170 WRITE32(arg->acl_len);
1171 xdr_write_pages(xdr, arg->acl_pages, arg->acl_pgbase, arg->acl_len);
1176 encode_savefh(struct xdr_stream *xdr)
1186 static int encode_setattr(struct xdr_stream *xdr, const struct nfs_setattrargs *arg, const struct nfs_server *server)
1191 RESERVE_SPACE(4+sizeof(arg->stateid.data));
1192 WRITE32(OP_SETATTR);
1193 WRITEMEM(arg->stateid.data, sizeof(arg->stateid.data));
1195 if ((status = encode_attrs(xdr, arg->iap, server)))
1201 static int encode_setclientid(struct xdr_stream *xdr, const struct nfs4_setclientid *setclientid)
1205 RESERVE_SPACE(4 + sizeof(setclientid->sc_verifier->data));
1206 WRITE32(OP_SETCLIENTID);
1207 WRITEMEM(setclientid->sc_verifier->data, sizeof(setclientid->sc_verifier->data));
1209 encode_string(xdr, setclientid->sc_name_len, setclientid->sc_name);
1211 WRITE32(setclientid->sc_prog);
1212 encode_string(xdr, setclientid->sc_netid_len, setclientid->sc_netid);
1213 encode_string(xdr, setclientid->sc_uaddr_len, setclientid->sc_uaddr);
1215 WRITE32(setclientid->sc_cb_ident);
1220 static int encode_setclientid_confirm(struct xdr_stream *xdr, const struct nfs4_client *client_state)
1224 RESERVE_SPACE(12 + sizeof(client_state->cl_confirm.data));
1225 WRITE32(OP_SETCLIENTID_CONFIRM);
1226 WRITE64(client_state->cl_clientid);
1227 WRITEMEM(client_state->cl_confirm.data, sizeof(client_state->cl_confirm.data));
1232 static int encode_write(struct xdr_stream *xdr, const struct nfs_writeargs *args)
1239 encode_stateid(xdr, args->context);
1242 WRITE64(args->offset);
1243 WRITE32(args->stable);
1244 WRITE32(args->count);
1246 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
1251 static int encode_delegreturn(struct xdr_stream *xdr, const nfs4_stateid *stateid)
1257 WRITE32(OP_DELEGRETURN);
1258 WRITEMEM(stateid->data, sizeof(stateid->data));
1263 * END OF "GENERIC" ENCODE ROUTINES.
1267 * Encode an ACCESS request
1269 static int nfs4_xdr_enc_access(struct rpc_rqst *req, uint32_t *p, const struct nfs4_accessargs *args)
1271 struct xdr_stream xdr;
1272 struct compound_hdr hdr = {
1277 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1278 encode_compound_hdr(&xdr, &hdr);
1279 if ((status = encode_putfh(&xdr, args->fh)) == 0)
1280 status = encode_access(&xdr, args->access);
1285 * Encode LOOKUP request
1287 static int nfs4_xdr_enc_lookup(struct rpc_rqst *req, uint32_t *p, const struct nfs4_lookup_arg *args)
1289 struct xdr_stream xdr;
1290 struct compound_hdr hdr = {
1295 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1296 encode_compound_hdr(&xdr, &hdr);
1297 if ((status = encode_putfh(&xdr, args->dir_fh)) != 0)
1299 if ((status = encode_lookup(&xdr, args->name)) != 0)
1301 if ((status = encode_getfh(&xdr)) != 0)
1303 status = encode_getfattr(&xdr, args->bitmask);
1309 * Encode LOOKUP_ROOT request
1311 static int nfs4_xdr_enc_lookup_root(struct rpc_rqst *req, uint32_t *p, const struct nfs4_lookup_root_arg *args)
1313 struct xdr_stream xdr;
1314 struct compound_hdr hdr = {
1319 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1320 encode_compound_hdr(&xdr, &hdr);
1321 if ((status = encode_putrootfh(&xdr)) != 0)
1323 if ((status = encode_getfh(&xdr)) == 0)
1324 status = encode_getfattr(&xdr, args->bitmask);
1330 * Encode REMOVE request
1332 static int nfs4_xdr_enc_remove(struct rpc_rqst *req, uint32_t *p, const struct nfs4_remove_arg *args)
1334 struct xdr_stream xdr;
1335 struct compound_hdr hdr = {
1340 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1341 encode_compound_hdr(&xdr, &hdr);
1342 if ((status = encode_putfh(&xdr, args->fh)) != 0)
1344 if ((status = encode_remove(&xdr, args->name)) != 0)
1346 status = encode_getfattr(&xdr, args->bitmask);
1352 * Encode RENAME request
1354 static int nfs4_xdr_enc_rename(struct rpc_rqst *req, uint32_t *p, const struct nfs4_rename_arg *args)
1356 struct xdr_stream xdr;
1357 struct compound_hdr hdr = {
1362 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1363 encode_compound_hdr(&xdr, &hdr);
1364 if ((status = encode_putfh(&xdr, args->old_dir)) != 0)
1366 if ((status = encode_savefh(&xdr)) != 0)
1368 if ((status = encode_putfh(&xdr, args->new_dir)) != 0)
1370 if ((status = encode_rename(&xdr, args->old_name, args->new_name)) != 0)
1372 if ((status = encode_getfattr(&xdr, args->bitmask)) != 0)
1374 if ((status = encode_restorefh(&xdr)) != 0)
1376 status = encode_getfattr(&xdr, args->bitmask);
1382 * Encode LINK request
1384 static int nfs4_xdr_enc_link(struct rpc_rqst *req, uint32_t *p, const struct nfs4_link_arg *args)
1386 struct xdr_stream xdr;
1387 struct compound_hdr hdr = {
1392 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1393 encode_compound_hdr(&xdr, &hdr);
1394 if ((status = encode_putfh(&xdr, args->fh)) != 0)
1396 if ((status = encode_savefh(&xdr)) != 0)
1398 if ((status = encode_putfh(&xdr, args->dir_fh)) != 0)
1400 if ((status = encode_link(&xdr, args->name)) != 0)
1402 if ((status = encode_getfattr(&xdr, args->bitmask)) != 0)
1404 if ((status = encode_restorefh(&xdr)) != 0)
1406 status = encode_getfattr(&xdr, args->bitmask);
1412 * Encode CREATE request
1414 static int nfs4_xdr_enc_create(struct rpc_rqst *req, uint32_t *p, const struct nfs4_create_arg *args)
1416 struct xdr_stream xdr;
1417 struct compound_hdr hdr = {
1422 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1423 encode_compound_hdr(&xdr, &hdr);
1424 if ((status = encode_putfh(&xdr, args->dir_fh)) != 0)
1426 if ((status = encode_savefh(&xdr)) != 0)
1428 if ((status = encode_create(&xdr, args)) != 0)
1430 if ((status = encode_getfh(&xdr)) != 0)
1432 if ((status = encode_getfattr(&xdr, args->bitmask)) != 0)
1434 if ((status = encode_restorefh(&xdr)) != 0)
1436 status = encode_getfattr(&xdr, args->bitmask);
1442 * Encode SYMLINK request
1444 static int nfs4_xdr_enc_symlink(struct rpc_rqst *req, uint32_t *p, const struct nfs4_create_arg *args)
1446 return nfs4_xdr_enc_create(req, p, args);
1450 * Encode GETATTR request
1452 static int nfs4_xdr_enc_getattr(struct rpc_rqst *req, uint32_t *p, const struct nfs4_getattr_arg *args)
1454 struct xdr_stream xdr;
1455 struct compound_hdr hdr = {
1460 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1461 encode_compound_hdr(&xdr, &hdr);
1462 if ((status = encode_putfh(&xdr, args->fh)) == 0)
1463 status = encode_getfattr(&xdr, args->bitmask);
1468 * Encode a CLOSE request
1470 static int nfs4_xdr_enc_close(struct rpc_rqst *req, uint32_t *p, struct nfs_closeargs *args)
1472 struct xdr_stream xdr;
1473 struct compound_hdr hdr = {
1478 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1479 encode_compound_hdr(&xdr, &hdr);
1480 status = encode_putfh(&xdr, args->fh);
1483 status = encode_close(&xdr, args);
1486 status = encode_getfattr(&xdr, args->bitmask);
1492 * Encode an OPEN request
1494 static int nfs4_xdr_enc_open(struct rpc_rqst *req, uint32_t *p, struct nfs_openargs *args)
1496 struct xdr_stream xdr;
1497 struct compound_hdr hdr = {
1502 status = nfs_wait_on_sequence(args->seqid, req->rq_task);
1505 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1506 encode_compound_hdr(&xdr, &hdr);
1507 status = encode_putfh(&xdr, args->fh);
1510 status = encode_savefh(&xdr);
1513 status = encode_open(&xdr, args);
1516 status = encode_getfh(&xdr);
1519 status = encode_getfattr(&xdr, args->bitmask);
1522 status = encode_restorefh(&xdr);
1525 status = encode_getfattr(&xdr, args->bitmask);
1531 * Encode an OPEN_CONFIRM request
1533 static int nfs4_xdr_enc_open_confirm(struct rpc_rqst *req, uint32_t *p, struct nfs_open_confirmargs *args)
1535 struct xdr_stream xdr;
1536 struct compound_hdr hdr = {
1541 status = nfs_wait_on_sequence(args->seqid, req->rq_task);
1544 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1545 encode_compound_hdr(&xdr, &hdr);
1546 status = encode_putfh(&xdr, args->fh);
1549 status = encode_open_confirm(&xdr, args);
1555 * Encode an OPEN request with no attributes.
1557 static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, uint32_t *p, struct nfs_openargs *args)
1559 struct xdr_stream xdr;
1560 struct compound_hdr hdr = {
1565 status = nfs_wait_on_sequence(args->seqid, req->rq_task);
1568 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1569 encode_compound_hdr(&xdr, &hdr);
1570 status = encode_putfh(&xdr, args->fh);
1573 status = encode_open(&xdr, args);
1579 * Encode an OPEN_DOWNGRADE request
1581 static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst *req, uint32_t *p, struct nfs_closeargs *args)
1583 struct xdr_stream xdr;
1584 struct compound_hdr hdr = {
1589 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1590 encode_compound_hdr(&xdr, &hdr);
1591 status = encode_putfh(&xdr, args->fh);
1594 status = encode_open_downgrade(&xdr, args);
1597 status = encode_getfattr(&xdr, args->bitmask);
1603 * Encode a LOCK request
1605 static int nfs4_xdr_enc_lock(struct rpc_rqst *req, uint32_t *p, struct nfs_lockargs *args)
1607 struct xdr_stream xdr;
1608 struct compound_hdr hdr = {
1611 struct nfs_lock_opargs *opargs = args->u.lock;
1614 status = nfs_wait_on_sequence(opargs->lock_seqid, req->rq_task);
1617 /* Do we need to do an open_to_lock_owner? */
1618 if (opargs->lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)
1619 opargs->new_lock_owner = 0;
1620 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1621 encode_compound_hdr(&xdr, &hdr);
1622 status = encode_putfh(&xdr, args->fh);
1625 status = encode_lock(&xdr, args);
1631 * Encode a LOCKT request
1633 static int nfs4_xdr_enc_lockt(struct rpc_rqst *req, uint32_t *p, struct nfs_lockargs *args)
1635 struct xdr_stream xdr;
1636 struct compound_hdr hdr = {
1641 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1642 encode_compound_hdr(&xdr, &hdr);
1643 status = encode_putfh(&xdr, args->fh);
1646 status = encode_lockt(&xdr, args);
1652 * Encode a LOCKU request
1654 static int nfs4_xdr_enc_locku(struct rpc_rqst *req, uint32_t *p, struct nfs_lockargs *args)
1656 struct xdr_stream xdr;
1657 struct compound_hdr hdr = {
1662 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1663 encode_compound_hdr(&xdr, &hdr);
1664 status = encode_putfh(&xdr, args->fh);
1667 status = encode_locku(&xdr, args);
1673 * Encode a READLINK request
1675 static int nfs4_xdr_enc_readlink(struct rpc_rqst *req, uint32_t *p, const struct nfs4_readlink *args)
1677 struct xdr_stream xdr;
1678 struct compound_hdr hdr = {
1683 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1684 encode_compound_hdr(&xdr, &hdr);
1685 status = encode_putfh(&xdr, args->fh);
1688 status = encode_readlink(&xdr, args, req);
1694 * Encode a READDIR request
1696 static int nfs4_xdr_enc_readdir(struct rpc_rqst *req, uint32_t *p, const struct nfs4_readdir_arg *args)
1698 struct xdr_stream xdr;
1699 struct compound_hdr hdr = {
1704 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1705 encode_compound_hdr(&xdr, &hdr);
1706 status = encode_putfh(&xdr, args->fh);
1709 status = encode_readdir(&xdr, args, req);
1715 * Encode a READ request
1717 static int nfs4_xdr_enc_read(struct rpc_rqst *req, uint32_t *p, struct nfs_readargs *args)
1719 struct rpc_auth *auth = req->rq_task->tk_auth;
1720 struct xdr_stream xdr;
1721 struct compound_hdr hdr = {
1726 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1727 encode_compound_hdr(&xdr, &hdr);
1728 status = encode_putfh(&xdr, args->fh);
1731 status = encode_read(&xdr, args);
1735 /* set up reply kvec
1736 * toplevel status + taglen=0 + rescount + OP_PUTFH + status
1737 * + OP_READ + status + eof + datalen = 9
1739 replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS4_dec_read_sz) << 2;
1740 xdr_inline_pages(&req->rq_rcv_buf, replen,
1741 args->pages, args->pgbase, args->count);
1747 * Encode an SETATTR request
1749 static int nfs4_xdr_enc_setattr(struct rpc_rqst *req, uint32_t *p, struct nfs_setattrargs *args)
1752 struct xdr_stream xdr;
1753 struct compound_hdr hdr = {
1758 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1759 encode_compound_hdr(&xdr, &hdr);
1760 status = encode_putfh(&xdr, args->fh);
1763 status = encode_setattr(&xdr, args, args->server);
1766 status = encode_getfattr(&xdr, args->bitmask);
1772 * Encode a GETACL request
1775 nfs4_xdr_enc_getacl(struct rpc_rqst *req, uint32_t *p,
1776 struct nfs_getaclargs *args)
1778 struct xdr_stream xdr;
1779 struct rpc_auth *auth = req->rq_task->tk_auth;
1780 struct compound_hdr hdr = {
1785 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1786 encode_compound_hdr(&xdr, &hdr);
1787 status = encode_putfh(&xdr, args->fh);
1790 status = encode_getattr_two(&xdr, FATTR4_WORD0_ACL, 0);
1791 /* set up reply buffer: */
1792 replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS4_dec_getacl_sz) << 2;
1793 xdr_inline_pages(&req->rq_rcv_buf, replen,
1794 args->acl_pages, args->acl_pgbase, args->acl_len);
1800 * Encode a WRITE request
1802 static int nfs4_xdr_enc_write(struct rpc_rqst *req, uint32_t *p, struct nfs_writeargs *args)
1804 struct xdr_stream xdr;
1805 struct compound_hdr hdr = {
1810 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1811 encode_compound_hdr(&xdr, &hdr);
1812 status = encode_putfh(&xdr, args->fh);
1815 status = encode_write(&xdr, args);
1818 status = encode_getfattr(&xdr, args->bitmask);
1826 static int nfs4_xdr_enc_commit(struct rpc_rqst *req, uint32_t *p, struct nfs_writeargs *args)
1828 struct xdr_stream xdr;
1829 struct compound_hdr hdr = {
1834 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1835 encode_compound_hdr(&xdr, &hdr);
1836 status = encode_putfh(&xdr, args->fh);
1839 status = encode_commit(&xdr, args);
1842 status = encode_getfattr(&xdr, args->bitmask);
1850 static int nfs4_xdr_enc_fsinfo(struct rpc_rqst *req, uint32_t *p, struct nfs4_fsinfo_arg *args)
1852 struct xdr_stream xdr;
1853 struct compound_hdr hdr = {
1858 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1859 encode_compound_hdr(&xdr, &hdr);
1860 status = encode_putfh(&xdr, args->fh);
1862 status = encode_fsinfo(&xdr, args->bitmask);
1867 * a PATHCONF request
1869 static int nfs4_xdr_enc_pathconf(struct rpc_rqst *req, uint32_t *p, const struct nfs4_pathconf_arg *args)
1871 struct xdr_stream xdr;
1872 struct compound_hdr hdr = {
1877 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1878 encode_compound_hdr(&xdr, &hdr);
1879 status = encode_putfh(&xdr, args->fh);
1881 status = encode_getattr_one(&xdr,
1882 args->bitmask[0] & nfs4_pathconf_bitmap[0]);
1889 static int nfs4_xdr_enc_statfs(struct rpc_rqst *req, uint32_t *p, const struct nfs4_statfs_arg *args)
1891 struct xdr_stream xdr;
1892 struct compound_hdr hdr = {
1897 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1898 encode_compound_hdr(&xdr, &hdr);
1899 status = encode_putfh(&xdr, args->fh);
1901 status = encode_getattr_two(&xdr,
1902 args->bitmask[0] & nfs4_statfs_bitmap[0],
1903 args->bitmask[1] & nfs4_statfs_bitmap[1]);
1908 * GETATTR_BITMAP request
1910 static int nfs4_xdr_enc_server_caps(struct rpc_rqst *req, uint32_t *p, const struct nfs_fh *fhandle)
1912 struct xdr_stream xdr;
1913 struct compound_hdr hdr = {
1918 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1919 encode_compound_hdr(&xdr, &hdr);
1920 status = encode_putfh(&xdr, fhandle);
1922 status = encode_getattr_one(&xdr, FATTR4_WORD0_SUPPORTED_ATTRS|
1923 FATTR4_WORD0_LINK_SUPPORT|
1924 FATTR4_WORD0_SYMLINK_SUPPORT|
1925 FATTR4_WORD0_ACLSUPPORT);
1932 static int nfs4_xdr_enc_renew(struct rpc_rqst *req, uint32_t *p, struct nfs4_client *clp)
1934 struct xdr_stream xdr;
1935 struct compound_hdr hdr = {
1939 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1940 encode_compound_hdr(&xdr, &hdr);
1941 return encode_renew(&xdr, clp);
1945 * a SETCLIENTID request
1947 static int nfs4_xdr_enc_setclientid(struct rpc_rqst *req, uint32_t *p, struct nfs4_setclientid *sc)
1949 struct xdr_stream xdr;
1950 struct compound_hdr hdr = {
1954 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1955 encode_compound_hdr(&xdr, &hdr);
1956 return encode_setclientid(&xdr, sc);
1960 * a SETCLIENTID_CONFIRM request
1962 static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst *req, uint32_t *p, struct nfs4_client *clp)
1964 struct xdr_stream xdr;
1965 struct compound_hdr hdr = {
1968 const u32 lease_bitmap[2] = { FATTR4_WORD0_LEASE_TIME, 0 };
1971 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1972 encode_compound_hdr(&xdr, &hdr);
1973 status = encode_setclientid_confirm(&xdr, clp);
1975 status = encode_putrootfh(&xdr);
1977 status = encode_fsinfo(&xdr, lease_bitmap);
1982 * DELEGRETURN request
1984 static int nfs4_xdr_enc_delegreturn(struct rpc_rqst *req, uint32_t *p, const struct nfs4_delegreturnargs *args)
1986 struct xdr_stream xdr;
1987 struct compound_hdr hdr = {
1992 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
1993 encode_compound_hdr(&xdr, &hdr);
1994 if ((status = encode_putfh(&xdr, args->fhandle)) == 0)
1995 status = encode_delegreturn(&xdr, args->stateid);
2000 * START OF "GENERIC" DECODE ROUTINES.
2001 * These may look a little ugly since they are imported from a "generic"
2002 * set of XDR encode/decode routines which are intended to be shared by
2003 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
2005 * If the pain of reading these is too great, it should be a straightforward
2006 * task to translate them into Linux-specific versions which are more
2007 * consistent with the style used in NFSv2/v3...
2009 #define READ32(x) (x) = ntohl(*p++)
2010 #define READ64(x) do { \
2011 (x) = (u64)ntohl(*p++) << 32; \
2012 (x) |= ntohl(*p++); \
2014 #define READTIME(x) do { \
2016 (x.tv_sec) = ntohl(*p++); \
2017 (x.tv_nsec) = ntohl(*p++); \
2019 #define COPYMEM(x,nbytes) do { \
2020 memcpy((x), p, nbytes); \
2021 p += XDR_QUADLEN(nbytes); \
2024 #define READ_BUF(nbytes) do { \
2025 p = xdr_inline_decode(xdr, nbytes); \
2027 printk(KERN_WARNING "%s: reply buffer overflowed in line %d.", \
2028 __FUNCTION__, __LINE__); \
2033 static int decode_opaque_inline(struct xdr_stream *xdr, uint32_t *len, char **string)
2040 *string = (char *)p;
2044 static int decode_compound_hdr(struct xdr_stream *xdr, struct compound_hdr *hdr)
2049 READ32(hdr->status);
2050 READ32(hdr->taglen);
2052 READ_BUF(hdr->taglen + 4);
2053 hdr->tag = (char *)p;
2054 p += XDR_QUADLEN(hdr->taglen);
2059 static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
2067 if (opnum != expected) {
2069 "nfs4_decode_op_hdr: Server returned operation"
2070 " %d but we issued a request for %d\n",
2075 if (nfserr != NFS_OK)
2076 return -nfs_stat_to_errno(nfserr);
2081 static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs4_client *clp)
2088 return decode_opaque_inline(xdr, &strlen, &str);
2091 static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
2098 bitmap[0] = bitmap[1] = 0;
2099 READ_BUF((bmlen << 2));
2108 static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, uint32_t **savep)
2118 static int decode_attr_supported(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *bitmask)
2120 if (likely(bitmap[0] & FATTR4_WORD0_SUPPORTED_ATTRS)) {
2121 decode_attr_bitmap(xdr, bitmask);
2122 bitmap[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS;
2124 bitmask[0] = bitmask[1] = 0;
2125 dprintk("%s: bitmask=0x%x%x\n", __FUNCTION__, bitmask[0], bitmask[1]);
2129 static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
2134 if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
2136 if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
2139 if (*type < NF4REG || *type > NF4NAMEDATTR) {
2140 dprintk("%s: bad type %d\n", __FUNCTION__, *type);
2143 bitmap[0] &= ~FATTR4_WORD0_TYPE;
2145 dprintk("%s: type=0%o\n", __FUNCTION__, nfs_type2fmt[*type].nfs2type);
2149 static int decode_attr_change(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *change)
2154 if (unlikely(bitmap[0] & (FATTR4_WORD0_CHANGE - 1U)))
2156 if (likely(bitmap[0] & FATTR4_WORD0_CHANGE)) {
2159 bitmap[0] &= ~FATTR4_WORD0_CHANGE;
2161 dprintk("%s: change attribute=%Lu\n", __FUNCTION__,
2162 (unsigned long long)*change);
2166 static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
2171 if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
2173 if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
2176 bitmap[0] &= ~FATTR4_WORD0_SIZE;
2178 dprintk("%s: file size=%Lu\n", __FUNCTION__, (unsigned long long)*size);
2182 static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2187 if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
2189 if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
2192 bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPORT;
2194 dprintk("%s: link support=%s\n", __FUNCTION__, *res == 0 ? "false" : "true");
2198 static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2203 if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
2205 if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
2208 bitmap[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT;
2210 dprintk("%s: symlink support=%s\n", __FUNCTION__, *res == 0 ? "false" : "true");
2214 static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fsid *fsid)
2220 if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
2222 if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
2224 READ64(fsid->major);
2225 READ64(fsid->minor);
2226 bitmap[0] &= ~FATTR4_WORD0_FSID;
2228 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __FUNCTION__,
2229 (unsigned long long)fsid->major,
2230 (unsigned long long)fsid->minor);
2234 static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2239 if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
2241 if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
2244 bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
2246 dprintk("%s: file size=%u\n", __FUNCTION__, (unsigned int)*res);
2250 static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2254 *res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
2255 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
2257 if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
2260 bitmap[0] &= ~FATTR4_WORD0_ACLSUPPORT;
2262 dprintk("%s: ACLs supported=%u\n", __FUNCTION__, (unsigned int)*res);
2266 static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
2271 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
2273 if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
2276 bitmap[0] &= ~FATTR4_WORD0_FILEID;
2278 dprintk("%s: fileid=%Lu\n", __FUNCTION__, (unsigned long long)*fileid);
2282 static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2288 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
2290 if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
2293 bitmap[0] &= ~FATTR4_WORD0_FILES_AVAIL;
2295 dprintk("%s: files avail=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2299 static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2305 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
2307 if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
2310 bitmap[0] &= ~FATTR4_WORD0_FILES_FREE;
2312 dprintk("%s: files free=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2316 static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2322 if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
2324 if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
2327 bitmap[0] &= ~FATTR4_WORD0_FILES_TOTAL;
2329 dprintk("%s: files total=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2333 static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2339 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
2341 if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
2344 bitmap[0] &= ~FATTR4_WORD0_MAXFILESIZE;
2346 dprintk("%s: maxfilesize=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2350 static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
2356 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
2358 if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
2361 bitmap[0] &= ~FATTR4_WORD0_MAXLINK;
2363 dprintk("%s: maxlink=%u\n", __FUNCTION__, *maxlink);
2367 static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
2373 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
2375 if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
2378 bitmap[0] &= ~FATTR4_WORD0_MAXNAME;
2380 dprintk("%s: maxname=%u\n", __FUNCTION__, *maxname);
2384 static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2390 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
2392 if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
2396 if (maxread > 0x7FFFFFFF)
2397 maxread = 0x7FFFFFFF;
2398 *res = (uint32_t)maxread;
2399 bitmap[0] &= ~FATTR4_WORD0_MAXREAD;
2401 dprintk("%s: maxread=%lu\n", __FUNCTION__, (unsigned long)*res);
2405 static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
2411 if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
2413 if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
2417 if (maxwrite > 0x7FFFFFFF)
2418 maxwrite = 0x7FFFFFFF;
2419 *res = (uint32_t)maxwrite;
2420 bitmap[0] &= ~FATTR4_WORD0_MAXWRITE;
2422 dprintk("%s: maxwrite=%lu\n", __FUNCTION__, (unsigned long)*res);
2426 static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *mode)
2431 if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
2433 if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
2437 bitmap[1] &= ~FATTR4_WORD1_MODE;
2439 dprintk("%s: file mode=0%o\n", __FUNCTION__, (unsigned int)*mode);
2443 static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
2448 if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
2450 if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
2453 bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
2455 dprintk("%s: nlink=%u\n", __FUNCTION__, (unsigned int)*nlink);
2459 static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_client *clp, int32_t *uid)
2464 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
2466 if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
2470 if (len < XDR_MAX_NETOBJ) {
2471 if (nfs_map_name_to_uid(clp, (char *)p, len, uid) != 0)
2472 dprintk("%s: nfs_map_name_to_uid failed!\n",
2475 printk(KERN_WARNING "%s: name too long (%u)!\n",
2477 bitmap[1] &= ~FATTR4_WORD1_OWNER;
2479 dprintk("%s: uid=%d\n", __FUNCTION__, (int)*uid);
2483 static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_client *clp, int32_t *gid)
2488 if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
2490 if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
2494 if (len < XDR_MAX_NETOBJ) {
2495 if (nfs_map_group_to_gid(clp, (char *)p, len, gid) != 0)
2496 dprintk("%s: nfs_map_group_to_gid failed!\n",
2499 printk(KERN_WARNING "%s: name too long (%u)!\n",
2501 bitmap[1] &= ~FATTR4_WORD1_OWNER_GROUP;
2503 dprintk("%s: gid=%d\n", __FUNCTION__, (int)*gid);
2507 static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
2509 uint32_t major = 0, minor = 0, *p;
2512 if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
2514 if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
2520 tmp = MKDEV(major, minor);
2521 if (MAJOR(tmp) == major && MINOR(tmp) == minor)
2523 bitmap[1] &= ~ FATTR4_WORD1_RAWDEV;
2525 dprintk("%s: rdev=(0x%x:0x%x)\n", __FUNCTION__, major, minor);
2529 static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2535 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
2537 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
2540 bitmap[1] &= ~FATTR4_WORD1_SPACE_AVAIL;
2542 dprintk("%s: space avail=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2546 static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2552 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
2554 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
2557 bitmap[1] &= ~FATTR4_WORD1_SPACE_FREE;
2559 dprintk("%s: space free=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2563 static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
2569 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
2571 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
2574 bitmap[1] &= ~FATTR4_WORD1_SPACE_TOTAL;
2576 dprintk("%s: space total=%Lu\n", __FUNCTION__, (unsigned long long)*res);
2580 static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
2585 if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
2587 if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
2590 bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
2592 dprintk("%s: space used=%Lu\n", __FUNCTION__,
2593 (unsigned long long)*used);
2597 static int decode_attr_time(struct xdr_stream *xdr, struct timespec *time)
2606 time->tv_sec = (time_t)sec;
2607 time->tv_nsec = (long)nsec;
2611 static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
2617 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
2619 if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
2620 status = decode_attr_time(xdr, time);
2621 bitmap[1] &= ~FATTR4_WORD1_TIME_ACCESS;
2623 dprintk("%s: atime=%ld\n", __FUNCTION__, (long)time->tv_sec);
2627 static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
2633 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
2635 if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
2636 status = decode_attr_time(xdr, time);
2637 bitmap[1] &= ~FATTR4_WORD1_TIME_METADATA;
2639 dprintk("%s: ctime=%ld\n", __FUNCTION__, (long)time->tv_sec);
2643 static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
2649 if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
2651 if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
2652 status = decode_attr_time(xdr, time);
2653 bitmap[1] &= ~FATTR4_WORD1_TIME_MODIFY;
2655 dprintk("%s: mtime=%ld\n", __FUNCTION__, (long)time->tv_sec);
2659 static int verify_attr_len(struct xdr_stream *xdr, uint32_t *savep, uint32_t attrlen)
2661 unsigned int attrwords = XDR_QUADLEN(attrlen);
2662 unsigned int nwords = xdr->p - savep;
2664 if (unlikely(attrwords != nwords)) {
2665 printk(KERN_WARNING "%s: server returned incorrect attribute length: %u %c %u\n",
2668 (attrwords < nwords) ? '<' : '>',
2675 static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
2680 READ32(cinfo->atomic);
2681 READ64(cinfo->before);
2682 READ64(cinfo->after);
2686 static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
2692 status = decode_op_hdr(xdr, OP_ACCESS);
2698 access->supported = supp;
2699 access->access = acc;
2703 static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
2708 status = decode_op_hdr(xdr, OP_CLOSE);
2711 READ_BUF(sizeof(res->stateid.data));
2712 COPYMEM(res->stateid.data, sizeof(res->stateid.data));
2716 static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
2721 status = decode_op_hdr(xdr, OP_COMMIT);
2725 COPYMEM(res->verf->verifier, 8);
2729 static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
2735 status = decode_op_hdr(xdr, OP_CREATE);
2738 if ((status = decode_change_info(xdr, cinfo)))
2742 READ_BUF(bmlen << 2);
2746 static int decode_server_caps(struct xdr_stream *xdr, struct nfs4_server_caps_res *res)
2753 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
2755 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
2757 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
2759 if ((status = decode_attr_supported(xdr, bitmap, res->attr_bitmask)) != 0)
2761 if ((status = decode_attr_link_support(xdr, bitmap, &res->has_links)) != 0)
2763 if ((status = decode_attr_symlink_support(xdr, bitmap, &res->has_symlinks)) != 0)
2765 if ((status = decode_attr_aclsupport(xdr, bitmap, &res->acl_bitmask)) != 0)
2767 status = verify_attr_len(xdr, savep, attrlen);
2769 dprintk("%s: xdr returned %d!\n", __FUNCTION__, -status);
2773 static int decode_statfs(struct xdr_stream *xdr, struct nfs_fsstat *fsstat)
2780 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
2782 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
2784 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
2787 if ((status = decode_attr_files_avail(xdr, bitmap, &fsstat->afiles)) != 0)
2789 if ((status = decode_attr_files_free(xdr, bitmap, &fsstat->ffiles)) != 0)
2791 if ((status = decode_attr_files_total(xdr, bitmap, &fsstat->tfiles)) != 0)
2793 if ((status = decode_attr_space_avail(xdr, bitmap, &fsstat->abytes)) != 0)
2795 if ((status = decode_attr_space_free(xdr, bitmap, &fsstat->fbytes)) != 0)
2797 if ((status = decode_attr_space_total(xdr, bitmap, &fsstat->tbytes)) != 0)
2800 status = verify_attr_len(xdr, savep, attrlen);
2802 dprintk("%s: xdr returned %d!\n", __FUNCTION__, -status);
2806 static int decode_pathconf(struct xdr_stream *xdr, struct nfs_pathconf *pathconf)
2813 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
2815 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
2817 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
2820 if ((status = decode_attr_maxlink(xdr, bitmap, &pathconf->max_link)) != 0)
2822 if ((status = decode_attr_maxname(xdr, bitmap, &pathconf->max_namelen)) != 0)
2825 status = verify_attr_len(xdr, savep, attrlen);
2827 dprintk("%s: xdr returned %d!\n", __FUNCTION__, -status);
2831 static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, const struct nfs_server *server)
2837 int status, fmode = 0;
2839 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
2841 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
2844 fattr->bitmap[0] = bitmap[0];
2845 fattr->bitmap[1] = bitmap[1];
2847 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
2851 if ((status = decode_attr_type(xdr, bitmap, &type)) != 0)
2853 fattr->type = nfs_type2fmt[type].nfs2type;
2854 fmode = nfs_type2fmt[type].mode;
2856 if ((status = decode_attr_change(xdr, bitmap, &fattr->change_attr)) != 0)
2858 if ((status = decode_attr_size(xdr, bitmap, &fattr->size)) != 0)
2860 if ((status = decode_attr_fsid(xdr, bitmap, &fattr->fsid_u.nfs4)) != 0)
2862 if ((status = decode_attr_fileid(xdr, bitmap, &fattr->fileid)) != 0)
2864 if ((status = decode_attr_mode(xdr, bitmap, &fattr->mode)) != 0)
2866 fattr->mode |= fmode;
2867 if ((status = decode_attr_nlink(xdr, bitmap, &fattr->nlink)) != 0)
2869 if ((status = decode_attr_owner(xdr, bitmap, server->nfs4_state, &fattr->uid)) != 0)
2871 if ((status = decode_attr_group(xdr, bitmap, server->nfs4_state, &fattr->gid)) != 0)
2873 if ((status = decode_attr_rdev(xdr, bitmap, &fattr->rdev)) != 0)
2875 if ((status = decode_attr_space_used(xdr, bitmap, &fattr->du.nfs3.used)) != 0)
2877 if ((status = decode_attr_time_access(xdr, bitmap, &fattr->atime)) != 0)
2879 if ((status = decode_attr_time_metadata(xdr, bitmap, &fattr->ctime)) != 0)
2881 if ((status = decode_attr_time_modify(xdr, bitmap, &fattr->mtime)) != 0)
2883 if ((status = verify_attr_len(xdr, savep, attrlen)) == 0)
2884 fattr->valid = NFS_ATTR_FATTR | NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4;
2886 dprintk("%s: xdr returned %d\n", __FUNCTION__, -status);
2891 static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
2894 uint32_t attrlen, bitmap[2];
2897 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
2899 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
2901 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
2904 fsinfo->rtmult = fsinfo->wtmult = 512; /* ??? */
2906 if ((status = decode_attr_lease_time(xdr, bitmap, &fsinfo->lease_time)) != 0)
2908 if ((status = decode_attr_maxfilesize(xdr, bitmap, &fsinfo->maxfilesize)) != 0)
2910 if ((status = decode_attr_maxread(xdr, bitmap, &fsinfo->rtmax)) != 0)
2912 fsinfo->rtpref = fsinfo->dtpref = fsinfo->rtmax;
2913 if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0)
2915 fsinfo->wtpref = fsinfo->wtmax;
2917 status = verify_attr_len(xdr, savep, attrlen);
2919 dprintk("%s: xdr returned %d!\n", __FUNCTION__, -status);
2923 static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
2929 status = decode_op_hdr(xdr, OP_GETFH);
2932 /* Zero handle first to allow comparisons */
2933 memset(fh, 0, sizeof(*fh));
2937 if (len > NFS4_FHSIZE)
2941 COPYMEM(fh->data, len);
2945 static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
2949 status = decode_op_hdr(xdr, OP_LINK);
2952 return decode_change_info(xdr, cinfo);
2956 * We create the owner, so we know a proper owner.id length is 4.
2958 static int decode_lock_denied (struct xdr_stream *xdr, struct nfs_lock_denied *denied)
2964 READ64(denied->offset);
2965 READ64(denied->length);
2966 READ32(denied->type);
2967 READ64(denied->owner.clientid);
2971 READ32(denied->owner.id);
2972 return -NFS4ERR_DENIED;
2975 static int decode_lock(struct xdr_stream *xdr, struct nfs_lockres *res)
2980 status = decode_op_hdr(xdr, OP_LOCK);
2982 READ_BUF(sizeof(res->u.stateid.data));
2983 COPYMEM(res->u.stateid.data, sizeof(res->u.stateid.data));
2984 } else if (status == -NFS4ERR_DENIED)
2985 return decode_lock_denied(xdr, &res->u.denied);
2989 static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockres *res)
2992 status = decode_op_hdr(xdr, OP_LOCKT);
2993 if (status == -NFS4ERR_DENIED)
2994 return decode_lock_denied(xdr, &res->u.denied);
2998 static int decode_locku(struct xdr_stream *xdr, struct nfs_lockres *res)
3003 status = decode_op_hdr(xdr, OP_LOCKU);
3005 READ_BUF(sizeof(res->u.stateid.data));
3006 COPYMEM(res->u.stateid.data, sizeof(res->u.stateid.data));
3011 static int decode_lookup(struct xdr_stream *xdr)
3013 return decode_op_hdr(xdr, OP_LOOKUP);
3016 /* This is too sick! */
3017 static int decode_space_limit(struct xdr_stream *xdr, u64 *maxsize)
3020 uint32_t limit_type, nblocks, blocksize;
3024 switch (limit_type) {
3031 *maxsize = (uint64_t)nblocks * (uint64_t)blocksize;
3036 static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
3039 uint32_t delegation_type;
3042 READ32(delegation_type);
3043 if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
3044 res->delegation_type = 0;
3048 COPYMEM(res->delegation.data, sizeof(res->delegation.data));
3049 READ32(res->do_recall);
3050 switch (delegation_type) {
3051 case NFS4_OPEN_DELEGATE_READ:
3052 res->delegation_type = FMODE_READ;
3054 case NFS4_OPEN_DELEGATE_WRITE:
3055 res->delegation_type = FMODE_WRITE|FMODE_READ;
3056 if (decode_space_limit(xdr, &res->maxsize) < 0)
3059 return decode_ace(xdr, NULL, res->server->nfs4_state);
3062 static int decode_open(struct xdr_stream *xdr, struct nfs_openres *res)
3068 status = decode_op_hdr(xdr, OP_OPEN);
3071 READ_BUF(sizeof(res->stateid.data));
3072 COPYMEM(res->stateid.data, sizeof(res->stateid.data));
3074 decode_change_info(xdr, &res->cinfo);
3077 READ32(res->rflags);
3082 READ_BUF(bmlen << 2);
3084 return decode_delegation(xdr, res);
3086 dprintk("%s: Bitmap too large! Length = %u\n", __FUNCTION__, bmlen);
3090 static int decode_open_confirm(struct xdr_stream *xdr, struct nfs_open_confirmres *res)
3095 status = decode_op_hdr(xdr, OP_OPEN_CONFIRM);
3098 READ_BUF(sizeof(res->stateid.data));
3099 COPYMEM(res->stateid.data, sizeof(res->stateid.data));
3103 static int decode_open_downgrade(struct xdr_stream *xdr, struct nfs_closeres *res)
3108 status = decode_op_hdr(xdr, OP_OPEN_DOWNGRADE);
3111 READ_BUF(sizeof(res->stateid.data));
3112 COPYMEM(res->stateid.data, sizeof(res->stateid.data));
3116 static int decode_putfh(struct xdr_stream *xdr)
3118 return decode_op_hdr(xdr, OP_PUTFH);
3121 static int decode_putrootfh(struct xdr_stream *xdr)
3123 return decode_op_hdr(xdr, OP_PUTROOTFH);
3126 static int decode_read(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs_readres *res)
3128 struct kvec *iov = req->rq_rcv_buf.head;
3130 uint32_t count, eof, recvd, hdrlen;
3133 status = decode_op_hdr(xdr, OP_READ);
3139 hdrlen = (u8 *) p - (u8 *) iov->iov_base;
3140 recvd = req->rq_rcv_buf.len - hdrlen;
3141 if (count > recvd) {
3142 printk(KERN_WARNING "NFS: server cheating in read reply: "
3143 "count %u > recvd %u\n", count, recvd);
3147 xdr_read_pages(xdr, count);
3153 static int decode_readdir(struct xdr_stream *xdr, struct rpc_rqst *req, struct nfs4_readdir_res *readdir)
3155 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3156 struct page *page = *rcvbuf->pages;
3157 struct kvec *iov = rcvbuf->head;
3158 unsigned int nr, pglen = rcvbuf->page_len;
3159 uint32_t *end, *entry, *p, *kaddr;
3160 uint32_t len, attrlen;
3161 int hdrlen, recvd, status;
3163 status = decode_op_hdr(xdr, OP_READDIR);
3167 COPYMEM(readdir->verifier.data, 8);
3168 dprintk("%s: verifier = 0x%x%x\n",
3170 ((u32 *)readdir->verifier.data)[0],
3171 ((u32 *)readdir->verifier.data)[1]);
3174 hdrlen = (char *) p - (char *) iov->iov_base;
3175 recvd = rcvbuf->len - hdrlen;
3178 xdr_read_pages(xdr, pglen);
3180 BUG_ON(pglen + readdir->pgbase > PAGE_CACHE_SIZE);
3181 kaddr = p = (uint32_t *) kmap_atomic(page, KM_USER0);
3182 end = (uint32_t *) ((char *)p + pglen + readdir->pgbase);
3184 for (nr = 0; *p++; nr++) {
3187 dprintk("cookie = %Lu, ", *((unsigned long long *)p));
3188 p += 2; /* cookie */
3189 len = ntohl(*p++); /* filename length */
3190 if (len > NFS4_MAXNAMLEN) {
3191 printk(KERN_WARNING "NFS: giant filename in readdir (len 0x%x)\n", len);
3194 dprintk("filename = %*s\n", len, (char *)p);
3195 p += XDR_QUADLEN(len);
3198 len = ntohl(*p++); /* bitmap length */
3202 attrlen = XDR_QUADLEN(ntohl(*p++));
3203 p += attrlen; /* attributes */
3208 if (!nr && (entry[0] != 0 || entry[1] == 0))
3211 kunmap_atomic(kaddr, KM_USER0);
3214 dprintk("%s: short packet at entry %d\n", __FUNCTION__, nr);
3215 entry[0] = entry[1] = 0;
3216 /* truncate listing ? */
3218 printk(KERN_NOTICE "NFS: readdir reply truncated!\n");
3223 kunmap_atomic(kaddr, KM_USER0);
3224 return -errno_NFSERR_IO;
3227 static int decode_readlink(struct xdr_stream *xdr, struct rpc_rqst *req)
3229 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
3230 struct kvec *iov = rcvbuf->head;
3231 int hdrlen, len, recvd;
3236 status = decode_op_hdr(xdr, OP_READLINK);
3240 /* Convert length of symlink */
3243 if (len >= rcvbuf->page_len || len <= 0) {
3244 dprintk(KERN_WARNING "nfs: server returned giant symlink!\n");
3245 return -ENAMETOOLONG;
3247 hdrlen = (char *) xdr->p - (char *) iov->iov_base;
3248 recvd = req->rq_rcv_buf.len - hdrlen;
3250 printk(KERN_WARNING "NFS: server cheating in readlink reply: "
3251 "count %u > recvd %u\n", len, recvd);
3254 xdr_read_pages(xdr, len);
3256 * The XDR encode routine has set things up so that
3257 * the link text will be copied directly into the
3258 * buffer. We just have to do overflow-checking,
3259 * and and null-terminate the text (the VFS expects
3260 * null-termination).
3262 kaddr = (char *)kmap_atomic(rcvbuf->pages[0], KM_USER0);
3263 kaddr[len+rcvbuf->page_base] = '\0';
3264 kunmap_atomic(kaddr, KM_USER0);
3268 static int decode_remove(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
3272 status = decode_op_hdr(xdr, OP_REMOVE);
3275 status = decode_change_info(xdr, cinfo);
3280 static int decode_rename(struct xdr_stream *xdr, struct nfs4_change_info *old_cinfo,
3281 struct nfs4_change_info *new_cinfo)
3285 status = decode_op_hdr(xdr, OP_RENAME);
3288 if ((status = decode_change_info(xdr, old_cinfo)))
3290 status = decode_change_info(xdr, new_cinfo);
3295 static int decode_renew(struct xdr_stream *xdr)
3297 return decode_op_hdr(xdr, OP_RENEW);
3301 decode_restorefh(struct xdr_stream *xdr)
3303 return decode_op_hdr(xdr, OP_RESTOREFH);
3306 static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req,
3312 struct kvec *iov = req->rq_rcv_buf.head;
3316 if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
3318 if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
3320 if ((status = decode_attr_length(xdr, &attrlen, &savep)) != 0)
3323 if (unlikely(bitmap[0] & (FATTR4_WORD0_ACL - 1U)))
3325 if (likely(bitmap[0] & FATTR4_WORD0_ACL)) {
3328 /* We ignore &savep and don't do consistency checks on
3329 * the attr length. Let userspace figure it out.... */
3330 hdrlen = (u8 *)xdr->p - (u8 *)iov->iov_base;
3331 recvd = req->rq_rcv_buf.len - hdrlen;
3332 if (attrlen > recvd) {
3333 printk(KERN_WARNING "NFS: server cheating in getattr"
3334 " acl reply: attrlen %u > recvd %u\n",
3338 if (attrlen <= *acl_len)
3339 xdr_read_pages(xdr, attrlen);
3342 status = -EOPNOTSUPP;
3349 decode_savefh(struct xdr_stream *xdr)
3351 return decode_op_hdr(xdr, OP_SAVEFH);
3354 static int decode_setattr(struct xdr_stream *xdr, struct nfs_setattrres *res)
3361 status = decode_op_hdr(xdr, OP_SETATTR);
3366 READ_BUF(bmlen << 2);
3370 static int decode_setclientid(struct xdr_stream *xdr, struct nfs4_client *clp)
3378 if (opnum != OP_SETCLIENTID) {
3380 "nfs4_decode_setclientid: Server returned operation"
3385 if (nfserr == NFS_OK) {
3386 READ_BUF(8 + sizeof(clp->cl_confirm.data));
3387 READ64(clp->cl_clientid);
3388 COPYMEM(clp->cl_confirm.data, sizeof(clp->cl_confirm.data));
3389 } else if (nfserr == NFSERR_CLID_INUSE) {
3392 /* skip netid string */
3397 /* skip uaddr string */
3401 return -NFSERR_CLID_INUSE;
3403 return -nfs_stat_to_errno(nfserr);
3408 static int decode_setclientid_confirm(struct xdr_stream *xdr)
3410 return decode_op_hdr(xdr, OP_SETCLIENTID_CONFIRM);
3413 static int decode_write(struct xdr_stream *xdr, struct nfs_writeres *res)
3418 status = decode_op_hdr(xdr, OP_WRITE);
3424 READ32(res->verf->committed);
3425 COPYMEM(res->verf->verifier, 8);
3429 static int decode_delegreturn(struct xdr_stream *xdr)
3431 return decode_op_hdr(xdr, OP_DELEGRETURN);
3435 * Decode OPEN_DOWNGRADE response
3437 static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_closeres *res)
3439 struct xdr_stream xdr;
3440 struct compound_hdr hdr;
3443 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3444 status = decode_compound_hdr(&xdr, &hdr);
3447 status = decode_putfh(&xdr);
3450 status = decode_open_downgrade(&xdr, res);
3453 decode_getfattr(&xdr, res->fattr, res->server);
3459 * END OF "GENERIC" DECODE ROUTINES.
3463 * Decode ACCESS response
3465 static int nfs4_xdr_dec_access(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_accessres *res)
3467 struct xdr_stream xdr;
3468 struct compound_hdr hdr;
3471 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3472 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3474 if ((status = decode_putfh(&xdr)) == 0)
3475 status = decode_access(&xdr, res);
3481 * Decode LOOKUP response
3483 static int nfs4_xdr_dec_lookup(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_lookup_res *res)
3485 struct xdr_stream xdr;
3486 struct compound_hdr hdr;
3489 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3490 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3492 if ((status = decode_putfh(&xdr)) != 0)
3494 if ((status = decode_lookup(&xdr)) != 0)
3496 if ((status = decode_getfh(&xdr, res->fh)) != 0)
3498 status = decode_getfattr(&xdr, res->fattr, res->server);
3504 * Decode LOOKUP_ROOT response
3506 static int nfs4_xdr_dec_lookup_root(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_lookup_res *res)
3508 struct xdr_stream xdr;
3509 struct compound_hdr hdr;
3512 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3513 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3515 if ((status = decode_putrootfh(&xdr)) != 0)
3517 if ((status = decode_getfh(&xdr, res->fh)) == 0)
3518 status = decode_getfattr(&xdr, res->fattr, res->server);
3524 * Decode REMOVE response
3526 static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_remove_res *res)
3528 struct xdr_stream xdr;
3529 struct compound_hdr hdr;
3532 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3533 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3535 if ((status = decode_putfh(&xdr)) != 0)
3537 if ((status = decode_remove(&xdr, &res->cinfo)) != 0)
3539 decode_getfattr(&xdr, res->dir_attr, res->server);
3545 * Decode RENAME response
3547 static int nfs4_xdr_dec_rename(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_rename_res *res)
3549 struct xdr_stream xdr;
3550 struct compound_hdr hdr;
3553 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3554 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3556 if ((status = decode_putfh(&xdr)) != 0)
3558 if ((status = decode_savefh(&xdr)) != 0)
3560 if ((status = decode_putfh(&xdr)) != 0)
3562 if ((status = decode_rename(&xdr, &res->old_cinfo, &res->new_cinfo)) != 0)
3564 /* Current FH is target directory */
3565 if (decode_getfattr(&xdr, res->new_fattr, res->server) != 0)
3567 if ((status = decode_restorefh(&xdr)) != 0)
3569 decode_getfattr(&xdr, res->old_fattr, res->server);
3575 * Decode LINK response
3577 static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_link_res *res)
3579 struct xdr_stream xdr;
3580 struct compound_hdr hdr;
3583 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3584 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3586 if ((status = decode_putfh(&xdr)) != 0)
3588 if ((status = decode_savefh(&xdr)) != 0)
3590 if ((status = decode_putfh(&xdr)) != 0)
3592 if ((status = decode_link(&xdr, &res->cinfo)) != 0)
3595 * Note order: OP_LINK leaves the directory as the current
3598 if (decode_getfattr(&xdr, res->dir_attr, res->server) != 0)
3600 if ((status = decode_restorefh(&xdr)) != 0)
3602 decode_getfattr(&xdr, res->fattr, res->server);
3608 * Decode CREATE response
3610 static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_create_res *res)
3612 struct xdr_stream xdr;
3613 struct compound_hdr hdr;
3616 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3617 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
3619 if ((status = decode_putfh(&xdr)) != 0)
3621 if ((status = decode_savefh(&xdr)) != 0)
3623 if ((status = decode_create(&xdr,&res->dir_cinfo)) != 0)
3625 if ((status = decode_getfh(&xdr, res->fh)) != 0)
3627 if (decode_getfattr(&xdr, res->fattr, res->server) != 0)
3629 if ((status = decode_restorefh(&xdr)) != 0)
3631 decode_getfattr(&xdr, res->dir_fattr, res->server);
3637 * Decode SYMLINK response
3639 static int nfs4_xdr_dec_symlink(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_create_res *res)
3641 return nfs4_xdr_dec_create(rqstp, p, res);
3645 * Decode GETATTR response
3647 static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_getattr_res *res)
3649 struct xdr_stream xdr;
3650 struct compound_hdr hdr;
3653 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3654 status = decode_compound_hdr(&xdr, &hdr);
3657 status = decode_putfh(&xdr);
3660 status = decode_getfattr(&xdr, res->fattr, res->server);
3667 * Encode an SETACL request
3670 nfs4_xdr_enc_setacl(struct rpc_rqst *req, uint32_t *p, struct nfs_setaclargs *args)
3672 struct xdr_stream xdr;
3673 struct compound_hdr hdr = {
3678 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
3679 encode_compound_hdr(&xdr, &hdr);
3680 status = encode_putfh(&xdr, args->fh);
3683 status = encode_setacl(&xdr, args);
3688 * Decode SETACL response
3691 nfs4_xdr_dec_setacl(struct rpc_rqst *rqstp, uint32_t *p, void *res)
3693 struct xdr_stream xdr;
3694 struct compound_hdr hdr;
3697 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3698 status = decode_compound_hdr(&xdr, &hdr);
3701 status = decode_putfh(&xdr);
3704 status = decode_setattr(&xdr, res);
3710 * Decode GETACL response
3713 nfs4_xdr_dec_getacl(struct rpc_rqst *rqstp, uint32_t *p, size_t *acl_len)
3715 struct xdr_stream xdr;
3716 struct compound_hdr hdr;
3719 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3720 status = decode_compound_hdr(&xdr, &hdr);
3723 status = decode_putfh(&xdr);
3726 status = decode_getacl(&xdr, rqstp, acl_len);
3733 * Decode CLOSE response
3735 static int nfs4_xdr_dec_close(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_closeres *res)
3737 struct xdr_stream xdr;
3738 struct compound_hdr hdr;
3741 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3742 status = decode_compound_hdr(&xdr, &hdr);
3745 status = decode_putfh(&xdr);
3748 status = decode_close(&xdr, res);
3752 * Note: Server may do delete on close for this file
3753 * in which case the getattr call will fail with
3754 * an ESTALE error. Shouldn't be a problem,
3755 * though, since fattr->valid will remain unset.
3757 decode_getfattr(&xdr, res->fattr, res->server);
3763 * Decode OPEN response
3765 static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_openres *res)
3767 struct xdr_stream xdr;
3768 struct compound_hdr hdr;
3771 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3772 status = decode_compound_hdr(&xdr, &hdr);
3775 status = decode_putfh(&xdr);
3778 status = decode_savefh(&xdr);
3781 status = decode_open(&xdr, res);
3784 status = decode_getfh(&xdr, &res->fh);
3787 if (decode_getfattr(&xdr, res->f_attr, res->server) != 0)
3789 if ((status = decode_restorefh(&xdr)) != 0)
3791 decode_getfattr(&xdr, res->dir_attr, res->server);
3797 * Decode OPEN_CONFIRM response
3799 static int nfs4_xdr_dec_open_confirm(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_open_confirmres *res)
3801 struct xdr_stream xdr;
3802 struct compound_hdr hdr;
3805 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3806 status = decode_compound_hdr(&xdr, &hdr);
3809 status = decode_putfh(&xdr);
3812 status = decode_open_confirm(&xdr, res);
3818 * Decode OPEN response
3820 static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_openres *res)
3822 struct xdr_stream xdr;
3823 struct compound_hdr hdr;
3826 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3827 status = decode_compound_hdr(&xdr, &hdr);
3830 status = decode_putfh(&xdr);
3833 status = decode_open(&xdr, res);
3839 * Decode SETATTR response
3841 static int nfs4_xdr_dec_setattr(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_setattrres *res)
3843 struct xdr_stream xdr;
3844 struct compound_hdr hdr;
3847 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3848 status = decode_compound_hdr(&xdr, &hdr);
3851 status = decode_putfh(&xdr);
3854 status = decode_setattr(&xdr, res);
3857 status = decode_getfattr(&xdr, res->fattr, res->server);
3858 if (status == NFS4ERR_DELAY)
3865 * Decode LOCK response
3867 static int nfs4_xdr_dec_lock(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_lockres *res)
3869 struct xdr_stream xdr;
3870 struct compound_hdr hdr;
3873 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3874 status = decode_compound_hdr(&xdr, &hdr);
3877 status = decode_putfh(&xdr);
3880 status = decode_lock(&xdr, res);
3886 * Decode LOCKT response
3888 static int nfs4_xdr_dec_lockt(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_lockres *res)
3890 struct xdr_stream xdr;
3891 struct compound_hdr hdr;
3894 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3895 status = decode_compound_hdr(&xdr, &hdr);
3898 status = decode_putfh(&xdr);
3901 status = decode_lockt(&xdr, res);
3907 * Decode LOCKU response
3909 static int nfs4_xdr_dec_locku(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_lockres *res)
3911 struct xdr_stream xdr;
3912 struct compound_hdr hdr;
3915 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3916 status = decode_compound_hdr(&xdr, &hdr);
3919 status = decode_putfh(&xdr);
3922 status = decode_locku(&xdr, res);
3928 * Decode READLINK response
3930 static int nfs4_xdr_dec_readlink(struct rpc_rqst *rqstp, uint32_t *p, void *res)
3932 struct xdr_stream xdr;
3933 struct compound_hdr hdr;
3936 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3937 status = decode_compound_hdr(&xdr, &hdr);
3940 status = decode_putfh(&xdr);
3943 status = decode_readlink(&xdr, rqstp);
3949 * Decode READDIR response
3951 static int nfs4_xdr_dec_readdir(struct rpc_rqst *rqstp, uint32_t *p, struct nfs4_readdir_res *res)
3953 struct xdr_stream xdr;
3954 struct compound_hdr hdr;
3957 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3958 status = decode_compound_hdr(&xdr, &hdr);
3961 status = decode_putfh(&xdr);
3964 status = decode_readdir(&xdr, rqstp, res);
3970 * Decode Read response
3972 static int nfs4_xdr_dec_read(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_readres *res)
3974 struct xdr_stream xdr;
3975 struct compound_hdr hdr;
3978 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
3979 status = decode_compound_hdr(&xdr, &hdr);
3982 status = decode_putfh(&xdr);
3985 status = decode_read(&xdr, rqstp, res);
3987 status = res->count;
3993 * Decode WRITE response
3995 static int nfs4_xdr_dec_write(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_writeres *res)
3997 struct xdr_stream xdr;
3998 struct compound_hdr hdr;
4001 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4002 status = decode_compound_hdr(&xdr, &hdr);
4005 status = decode_putfh(&xdr);
4008 status = decode_write(&xdr, res);
4011 decode_getfattr(&xdr, res->fattr, res->server);
4013 status = res->count;
4019 * Decode COMMIT response
4021 static int nfs4_xdr_dec_commit(struct rpc_rqst *rqstp, uint32_t *p, struct nfs_writeres *res)
4023 struct xdr_stream xdr;
4024 struct compound_hdr hdr;
4027 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4028 status = decode_compound_hdr(&xdr, &hdr);
4031 status = decode_putfh(&xdr);
4034 status = decode_commit(&xdr, res);
4037 decode_getfattr(&xdr, res->fattr, res->server);
4045 static int nfs4_xdr_dec_fsinfo(struct rpc_rqst *req, uint32_t *p, struct nfs_fsinfo *fsinfo)
4047 struct xdr_stream xdr;
4048 struct compound_hdr hdr;
4051 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4052 status = decode_compound_hdr(&xdr, &hdr);
4054 status = decode_putfh(&xdr);
4056 status = decode_fsinfo(&xdr, fsinfo);
4058 status = -nfs_stat_to_errno(hdr.status);
4065 static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, uint32_t *p, struct nfs_pathconf *pathconf)
4067 struct xdr_stream xdr;
4068 struct compound_hdr hdr;
4071 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4072 status = decode_compound_hdr(&xdr, &hdr);
4074 status = decode_putfh(&xdr);
4076 status = decode_pathconf(&xdr, pathconf);
4083 static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, uint32_t *p, struct nfs_fsstat *fsstat)
4085 struct xdr_stream xdr;
4086 struct compound_hdr hdr;
4089 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4090 status = decode_compound_hdr(&xdr, &hdr);
4092 status = decode_putfh(&xdr);
4094 status = decode_statfs(&xdr, fsstat);
4099 * GETATTR_BITMAP request
4101 static int nfs4_xdr_dec_server_caps(struct rpc_rqst *req, uint32_t *p, struct nfs4_server_caps_res *res)
4103 struct xdr_stream xdr;
4104 struct compound_hdr hdr;
4107 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4108 if ((status = decode_compound_hdr(&xdr, &hdr)) != 0)
4110 if ((status = decode_putfh(&xdr)) != 0)
4112 status = decode_server_caps(&xdr, res);
4118 * Decode RENEW response
4120 static int nfs4_xdr_dec_renew(struct rpc_rqst *rqstp, uint32_t *p, void *dummy)
4122 struct xdr_stream xdr;
4123 struct compound_hdr hdr;
4126 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4127 status = decode_compound_hdr(&xdr, &hdr);
4129 status = decode_renew(&xdr);
4134 * a SETCLIENTID request
4136 static int nfs4_xdr_dec_setclientid(struct rpc_rqst *req, uint32_t *p,
4137 struct nfs4_client *clp)
4139 struct xdr_stream xdr;
4140 struct compound_hdr hdr;
4143 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4144 status = decode_compound_hdr(&xdr, &hdr);
4146 status = decode_setclientid(&xdr, clp);
4148 status = -nfs_stat_to_errno(hdr.status);
4153 * a SETCLIENTID_CONFIRM request
4155 static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst *req, uint32_t *p, struct nfs_fsinfo *fsinfo)
4157 struct xdr_stream xdr;
4158 struct compound_hdr hdr;
4161 xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
4162 status = decode_compound_hdr(&xdr, &hdr);
4164 status = decode_setclientid_confirm(&xdr);
4166 status = decode_putrootfh(&xdr);
4168 status = decode_fsinfo(&xdr, fsinfo);
4170 status = -nfs_stat_to_errno(hdr.status);
4175 * DELEGRETURN request
4177 static int nfs4_xdr_dec_delegreturn(struct rpc_rqst *rqstp, uint32_t *p, void *dummy)
4179 struct xdr_stream xdr;
4180 struct compound_hdr hdr;
4183 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
4184 status = decode_compound_hdr(&xdr, &hdr);
4186 status = decode_putfh(&xdr);
4188 status = decode_delegreturn(&xdr);
4193 uint32_t *nfs4_decode_dirent(uint32_t *p, struct nfs_entry *entry, int plus)
4195 uint32_t bitmap[2] = {0};
4200 return ERR_PTR(-EAGAIN);
4202 return ERR_PTR(-EBADCOOKIE);
4205 entry->prev_cookie = entry->cookie;
4206 p = xdr_decode_hyper(p, &entry->cookie);
4207 entry->len = ntohl(*p++);
4208 entry->name = (const char *) p;
4209 p += XDR_QUADLEN(entry->len);
4212 * In case the server doesn't return an inode number,
4213 * we fake one here. (We don't use inode number 0,
4214 * since glibc seems to choke on it...)
4218 len = ntohl(*p++); /* bitmap length */
4220 bitmap[0] = ntohl(*p++);
4222 bitmap[1] = ntohl(*p++);
4226 len = XDR_QUADLEN(ntohl(*p++)); /* attribute buffer length */
4228 if (bitmap[0] & FATTR4_WORD0_RDATTR_ERROR) {
4229 bitmap[0] &= ~FATTR4_WORD0_RDATTR_ERROR;
4230 /* Ignore the return value of rdattr_error for now */
4234 if (bitmap[0] == 0 && bitmap[1] == FATTR4_WORD1_MOUNTED_ON_FILEID)
4235 xdr_decode_hyper(p, &entry->ino);
4236 else if (bitmap[0] == FATTR4_WORD0_FILEID)
4237 xdr_decode_hyper(p, &entry->ino);
4241 entry->eof = !p[0] && p[1];
4246 * We need to translate between nfs status return values and
4247 * the local errno values which may not be the same.
4254 { NFS4ERR_PERM, EPERM },
4255 { NFS4ERR_NOENT, ENOENT },
4256 { NFS4ERR_IO, errno_NFSERR_IO },
4257 { NFS4ERR_NXIO, ENXIO },
4258 { NFS4ERR_ACCESS, EACCES },
4259 { NFS4ERR_EXIST, EEXIST },
4260 { NFS4ERR_XDEV, EXDEV },
4261 { NFS4ERR_NOTDIR, ENOTDIR },
4262 { NFS4ERR_ISDIR, EISDIR },
4263 { NFS4ERR_INVAL, EINVAL },
4264 { NFS4ERR_FBIG, EFBIG },
4265 { NFS4ERR_NOSPC, ENOSPC },
4266 { NFS4ERR_ROFS, EROFS },
4267 { NFS4ERR_MLINK, EMLINK },
4268 { NFS4ERR_NAMETOOLONG, ENAMETOOLONG },
4269 { NFS4ERR_NOTEMPTY, ENOTEMPTY },
4270 { NFS4ERR_DQUOT, EDQUOT },
4271 { NFS4ERR_STALE, ESTALE },
4272 { NFS4ERR_BADHANDLE, EBADHANDLE },
4273 { NFS4ERR_BADOWNER, EINVAL },
4274 { NFS4ERR_BADNAME, EINVAL },
4275 { NFS4ERR_BAD_COOKIE, EBADCOOKIE },
4276 { NFS4ERR_NOTSUPP, ENOTSUPP },
4277 { NFS4ERR_TOOSMALL, ETOOSMALL },
4278 { NFS4ERR_SERVERFAULT, ESERVERFAULT },
4279 { NFS4ERR_BADTYPE, EBADTYPE },
4280 { NFS4ERR_LOCKED, EAGAIN },
4281 { NFS4ERR_RESOURCE, EREMOTEIO },
4282 { NFS4ERR_SYMLINK, ELOOP },
4283 { NFS4ERR_OP_ILLEGAL, EOPNOTSUPP },
4284 { NFS4ERR_DEADLOCK, EDEADLK },
4285 { NFS4ERR_WRONGSEC, EPERM }, /* FIXME: this needs
4286 * to be handled by a
4293 * Convert an NFS error code to a local one.
4294 * This one is used jointly by NFSv2 and NFSv3.
4297 nfs_stat_to_errno(int stat)
4300 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
4301 if (nfs_errtbl[i].stat == stat)
4302 return nfs_errtbl[i].errno;
4304 if (stat <= 10000 || stat > 10100) {
4305 /* The server is looney tunes. */
4306 return ESERVERFAULT;
4308 /* If we cannot translate the error, the recovery routines should
4310 * Note: remaining NFSv4 error codes have values > 10000, so should
4311 * not conflict with native Linux error codes.
4317 # define MAX(a, b) (((a) > (b))? (a) : (b))
4320 #define PROC(proc, argtype, restype) \
4321 [NFSPROC4_CLNT_##proc] = { \
4322 .p_proc = NFSPROC4_COMPOUND, \
4323 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
4324 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
4325 .p_bufsiz = MAX(NFS4_##argtype##_sz,NFS4_##restype##_sz) << 2, \
4328 struct rpc_procinfo nfs4_procedures[] = {
4329 PROC(READ, enc_read, dec_read),
4330 PROC(WRITE, enc_write, dec_write),
4331 PROC(COMMIT, enc_commit, dec_commit),
4332 PROC(OPEN, enc_open, dec_open),
4333 PROC(OPEN_CONFIRM, enc_open_confirm, dec_open_confirm),
4334 PROC(OPEN_NOATTR, enc_open_noattr, dec_open_noattr),
4335 PROC(OPEN_DOWNGRADE, enc_open_downgrade, dec_open_downgrade),
4336 PROC(CLOSE, enc_close, dec_close),
4337 PROC(SETATTR, enc_setattr, dec_setattr),
4338 PROC(FSINFO, enc_fsinfo, dec_fsinfo),
4339 PROC(RENEW, enc_renew, dec_renew),
4340 PROC(SETCLIENTID, enc_setclientid, dec_setclientid),
4341 PROC(SETCLIENTID_CONFIRM, enc_setclientid_confirm, dec_setclientid_confirm),
4342 PROC(LOCK, enc_lock, dec_lock),
4343 PROC(LOCKT, enc_lockt, dec_lockt),
4344 PROC(LOCKU, enc_locku, dec_locku),
4345 PROC(ACCESS, enc_access, dec_access),
4346 PROC(GETATTR, enc_getattr, dec_getattr),
4347 PROC(LOOKUP, enc_lookup, dec_lookup),
4348 PROC(LOOKUP_ROOT, enc_lookup_root, dec_lookup_root),
4349 PROC(REMOVE, enc_remove, dec_remove),
4350 PROC(RENAME, enc_rename, dec_rename),
4351 PROC(LINK, enc_link, dec_link),
4352 PROC(SYMLINK, enc_symlink, dec_symlink),
4353 PROC(CREATE, enc_create, dec_create),
4354 PROC(PATHCONF, enc_pathconf, dec_pathconf),
4355 PROC(STATFS, enc_statfs, dec_statfs),
4356 PROC(READLINK, enc_readlink, dec_readlink),
4357 PROC(READDIR, enc_readdir, dec_readdir),
4358 PROC(SERVER_CAPS, enc_server_caps, dec_server_caps),
4359 PROC(DELEGRETURN, enc_delegreturn, dec_delegreturn),
4360 PROC(GETACL, enc_getacl, dec_getacl),
4361 PROC(SETACL, enc_setacl, dec_setacl),
4364 struct rpc_version nfs_version4 = {
4366 .nrprocs = sizeof(nfs4_procedures)/sizeof(nfs4_procedures[0]),
4367 .procs = nfs4_procedures