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_fsinfo_maxsz (op_encode_hdr_maxsz + 2)
99 #define decode_fsinfo_maxsz (op_decode_hdr_maxsz + 11)
100 #define encode_renew_maxsz (op_encode_hdr_maxsz + 3)
101 #define decode_renew_maxsz (op_decode_hdr_maxsz)
102 #define encode_setclientid_maxsz \
103 (op_encode_hdr_maxsz + \
104 4 /*server->ip_addr*/ + \
107 6 + (NFS4_VERIFIER_SIZE >> 2))
108 #define decode_setclientid_maxsz \
109 (op_decode_hdr_maxsz + \
111 1024) /* large value for CLID_INUSE */
112 #define encode_setclientid_confirm_maxsz \
113 (op_encode_hdr_maxsz + \
114 3 + (NFS4_VERIFIER_SIZE >> 2))
115 #define decode_setclientid_confirm_maxsz \
116 (op_decode_hdr_maxsz)
117 #define encode_lookup_maxsz (op_encode_hdr_maxsz + \
118 1 + ((3 + NFS4_FHSIZE) >> 2))
119 #define encode_remove_maxsz (op_encode_hdr_maxsz + \
121 #define encode_rename_maxsz (op_encode_hdr_maxsz + \
123 #define decode_rename_maxsz (op_decode_hdr_maxsz + 5 + 5)
124 #define encode_link_maxsz (op_encode_hdr_maxsz + \
126 #define decode_link_maxsz (op_decode_hdr_maxsz + 5)
127 #define encode_symlink_maxsz (op_encode_hdr_maxsz + \
128 1 + nfs4_name_maxsz + \
131 #define decode_symlink_maxsz (op_decode_hdr_maxsz + 8)
132 #define encode_create_maxsz (op_encode_hdr_maxsz + \
133 2 + nfs4_name_maxsz + \
135 #define decode_create_maxsz (op_decode_hdr_maxsz + 8)
136 #define encode_delegreturn_maxsz (op_encode_hdr_maxsz + 4)
137 #define decode_delegreturn_maxsz (op_decode_hdr_maxsz)
138 #define NFS4_enc_compound_sz (1024) /* XXX: large enough? */
139 #define NFS4_dec_compound_sz (1024) /* XXX: large enough? */
140 #define NFS4_enc_read_sz (compound_encode_hdr_maxsz + \
141 encode_putfh_maxsz + \
142 op_encode_hdr_maxsz + 7)
143 #define NFS4_dec_read_sz (compound_decode_hdr_maxsz + \
144 decode_putfh_maxsz + \
145 op_decode_hdr_maxsz + 2)
146 #define NFS4_enc_readlink_sz (compound_encode_hdr_maxsz + \
147 encode_putfh_maxsz + \
149 #define NFS4_dec_readlink_sz (compound_decode_hdr_maxsz + \
150 decode_putfh_maxsz + \
152 #define NFS4_enc_readdir_sz (compound_encode_hdr_maxsz + \
153 encode_putfh_maxsz + \
154 op_encode_hdr_maxsz + 9)
155 #define NFS4_dec_readdir_sz (compound_decode_hdr_maxsz + \
156 decode_putfh_maxsz + \
157 op_decode_hdr_maxsz + 2)
158 #define NFS4_enc_write_sz (compound_encode_hdr_maxsz + \
159 encode_putfh_maxsz + \
160 op_encode_hdr_maxsz + 8)
161 #define NFS4_dec_write_sz (compound_decode_hdr_maxsz + \
162 decode_putfh_maxsz + \
163 op_decode_hdr_maxsz + 4)
164 #define NFS4_enc_commit_sz (compound_encode_hdr_maxsz + \
165 encode_putfh_maxsz + \
166 op_encode_hdr_maxsz + 3)
167 #define NFS4_dec_commit_sz (compound_decode_hdr_maxsz + \
168 decode_putfh_maxsz + \
169 op_decode_hdr_maxsz + 2)
170 #define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
171 encode_putfh_maxsz + \
172 op_encode_hdr_maxsz + \
174 encode_getattr_maxsz + \
176 #define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
177 decode_putfh_maxsz + \
178 op_decode_hdr_maxsz + 4 + 5 + 2 + 3 + \
179 decode_getattr_maxsz + \
181 #define NFS4_enc_open_confirm_sz \
182 (compound_encode_hdr_maxsz + \
183 encode_putfh_maxsz + \
184 op_encode_hdr_maxsz + 5)
185 #define NFS4_dec_open_confirm_sz (compound_decode_hdr_maxsz + \
186 decode_putfh_maxsz + \
187 op_decode_hdr_maxsz + 4)
188 #define NFS4_enc_open_noattr_sz (compound_encode_hdr_maxsz + \
189 encode_putfh_maxsz + \
190 op_encode_hdr_maxsz + \
192 #define NFS4_dec_open_noattr_sz (compound_decode_hdr_maxsz + \
193 decode_putfh_maxsz + \
194 op_decode_hdr_maxsz + \
196 #define NFS4_enc_open_downgrade_sz \
197 (compound_encode_hdr_maxsz + \
198 encode_putfh_maxsz + \
199 op_encode_hdr_maxsz + 7)
200 #define NFS4_dec_open_downgrade_sz \
201 (compound_decode_hdr_maxsz + \
202 decode_putfh_maxsz + \
203 op_decode_hdr_maxsz + 4)
204 #define NFS4_enc_close_sz (compound_encode_hdr_maxsz + \
205 encode_putfh_maxsz + \
206 op_encode_hdr_maxsz + 5)
207 #define NFS4_dec_close_sz (compound_decode_hdr_maxsz + \
208 decode_putfh_maxsz + \
209 op_decode_hdr_maxsz + 4)
210 #define NFS4_enc_setattr_sz (compound_encode_hdr_maxsz + \
211 encode_putfh_maxsz + \
212 op_encode_hdr_maxsz + 4 + \
214 encode_getattr_maxsz)
215 #define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \
216 decode_putfh_maxsz + \
217 op_decode_hdr_maxsz + 3)
218 #define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \
219 encode_putfh_maxsz + \
221 #define NFS4_dec_fsinfo_sz (compound_decode_hdr_maxsz + \
222 decode_putfh_maxsz + \
224 #define NFS4_enc_renew_sz (compound_encode_hdr_maxsz + \
226 #define NFS4_dec_renew_sz (compound_decode_hdr_maxsz + \
228 #define NFS4_enc_setclientid_sz (compound_encode_hdr_maxsz + \
229 encode_setclientid_maxsz)
230 #define NFS4_dec_setclientid_sz (compound_decode_hdr_maxsz + \
231 decode_setclientid_maxsz)
232 #define NFS4_enc_setclientid_confirm_sz \
233 (compound_encode_hdr_maxsz + \
234 encode_setclientid_confirm_maxsz + \
235 encode_putrootfh_maxsz + \
237 #define NFS4_dec_setclientid_confirm_sz \
238 (compound_decode_hdr_maxsz + \
239 decode_setclientid_confirm_maxsz + \
240 decode_putrootfh_maxsz + \
242 #define NFS4_enc_lock_sz (compound_encode_hdr_maxsz + \
243 encode_putfh_maxsz + \
244 encode_getattr_maxsz + \
245 op_encode_hdr_maxsz + \
249 #define NFS4_dec_lock_sz (compound_decode_hdr_maxsz + \
250 decode_putfh_maxsz + \
251 decode_getattr_maxsz + \
252 op_decode_hdr_maxsz + \
255 #define NFS4_enc_lockt_sz (compound_encode_hdr_maxsz + \
256 encode_putfh_maxsz + \
257 encode_getattr_maxsz + \
258 op_encode_hdr_maxsz + \
261 #define NFS4_dec_lockt_sz (NFS4_dec_lock_sz)
262 #define NFS4_enc_locku_sz (compound_encode_hdr_maxsz + \
263 encode_putfh_maxsz + \
264 encode_getattr_maxsz + \
265 op_encode_hdr_maxsz + \
267 #define NFS4_dec_locku_sz (compound_decode_hdr_maxsz + \
268 decode_putfh_maxsz + \
269 decode_getattr_maxsz + \
270 op_decode_hdr_maxsz + 4)
271 #define NFS4_enc_access_sz (compound_encode_hdr_maxsz + \
272 encode_putfh_maxsz + \
273 op_encode_hdr_maxsz + 1)
274 #define NFS4_dec_access_sz (compound_decode_hdr_maxsz + \
275 decode_putfh_maxsz + \
276 op_decode_hdr_maxsz + 2)
277 #define NFS4_enc_getattr_sz (compound_encode_hdr_maxsz + \
278 encode_putfh_maxsz + \
279 encode_getattr_maxsz)
280 #define NFS4_dec_getattr_sz (compound_decode_hdr_maxsz + \
281 decode_putfh_maxsz + \
282 decode_getattr_maxsz)
283 #define NFS4_enc_lookup_sz (compound_encode_hdr_maxsz + \
284 encode_putfh_maxsz + \
285 encode_lookup_maxsz + \
286 encode_getattr_maxsz + \
288 #define NFS4_dec_lookup_sz (compound_decode_hdr_maxsz + \
289 decode_putfh_maxsz + \
290 op_decode_hdr_maxsz + \
291 decode_getattr_maxsz + \
293 #define NFS4_enc_lookup_root_sz (compound_encode_hdr_maxsz + \
294 encode_putrootfh_maxsz + \
295 encode_getattr_maxsz + \
297 #define NFS4_dec_lookup_root_sz (compound_decode_hdr_maxsz + \
298 decode_putrootfh_maxsz + \
299 decode_getattr_maxsz + \
301 #define NFS4_enc_remove_sz (compound_encode_hdr_maxsz + \
302 encode_putfh_maxsz + \
304 #define NFS4_dec_remove_sz (compound_decode_hdr_maxsz + \
305 decode_putfh_maxsz + \
306 op_decode_hdr_maxsz + 5)
307 #define NFS4_enc_rename_sz (compound_encode_hdr_maxsz + \
308 encode_putfh_maxsz + \
309 encode_savefh_maxsz + \
310 encode_putfh_maxsz + \
312 #define NFS4_dec_rename_sz (compound_decode_hdr_maxsz + \
313 decode_putfh_maxsz + \
314 decode_savefh_maxsz + \
315 decode_putfh_maxsz + \
317 #define NFS4_enc_link_sz (compound_encode_hdr_maxsz + \
318 encode_putfh_maxsz + \
319 encode_savefh_maxsz + \
320 encode_putfh_maxsz + \
322 #define NFS4_dec_link_sz (compound_decode_hdr_maxsz + \
323 decode_putfh_maxsz + \
324 decode_savefh_maxsz + \
325 decode_putfh_maxsz + \
327 #define NFS4_enc_symlink_sz (compound_encode_hdr_maxsz + \
328 encode_putfh_maxsz + \
329 encode_symlink_maxsz + \
330 encode_getattr_maxsz + \
332 #define NFS4_dec_symlink_sz (compound_decode_hdr_maxsz + \
333 decode_putfh_maxsz + \
334 decode_symlink_maxsz + \
335 decode_getattr_maxsz + \
337 #define NFS4_enc_create_sz (compound_encode_hdr_maxsz + \
338 encode_putfh_maxsz + \
339 encode_create_maxsz + \
340 encode_getattr_maxsz + \
342 #define NFS4_dec_create_sz (compound_decode_hdr_maxsz + \
343 decode_putfh_maxsz + \
344 decode_create_maxsz + \
345 decode_getattr_maxsz + \
347 #define NFS4_enc_pathconf_sz (compound_encode_hdr_maxsz + \
348 encode_putfh_maxsz + \
349 encode_getattr_maxsz)
350 #define NFS4_dec_pathconf_sz (compound_decode_hdr_maxsz + \
351 decode_putfh_maxsz + \
352 decode_getattr_maxsz)
353 #define NFS4_enc_statfs_sz (compound_encode_hdr_maxsz + \
354 encode_putfh_maxsz + \
355 encode_getattr_maxsz)
356 #define NFS4_dec_statfs_sz (compound_decode_hdr_maxsz + \
357 decode_putfh_maxsz + \
358 op_decode_hdr_maxsz + 12)
359 #define NFS4_enc_server_caps_sz (compound_encode_hdr_maxsz + \
360 encode_getattr_maxsz)
361 #define NFS4_dec_server_caps_sz (compound_decode_hdr_maxsz + \
362 decode_getattr_maxsz)
363 #define NFS4_enc_delegreturn_sz (compound_encode_hdr_maxsz + \
364 encode_putfh_maxsz + \
365 encode_delegreturn_maxsz)
366 #define NFS4_dec_delegreturn_sz (compound_decode_hdr_maxsz + \
367 decode_delegreturn_maxsz)
368 #define NFS4_enc_getacl_sz (compound_encode_hdr_maxsz + \
369 encode_putfh_maxsz + \
370 encode_getattr_maxsz)
371 #define NFS4_dec_getacl_sz (compound_decode_hdr_maxsz + \
372 decode_putfh_maxsz + \
373 op_decode_hdr_maxsz + \
374 nfs4_fattr_bitmap_maxsz + 1)
375 #define NFS4_enc_setacl_sz (compound_encode_hdr_maxsz + \
376 encode_putfh_maxsz + \
377 op_encode_hdr_maxsz + 4 + \
378 nfs4_fattr_bitmap_maxsz + 1)
379 #define NFS4_dec_setacl_sz (compound_decode_hdr_maxsz + \
380 decode_putfh_maxsz + \
381 op_decode_hdr_maxsz + nfs4_fattr_bitmap_maxsz)
385 unsigned int nfs2type
;
393 { S_IFSOCK
, NFSOCK
},
399 struct compound_hdr
{
407 * START OF "GENERIC" ENCODE ROUTINES.
408 * These may look a little ugly since they are imported from a "generic"
409 * set of XDR encode/decode routines which are intended to be shared by
410 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
412 * If the pain of reading these is too great, it should be a straightforward
413 * task to translate them into Linux-specific versions which are more
414 * consistent with the style used in NFSv2/v3...
416 #define WRITE32(n) *p++ = htonl(n)
417 #define WRITE64(n) do { \
418 *p++ = htonl((uint32_t)((n) >> 32)); \
419 *p++ = htonl((uint32_t)(n)); \
421 #define WRITEMEM(ptr,nbytes) do { \
422 p = xdr_encode_opaque_fixed(p, ptr, nbytes); \
425 #define RESERVE_SPACE(nbytes) do { \
426 p = xdr_reserve_space(xdr, nbytes); \
427 if (!p) printk("RESERVE_SPACE(%d) failed in function %s\n", (int) (nbytes), __FUNCTION__); \
431 static void encode_string(struct xdr_stream
*xdr
, unsigned int len
, const char *str
)
435 p
= xdr_reserve_space(xdr
, 4 + len
);
437 xdr_encode_opaque(p
, str
, len
);
440 static int encode_compound_hdr(struct xdr_stream
*xdr
, struct compound_hdr
*hdr
)
444 dprintk("encode_compound: tag=%.*s\n", (int)hdr
->taglen
, hdr
->tag
);
445 BUG_ON(hdr
->taglen
> NFS4_MAXTAGLEN
);
446 RESERVE_SPACE(12+(XDR_QUADLEN(hdr
->taglen
)<<2));
447 WRITE32(hdr
->taglen
);
448 WRITEMEM(hdr
->tag
, hdr
->taglen
);
449 WRITE32(NFS4_MINOR_VERSION
);
454 static void encode_nfs4_verifier(struct xdr_stream
*xdr
, const nfs4_verifier
*verf
)
458 p
= xdr_reserve_space(xdr
, NFS4_VERIFIER_SIZE
);
460 xdr_encode_opaque_fixed(p
, verf
->data
, NFS4_VERIFIER_SIZE
);
463 static int encode_attrs(struct xdr_stream
*xdr
, const struct iattr
*iap
, const struct nfs_server
*server
)
465 char owner_name
[IDMAP_NAMESZ
];
466 char owner_group
[IDMAP_NAMESZ
];
467 int owner_namelen
= 0;
468 int owner_grouplen
= 0;
477 * We reserve enough space to write the entire attribute buffer at once.
478 * In the worst-case, this would be
479 * 12(bitmap) + 4(attrlen) + 8(size) + 4(mode) + 4(atime) + 4(mtime)
480 * = 36 bytes, plus any contribution from variable-length fields
481 * such as owner/group.
486 if (iap
->ia_valid
& ATTR_SIZE
)
488 if (iap
->ia_valid
& ATTR_MODE
)
490 if (iap
->ia_valid
& ATTR_UID
) {
491 owner_namelen
= nfs_map_uid_to_name(server
->nfs4_state
, iap
->ia_uid
, owner_name
);
492 if (owner_namelen
< 0) {
493 printk(KERN_WARNING
"nfs: couldn't resolve uid %d to string\n",
496 strcpy(owner_name
, "nobody");
497 owner_namelen
= sizeof("nobody") - 1;
500 len
+= 4 + (XDR_QUADLEN(owner_namelen
) << 2);
502 if (iap
->ia_valid
& ATTR_GID
) {
503 owner_grouplen
= nfs_map_gid_to_group(server
->nfs4_state
, iap
->ia_gid
, owner_group
);
504 if (owner_grouplen
< 0) {
505 printk(KERN_WARNING
"nfs4: couldn't resolve gid %d to string\n",
507 strcpy(owner_group
, "nobody");
508 owner_grouplen
= sizeof("nobody") - 1;
511 len
+= 4 + (XDR_QUADLEN(owner_grouplen
) << 2);
513 if (iap
->ia_valid
& ATTR_ATIME_SET
)
515 else if (iap
->ia_valid
& ATTR_ATIME
)
517 if (iap
->ia_valid
& ATTR_MTIME_SET
)
519 else if (iap
->ia_valid
& ATTR_MTIME
)
524 * We write the bitmap length now, but leave the bitmap and the attribute
525 * buffer length to be backfilled at the end of this routine.
531 if (iap
->ia_valid
& ATTR_SIZE
) {
532 bmval0
|= FATTR4_WORD0_SIZE
;
533 WRITE64(iap
->ia_size
);
535 if (iap
->ia_valid
& ATTR_MODE
) {
536 bmval1
|= FATTR4_WORD1_MODE
;
537 WRITE32(iap
->ia_mode
);
539 if (iap
->ia_valid
& ATTR_UID
) {
540 bmval1
|= FATTR4_WORD1_OWNER
;
541 WRITE32(owner_namelen
);
542 WRITEMEM(owner_name
, owner_namelen
);
544 if (iap
->ia_valid
& ATTR_GID
) {
545 bmval1
|= FATTR4_WORD1_OWNER_GROUP
;
546 WRITE32(owner_grouplen
);
547 WRITEMEM(owner_group
, owner_grouplen
);
549 if (iap
->ia_valid
& ATTR_ATIME_SET
) {
550 bmval1
|= FATTR4_WORD1_TIME_ACCESS_SET
;
551 WRITE32(NFS4_SET_TO_CLIENT_TIME
);
553 WRITE32(iap
->ia_mtime
.tv_sec
);
554 WRITE32(iap
->ia_mtime
.tv_nsec
);
556 else if (iap
->ia_valid
& ATTR_ATIME
) {
557 bmval1
|= FATTR4_WORD1_TIME_ACCESS_SET
;
558 WRITE32(NFS4_SET_TO_SERVER_TIME
);
560 if (iap
->ia_valid
& ATTR_MTIME_SET
) {
561 bmval1
|= FATTR4_WORD1_TIME_MODIFY_SET
;
562 WRITE32(NFS4_SET_TO_CLIENT_TIME
);
564 WRITE32(iap
->ia_mtime
.tv_sec
);
565 WRITE32(iap
->ia_mtime
.tv_nsec
);
567 else if (iap
->ia_valid
& ATTR_MTIME
) {
568 bmval1
|= FATTR4_WORD1_TIME_MODIFY_SET
;
569 WRITE32(NFS4_SET_TO_SERVER_TIME
);
573 * Now we backfill the bitmap and the attribute buffer length.
575 if (len
!= ((char *)p
- (char *)q
) + 4) {
576 printk ("encode_attr: Attr length calculation error! %u != %Zu\n",
577 len
, ((char *)p
- (char *)q
) + 4);
580 len
= (char *)p
- (char *)q
- 12;
581 *q
++ = htonl(bmval0
);
582 *q
++ = htonl(bmval1
);
590 static int encode_access(struct xdr_stream
*xdr
, u32 access
)
601 static int encode_close(struct xdr_stream
*xdr
, const struct nfs_closeargs
*arg
)
605 RESERVE_SPACE(8+sizeof(arg
->stateid
.data
));
608 WRITEMEM(arg
->stateid
.data
, sizeof(arg
->stateid
.data
));
613 static int encode_commit(struct xdr_stream
*xdr
, const struct nfs_writeargs
*args
)
619 WRITE64(args
->offset
);
620 WRITE32(args
->count
);
625 static int encode_create(struct xdr_stream
*xdr
, const struct nfs4_create_arg
*create
)
631 WRITE32(create
->ftype
);
633 switch (create
->ftype
) {
635 RESERVE_SPACE(4 + create
->u
.symlink
->len
);
636 WRITE32(create
->u
.symlink
->len
);
637 WRITEMEM(create
->u
.symlink
->name
, create
->u
.symlink
->len
);
640 case NF4BLK
: case NF4CHR
:
642 WRITE32(create
->u
.device
.specdata1
);
643 WRITE32(create
->u
.device
.specdata2
);
650 RESERVE_SPACE(4 + create
->name
->len
);
651 WRITE32(create
->name
->len
);
652 WRITEMEM(create
->name
->name
, create
->name
->len
);
654 return encode_attrs(xdr
, create
->attrs
, create
->server
);
657 static int encode_getattr_one(struct xdr_stream
*xdr
, uint32_t bitmap
)
668 static int encode_getattr_two(struct xdr_stream
*xdr
, uint32_t bm0
, uint32_t bm1
)
680 static int encode_getfattr(struct xdr_stream
*xdr
, const u32
* bitmask
)
682 return encode_getattr_two(xdr
,
683 bitmask
[0] & nfs4_fattr_bitmap
[0],
684 bitmask
[1] & nfs4_fattr_bitmap
[1]);
687 static int encode_fsinfo(struct xdr_stream
*xdr
, const u32
* bitmask
)
689 return encode_getattr_two(xdr
, bitmask
[0] & nfs4_fsinfo_bitmap
[0],
690 bitmask
[1] & nfs4_fsinfo_bitmap
[1]);
693 static int encode_getfh(struct xdr_stream
*xdr
)
703 static int encode_link(struct xdr_stream
*xdr
, const struct qstr
*name
)
707 RESERVE_SPACE(8 + name
->len
);
710 WRITEMEM(name
->name
, name
->len
);
716 * opcode,type,reclaim,offset,length,new_lock_owner = 32
717 * open_seqid,open_stateid,lock_seqid,lock_owner.clientid, lock_owner.id = 40
719 static int encode_lock(struct xdr_stream
*xdr
, const struct nfs_lockargs
*arg
)
722 struct nfs_lock_opargs
*opargs
= arg
->u
.lock
;
727 WRITE32(opargs
->reclaim
);
728 WRITE64(arg
->offset
);
729 WRITE64(arg
->length
);
730 WRITE32(opargs
->new_lock_owner
);
731 if (opargs
->new_lock_owner
){
732 struct nfs_open_to_lock
*ol
= opargs
->u
.open_lock
;
735 WRITE32(ol
->open_seqid
);
736 WRITEMEM(&ol
->open_stateid
, sizeof(ol
->open_stateid
));
737 WRITE32(ol
->lock_seqid
);
738 WRITE64(ol
->lock_owner
.clientid
);
740 WRITE32(ol
->lock_owner
.id
);
743 struct nfs_exist_lock
*el
= opargs
->u
.exist_lock
;
746 WRITEMEM(&el
->stateid
, sizeof(el
->stateid
));
753 static int encode_lockt(struct xdr_stream
*xdr
, const struct nfs_lockargs
*arg
)
756 struct nfs_lowner
*opargs
= arg
->u
.lockt
;
761 WRITE64(arg
->offset
);
762 WRITE64(arg
->length
);
763 WRITE64(opargs
->clientid
);
770 static int encode_locku(struct xdr_stream
*xdr
, const struct nfs_lockargs
*arg
)
773 struct nfs_locku_opargs
*opargs
= arg
->u
.locku
;
778 WRITE32(opargs
->seqid
);
779 WRITEMEM(&opargs
->stateid
, sizeof(opargs
->stateid
));
780 WRITE64(arg
->offset
);
781 WRITE64(arg
->length
);
786 static int encode_lookup(struct xdr_stream
*xdr
, const struct qstr
*name
)
791 RESERVE_SPACE(8 + len
);
794 WRITEMEM(name
->name
, len
);
799 static void encode_share_access(struct xdr_stream
*xdr
, int open_flags
)
804 switch (open_flags
& (FMODE_READ
|FMODE_WRITE
)) {
806 WRITE32(NFS4_SHARE_ACCESS_READ
);
809 WRITE32(NFS4_SHARE_ACCESS_WRITE
);
811 case FMODE_READ
|FMODE_WRITE
:
812 WRITE32(NFS4_SHARE_ACCESS_BOTH
);
817 WRITE32(0); /* for linux, share_deny = 0 always */
820 static inline void encode_openhdr(struct xdr_stream
*xdr
, const struct nfs_openargs
*arg
)
824 * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4,
830 encode_share_access(xdr
, arg
->open_flags
);
832 WRITE64(arg
->clientid
);
837 static inline void encode_createmode(struct xdr_stream
*xdr
, const struct nfs_openargs
*arg
)
842 switch(arg
->open_flags
& O_EXCL
) {
844 WRITE32(NFS4_CREATE_UNCHECKED
);
845 encode_attrs(xdr
, arg
->u
.attrs
, arg
->server
);
848 WRITE32(NFS4_CREATE_EXCLUSIVE
);
849 encode_nfs4_verifier(xdr
, &arg
->u
.verifier
);
853 static void encode_opentype(struct xdr_stream
*xdr
, const struct nfs_openargs
*arg
)
858 switch (arg
->open_flags
& O_CREAT
) {
860 WRITE32(NFS4_OPEN_NOCREATE
);
863 BUG_ON(arg
->claim
!= NFS4_OPEN_CLAIM_NULL
);
864 WRITE32(NFS4_OPEN_CREATE
);
865 encode_createmode(xdr
, arg
);
869 static inline void encode_delegation_type(struct xdr_stream
*xdr
, int delegation_type
)
874 switch (delegation_type
) {
876 WRITE32(NFS4_OPEN_DELEGATE_NONE
);
879 WRITE32(NFS4_OPEN_DELEGATE_READ
);
881 case FMODE_WRITE
|FMODE_READ
:
882 WRITE32(NFS4_OPEN_DELEGATE_WRITE
);
889 static inline void encode_claim_null(struct xdr_stream
*xdr
, const struct qstr
*name
)
894 WRITE32(NFS4_OPEN_CLAIM_NULL
);
895 encode_string(xdr
, name
->len
, name
->name
);
898 static inline void encode_claim_previous(struct xdr_stream
*xdr
, int type
)
903 WRITE32(NFS4_OPEN_CLAIM_PREVIOUS
);
904 encode_delegation_type(xdr
, type
);
907 static inline void encode_claim_delegate_cur(struct xdr_stream
*xdr
, const struct qstr
*name
, const nfs4_stateid
*stateid
)
911 RESERVE_SPACE(4+sizeof(stateid
->data
));
912 WRITE32(NFS4_OPEN_CLAIM_DELEGATE_CUR
);
913 WRITEMEM(stateid
->data
, sizeof(stateid
->data
));
914 encode_string(xdr
, name
->len
, name
->name
);
917 static int encode_open(struct xdr_stream
*xdr
, const struct nfs_openargs
*arg
)
919 encode_openhdr(xdr
, arg
);
920 encode_opentype(xdr
, arg
);
921 switch (arg
->claim
) {
922 case NFS4_OPEN_CLAIM_NULL
:
923 encode_claim_null(xdr
, arg
->name
);
925 case NFS4_OPEN_CLAIM_PREVIOUS
:
926 encode_claim_previous(xdr
, arg
->u
.delegation_type
);
928 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
929 encode_claim_delegate_cur(xdr
, arg
->name
, &arg
->u
.delegation
);
937 static int encode_open_confirm(struct xdr_stream
*xdr
, const struct nfs_open_confirmargs
*arg
)
941 RESERVE_SPACE(8+sizeof(arg
->stateid
.data
));
942 WRITE32(OP_OPEN_CONFIRM
);
943 WRITEMEM(arg
->stateid
.data
, sizeof(arg
->stateid
.data
));
949 static int encode_open_downgrade(struct xdr_stream
*xdr
, const struct nfs_closeargs
*arg
)
953 RESERVE_SPACE(8+sizeof(arg
->stateid
.data
));
954 WRITE32(OP_OPEN_DOWNGRADE
);
955 WRITEMEM(arg
->stateid
.data
, sizeof(arg
->stateid
.data
));
957 encode_share_access(xdr
, arg
->open_flags
);
962 encode_putfh(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
)
967 RESERVE_SPACE(8 + len
);
970 WRITEMEM(fh
->data
, len
);
975 static int encode_putrootfh(struct xdr_stream
*xdr
)
980 WRITE32(OP_PUTROOTFH
);
985 static void encode_stateid(struct xdr_stream
*xdr
, const struct nfs_open_context
*ctx
)
987 nfs4_stateid stateid
;
991 if (ctx
->state
!= NULL
) {
992 nfs4_copy_stateid(&stateid
, ctx
->state
, ctx
->lockowner
);
993 WRITEMEM(stateid
.data
, sizeof(stateid
.data
));
995 WRITEMEM(zero_stateid
.data
, sizeof(zero_stateid
.data
));
998 static int encode_read(struct xdr_stream
*xdr
, const struct nfs_readargs
*args
)
1005 encode_stateid(xdr
, args
->context
);
1008 WRITE64(args
->offset
);
1009 WRITE32(args
->count
);
1014 static int encode_readdir(struct xdr_stream
*xdr
, const struct nfs4_readdir_arg
*readdir
, struct rpc_rqst
*req
)
1016 struct rpc_auth
*auth
= req
->rq_task
->tk_auth
;
1020 RESERVE_SPACE(32+sizeof(nfs4_verifier
));
1021 WRITE32(OP_READDIR
);
1022 WRITE64(readdir
->cookie
);
1023 WRITEMEM(readdir
->verifier
.data
, sizeof(readdir
->verifier
.data
));
1024 WRITE32(readdir
->count
>> 1); /* We're not doing readdirplus */
1025 WRITE32(readdir
->count
);
1027 if (readdir
->bitmask
[1] & FATTR4_WORD1_MOUNTED_ON_FILEID
) {
1029 WRITE32(FATTR4_WORD1_MOUNTED_ON_FILEID
);
1031 WRITE32(FATTR4_WORD0_FILEID
);
1035 /* set up reply kvec
1036 * toplevel_status + taglen + rescount + OP_PUTFH + status
1037 * + OP_READDIR + status + verifer(2) = 9
1039 replen
= (RPC_REPHDRSIZE
+ auth
->au_rslack
+ 9) << 2;
1040 xdr_inline_pages(&req
->rq_rcv_buf
, replen
, readdir
->pages
,
1041 readdir
->pgbase
, readdir
->count
);
1046 static int encode_readlink(struct xdr_stream
*xdr
, const struct nfs4_readlink
*readlink
, struct rpc_rqst
*req
)
1048 struct rpc_auth
*auth
= req
->rq_task
->tk_auth
;
1049 unsigned int replen
;
1053 WRITE32(OP_READLINK
);
1055 /* set up reply kvec
1056 * toplevel_status + taglen + rescount + OP_PUTFH + status
1057 * + OP_READLINK + status + string length = 8
1059 replen
= (RPC_REPHDRSIZE
+ auth
->au_rslack
+ 8) << 2;
1060 xdr_inline_pages(&req
->rq_rcv_buf
, replen
, readlink
->pages
,
1061 readlink
->pgbase
, readlink
->pglen
);
1066 static int encode_remove(struct xdr_stream
*xdr
, const struct qstr
*name
)
1070 RESERVE_SPACE(8 + name
->len
);
1073 WRITEMEM(name
->name
, name
->len
);
1078 static int encode_rename(struct xdr_stream
*xdr
, const struct qstr
*oldname
, const struct qstr
*newname
)
1082 RESERVE_SPACE(8 + oldname
->len
);
1084 WRITE32(oldname
->len
);
1085 WRITEMEM(oldname
->name
, oldname
->len
);
1087 RESERVE_SPACE(4 + newname
->len
);
1088 WRITE32(newname
->len
);
1089 WRITEMEM(newname
->name
, newname
->len
);
1094 static int encode_renew(struct xdr_stream
*xdr
, const struct nfs4_client
*client_stateid
)
1100 WRITE64(client_stateid
->cl_clientid
);
1106 encode_setacl(struct xdr_stream
*xdr
, struct nfs_setaclargs
*arg
)
1110 RESERVE_SPACE(4+sizeof(zero_stateid
.data
));
1111 WRITE32(OP_SETATTR
);
1112 WRITEMEM(zero_stateid
.data
, sizeof(zero_stateid
.data
));
1115 WRITE32(FATTR4_WORD0_ACL
);
1116 if (arg
->acl_len
% 4)
1119 WRITE32(arg
->acl_len
);
1120 xdr_write_pages(xdr
, arg
->acl_pages
, arg
->acl_pgbase
, arg
->acl_len
);
1125 encode_savefh(struct xdr_stream
*xdr
)
1135 static int encode_setattr(struct xdr_stream
*xdr
, const struct nfs_setattrargs
*arg
, const struct nfs_server
*server
)
1140 RESERVE_SPACE(4+sizeof(arg
->stateid
.data
));
1141 WRITE32(OP_SETATTR
);
1142 WRITEMEM(arg
->stateid
.data
, sizeof(arg
->stateid
.data
));
1144 if ((status
= encode_attrs(xdr
, arg
->iap
, server
)))
1150 static int encode_setclientid(struct xdr_stream
*xdr
, const struct nfs4_setclientid
*setclientid
)
1154 RESERVE_SPACE(4 + sizeof(setclientid
->sc_verifier
->data
));
1155 WRITE32(OP_SETCLIENTID
);
1156 WRITEMEM(setclientid
->sc_verifier
->data
, sizeof(setclientid
->sc_verifier
->data
));
1158 encode_string(xdr
, setclientid
->sc_name_len
, setclientid
->sc_name
);
1160 WRITE32(setclientid
->sc_prog
);
1161 encode_string(xdr
, setclientid
->sc_netid_len
, setclientid
->sc_netid
);
1162 encode_string(xdr
, setclientid
->sc_uaddr_len
, setclientid
->sc_uaddr
);
1164 WRITE32(setclientid
->sc_cb_ident
);
1169 static int encode_setclientid_confirm(struct xdr_stream
*xdr
, const struct nfs4_client
*client_state
)
1173 RESERVE_SPACE(12 + sizeof(client_state
->cl_confirm
.data
));
1174 WRITE32(OP_SETCLIENTID_CONFIRM
);
1175 WRITE64(client_state
->cl_clientid
);
1176 WRITEMEM(client_state
->cl_confirm
.data
, sizeof(client_state
->cl_confirm
.data
));
1181 static int encode_write(struct xdr_stream
*xdr
, const struct nfs_writeargs
*args
)
1188 encode_stateid(xdr
, args
->context
);
1191 WRITE64(args
->offset
);
1192 WRITE32(args
->stable
);
1193 WRITE32(args
->count
);
1195 xdr_write_pages(xdr
, args
->pages
, args
->pgbase
, args
->count
);
1200 static int encode_delegreturn(struct xdr_stream
*xdr
, const nfs4_stateid
*stateid
)
1206 WRITE32(OP_DELEGRETURN
);
1207 WRITEMEM(stateid
->data
, sizeof(stateid
->data
));
1212 * END OF "GENERIC" ENCODE ROUTINES.
1216 * Encode an ACCESS request
1218 static int nfs4_xdr_enc_access(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_accessargs
*args
)
1220 struct xdr_stream xdr
;
1221 struct compound_hdr hdr
= {
1226 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1227 encode_compound_hdr(&xdr
, &hdr
);
1228 if ((status
= encode_putfh(&xdr
, args
->fh
)) == 0)
1229 status
= encode_access(&xdr
, args
->access
);
1234 * Encode LOOKUP request
1236 static int nfs4_xdr_enc_lookup(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_lookup_arg
*args
)
1238 struct xdr_stream xdr
;
1239 struct compound_hdr hdr
= {
1244 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1245 encode_compound_hdr(&xdr
, &hdr
);
1246 if ((status
= encode_putfh(&xdr
, args
->dir_fh
)) != 0)
1248 if ((status
= encode_lookup(&xdr
, args
->name
)) != 0)
1250 if ((status
= encode_getfh(&xdr
)) != 0)
1252 status
= encode_getfattr(&xdr
, args
->bitmask
);
1258 * Encode LOOKUP_ROOT request
1260 static int nfs4_xdr_enc_lookup_root(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_lookup_root_arg
*args
)
1262 struct xdr_stream xdr
;
1263 struct compound_hdr hdr
= {
1268 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1269 encode_compound_hdr(&xdr
, &hdr
);
1270 if ((status
= encode_putrootfh(&xdr
)) != 0)
1272 if ((status
= encode_getfh(&xdr
)) == 0)
1273 status
= encode_getfattr(&xdr
, args
->bitmask
);
1279 * Encode REMOVE request
1281 static int nfs4_xdr_enc_remove(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_remove_arg
*args
)
1283 struct xdr_stream xdr
;
1284 struct compound_hdr hdr
= {
1289 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1290 encode_compound_hdr(&xdr
, &hdr
);
1291 if ((status
= encode_putfh(&xdr
, args
->fh
)) == 0)
1292 status
= encode_remove(&xdr
, args
->name
);
1297 * Encode RENAME request
1299 static int nfs4_xdr_enc_rename(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_rename_arg
*args
)
1301 struct xdr_stream xdr
;
1302 struct compound_hdr hdr
= {
1307 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1308 encode_compound_hdr(&xdr
, &hdr
);
1309 if ((status
= encode_putfh(&xdr
, args
->old_dir
)) != 0)
1311 if ((status
= encode_savefh(&xdr
)) != 0)
1313 if ((status
= encode_putfh(&xdr
, args
->new_dir
)) != 0)
1315 status
= encode_rename(&xdr
, args
->old_name
, args
->new_name
);
1321 * Encode LINK request
1323 static int nfs4_xdr_enc_link(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_link_arg
*args
)
1325 struct xdr_stream xdr
;
1326 struct compound_hdr hdr
= {
1331 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1332 encode_compound_hdr(&xdr
, &hdr
);
1333 if ((status
= encode_putfh(&xdr
, args
->fh
)) != 0)
1335 if ((status
= encode_savefh(&xdr
)) != 0)
1337 if ((status
= encode_putfh(&xdr
, args
->dir_fh
)) != 0)
1339 status
= encode_link(&xdr
, args
->name
);
1345 * Encode CREATE request
1347 static int nfs4_xdr_enc_create(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_create_arg
*args
)
1349 struct xdr_stream xdr
;
1350 struct compound_hdr hdr
= {
1355 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1356 encode_compound_hdr(&xdr
, &hdr
);
1357 if ((status
= encode_putfh(&xdr
, args
->dir_fh
)) != 0)
1359 if ((status
= encode_create(&xdr
, args
)) != 0)
1361 if ((status
= encode_getfh(&xdr
)) != 0)
1363 status
= encode_getfattr(&xdr
, args
->bitmask
);
1369 * Encode SYMLINK request
1371 static int nfs4_xdr_enc_symlink(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_create_arg
*args
)
1373 return nfs4_xdr_enc_create(req
, p
, args
);
1377 * Encode GETATTR request
1379 static int nfs4_xdr_enc_getattr(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_getattr_arg
*args
)
1381 struct xdr_stream xdr
;
1382 struct compound_hdr hdr
= {
1387 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1388 encode_compound_hdr(&xdr
, &hdr
);
1389 if ((status
= encode_putfh(&xdr
, args
->fh
)) == 0)
1390 status
= encode_getfattr(&xdr
, args
->bitmask
);
1395 * Encode a CLOSE request
1397 static int nfs4_xdr_enc_close(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_closeargs
*args
)
1399 struct xdr_stream xdr
;
1400 struct compound_hdr hdr
= {
1405 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1406 encode_compound_hdr(&xdr
, &hdr
);
1407 status
= encode_putfh(&xdr
, args
->fh
);
1410 status
= encode_close(&xdr
, args
);
1416 * Encode an OPEN request
1418 static int nfs4_xdr_enc_open(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_openargs
*args
)
1420 struct xdr_stream xdr
;
1421 struct compound_hdr hdr
= {
1426 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1427 encode_compound_hdr(&xdr
, &hdr
);
1428 status
= encode_putfh(&xdr
, args
->fh
);
1431 status
= encode_open(&xdr
, args
);
1434 status
= encode_getfh(&xdr
);
1437 status
= encode_getfattr(&xdr
, args
->bitmask
);
1443 * Encode an OPEN_CONFIRM request
1445 static int nfs4_xdr_enc_open_confirm(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_open_confirmargs
*args
)
1447 struct xdr_stream xdr
;
1448 struct compound_hdr hdr
= {
1453 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1454 encode_compound_hdr(&xdr
, &hdr
);
1455 status
= encode_putfh(&xdr
, args
->fh
);
1458 status
= encode_open_confirm(&xdr
, args
);
1464 * Encode an OPEN request with no attributes.
1466 static int nfs4_xdr_enc_open_noattr(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_openargs
*args
)
1468 struct xdr_stream xdr
;
1469 struct compound_hdr hdr
= {
1474 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1475 encode_compound_hdr(&xdr
, &hdr
);
1476 status
= encode_putfh(&xdr
, args
->fh
);
1479 status
= encode_open(&xdr
, args
);
1485 * Encode an OPEN_DOWNGRADE request
1487 static int nfs4_xdr_enc_open_downgrade(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_closeargs
*args
)
1489 struct xdr_stream xdr
;
1490 struct compound_hdr hdr
= {
1495 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1496 encode_compound_hdr(&xdr
, &hdr
);
1497 status
= encode_putfh(&xdr
, args
->fh
);
1500 status
= encode_open_downgrade(&xdr
, args
);
1506 * Encode a LOCK request
1508 static int nfs4_xdr_enc_lock(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_lockargs
*args
)
1510 struct xdr_stream xdr
;
1511 struct compound_hdr hdr
= {
1516 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1517 encode_compound_hdr(&xdr
, &hdr
);
1518 status
= encode_putfh(&xdr
, args
->fh
);
1521 status
= encode_lock(&xdr
, args
);
1527 * Encode a LOCKT request
1529 static int nfs4_xdr_enc_lockt(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_lockargs
*args
)
1531 struct xdr_stream xdr
;
1532 struct compound_hdr hdr
= {
1537 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1538 encode_compound_hdr(&xdr
, &hdr
);
1539 status
= encode_putfh(&xdr
, args
->fh
);
1542 status
= encode_lockt(&xdr
, args
);
1548 * Encode a LOCKU request
1550 static int nfs4_xdr_enc_locku(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_lockargs
*args
)
1552 struct xdr_stream xdr
;
1553 struct compound_hdr hdr
= {
1558 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1559 encode_compound_hdr(&xdr
, &hdr
);
1560 status
= encode_putfh(&xdr
, args
->fh
);
1563 status
= encode_locku(&xdr
, args
);
1569 * Encode a READLINK request
1571 static int nfs4_xdr_enc_readlink(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_readlink
*args
)
1573 struct xdr_stream xdr
;
1574 struct compound_hdr hdr
= {
1579 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1580 encode_compound_hdr(&xdr
, &hdr
);
1581 status
= encode_putfh(&xdr
, args
->fh
);
1584 status
= encode_readlink(&xdr
, args
, req
);
1590 * Encode a READDIR request
1592 static int nfs4_xdr_enc_readdir(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_readdir_arg
*args
)
1594 struct xdr_stream xdr
;
1595 struct compound_hdr hdr
= {
1600 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1601 encode_compound_hdr(&xdr
, &hdr
);
1602 status
= encode_putfh(&xdr
, args
->fh
);
1605 status
= encode_readdir(&xdr
, args
, req
);
1611 * Encode a READ request
1613 static int nfs4_xdr_enc_read(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_readargs
*args
)
1615 struct rpc_auth
*auth
= req
->rq_task
->tk_auth
;
1616 struct xdr_stream xdr
;
1617 struct compound_hdr hdr
= {
1622 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1623 encode_compound_hdr(&xdr
, &hdr
);
1624 status
= encode_putfh(&xdr
, args
->fh
);
1627 status
= encode_read(&xdr
, args
);
1631 /* set up reply kvec
1632 * toplevel status + taglen=0 + rescount + OP_PUTFH + status
1633 * + OP_READ + status + eof + datalen = 9
1635 replen
= (RPC_REPHDRSIZE
+ auth
->au_rslack
+ NFS4_dec_read_sz
) << 2;
1636 xdr_inline_pages(&req
->rq_rcv_buf
, replen
,
1637 args
->pages
, args
->pgbase
, args
->count
);
1643 * Encode an SETATTR request
1645 static int nfs4_xdr_enc_setattr(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_setattrargs
*args
)
1648 struct xdr_stream xdr
;
1649 struct compound_hdr hdr
= {
1654 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1655 encode_compound_hdr(&xdr
, &hdr
);
1656 status
= encode_putfh(&xdr
, args
->fh
);
1659 status
= encode_setattr(&xdr
, args
, args
->server
);
1662 status
= encode_getfattr(&xdr
, args
->bitmask
);
1668 * Encode a GETACL request
1671 nfs4_xdr_enc_getacl(struct rpc_rqst
*req
, uint32_t *p
,
1672 struct nfs_getaclargs
*args
)
1674 struct xdr_stream xdr
;
1675 struct rpc_auth
*auth
= req
->rq_task
->tk_auth
;
1676 struct compound_hdr hdr
= {
1681 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1682 encode_compound_hdr(&xdr
, &hdr
);
1683 status
= encode_putfh(&xdr
, args
->fh
);
1686 status
= encode_getattr_two(&xdr
, FATTR4_WORD0_ACL
, 0);
1687 /* set up reply buffer: */
1688 replen
= (RPC_REPHDRSIZE
+ auth
->au_rslack
+ NFS4_dec_getacl_sz
) << 2;
1689 xdr_inline_pages(&req
->rq_rcv_buf
, replen
,
1690 args
->acl_pages
, args
->acl_pgbase
, args
->acl_len
);
1696 * Encode a WRITE request
1698 static int nfs4_xdr_enc_write(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_writeargs
*args
)
1700 struct xdr_stream xdr
;
1701 struct compound_hdr hdr
= {
1706 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1707 encode_compound_hdr(&xdr
, &hdr
);
1708 status
= encode_putfh(&xdr
, args
->fh
);
1711 status
= encode_write(&xdr
, args
);
1719 static int nfs4_xdr_enc_commit(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_writeargs
*args
)
1721 struct xdr_stream xdr
;
1722 struct compound_hdr hdr
= {
1727 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1728 encode_compound_hdr(&xdr
, &hdr
);
1729 status
= encode_putfh(&xdr
, args
->fh
);
1732 status
= encode_commit(&xdr
, args
);
1740 static int nfs4_xdr_enc_fsinfo(struct rpc_rqst
*req
, uint32_t *p
, struct nfs4_fsinfo_arg
*args
)
1742 struct xdr_stream xdr
;
1743 struct compound_hdr hdr
= {
1748 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1749 encode_compound_hdr(&xdr
, &hdr
);
1750 status
= encode_putfh(&xdr
, args
->fh
);
1752 status
= encode_fsinfo(&xdr
, args
->bitmask
);
1757 * a PATHCONF request
1759 static int nfs4_xdr_enc_pathconf(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_pathconf_arg
*args
)
1761 struct xdr_stream xdr
;
1762 struct compound_hdr hdr
= {
1767 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1768 encode_compound_hdr(&xdr
, &hdr
);
1769 status
= encode_putfh(&xdr
, args
->fh
);
1771 status
= encode_getattr_one(&xdr
,
1772 args
->bitmask
[0] & nfs4_pathconf_bitmap
[0]);
1779 static int nfs4_xdr_enc_statfs(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_statfs_arg
*args
)
1781 struct xdr_stream xdr
;
1782 struct compound_hdr hdr
= {
1787 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1788 encode_compound_hdr(&xdr
, &hdr
);
1789 status
= encode_putfh(&xdr
, args
->fh
);
1791 status
= encode_getattr_two(&xdr
,
1792 args
->bitmask
[0] & nfs4_statfs_bitmap
[0],
1793 args
->bitmask
[1] & nfs4_statfs_bitmap
[1]);
1798 * GETATTR_BITMAP request
1800 static int nfs4_xdr_enc_server_caps(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs_fh
*fhandle
)
1802 struct xdr_stream xdr
;
1803 struct compound_hdr hdr
= {
1808 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1809 encode_compound_hdr(&xdr
, &hdr
);
1810 status
= encode_putfh(&xdr
, fhandle
);
1812 status
= encode_getattr_one(&xdr
, FATTR4_WORD0_SUPPORTED_ATTRS
|
1813 FATTR4_WORD0_LINK_SUPPORT
|
1814 FATTR4_WORD0_SYMLINK_SUPPORT
|
1815 FATTR4_WORD0_ACLSUPPORT
);
1822 static int nfs4_xdr_enc_renew(struct rpc_rqst
*req
, uint32_t *p
, struct nfs4_client
*clp
)
1824 struct xdr_stream xdr
;
1825 struct compound_hdr hdr
= {
1829 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1830 encode_compound_hdr(&xdr
, &hdr
);
1831 return encode_renew(&xdr
, clp
);
1835 * a SETCLIENTID request
1837 static int nfs4_xdr_enc_setclientid(struct rpc_rqst
*req
, uint32_t *p
, struct nfs4_setclientid
*sc
)
1839 struct xdr_stream xdr
;
1840 struct compound_hdr hdr
= {
1844 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1845 encode_compound_hdr(&xdr
, &hdr
);
1846 return encode_setclientid(&xdr
, sc
);
1850 * a SETCLIENTID_CONFIRM request
1852 static int nfs4_xdr_enc_setclientid_confirm(struct rpc_rqst
*req
, uint32_t *p
, struct nfs4_client
*clp
)
1854 struct xdr_stream xdr
;
1855 struct compound_hdr hdr
= {
1858 const u32 lease_bitmap
[2] = { FATTR4_WORD0_LEASE_TIME
, 0 };
1861 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1862 encode_compound_hdr(&xdr
, &hdr
);
1863 status
= encode_setclientid_confirm(&xdr
, clp
);
1865 status
= encode_putrootfh(&xdr
);
1867 status
= encode_fsinfo(&xdr
, lease_bitmap
);
1872 * DELEGRETURN request
1874 static int nfs4_xdr_enc_delegreturn(struct rpc_rqst
*req
, uint32_t *p
, const struct nfs4_delegreturnargs
*args
)
1876 struct xdr_stream xdr
;
1877 struct compound_hdr hdr
= {
1882 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
1883 encode_compound_hdr(&xdr
, &hdr
);
1884 if ((status
= encode_putfh(&xdr
, args
->fhandle
)) == 0)
1885 status
= encode_delegreturn(&xdr
, args
->stateid
);
1890 * START OF "GENERIC" DECODE ROUTINES.
1891 * These may look a little ugly since they are imported from a "generic"
1892 * set of XDR encode/decode routines which are intended to be shared by
1893 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
1895 * If the pain of reading these is too great, it should be a straightforward
1896 * task to translate them into Linux-specific versions which are more
1897 * consistent with the style used in NFSv2/v3...
1899 #define READ32(x) (x) = ntohl(*p++)
1900 #define READ64(x) do { \
1901 (x) = (u64)ntohl(*p++) << 32; \
1902 (x) |= ntohl(*p++); \
1904 #define READTIME(x) do { \
1906 (x.tv_sec) = ntohl(*p++); \
1907 (x.tv_nsec) = ntohl(*p++); \
1909 #define COPYMEM(x,nbytes) do { \
1910 memcpy((x), p, nbytes); \
1911 p += XDR_QUADLEN(nbytes); \
1914 #define READ_BUF(nbytes) do { \
1915 p = xdr_inline_decode(xdr, nbytes); \
1917 printk(KERN_WARNING "%s: reply buffer overflowed in line %d.", \
1918 __FUNCTION__, __LINE__); \
1923 static int decode_opaque_inline(struct xdr_stream
*xdr
, uint32_t *len
, char **string
)
1930 *string
= (char *)p
;
1934 static int decode_compound_hdr(struct xdr_stream
*xdr
, struct compound_hdr
*hdr
)
1939 READ32(hdr
->status
);
1940 READ32(hdr
->taglen
);
1942 READ_BUF(hdr
->taglen
+ 4);
1943 hdr
->tag
= (char *)p
;
1944 p
+= XDR_QUADLEN(hdr
->taglen
);
1949 static int decode_op_hdr(struct xdr_stream
*xdr
, enum nfs_opnum4 expected
)
1957 if (opnum
!= expected
) {
1959 "nfs4_decode_op_hdr: Server returned operation"
1960 " %d but we issued a request for %d\n",
1965 if (nfserr
!= NFS_OK
)
1966 return -nfs_stat_to_errno(nfserr
);
1971 static int decode_ace(struct xdr_stream
*xdr
, void *ace
, struct nfs4_client
*clp
)
1978 return decode_opaque_inline(xdr
, &strlen
, &str
);
1981 static int decode_attr_bitmap(struct xdr_stream
*xdr
, uint32_t *bitmap
)
1988 bitmap
[0] = bitmap
[1] = 0;
1989 READ_BUF((bmlen
<< 2));
1998 static inline int decode_attr_length(struct xdr_stream
*xdr
, uint32_t *attrlen
, uint32_t **savep
)
2008 static int decode_attr_supported(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *bitmask
)
2010 if (likely(bitmap
[0] & FATTR4_WORD0_SUPPORTED_ATTRS
)) {
2011 decode_attr_bitmap(xdr
, bitmask
);
2012 bitmap
[0] &= ~FATTR4_WORD0_SUPPORTED_ATTRS
;
2014 bitmask
[0] = bitmask
[1] = 0;
2015 dprintk("%s: bitmask=0x%x%x\n", __FUNCTION__
, bitmask
[0], bitmask
[1]);
2019 static int decode_attr_type(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *type
)
2024 if (unlikely(bitmap
[0] & (FATTR4_WORD0_TYPE
- 1U)))
2026 if (likely(bitmap
[0] & FATTR4_WORD0_TYPE
)) {
2029 if (*type
< NF4REG
|| *type
> NF4NAMEDATTR
) {
2030 dprintk("%s: bad type %d\n", __FUNCTION__
, *type
);
2033 bitmap
[0] &= ~FATTR4_WORD0_TYPE
;
2035 dprintk("%s: type=0%o\n", __FUNCTION__
, nfs_type2fmt
[*type
].nfs2type
);
2039 static int decode_attr_change(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *change
)
2044 if (unlikely(bitmap
[0] & (FATTR4_WORD0_CHANGE
- 1U)))
2046 if (likely(bitmap
[0] & FATTR4_WORD0_CHANGE
)) {
2049 bitmap
[0] &= ~FATTR4_WORD0_CHANGE
;
2051 dprintk("%s: change attribute=%Lu\n", __FUNCTION__
,
2052 (unsigned long long)*change
);
2056 static int decode_attr_size(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *size
)
2061 if (unlikely(bitmap
[0] & (FATTR4_WORD0_SIZE
- 1U)))
2063 if (likely(bitmap
[0] & FATTR4_WORD0_SIZE
)) {
2066 bitmap
[0] &= ~FATTR4_WORD0_SIZE
;
2068 dprintk("%s: file size=%Lu\n", __FUNCTION__
, (unsigned long long)*size
);
2072 static int decode_attr_link_support(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2077 if (unlikely(bitmap
[0] & (FATTR4_WORD0_LINK_SUPPORT
- 1U)))
2079 if (likely(bitmap
[0] & FATTR4_WORD0_LINK_SUPPORT
)) {
2082 bitmap
[0] &= ~FATTR4_WORD0_LINK_SUPPORT
;
2084 dprintk("%s: link support=%s\n", __FUNCTION__
, *res
== 0 ? "false" : "true");
2088 static int decode_attr_symlink_support(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2093 if (unlikely(bitmap
[0] & (FATTR4_WORD0_SYMLINK_SUPPORT
- 1U)))
2095 if (likely(bitmap
[0] & FATTR4_WORD0_SYMLINK_SUPPORT
)) {
2098 bitmap
[0] &= ~FATTR4_WORD0_SYMLINK_SUPPORT
;
2100 dprintk("%s: symlink support=%s\n", __FUNCTION__
, *res
== 0 ? "false" : "true");
2104 static int decode_attr_fsid(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct nfs4_fsid
*fsid
)
2110 if (unlikely(bitmap
[0] & (FATTR4_WORD0_FSID
- 1U)))
2112 if (likely(bitmap
[0] & FATTR4_WORD0_FSID
)) {
2114 READ64(fsid
->major
);
2115 READ64(fsid
->minor
);
2116 bitmap
[0] &= ~FATTR4_WORD0_FSID
;
2118 dprintk("%s: fsid=(0x%Lx/0x%Lx)\n", __FUNCTION__
,
2119 (unsigned long long)fsid
->major
,
2120 (unsigned long long)fsid
->minor
);
2124 static int decode_attr_lease_time(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2129 if (unlikely(bitmap
[0] & (FATTR4_WORD0_LEASE_TIME
- 1U)))
2131 if (likely(bitmap
[0] & FATTR4_WORD0_LEASE_TIME
)) {
2134 bitmap
[0] &= ~FATTR4_WORD0_LEASE_TIME
;
2136 dprintk("%s: file size=%u\n", __FUNCTION__
, (unsigned int)*res
);
2140 static int decode_attr_aclsupport(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2144 *res
= ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
;
2145 if (unlikely(bitmap
[0] & (FATTR4_WORD0_ACLSUPPORT
- 1U)))
2147 if (likely(bitmap
[0] & FATTR4_WORD0_ACLSUPPORT
)) {
2150 bitmap
[0] &= ~FATTR4_WORD0_ACLSUPPORT
;
2152 dprintk("%s: ACLs supported=%u\n", __FUNCTION__
, (unsigned int)*res
);
2156 static int decode_attr_fileid(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *fileid
)
2161 if (unlikely(bitmap
[0] & (FATTR4_WORD0_FILEID
- 1U)))
2163 if (likely(bitmap
[0] & FATTR4_WORD0_FILEID
)) {
2166 bitmap
[0] &= ~FATTR4_WORD0_FILEID
;
2168 dprintk("%s: fileid=%Lu\n", __FUNCTION__
, (unsigned long long)*fileid
);
2172 static int decode_attr_files_avail(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2178 if (unlikely(bitmap
[0] & (FATTR4_WORD0_FILES_AVAIL
- 1U)))
2180 if (likely(bitmap
[0] & FATTR4_WORD0_FILES_AVAIL
)) {
2183 bitmap
[0] &= ~FATTR4_WORD0_FILES_AVAIL
;
2185 dprintk("%s: files avail=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2189 static int decode_attr_files_free(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2195 if (unlikely(bitmap
[0] & (FATTR4_WORD0_FILES_FREE
- 1U)))
2197 if (likely(bitmap
[0] & FATTR4_WORD0_FILES_FREE
)) {
2200 bitmap
[0] &= ~FATTR4_WORD0_FILES_FREE
;
2202 dprintk("%s: files free=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2206 static int decode_attr_files_total(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2212 if (unlikely(bitmap
[0] & (FATTR4_WORD0_FILES_TOTAL
- 1U)))
2214 if (likely(bitmap
[0] & FATTR4_WORD0_FILES_TOTAL
)) {
2217 bitmap
[0] &= ~FATTR4_WORD0_FILES_TOTAL
;
2219 dprintk("%s: files total=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2223 static int decode_attr_maxfilesize(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2229 if (unlikely(bitmap
[0] & (FATTR4_WORD0_MAXFILESIZE
- 1U)))
2231 if (likely(bitmap
[0] & FATTR4_WORD0_MAXFILESIZE
)) {
2234 bitmap
[0] &= ~FATTR4_WORD0_MAXFILESIZE
;
2236 dprintk("%s: maxfilesize=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2240 static int decode_attr_maxlink(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *maxlink
)
2246 if (unlikely(bitmap
[0] & (FATTR4_WORD0_MAXLINK
- 1U)))
2248 if (likely(bitmap
[0] & FATTR4_WORD0_MAXLINK
)) {
2251 bitmap
[0] &= ~FATTR4_WORD0_MAXLINK
;
2253 dprintk("%s: maxlink=%u\n", __FUNCTION__
, *maxlink
);
2257 static int decode_attr_maxname(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *maxname
)
2263 if (unlikely(bitmap
[0] & (FATTR4_WORD0_MAXNAME
- 1U)))
2265 if (likely(bitmap
[0] & FATTR4_WORD0_MAXNAME
)) {
2268 bitmap
[0] &= ~FATTR4_WORD0_MAXNAME
;
2270 dprintk("%s: maxname=%u\n", __FUNCTION__
, *maxname
);
2274 static int decode_attr_maxread(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2280 if (unlikely(bitmap
[0] & (FATTR4_WORD0_MAXREAD
- 1U)))
2282 if (likely(bitmap
[0] & FATTR4_WORD0_MAXREAD
)) {
2286 if (maxread
> 0x7FFFFFFF)
2287 maxread
= 0x7FFFFFFF;
2288 *res
= (uint32_t)maxread
;
2289 bitmap
[0] &= ~FATTR4_WORD0_MAXREAD
;
2291 dprintk("%s: maxread=%lu\n", __FUNCTION__
, (unsigned long)*res
);
2295 static int decode_attr_maxwrite(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *res
)
2301 if (unlikely(bitmap
[0] & (FATTR4_WORD0_MAXWRITE
- 1U)))
2303 if (likely(bitmap
[0] & FATTR4_WORD0_MAXWRITE
)) {
2307 if (maxwrite
> 0x7FFFFFFF)
2308 maxwrite
= 0x7FFFFFFF;
2309 *res
= (uint32_t)maxwrite
;
2310 bitmap
[0] &= ~FATTR4_WORD0_MAXWRITE
;
2312 dprintk("%s: maxwrite=%lu\n", __FUNCTION__
, (unsigned long)*res
);
2316 static int decode_attr_mode(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *mode
)
2321 if (unlikely(bitmap
[1] & (FATTR4_WORD1_MODE
- 1U)))
2323 if (likely(bitmap
[1] & FATTR4_WORD1_MODE
)) {
2327 bitmap
[1] &= ~FATTR4_WORD1_MODE
;
2329 dprintk("%s: file mode=0%o\n", __FUNCTION__
, (unsigned int)*mode
);
2333 static int decode_attr_nlink(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint32_t *nlink
)
2338 if (unlikely(bitmap
[1] & (FATTR4_WORD1_NUMLINKS
- 1U)))
2340 if (likely(bitmap
[1] & FATTR4_WORD1_NUMLINKS
)) {
2343 bitmap
[1] &= ~FATTR4_WORD1_NUMLINKS
;
2345 dprintk("%s: nlink=%u\n", __FUNCTION__
, (unsigned int)*nlink
);
2349 static int decode_attr_owner(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct nfs4_client
*clp
, int32_t *uid
)
2354 if (unlikely(bitmap
[1] & (FATTR4_WORD1_OWNER
- 1U)))
2356 if (likely(bitmap
[1] & FATTR4_WORD1_OWNER
)) {
2360 if (len
< XDR_MAX_NETOBJ
) {
2361 if (nfs_map_name_to_uid(clp
, (char *)p
, len
, uid
) != 0)
2362 dprintk("%s: nfs_map_name_to_uid failed!\n",
2365 printk(KERN_WARNING
"%s: name too long (%u)!\n",
2367 bitmap
[1] &= ~FATTR4_WORD1_OWNER
;
2369 dprintk("%s: uid=%d\n", __FUNCTION__
, (int)*uid
);
2373 static int decode_attr_group(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct nfs4_client
*clp
, int32_t *gid
)
2378 if (unlikely(bitmap
[1] & (FATTR4_WORD1_OWNER_GROUP
- 1U)))
2380 if (likely(bitmap
[1] & FATTR4_WORD1_OWNER_GROUP
)) {
2384 if (len
< XDR_MAX_NETOBJ
) {
2385 if (nfs_map_group_to_gid(clp
, (char *)p
, len
, gid
) != 0)
2386 dprintk("%s: nfs_map_group_to_gid failed!\n",
2389 printk(KERN_WARNING
"%s: name too long (%u)!\n",
2391 bitmap
[1] &= ~FATTR4_WORD1_OWNER_GROUP
;
2393 dprintk("%s: gid=%d\n", __FUNCTION__
, (int)*gid
);
2397 static int decode_attr_rdev(struct xdr_stream
*xdr
, uint32_t *bitmap
, dev_t
*rdev
)
2399 uint32_t major
= 0, minor
= 0, *p
;
2402 if (unlikely(bitmap
[1] & (FATTR4_WORD1_RAWDEV
- 1U)))
2404 if (likely(bitmap
[1] & FATTR4_WORD1_RAWDEV
)) {
2410 tmp
= MKDEV(major
, minor
);
2411 if (MAJOR(tmp
) == major
&& MINOR(tmp
) == minor
)
2413 bitmap
[1] &= ~ FATTR4_WORD1_RAWDEV
;
2415 dprintk("%s: rdev=(0x%x:0x%x)\n", __FUNCTION__
, major
, minor
);
2419 static int decode_attr_space_avail(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2425 if (unlikely(bitmap
[1] & (FATTR4_WORD1_SPACE_AVAIL
- 1U)))
2427 if (likely(bitmap
[1] & FATTR4_WORD1_SPACE_AVAIL
)) {
2430 bitmap
[1] &= ~FATTR4_WORD1_SPACE_AVAIL
;
2432 dprintk("%s: space avail=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2436 static int decode_attr_space_free(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2442 if (unlikely(bitmap
[1] & (FATTR4_WORD1_SPACE_FREE
- 1U)))
2444 if (likely(bitmap
[1] & FATTR4_WORD1_SPACE_FREE
)) {
2447 bitmap
[1] &= ~FATTR4_WORD1_SPACE_FREE
;
2449 dprintk("%s: space free=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2453 static int decode_attr_space_total(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *res
)
2459 if (unlikely(bitmap
[1] & (FATTR4_WORD1_SPACE_TOTAL
- 1U)))
2461 if (likely(bitmap
[1] & FATTR4_WORD1_SPACE_TOTAL
)) {
2464 bitmap
[1] &= ~FATTR4_WORD1_SPACE_TOTAL
;
2466 dprintk("%s: space total=%Lu\n", __FUNCTION__
, (unsigned long long)*res
);
2470 static int decode_attr_space_used(struct xdr_stream
*xdr
, uint32_t *bitmap
, uint64_t *used
)
2475 if (unlikely(bitmap
[1] & (FATTR4_WORD1_SPACE_USED
- 1U)))
2477 if (likely(bitmap
[1] & FATTR4_WORD1_SPACE_USED
)) {
2480 bitmap
[1] &= ~FATTR4_WORD1_SPACE_USED
;
2482 dprintk("%s: space used=%Lu\n", __FUNCTION__
,
2483 (unsigned long long)*used
);
2487 static int decode_attr_time(struct xdr_stream
*xdr
, struct timespec
*time
)
2496 time
->tv_sec
= (time_t)sec
;
2497 time
->tv_nsec
= (long)nsec
;
2501 static int decode_attr_time_access(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct timespec
*time
)
2507 if (unlikely(bitmap
[1] & (FATTR4_WORD1_TIME_ACCESS
- 1U)))
2509 if (likely(bitmap
[1] & FATTR4_WORD1_TIME_ACCESS
)) {
2510 status
= decode_attr_time(xdr
, time
);
2511 bitmap
[1] &= ~FATTR4_WORD1_TIME_ACCESS
;
2513 dprintk("%s: atime=%ld\n", __FUNCTION__
, (long)time
->tv_sec
);
2517 static int decode_attr_time_metadata(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct timespec
*time
)
2523 if (unlikely(bitmap
[1] & (FATTR4_WORD1_TIME_METADATA
- 1U)))
2525 if (likely(bitmap
[1] & FATTR4_WORD1_TIME_METADATA
)) {
2526 status
= decode_attr_time(xdr
, time
);
2527 bitmap
[1] &= ~FATTR4_WORD1_TIME_METADATA
;
2529 dprintk("%s: ctime=%ld\n", __FUNCTION__
, (long)time
->tv_sec
);
2533 static int decode_attr_time_modify(struct xdr_stream
*xdr
, uint32_t *bitmap
, struct timespec
*time
)
2539 if (unlikely(bitmap
[1] & (FATTR4_WORD1_TIME_MODIFY
- 1U)))
2541 if (likely(bitmap
[1] & FATTR4_WORD1_TIME_MODIFY
)) {
2542 status
= decode_attr_time(xdr
, time
);
2543 bitmap
[1] &= ~FATTR4_WORD1_TIME_MODIFY
;
2545 dprintk("%s: mtime=%ld\n", __FUNCTION__
, (long)time
->tv_sec
);
2549 static int verify_attr_len(struct xdr_stream
*xdr
, uint32_t *savep
, uint32_t attrlen
)
2551 unsigned int attrwords
= XDR_QUADLEN(attrlen
);
2552 unsigned int nwords
= xdr
->p
- savep
;
2554 if (unlikely(attrwords
!= nwords
)) {
2555 printk(KERN_WARNING
"%s: server returned incorrect attribute length: %u %c %u\n",
2558 (attrwords
< nwords
) ? '<' : '>',
2565 static int decode_change_info(struct xdr_stream
*xdr
, struct nfs4_change_info
*cinfo
)
2570 READ32(cinfo
->atomic
);
2571 READ64(cinfo
->before
);
2572 READ64(cinfo
->after
);
2576 static int decode_access(struct xdr_stream
*xdr
, struct nfs4_accessres
*access
)
2582 status
= decode_op_hdr(xdr
, OP_ACCESS
);
2588 access
->supported
= supp
;
2589 access
->access
= acc
;
2593 static int decode_close(struct xdr_stream
*xdr
, struct nfs_closeres
*res
)
2598 status
= decode_op_hdr(xdr
, OP_CLOSE
);
2601 READ_BUF(sizeof(res
->stateid
.data
));
2602 COPYMEM(res
->stateid
.data
, sizeof(res
->stateid
.data
));
2606 static int decode_commit(struct xdr_stream
*xdr
, struct nfs_writeres
*res
)
2611 status
= decode_op_hdr(xdr
, OP_COMMIT
);
2615 COPYMEM(res
->verf
->verifier
, 8);
2619 static int decode_create(struct xdr_stream
*xdr
, struct nfs4_change_info
*cinfo
)
2625 status
= decode_op_hdr(xdr
, OP_CREATE
);
2628 if ((status
= decode_change_info(xdr
, cinfo
)))
2632 READ_BUF(bmlen
<< 2);
2636 static int decode_server_caps(struct xdr_stream
*xdr
, struct nfs4_server_caps_res
*res
)
2643 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
2645 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
2647 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
2649 if ((status
= decode_attr_supported(xdr
, bitmap
, res
->attr_bitmask
)) != 0)
2651 if ((status
= decode_attr_link_support(xdr
, bitmap
, &res
->has_links
)) != 0)
2653 if ((status
= decode_attr_symlink_support(xdr
, bitmap
, &res
->has_symlinks
)) != 0)
2655 if ((status
= decode_attr_aclsupport(xdr
, bitmap
, &res
->acl_bitmask
)) != 0)
2657 status
= verify_attr_len(xdr
, savep
, attrlen
);
2660 printk(KERN_NOTICE
"%s: xdr error %d!\n", __FUNCTION__
, -status
);
2664 static int decode_statfs(struct xdr_stream
*xdr
, struct nfs_fsstat
*fsstat
)
2671 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
2673 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
2675 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
2678 if ((status
= decode_attr_files_avail(xdr
, bitmap
, &fsstat
->afiles
)) != 0)
2680 if ((status
= decode_attr_files_free(xdr
, bitmap
, &fsstat
->ffiles
)) != 0)
2682 if ((status
= decode_attr_files_total(xdr
, bitmap
, &fsstat
->tfiles
)) != 0)
2684 if ((status
= decode_attr_space_avail(xdr
, bitmap
, &fsstat
->abytes
)) != 0)
2686 if ((status
= decode_attr_space_free(xdr
, bitmap
, &fsstat
->fbytes
)) != 0)
2688 if ((status
= decode_attr_space_total(xdr
, bitmap
, &fsstat
->tbytes
)) != 0)
2691 status
= verify_attr_len(xdr
, savep
, attrlen
);
2694 printk(KERN_NOTICE
"%s: xdr error %d!\n", __FUNCTION__
, -status
);
2698 static int decode_pathconf(struct xdr_stream
*xdr
, struct nfs_pathconf
*pathconf
)
2705 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
2707 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
2709 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
2712 if ((status
= decode_attr_maxlink(xdr
, bitmap
, &pathconf
->max_link
)) != 0)
2714 if ((status
= decode_attr_maxname(xdr
, bitmap
, &pathconf
->max_namelen
)) != 0)
2717 status
= verify_attr_len(xdr
, savep
, attrlen
);
2720 printk(KERN_NOTICE
"%s: xdr error %d!\n", __FUNCTION__
, -status
);
2724 static int decode_getfattr(struct xdr_stream
*xdr
, struct nfs_fattr
*fattr
, const struct nfs_server
*server
)
2730 int status
, fmode
= 0;
2732 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
2734 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
2737 fattr
->bitmap
[0] = bitmap
[0];
2738 fattr
->bitmap
[1] = bitmap
[1];
2740 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
2744 if ((status
= decode_attr_type(xdr
, bitmap
, &type
)) != 0)
2746 fattr
->type
= nfs_type2fmt
[type
].nfs2type
;
2747 fmode
= nfs_type2fmt
[type
].mode
;
2749 if ((status
= decode_attr_change(xdr
, bitmap
, &fattr
->change_attr
)) != 0)
2751 if ((status
= decode_attr_size(xdr
, bitmap
, &fattr
->size
)) != 0)
2753 if ((status
= decode_attr_fsid(xdr
, bitmap
, &fattr
->fsid_u
.nfs4
)) != 0)
2755 if ((status
= decode_attr_fileid(xdr
, bitmap
, &fattr
->fileid
)) != 0)
2757 if ((status
= decode_attr_mode(xdr
, bitmap
, &fattr
->mode
)) != 0)
2759 fattr
->mode
|= fmode
;
2760 if ((status
= decode_attr_nlink(xdr
, bitmap
, &fattr
->nlink
)) != 0)
2762 if ((status
= decode_attr_owner(xdr
, bitmap
, server
->nfs4_state
, &fattr
->uid
)) != 0)
2764 if ((status
= decode_attr_group(xdr
, bitmap
, server
->nfs4_state
, &fattr
->gid
)) != 0)
2766 if ((status
= decode_attr_rdev(xdr
, bitmap
, &fattr
->rdev
)) != 0)
2768 if ((status
= decode_attr_space_used(xdr
, bitmap
, &fattr
->du
.nfs3
.used
)) != 0)
2770 if ((status
= decode_attr_time_access(xdr
, bitmap
, &fattr
->atime
)) != 0)
2772 if ((status
= decode_attr_time_metadata(xdr
, bitmap
, &fattr
->ctime
)) != 0)
2774 if ((status
= decode_attr_time_modify(xdr
, bitmap
, &fattr
->mtime
)) != 0)
2776 if ((status
= verify_attr_len(xdr
, savep
, attrlen
)) == 0) {
2777 fattr
->valid
= NFS_ATTR_FATTR
| NFS_ATTR_FATTR_V3
| NFS_ATTR_FATTR_V4
;
2778 fattr
->timestamp
= jiffies
;
2782 printk(KERN_NOTICE
"%s: xdr error %d!\n", __FUNCTION__
, -status
);
2787 static int decode_fsinfo(struct xdr_stream
*xdr
, struct nfs_fsinfo
*fsinfo
)
2790 uint32_t attrlen
, bitmap
[2];
2793 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
2795 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
2797 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
2800 fsinfo
->rtmult
= fsinfo
->wtmult
= 512; /* ??? */
2802 if ((status
= decode_attr_lease_time(xdr
, bitmap
, &fsinfo
->lease_time
)) != 0)
2804 if ((status
= decode_attr_maxfilesize(xdr
, bitmap
, &fsinfo
->maxfilesize
)) != 0)
2806 if ((status
= decode_attr_maxread(xdr
, bitmap
, &fsinfo
->rtmax
)) != 0)
2808 fsinfo
->rtpref
= fsinfo
->dtpref
= fsinfo
->rtmax
;
2809 if ((status
= decode_attr_maxwrite(xdr
, bitmap
, &fsinfo
->wtmax
)) != 0)
2811 fsinfo
->wtpref
= fsinfo
->wtmax
;
2813 status
= verify_attr_len(xdr
, savep
, attrlen
);
2816 printk(KERN_NOTICE
"%s: xdr error %d!\n", __FUNCTION__
, -status
);
2820 static int decode_getfh(struct xdr_stream
*xdr
, struct nfs_fh
*fh
)
2826 status
= decode_op_hdr(xdr
, OP_GETFH
);
2829 /* Zero handle first to allow comparisons */
2830 memset(fh
, 0, sizeof(*fh
));
2834 if (len
> NFS4_FHSIZE
)
2838 COPYMEM(fh
->data
, len
);
2842 static int decode_link(struct xdr_stream
*xdr
, struct nfs4_change_info
*cinfo
)
2846 status
= decode_op_hdr(xdr
, OP_LINK
);
2849 return decode_change_info(xdr
, cinfo
);
2853 * We create the owner, so we know a proper owner.id length is 4.
2855 static int decode_lock_denied (struct xdr_stream
*xdr
, struct nfs_lock_denied
*denied
)
2861 READ64(denied
->offset
);
2862 READ64(denied
->length
);
2863 READ32(denied
->type
);
2864 READ64(denied
->owner
.clientid
);
2868 READ32(denied
->owner
.id
);
2869 return -NFS4ERR_DENIED
;
2872 static int decode_lock(struct xdr_stream
*xdr
, struct nfs_lockres
*res
)
2877 status
= decode_op_hdr(xdr
, OP_LOCK
);
2879 READ_BUF(sizeof(nfs4_stateid
));
2880 COPYMEM(&res
->u
.stateid
, sizeof(res
->u
.stateid
));
2881 } else if (status
== -NFS4ERR_DENIED
)
2882 return decode_lock_denied(xdr
, &res
->u
.denied
);
2886 static int decode_lockt(struct xdr_stream
*xdr
, struct nfs_lockres
*res
)
2889 status
= decode_op_hdr(xdr
, OP_LOCKT
);
2890 if (status
== -NFS4ERR_DENIED
)
2891 return decode_lock_denied(xdr
, &res
->u
.denied
);
2895 static int decode_locku(struct xdr_stream
*xdr
, struct nfs_lockres
*res
)
2900 status
= decode_op_hdr(xdr
, OP_LOCKU
);
2902 READ_BUF(sizeof(nfs4_stateid
));
2903 COPYMEM(&res
->u
.stateid
, sizeof(res
->u
.stateid
));
2908 static int decode_lookup(struct xdr_stream
*xdr
)
2910 return decode_op_hdr(xdr
, OP_LOOKUP
);
2913 /* This is too sick! */
2914 static int decode_space_limit(struct xdr_stream
*xdr
, u64
*maxsize
)
2917 uint32_t limit_type
, nblocks
, blocksize
;
2921 switch (limit_type
) {
2928 *maxsize
= (uint64_t)nblocks
* (uint64_t)blocksize
;
2933 static int decode_delegation(struct xdr_stream
*xdr
, struct nfs_openres
*res
)
2936 uint32_t delegation_type
;
2939 READ32(delegation_type
);
2940 if (delegation_type
== NFS4_OPEN_DELEGATE_NONE
) {
2941 res
->delegation_type
= 0;
2945 COPYMEM(res
->delegation
.data
, sizeof(res
->delegation
.data
));
2946 READ32(res
->do_recall
);
2947 switch (delegation_type
) {
2948 case NFS4_OPEN_DELEGATE_READ
:
2949 res
->delegation_type
= FMODE_READ
;
2951 case NFS4_OPEN_DELEGATE_WRITE
:
2952 res
->delegation_type
= FMODE_WRITE
|FMODE_READ
;
2953 if (decode_space_limit(xdr
, &res
->maxsize
) < 0)
2956 return decode_ace(xdr
, NULL
, res
->server
->nfs4_state
);
2959 static int decode_open(struct xdr_stream
*xdr
, struct nfs_openres
*res
)
2965 status
= decode_op_hdr(xdr
, OP_OPEN
);
2968 READ_BUF(sizeof(res
->stateid
.data
));
2969 COPYMEM(res
->stateid
.data
, sizeof(res
->stateid
.data
));
2971 decode_change_info(xdr
, &res
->cinfo
);
2974 READ32(res
->rflags
);
2979 READ_BUF(bmlen
<< 2);
2981 return decode_delegation(xdr
, res
);
2983 printk(KERN_NOTICE
"%s: xdr error!\n", __FUNCTION__
);
2987 static int decode_open_confirm(struct xdr_stream
*xdr
, struct nfs_open_confirmres
*res
)
2992 status
= decode_op_hdr(xdr
, OP_OPEN_CONFIRM
);
2995 READ_BUF(sizeof(res
->stateid
.data
));
2996 COPYMEM(res
->stateid
.data
, sizeof(res
->stateid
.data
));
3000 static int decode_open_downgrade(struct xdr_stream
*xdr
, struct nfs_closeres
*res
)
3005 status
= decode_op_hdr(xdr
, OP_OPEN_DOWNGRADE
);
3008 READ_BUF(sizeof(res
->stateid
.data
));
3009 COPYMEM(res
->stateid
.data
, sizeof(res
->stateid
.data
));
3013 static int decode_putfh(struct xdr_stream
*xdr
)
3015 return decode_op_hdr(xdr
, OP_PUTFH
);
3018 static int decode_putrootfh(struct xdr_stream
*xdr
)
3020 return decode_op_hdr(xdr
, OP_PUTROOTFH
);
3023 static int decode_read(struct xdr_stream
*xdr
, struct rpc_rqst
*req
, struct nfs_readres
*res
)
3025 struct kvec
*iov
= req
->rq_rcv_buf
.head
;
3027 uint32_t count
, eof
, recvd
, hdrlen
;
3030 status
= decode_op_hdr(xdr
, OP_READ
);
3036 hdrlen
= (u8
*) p
- (u8
*) iov
->iov_base
;
3037 recvd
= req
->rq_rcv_buf
.len
- hdrlen
;
3038 if (count
> recvd
) {
3039 printk(KERN_WARNING
"NFS: server cheating in read reply: "
3040 "count %u > recvd %u\n", count
, recvd
);
3044 xdr_read_pages(xdr
, count
);
3050 static int decode_readdir(struct xdr_stream
*xdr
, struct rpc_rqst
*req
, struct nfs4_readdir_res
*readdir
)
3052 struct xdr_buf
*rcvbuf
= &req
->rq_rcv_buf
;
3053 struct page
*page
= *rcvbuf
->pages
;
3054 struct kvec
*iov
= rcvbuf
->head
;
3055 unsigned int nr
, pglen
= rcvbuf
->page_len
;
3056 uint32_t *end
, *entry
, *p
, *kaddr
;
3057 uint32_t len
, attrlen
;
3058 int hdrlen
, recvd
, status
;
3060 status
= decode_op_hdr(xdr
, OP_READDIR
);
3064 COPYMEM(readdir
->verifier
.data
, 8);
3066 hdrlen
= (char *) p
- (char *) iov
->iov_base
;
3067 recvd
= rcvbuf
->len
- hdrlen
;
3070 xdr_read_pages(xdr
, pglen
);
3072 BUG_ON(pglen
+ readdir
->pgbase
> PAGE_CACHE_SIZE
);
3073 kaddr
= p
= (uint32_t *) kmap_atomic(page
, KM_USER0
);
3074 end
= (uint32_t *) ((char *)p
+ pglen
+ readdir
->pgbase
);
3076 for (nr
= 0; *p
++; nr
++) {
3079 p
+= 2; /* cookie */
3080 len
= ntohl(*p
++); /* filename length */
3081 if (len
> NFS4_MAXNAMLEN
) {
3082 printk(KERN_WARNING
"NFS: giant filename in readdir (len 0x%x)\n", len
);
3085 p
+= XDR_QUADLEN(len
);
3088 len
= ntohl(*p
++); /* bitmap length */
3092 attrlen
= XDR_QUADLEN(ntohl(*p
++));
3093 p
+= attrlen
; /* attributes */
3098 if (!nr
&& (entry
[0] != 0 || entry
[1] == 0))
3101 kunmap_atomic(kaddr
, KM_USER0
);
3104 entry
[0] = entry
[1] = 0;
3105 /* truncate listing ? */
3107 printk(KERN_NOTICE
"NFS: readdir reply truncated!\n");
3112 kunmap_atomic(kaddr
, KM_USER0
);
3113 return -errno_NFSERR_IO
;
3116 static int decode_readlink(struct xdr_stream
*xdr
, struct rpc_rqst
*req
)
3118 struct xdr_buf
*rcvbuf
= &req
->rq_rcv_buf
;
3119 struct kvec
*iov
= rcvbuf
->head
;
3120 int hdrlen
, len
, recvd
;
3125 status
= decode_op_hdr(xdr
, OP_READLINK
);
3129 /* Convert length of symlink */
3132 if (len
>= rcvbuf
->page_len
|| len
<= 0) {
3133 dprintk(KERN_WARNING
"nfs: server returned giant symlink!\n");
3134 return -ENAMETOOLONG
;
3136 hdrlen
= (char *) xdr
->p
- (char *) iov
->iov_base
;
3137 recvd
= req
->rq_rcv_buf
.len
- hdrlen
;
3139 printk(KERN_WARNING
"NFS: server cheating in readlink reply: "
3140 "count %u > recvd %u\n", len
, recvd
);
3143 xdr_read_pages(xdr
, len
);
3145 * The XDR encode routine has set things up so that
3146 * the link text will be copied directly into the
3147 * buffer. We just have to do overflow-checking,
3148 * and and null-terminate the text (the VFS expects
3149 * null-termination).
3151 kaddr
= (char *)kmap_atomic(rcvbuf
->pages
[0], KM_USER0
);
3152 kaddr
[len
+rcvbuf
->page_base
] = '\0';
3153 kunmap_atomic(kaddr
, KM_USER0
);
3157 static int decode_remove(struct xdr_stream
*xdr
, struct nfs4_change_info
*cinfo
)
3161 status
= decode_op_hdr(xdr
, OP_REMOVE
);
3164 status
= decode_change_info(xdr
, cinfo
);
3169 static int decode_rename(struct xdr_stream
*xdr
, struct nfs4_change_info
*old_cinfo
,
3170 struct nfs4_change_info
*new_cinfo
)
3174 status
= decode_op_hdr(xdr
, OP_RENAME
);
3177 if ((status
= decode_change_info(xdr
, old_cinfo
)))
3179 status
= decode_change_info(xdr
, new_cinfo
);
3184 static int decode_renew(struct xdr_stream
*xdr
)
3186 return decode_op_hdr(xdr
, OP_RENEW
);
3189 static int decode_getacl(struct xdr_stream
*xdr
, struct rpc_rqst
*req
,
3195 struct kvec
*iov
= req
->rq_rcv_buf
.head
;
3199 if ((status
= decode_op_hdr(xdr
, OP_GETATTR
)) != 0)
3201 if ((status
= decode_attr_bitmap(xdr
, bitmap
)) != 0)
3203 if ((status
= decode_attr_length(xdr
, &attrlen
, &savep
)) != 0)
3206 if (unlikely(bitmap
[0] & (FATTR4_WORD0_ACL
- 1U)))
3208 if (likely(bitmap
[0] & FATTR4_WORD0_ACL
)) {
3211 /* We ignore &savep and don't do consistency checks on
3212 * the attr length. Let userspace figure it out.... */
3213 hdrlen
= (u8
*)xdr
->p
- (u8
*)iov
->iov_base
;
3214 recvd
= req
->rq_rcv_buf
.len
- hdrlen
;
3215 if (attrlen
> recvd
) {
3216 printk(KERN_WARNING
"NFS: server cheating in getattr"
3217 " acl reply: attrlen %u > recvd %u\n",
3221 if (attrlen
<= *acl_len
)
3222 xdr_read_pages(xdr
, attrlen
);
3231 decode_savefh(struct xdr_stream
*xdr
)
3233 return decode_op_hdr(xdr
, OP_SAVEFH
);
3236 static int decode_setattr(struct xdr_stream
*xdr
, struct nfs_setattrres
*res
)
3243 status
= decode_op_hdr(xdr
, OP_SETATTR
);
3248 READ_BUF(bmlen
<< 2);
3252 static int decode_setclientid(struct xdr_stream
*xdr
, struct nfs4_client
*clp
)
3260 if (opnum
!= OP_SETCLIENTID
) {
3262 "nfs4_decode_setclientid: Server returned operation"
3267 if (nfserr
== NFS_OK
) {
3268 READ_BUF(8 + sizeof(clp
->cl_confirm
.data
));
3269 READ64(clp
->cl_clientid
);
3270 COPYMEM(clp
->cl_confirm
.data
, sizeof(clp
->cl_confirm
.data
));
3271 } else if (nfserr
== NFSERR_CLID_INUSE
) {
3274 /* skip netid string */
3279 /* skip uaddr string */
3283 return -NFSERR_CLID_INUSE
;
3285 return -nfs_stat_to_errno(nfserr
);
3290 static int decode_setclientid_confirm(struct xdr_stream
*xdr
)
3292 return decode_op_hdr(xdr
, OP_SETCLIENTID_CONFIRM
);
3295 static int decode_write(struct xdr_stream
*xdr
, struct nfs_writeres
*res
)
3300 status
= decode_op_hdr(xdr
, OP_WRITE
);
3306 READ32(res
->verf
->committed
);
3307 COPYMEM(res
->verf
->verifier
, 8);
3311 static int decode_delegreturn(struct xdr_stream
*xdr
)
3313 return decode_op_hdr(xdr
, OP_DELEGRETURN
);
3317 * Decode OPEN_DOWNGRADE response
3319 static int nfs4_xdr_dec_open_downgrade(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_closeres
*res
)
3321 struct xdr_stream xdr
;
3322 struct compound_hdr hdr
;
3325 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3326 status
= decode_compound_hdr(&xdr
, &hdr
);
3329 status
= decode_putfh(&xdr
);
3332 status
= decode_open_downgrade(&xdr
, res
);
3338 * END OF "GENERIC" DECODE ROUTINES.
3342 * Decode ACCESS response
3344 static int nfs4_xdr_dec_access(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_accessres
*res
)
3346 struct xdr_stream xdr
;
3347 struct compound_hdr hdr
;
3350 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3351 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3353 if ((status
= decode_putfh(&xdr
)) == 0)
3354 status
= decode_access(&xdr
, res
);
3360 * Decode LOOKUP response
3362 static int nfs4_xdr_dec_lookup(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_lookup_res
*res
)
3364 struct xdr_stream xdr
;
3365 struct compound_hdr hdr
;
3368 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3369 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3371 if ((status
= decode_putfh(&xdr
)) != 0)
3373 if ((status
= decode_lookup(&xdr
)) != 0)
3375 if ((status
= decode_getfh(&xdr
, res
->fh
)) != 0)
3377 status
= decode_getfattr(&xdr
, res
->fattr
, res
->server
);
3383 * Decode LOOKUP_ROOT response
3385 static int nfs4_xdr_dec_lookup_root(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_lookup_res
*res
)
3387 struct xdr_stream xdr
;
3388 struct compound_hdr hdr
;
3391 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3392 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3394 if ((status
= decode_putrootfh(&xdr
)) != 0)
3396 if ((status
= decode_getfh(&xdr
, res
->fh
)) == 0)
3397 status
= decode_getfattr(&xdr
, res
->fattr
, res
->server
);
3403 * Decode REMOVE response
3405 static int nfs4_xdr_dec_remove(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_change_info
*cinfo
)
3407 struct xdr_stream xdr
;
3408 struct compound_hdr hdr
;
3411 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3412 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3414 if ((status
= decode_putfh(&xdr
)) == 0)
3415 status
= decode_remove(&xdr
, cinfo
);
3421 * Decode RENAME response
3423 static int nfs4_xdr_dec_rename(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_rename_res
*res
)
3425 struct xdr_stream xdr
;
3426 struct compound_hdr hdr
;
3429 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3430 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3432 if ((status
= decode_putfh(&xdr
)) != 0)
3434 if ((status
= decode_savefh(&xdr
)) != 0)
3436 if ((status
= decode_putfh(&xdr
)) != 0)
3438 status
= decode_rename(&xdr
, &res
->old_cinfo
, &res
->new_cinfo
);
3444 * Decode LINK response
3446 static int nfs4_xdr_dec_link(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_change_info
*cinfo
)
3448 struct xdr_stream xdr
;
3449 struct compound_hdr hdr
;
3452 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3453 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3455 if ((status
= decode_putfh(&xdr
)) != 0)
3457 if ((status
= decode_savefh(&xdr
)) != 0)
3459 if ((status
= decode_putfh(&xdr
)) != 0)
3461 status
= decode_link(&xdr
, cinfo
);
3467 * Decode CREATE response
3469 static int nfs4_xdr_dec_create(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_create_res
*res
)
3471 struct xdr_stream xdr
;
3472 struct compound_hdr hdr
;
3475 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3476 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3478 if ((status
= decode_putfh(&xdr
)) != 0)
3480 if ((status
= decode_create(&xdr
,&res
->dir_cinfo
)) != 0)
3482 if ((status
= decode_getfh(&xdr
, res
->fh
)) != 0)
3484 status
= decode_getfattr(&xdr
, res
->fattr
, res
->server
);
3485 if (status
== NFS4ERR_DELAY
)
3492 * Decode SYMLINK response
3494 static int nfs4_xdr_dec_symlink(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_create_res
*res
)
3496 return nfs4_xdr_dec_create(rqstp
, p
, res
);
3500 * Decode GETATTR response
3502 static int nfs4_xdr_dec_getattr(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_getattr_res
*res
)
3504 struct xdr_stream xdr
;
3505 struct compound_hdr hdr
;
3508 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3509 status
= decode_compound_hdr(&xdr
, &hdr
);
3512 status
= decode_putfh(&xdr
);
3515 status
= decode_getfattr(&xdr
, res
->fattr
, res
->server
);
3522 * Encode an SETACL request
3525 nfs4_xdr_enc_setacl(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_setaclargs
*args
)
3527 struct xdr_stream xdr
;
3528 struct compound_hdr hdr
= {
3533 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
3534 encode_compound_hdr(&xdr
, &hdr
);
3535 status
= encode_putfh(&xdr
, args
->fh
);
3538 status
= encode_setacl(&xdr
, args
);
3543 * Decode SETACL response
3546 nfs4_xdr_dec_setacl(struct rpc_rqst
*rqstp
, uint32_t *p
, void *res
)
3548 struct xdr_stream xdr
;
3549 struct compound_hdr hdr
;
3552 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3553 status
= decode_compound_hdr(&xdr
, &hdr
);
3556 status
= decode_putfh(&xdr
);
3559 status
= decode_setattr(&xdr
, res
);
3565 * Decode GETACL response
3568 nfs4_xdr_dec_getacl(struct rpc_rqst
*rqstp
, uint32_t *p
, size_t *acl_len
)
3570 struct xdr_stream xdr
;
3571 struct compound_hdr hdr
;
3574 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3575 status
= decode_compound_hdr(&xdr
, &hdr
);
3578 status
= decode_putfh(&xdr
);
3581 status
= decode_getacl(&xdr
, rqstp
, acl_len
);
3588 * Decode CLOSE response
3590 static int nfs4_xdr_dec_close(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_closeres
*res
)
3592 struct xdr_stream xdr
;
3593 struct compound_hdr hdr
;
3596 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3597 status
= decode_compound_hdr(&xdr
, &hdr
);
3600 status
= decode_putfh(&xdr
);
3603 status
= decode_close(&xdr
, res
);
3609 * Decode OPEN response
3611 static int nfs4_xdr_dec_open(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_openres
*res
)
3613 struct xdr_stream xdr
;
3614 struct compound_hdr hdr
;
3617 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3618 status
= decode_compound_hdr(&xdr
, &hdr
);
3621 status
= decode_putfh(&xdr
);
3624 status
= decode_open(&xdr
, res
);
3627 status
= decode_getfh(&xdr
, &res
->fh
);
3630 status
= decode_getfattr(&xdr
, res
->f_attr
, res
->server
);
3631 if (status
== NFS4ERR_DELAY
)
3638 * Decode OPEN_CONFIRM response
3640 static int nfs4_xdr_dec_open_confirm(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_open_confirmres
*res
)
3642 struct xdr_stream xdr
;
3643 struct compound_hdr hdr
;
3646 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3647 status
= decode_compound_hdr(&xdr
, &hdr
);
3650 status
= decode_putfh(&xdr
);
3653 status
= decode_open_confirm(&xdr
, res
);
3659 * Decode OPEN response
3661 static int nfs4_xdr_dec_open_noattr(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_openres
*res
)
3663 struct xdr_stream xdr
;
3664 struct compound_hdr hdr
;
3667 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3668 status
= decode_compound_hdr(&xdr
, &hdr
);
3671 status
= decode_putfh(&xdr
);
3674 status
= decode_open(&xdr
, res
);
3680 * Decode SETATTR response
3682 static int nfs4_xdr_dec_setattr(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_setattrres
*res
)
3684 struct xdr_stream xdr
;
3685 struct compound_hdr hdr
;
3688 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3689 status
= decode_compound_hdr(&xdr
, &hdr
);
3692 status
= decode_putfh(&xdr
);
3695 status
= decode_setattr(&xdr
, res
);
3698 status
= decode_getfattr(&xdr
, res
->fattr
, res
->server
);
3699 if (status
== NFS4ERR_DELAY
)
3706 * Decode LOCK response
3708 static int nfs4_xdr_dec_lock(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_lockres
*res
)
3710 struct xdr_stream xdr
;
3711 struct compound_hdr hdr
;
3714 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3715 status
= decode_compound_hdr(&xdr
, &hdr
);
3718 status
= decode_putfh(&xdr
);
3721 status
= decode_lock(&xdr
, res
);
3727 * Decode LOCKT response
3729 static int nfs4_xdr_dec_lockt(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_lockres
*res
)
3731 struct xdr_stream xdr
;
3732 struct compound_hdr hdr
;
3735 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3736 status
= decode_compound_hdr(&xdr
, &hdr
);
3739 status
= decode_putfh(&xdr
);
3742 status
= decode_lockt(&xdr
, res
);
3748 * Decode LOCKU response
3750 static int nfs4_xdr_dec_locku(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_lockres
*res
)
3752 struct xdr_stream xdr
;
3753 struct compound_hdr hdr
;
3756 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3757 status
= decode_compound_hdr(&xdr
, &hdr
);
3760 status
= decode_putfh(&xdr
);
3763 status
= decode_locku(&xdr
, res
);
3769 * Decode READLINK response
3771 static int nfs4_xdr_dec_readlink(struct rpc_rqst
*rqstp
, uint32_t *p
, void *res
)
3773 struct xdr_stream xdr
;
3774 struct compound_hdr hdr
;
3777 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3778 status
= decode_compound_hdr(&xdr
, &hdr
);
3781 status
= decode_putfh(&xdr
);
3784 status
= decode_readlink(&xdr
, rqstp
);
3790 * Decode READDIR response
3792 static int nfs4_xdr_dec_readdir(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs4_readdir_res
*res
)
3794 struct xdr_stream xdr
;
3795 struct compound_hdr hdr
;
3798 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3799 status
= decode_compound_hdr(&xdr
, &hdr
);
3802 status
= decode_putfh(&xdr
);
3805 status
= decode_readdir(&xdr
, rqstp
, res
);
3811 * Decode Read response
3813 static int nfs4_xdr_dec_read(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_readres
*res
)
3815 struct xdr_stream xdr
;
3816 struct compound_hdr hdr
;
3819 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3820 status
= decode_compound_hdr(&xdr
, &hdr
);
3823 status
= decode_putfh(&xdr
);
3826 status
= decode_read(&xdr
, rqstp
, res
);
3828 status
= res
->count
;
3834 * Decode WRITE response
3836 static int nfs4_xdr_dec_write(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_writeres
*res
)
3838 struct xdr_stream xdr
;
3839 struct compound_hdr hdr
;
3842 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3843 status
= decode_compound_hdr(&xdr
, &hdr
);
3846 status
= decode_putfh(&xdr
);
3849 status
= decode_write(&xdr
, res
);
3851 status
= res
->count
;
3857 * Decode COMMIT response
3859 static int nfs4_xdr_dec_commit(struct rpc_rqst
*rqstp
, uint32_t *p
, struct nfs_writeres
*res
)
3861 struct xdr_stream xdr
;
3862 struct compound_hdr hdr
;
3865 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3866 status
= decode_compound_hdr(&xdr
, &hdr
);
3869 status
= decode_putfh(&xdr
);
3872 status
= decode_commit(&xdr
, res
);
3880 static int nfs4_xdr_dec_fsinfo(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_fsinfo
*fsinfo
)
3882 struct xdr_stream xdr
;
3883 struct compound_hdr hdr
;
3886 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3887 status
= decode_compound_hdr(&xdr
, &hdr
);
3889 status
= decode_putfh(&xdr
);
3891 status
= decode_fsinfo(&xdr
, fsinfo
);
3893 status
= -nfs_stat_to_errno(hdr
.status
);
3900 static int nfs4_xdr_dec_pathconf(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_pathconf
*pathconf
)
3902 struct xdr_stream xdr
;
3903 struct compound_hdr hdr
;
3906 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3907 status
= decode_compound_hdr(&xdr
, &hdr
);
3909 status
= decode_putfh(&xdr
);
3911 status
= decode_pathconf(&xdr
, pathconf
);
3918 static int nfs4_xdr_dec_statfs(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_fsstat
*fsstat
)
3920 struct xdr_stream xdr
;
3921 struct compound_hdr hdr
;
3924 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3925 status
= decode_compound_hdr(&xdr
, &hdr
);
3927 status
= decode_putfh(&xdr
);
3929 status
= decode_statfs(&xdr
, fsstat
);
3934 * GETATTR_BITMAP request
3936 static int nfs4_xdr_dec_server_caps(struct rpc_rqst
*req
, uint32_t *p
, struct nfs4_server_caps_res
*res
)
3938 struct xdr_stream xdr
;
3939 struct compound_hdr hdr
;
3942 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3943 if ((status
= decode_compound_hdr(&xdr
, &hdr
)) != 0)
3945 if ((status
= decode_putfh(&xdr
)) != 0)
3947 status
= decode_server_caps(&xdr
, res
);
3953 * Decode RENEW response
3955 static int nfs4_xdr_dec_renew(struct rpc_rqst
*rqstp
, uint32_t *p
, void *dummy
)
3957 struct xdr_stream xdr
;
3958 struct compound_hdr hdr
;
3961 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
3962 status
= decode_compound_hdr(&xdr
, &hdr
);
3964 status
= decode_renew(&xdr
);
3969 * a SETCLIENTID request
3971 static int nfs4_xdr_dec_setclientid(struct rpc_rqst
*req
, uint32_t *p
,
3972 struct nfs4_client
*clp
)
3974 struct xdr_stream xdr
;
3975 struct compound_hdr hdr
;
3978 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3979 status
= decode_compound_hdr(&xdr
, &hdr
);
3981 status
= decode_setclientid(&xdr
, clp
);
3983 status
= -nfs_stat_to_errno(hdr
.status
);
3988 * a SETCLIENTID_CONFIRM request
3990 static int nfs4_xdr_dec_setclientid_confirm(struct rpc_rqst
*req
, uint32_t *p
, struct nfs_fsinfo
*fsinfo
)
3992 struct xdr_stream xdr
;
3993 struct compound_hdr hdr
;
3996 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
3997 status
= decode_compound_hdr(&xdr
, &hdr
);
3999 status
= decode_setclientid_confirm(&xdr
);
4001 status
= decode_putrootfh(&xdr
);
4003 status
= decode_fsinfo(&xdr
, fsinfo
);
4005 status
= -nfs_stat_to_errno(hdr
.status
);
4010 * DELEGRETURN request
4012 static int nfs4_xdr_dec_delegreturn(struct rpc_rqst
*rqstp
, uint32_t *p
, void *dummy
)
4014 struct xdr_stream xdr
;
4015 struct compound_hdr hdr
;
4018 xdr_init_decode(&xdr
, &rqstp
->rq_rcv_buf
, p
);
4019 status
= decode_compound_hdr(&xdr
, &hdr
);
4021 status
= decode_putfh(&xdr
);
4023 status
= decode_delegreturn(&xdr
);
4028 uint32_t *nfs4_decode_dirent(uint32_t *p
, struct nfs_entry
*entry
, int plus
)
4030 uint32_t bitmap
[2] = {0};
4035 return ERR_PTR(-EAGAIN
);
4037 return ERR_PTR(-EBADCOOKIE
);
4040 entry
->prev_cookie
= entry
->cookie
;
4041 p
= xdr_decode_hyper(p
, &entry
->cookie
);
4042 entry
->len
= ntohl(*p
++);
4043 entry
->name
= (const char *) p
;
4044 p
+= XDR_QUADLEN(entry
->len
);
4047 * In case the server doesn't return an inode number,
4048 * we fake one here. (We don't use inode number 0,
4049 * since glibc seems to choke on it...)
4053 len
= ntohl(*p
++); /* bitmap length */
4055 bitmap
[0] = ntohl(*p
++);
4057 bitmap
[1] = ntohl(*p
++);
4061 len
= XDR_QUADLEN(ntohl(*p
++)); /* attribute buffer length */
4063 if (bitmap
[0] == 0 && bitmap
[1] == FATTR4_WORD1_MOUNTED_ON_FILEID
)
4064 xdr_decode_hyper(p
, &entry
->ino
);
4065 else if (bitmap
[0] == FATTR4_WORD0_FILEID
)
4066 xdr_decode_hyper(p
, &entry
->ino
);
4070 entry
->eof
= !p
[0] && p
[1];
4075 * We need to translate between nfs status return values and
4076 * the local errno values which may not be the same.
4083 { NFS4ERR_PERM
, EPERM
},
4084 { NFS4ERR_NOENT
, ENOENT
},
4085 { NFS4ERR_IO
, errno_NFSERR_IO
},
4086 { NFS4ERR_NXIO
, ENXIO
},
4087 { NFS4ERR_ACCESS
, EACCES
},
4088 { NFS4ERR_EXIST
, EEXIST
},
4089 { NFS4ERR_XDEV
, EXDEV
},
4090 { NFS4ERR_NOTDIR
, ENOTDIR
},
4091 { NFS4ERR_ISDIR
, EISDIR
},
4092 { NFS4ERR_INVAL
, EINVAL
},
4093 { NFS4ERR_FBIG
, EFBIG
},
4094 { NFS4ERR_NOSPC
, ENOSPC
},
4095 { NFS4ERR_ROFS
, EROFS
},
4096 { NFS4ERR_MLINK
, EMLINK
},
4097 { NFS4ERR_NAMETOOLONG
, ENAMETOOLONG
},
4098 { NFS4ERR_NOTEMPTY
, ENOTEMPTY
},
4099 { NFS4ERR_DQUOT
, EDQUOT
},
4100 { NFS4ERR_STALE
, ESTALE
},
4101 { NFS4ERR_BADHANDLE
, EBADHANDLE
},
4102 { NFS4ERR_BAD_COOKIE
, EBADCOOKIE
},
4103 { NFS4ERR_NOTSUPP
, ENOTSUPP
},
4104 { NFS4ERR_TOOSMALL
, ETOOSMALL
},
4105 { NFS4ERR_SERVERFAULT
, ESERVERFAULT
},
4106 { NFS4ERR_BADTYPE
, EBADTYPE
},
4107 { NFS4ERR_LOCKED
, EAGAIN
},
4108 { NFS4ERR_RESOURCE
, EREMOTEIO
},
4109 { NFS4ERR_SYMLINK
, ELOOP
},
4110 { NFS4ERR_OP_ILLEGAL
, EOPNOTSUPP
},
4111 { NFS4ERR_DEADLOCK
, EDEADLK
},
4112 { NFS4ERR_WRONGSEC
, EPERM
}, /* FIXME: this needs
4113 * to be handled by a
4120 * Convert an NFS error code to a local one.
4121 * This one is used jointly by NFSv2 and NFSv3.
4124 nfs_stat_to_errno(int stat
)
4127 for (i
= 0; nfs_errtbl
[i
].stat
!= -1; i
++) {
4128 if (nfs_errtbl
[i
].stat
== stat
)
4129 return nfs_errtbl
[i
].errno
;
4131 if (stat
<= 10000 || stat
> 10100) {
4132 /* The server is looney tunes. */
4133 return ESERVERFAULT
;
4135 /* If we cannot translate the error, the recovery routines should
4137 * Note: remaining NFSv4 error codes have values > 10000, so should
4138 * not conflict with native Linux error codes.
4144 # define MAX(a, b) (((a) > (b))? (a) : (b))
4147 #define PROC(proc, argtype, restype) \
4148 [NFSPROC4_CLNT_##proc] = { \
4149 .p_proc = NFSPROC4_COMPOUND, \
4150 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
4151 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
4152 .p_bufsiz = MAX(NFS4_##argtype##_sz,NFS4_##restype##_sz) << 2, \
4155 struct rpc_procinfo nfs4_procedures
[] = {
4156 PROC(READ
, enc_read
, dec_read
),
4157 PROC(WRITE
, enc_write
, dec_write
),
4158 PROC(COMMIT
, enc_commit
, dec_commit
),
4159 PROC(OPEN
, enc_open
, dec_open
),
4160 PROC(OPEN_CONFIRM
, enc_open_confirm
, dec_open_confirm
),
4161 PROC(OPEN_NOATTR
, enc_open_noattr
, dec_open_noattr
),
4162 PROC(OPEN_DOWNGRADE
, enc_open_downgrade
, dec_open_downgrade
),
4163 PROC(CLOSE
, enc_close
, dec_close
),
4164 PROC(SETATTR
, enc_setattr
, dec_setattr
),
4165 PROC(FSINFO
, enc_fsinfo
, dec_fsinfo
),
4166 PROC(RENEW
, enc_renew
, dec_renew
),
4167 PROC(SETCLIENTID
, enc_setclientid
, dec_setclientid
),
4168 PROC(SETCLIENTID_CONFIRM
, enc_setclientid_confirm
, dec_setclientid_confirm
),
4169 PROC(LOCK
, enc_lock
, dec_lock
),
4170 PROC(LOCKT
, enc_lockt
, dec_lockt
),
4171 PROC(LOCKU
, enc_locku
, dec_locku
),
4172 PROC(ACCESS
, enc_access
, dec_access
),
4173 PROC(GETATTR
, enc_getattr
, dec_getattr
),
4174 PROC(LOOKUP
, enc_lookup
, dec_lookup
),
4175 PROC(LOOKUP_ROOT
, enc_lookup_root
, dec_lookup_root
),
4176 PROC(REMOVE
, enc_remove
, dec_remove
),
4177 PROC(RENAME
, enc_rename
, dec_rename
),
4178 PROC(LINK
, enc_link
, dec_link
),
4179 PROC(SYMLINK
, enc_symlink
, dec_symlink
),
4180 PROC(CREATE
, enc_create
, dec_create
),
4181 PROC(PATHCONF
, enc_pathconf
, dec_pathconf
),
4182 PROC(STATFS
, enc_statfs
, dec_statfs
),
4183 PROC(READLINK
, enc_readlink
, dec_readlink
),
4184 PROC(READDIR
, enc_readdir
, dec_readdir
),
4185 PROC(SERVER_CAPS
, enc_server_caps
, dec_server_caps
),
4186 PROC(DELEGRETURN
, enc_delegreturn
, dec_delegreturn
),
4187 PROC(GETACL
, enc_getacl
, dec_getacl
),
4188 PROC(SETACL
, enc_setacl
, dec_setacl
),
4191 struct rpc_version nfs_version4
= {
4193 .nrprocs
= sizeof(nfs4_procedures
)/sizeof(nfs4_procedures
[0]),
4194 .procs
= nfs4_procedures