2 * linux/fs/nfsd/nfs3xdr.c
4 * XDR support for nfsd/protocol version 3.
6 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
8 * 2003-08-09 Jamie Lokier: Use htonl() for nanoseconds, not htons()!
11 #include <linux/types.h>
12 #include <linux/time.h>
13 #include <linux/nfs3.h>
14 #include <linux/list.h>
15 #include <linux/spinlock.h>
16 #include <linux/dcache.h>
17 #include <linux/namei.h>
19 #include <linux/vfs.h>
20 #include <linux/sunrpc/xdr.h>
21 #include <linux/sunrpc/svc.h>
22 #include <linux/nfsd/nfsd.h>
23 #include <linux/nfsd/xdr3.h>
25 #define NFSDDBG_FACILITY NFSDDBG_XDR
27 #ifdef NFSD_OPTIMIZE_SPACE
33 * Mapping of S_IF* types to NFS file types
35 static u32 nfs3_ftypes
[] = {
36 NF3NON
, NF3FIFO
, NF3CHR
, NF3BAD
,
37 NF3DIR
, NF3BAD
, NF3BLK
, NF3BAD
,
38 NF3REG
, NF3BAD
, NF3LNK
, NF3BAD
,
39 NF3SOCK
, NF3BAD
, NF3LNK
, NF3BAD
,
43 * XDR functions for basic NFS types
46 encode_time3(u32
*p
, struct timespec
*time
)
48 *p
++ = htonl((u32
) time
->tv_sec
); *p
++ = htonl(time
->tv_nsec
);
53 decode_time3(u32
*p
, struct timespec
*time
)
55 time
->tv_sec
= ntohl(*p
++);
56 time
->tv_nsec
= ntohl(*p
++);
61 decode_fh(u32
*p
, struct svc_fh
*fhp
)
64 fh_init(fhp
, NFS3_FHSIZE
);
66 if (size
> NFS3_FHSIZE
)
69 memcpy(&fhp
->fh_handle
.fh_base
, p
, size
);
70 fhp
->fh_handle
.fh_size
= size
;
71 return p
+ XDR_QUADLEN(size
);
74 /* Helper function for NFSv3 ACL code */
75 u32
*nfs3svc_decode_fh(u32
*p
, struct svc_fh
*fhp
)
77 return decode_fh(p
, fhp
);
81 encode_fh(u32
*p
, struct svc_fh
*fhp
)
83 unsigned int size
= fhp
->fh_handle
.fh_size
;
85 if (size
) p
[XDR_QUADLEN(size
)-1]=0;
86 memcpy(p
, &fhp
->fh_handle
.fh_base
, size
);
87 return p
+ XDR_QUADLEN(size
);
91 * Decode a file name and make sure that the path contains
92 * no slashes or null bytes.
95 decode_filename(u32
*p
, char **namp
, int *lenp
)
100 if ((p
= xdr_decode_string_inplace(p
, namp
, lenp
, NFS3_MAXNAMLEN
)) != NULL
) {
101 for (i
= 0, name
= *namp
; i
< *lenp
; i
++, name
++) {
102 if (*name
== '\0' || *name
== '/')
111 decode_sattr3(u32
*p
, struct iattr
*iap
)
118 iap
->ia_valid
|= ATTR_MODE
;
119 iap
->ia_mode
= ntohl(*p
++);
122 iap
->ia_valid
|= ATTR_UID
;
123 iap
->ia_uid
= ntohl(*p
++);
126 iap
->ia_valid
|= ATTR_GID
;
127 iap
->ia_gid
= ntohl(*p
++);
132 iap
->ia_valid
|= ATTR_SIZE
;
133 p
= xdr_decode_hyper(p
, &newsize
);
134 if (newsize
<= NFS_OFFSET_MAX
)
135 iap
->ia_size
= newsize
;
137 iap
->ia_size
= NFS_OFFSET_MAX
;
139 if ((tmp
= ntohl(*p
++)) == 1) { /* set to server time */
140 iap
->ia_valid
|= ATTR_ATIME
;
141 } else if (tmp
== 2) { /* set to client time */
142 iap
->ia_valid
|= ATTR_ATIME
| ATTR_ATIME_SET
;
143 iap
->ia_atime
.tv_sec
= ntohl(*p
++);
144 iap
->ia_atime
.tv_nsec
= ntohl(*p
++);
146 if ((tmp
= ntohl(*p
++)) == 1) { /* set to server time */
147 iap
->ia_valid
|= ATTR_MTIME
;
148 } else if (tmp
== 2) { /* set to client time */
149 iap
->ia_valid
|= ATTR_MTIME
| ATTR_MTIME_SET
;
150 iap
->ia_mtime
.tv_sec
= ntohl(*p
++);
151 iap
->ia_mtime
.tv_nsec
= ntohl(*p
++);
157 encode_fattr3(struct svc_rqst
*rqstp
, u32
*p
, struct svc_fh
*fhp
,
160 struct dentry
*dentry
= fhp
->fh_dentry
;
161 struct timespec time
;
163 *p
++ = htonl(nfs3_ftypes
[(stat
->mode
& S_IFMT
) >> 12]);
164 *p
++ = htonl((u32
) stat
->mode
);
165 *p
++ = htonl((u32
) stat
->nlink
);
166 *p
++ = htonl((u32
) nfsd_ruid(rqstp
, stat
->uid
));
167 *p
++ = htonl((u32
) nfsd_rgid(rqstp
, stat
->gid
));
168 if (S_ISLNK(stat
->mode
) && stat
->size
> NFS3_MAXPATHLEN
) {
169 p
= xdr_encode_hyper(p
, (u64
) NFS3_MAXPATHLEN
);
171 p
= xdr_encode_hyper(p
, (u64
) stat
->size
);
173 p
= xdr_encode_hyper(p
, ((u64
)stat
->blocks
) << 9);
174 *p
++ = htonl((u32
) MAJOR(stat
->rdev
));
175 *p
++ = htonl((u32
) MINOR(stat
->rdev
));
176 if (is_fsid(fhp
, rqstp
->rq_reffh
))
177 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_export
->ex_fsid
);
179 p
= xdr_encode_hyper(p
, (u64
) huge_encode_dev(stat
->dev
));
180 p
= xdr_encode_hyper(p
, (u64
) stat
->ino
);
181 p
= encode_time3(p
, &stat
->atime
);
182 lease_get_mtime(dentry
->d_inode
, &time
);
183 p
= encode_time3(p
, &time
);
184 p
= encode_time3(p
, &stat
->ctime
);
190 encode_saved_post_attr(struct svc_rqst
*rqstp
, u32
*p
, struct svc_fh
*fhp
)
192 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
194 /* Attributes to follow */
197 *p
++ = htonl(nfs3_ftypes
[(fhp
->fh_post_mode
& S_IFMT
) >> 12]);
198 *p
++ = htonl((u32
) fhp
->fh_post_mode
);
199 *p
++ = htonl((u32
) fhp
->fh_post_nlink
);
200 *p
++ = htonl((u32
) nfsd_ruid(rqstp
, fhp
->fh_post_uid
));
201 *p
++ = htonl((u32
) nfsd_rgid(rqstp
, fhp
->fh_post_gid
));
202 if (S_ISLNK(fhp
->fh_post_mode
) && fhp
->fh_post_size
> NFS3_MAXPATHLEN
) {
203 p
= xdr_encode_hyper(p
, (u64
) NFS3_MAXPATHLEN
);
205 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_post_size
);
207 p
= xdr_encode_hyper(p
, ((u64
)fhp
->fh_post_blocks
) << 9);
208 *p
++ = fhp
->fh_post_rdev
[0];
209 *p
++ = fhp
->fh_post_rdev
[1];
210 if (is_fsid(fhp
, rqstp
->rq_reffh
))
211 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_export
->ex_fsid
);
213 p
= xdr_encode_hyper(p
, (u64
)huge_encode_dev(inode
->i_sb
->s_dev
));
214 p
= xdr_encode_hyper(p
, (u64
) inode
->i_ino
);
215 p
= encode_time3(p
, &fhp
->fh_post_atime
);
216 p
= encode_time3(p
, &fhp
->fh_post_mtime
);
217 p
= encode_time3(p
, &fhp
->fh_post_ctime
);
223 * Encode post-operation attributes.
224 * The inode may be NULL if the call failed because of a stale file
225 * handle. In this case, no attributes are returned.
228 encode_post_op_attr(struct svc_rqst
*rqstp
, u32
*p
, struct svc_fh
*fhp
)
230 struct dentry
*dentry
= fhp
->fh_dentry
;
231 if (dentry
&& dentry
->d_inode
!= NULL
) {
235 err
= vfs_getattr(fhp
->fh_export
->ex_mnt
, dentry
, &stat
);
237 *p
++ = xdr_one
; /* attributes follow */
238 return encode_fattr3(rqstp
, p
, fhp
, &stat
);
245 /* Helper for NFSv3 ACLs */
247 nfs3svc_encode_post_op_attr(struct svc_rqst
*rqstp
, u32
*p
, struct svc_fh
*fhp
)
249 return encode_post_op_attr(rqstp
, p
, fhp
);
253 * Enocde weak cache consistency data
256 encode_wcc_data(struct svc_rqst
*rqstp
, u32
*p
, struct svc_fh
*fhp
)
258 struct dentry
*dentry
= fhp
->fh_dentry
;
260 if (dentry
&& dentry
->d_inode
&& fhp
->fh_post_saved
) {
261 if (fhp
->fh_pre_saved
) {
263 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_pre_size
);
264 p
= encode_time3(p
, &fhp
->fh_pre_mtime
);
265 p
= encode_time3(p
, &fhp
->fh_pre_ctime
);
269 return encode_saved_post_attr(rqstp
, p
, fhp
);
271 /* no pre- or post-attrs */
273 return encode_post_op_attr(rqstp
, p
, fhp
);
278 * XDR decode functions
281 nfs3svc_decode_fhandle(struct svc_rqst
*rqstp
, u32
*p
, struct nfsd_fhandle
*args
)
283 if (!(p
= decode_fh(p
, &args
->fh
)))
285 return xdr_argsize_check(rqstp
, p
);
289 nfs3svc_decode_sattrargs(struct svc_rqst
*rqstp
, u32
*p
,
290 struct nfsd3_sattrargs
*args
)
292 if (!(p
= decode_fh(p
, &args
->fh
))
293 || !(p
= decode_sattr3(p
, &args
->attrs
)))
296 if ((args
->check_guard
= ntohl(*p
++)) != 0) {
297 struct timespec time
;
298 p
= decode_time3(p
, &time
);
299 args
->guardtime
= time
.tv_sec
;
302 return xdr_argsize_check(rqstp
, p
);
306 nfs3svc_decode_diropargs(struct svc_rqst
*rqstp
, u32
*p
,
307 struct nfsd3_diropargs
*args
)
309 if (!(p
= decode_fh(p
, &args
->fh
))
310 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
313 return xdr_argsize_check(rqstp
, p
);
317 nfs3svc_decode_accessargs(struct svc_rqst
*rqstp
, u32
*p
,
318 struct nfsd3_accessargs
*args
)
320 if (!(p
= decode_fh(p
, &args
->fh
)))
322 args
->access
= ntohl(*p
++);
324 return xdr_argsize_check(rqstp
, p
);
328 nfs3svc_decode_readargs(struct svc_rqst
*rqstp
, u32
*p
,
329 struct nfsd3_readargs
*args
)
334 if (!(p
= decode_fh(p
, &args
->fh
))
335 || !(p
= xdr_decode_hyper(p
, &args
->offset
)))
338 len
= args
->count
= ntohl(*p
++);
340 if (len
> NFSSVC_MAXBLKSIZE
)
341 len
= NFSSVC_MAXBLKSIZE
;
343 /* set up the kvec */
346 pn
= rqstp
->rq_resused
;
347 svc_take_page(rqstp
);
348 args
->vec
[v
].iov_base
= page_address(rqstp
->rq_respages
[pn
]);
349 args
->vec
[v
].iov_len
= len
< PAGE_SIZE
? len
: PAGE_SIZE
;
350 len
-= args
->vec
[v
].iov_len
;
354 return xdr_argsize_check(rqstp
, p
);
358 nfs3svc_decode_writeargs(struct svc_rqst
*rqstp
, u32
*p
,
359 struct nfsd3_writeargs
*args
)
361 unsigned int len
, v
, hdr
;
363 if (!(p
= decode_fh(p
, &args
->fh
))
364 || !(p
= xdr_decode_hyper(p
, &args
->offset
)))
367 args
->count
= ntohl(*p
++);
368 args
->stable
= ntohl(*p
++);
369 len
= args
->len
= ntohl(*p
++);
371 hdr
= (void*)p
- rqstp
->rq_arg
.head
[0].iov_base
;
372 if (rqstp
->rq_arg
.len
< hdr
||
373 rqstp
->rq_arg
.len
- hdr
< len
)
376 args
->vec
[0].iov_base
= (void*)p
;
377 args
->vec
[0].iov_len
= rqstp
->rq_arg
.head
[0].iov_len
- hdr
;
379 if (len
> NFSSVC_MAXBLKSIZE
)
380 len
= NFSSVC_MAXBLKSIZE
;
382 while (len
> args
->vec
[v
].iov_len
) {
383 len
-= args
->vec
[v
].iov_len
;
385 args
->vec
[v
].iov_base
= page_address(rqstp
->rq_argpages
[v
]);
386 args
->vec
[v
].iov_len
= PAGE_SIZE
;
388 args
->vec
[v
].iov_len
= len
;
391 return args
->count
== args
->len
&& args
->vec
[0].iov_len
> 0;
395 nfs3svc_decode_createargs(struct svc_rqst
*rqstp
, u32
*p
,
396 struct nfsd3_createargs
*args
)
398 if (!(p
= decode_fh(p
, &args
->fh
))
399 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
402 switch (args
->createmode
= ntohl(*p
++)) {
403 case NFS3_CREATE_UNCHECKED
:
404 case NFS3_CREATE_GUARDED
:
405 if (!(p
= decode_sattr3(p
, &args
->attrs
)))
408 case NFS3_CREATE_EXCLUSIVE
:
416 return xdr_argsize_check(rqstp
, p
);
419 nfs3svc_decode_mkdirargs(struct svc_rqst
*rqstp
, u32
*p
,
420 struct nfsd3_createargs
*args
)
422 if (!(p
= decode_fh(p
, &args
->fh
))
423 || !(p
= decode_filename(p
, &args
->name
, &args
->len
))
424 || !(p
= decode_sattr3(p
, &args
->attrs
)))
427 return xdr_argsize_check(rqstp
, p
);
431 nfs3svc_decode_symlinkargs(struct svc_rqst
*rqstp
, u32
*p
,
432 struct nfsd3_symlinkargs
*args
)
439 if (!(p
= decode_fh(p
, &args
->ffh
))
440 || !(p
= decode_filename(p
, &args
->fname
, &args
->flen
))
441 || !(p
= decode_sattr3(p
, &args
->attrs
))
444 /* now decode the pathname, which might be larger than the first page.
445 * As we have to check for nul's anyway, we copy it into a new page
446 * This page appears in the rq_res.pages list, but as pages_len is always
447 * 0, it won't get in the way
449 svc_take_page(rqstp
);
451 if (len
== 0 || len
> NFS3_MAXPATHLEN
|| len
>= PAGE_SIZE
)
453 args
->tname
= new = page_address(rqstp
->rq_respages
[rqstp
->rq_resused
-1]);
455 /* first copy and check from the first page */
457 vec
= &rqstp
->rq_arg
.head
[0];
458 avail
= vec
->iov_len
- (old
- (char*)vec
->iov_base
);
459 while (len
&& avail
&& *old
) {
464 /* now copy next page if there is one */
465 if (len
&& !avail
&& rqstp
->rq_arg
.page_len
) {
466 avail
= rqstp
->rq_arg
.page_len
;
467 if (avail
> PAGE_SIZE
) avail
= PAGE_SIZE
;
468 old
= page_address(rqstp
->rq_arg
.pages
[0]);
470 while (len
&& avail
&& *old
) {
483 nfs3svc_decode_mknodargs(struct svc_rqst
*rqstp
, u32
*p
,
484 struct nfsd3_mknodargs
*args
)
486 if (!(p
= decode_fh(p
, &args
->fh
))
487 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
490 args
->ftype
= ntohl(*p
++);
492 if (args
->ftype
== NF3BLK
|| args
->ftype
== NF3CHR
493 || args
->ftype
== NF3SOCK
|| args
->ftype
== NF3FIFO
) {
494 if (!(p
= decode_sattr3(p
, &args
->attrs
)))
498 if (args
->ftype
== NF3BLK
|| args
->ftype
== NF3CHR
) {
499 args
->major
= ntohl(*p
++);
500 args
->minor
= ntohl(*p
++);
503 return xdr_argsize_check(rqstp
, p
);
507 nfs3svc_decode_renameargs(struct svc_rqst
*rqstp
, u32
*p
,
508 struct nfsd3_renameargs
*args
)
510 if (!(p
= decode_fh(p
, &args
->ffh
))
511 || !(p
= decode_filename(p
, &args
->fname
, &args
->flen
))
512 || !(p
= decode_fh(p
, &args
->tfh
))
513 || !(p
= decode_filename(p
, &args
->tname
, &args
->tlen
)))
516 return xdr_argsize_check(rqstp
, p
);
520 nfs3svc_decode_readlinkargs(struct svc_rqst
*rqstp
, u32
*p
,
521 struct nfsd3_readlinkargs
*args
)
523 if (!(p
= decode_fh(p
, &args
->fh
)))
525 svc_take_page(rqstp
);
526 args
->buffer
= page_address(rqstp
->rq_respages
[rqstp
->rq_resused
-1]);
528 return xdr_argsize_check(rqstp
, p
);
532 nfs3svc_decode_linkargs(struct svc_rqst
*rqstp
, u32
*p
,
533 struct nfsd3_linkargs
*args
)
535 if (!(p
= decode_fh(p
, &args
->ffh
))
536 || !(p
= decode_fh(p
, &args
->tfh
))
537 || !(p
= decode_filename(p
, &args
->tname
, &args
->tlen
)))
540 return xdr_argsize_check(rqstp
, p
);
544 nfs3svc_decode_readdirargs(struct svc_rqst
*rqstp
, u32
*p
,
545 struct nfsd3_readdirargs
*args
)
547 if (!(p
= decode_fh(p
, &args
->fh
)))
549 p
= xdr_decode_hyper(p
, &args
->cookie
);
550 args
->verf
= p
; p
+= 2;
552 args
->count
= ntohl(*p
++);
554 if (args
->count
> PAGE_SIZE
)
555 args
->count
= PAGE_SIZE
;
557 svc_take_page(rqstp
);
558 args
->buffer
= page_address(rqstp
->rq_respages
[rqstp
->rq_resused
-1]);
560 return xdr_argsize_check(rqstp
, p
);
564 nfs3svc_decode_readdirplusargs(struct svc_rqst
*rqstp
, u32
*p
,
565 struct nfsd3_readdirargs
*args
)
569 if (!(p
= decode_fh(p
, &args
->fh
)))
571 p
= xdr_decode_hyper(p
, &args
->cookie
);
572 args
->verf
= p
; p
+= 2;
573 args
->dircount
= ntohl(*p
++);
574 args
->count
= ntohl(*p
++);
576 len
= (args
->count
> NFSSVC_MAXBLKSIZE
) ? NFSSVC_MAXBLKSIZE
:
581 pn
= rqstp
->rq_resused
;
582 svc_take_page(rqstp
);
584 args
->buffer
= page_address(rqstp
->rq_respages
[pn
]);
588 return xdr_argsize_check(rqstp
, p
);
592 nfs3svc_decode_commitargs(struct svc_rqst
*rqstp
, u32
*p
,
593 struct nfsd3_commitargs
*args
)
595 if (!(p
= decode_fh(p
, &args
->fh
)))
597 p
= xdr_decode_hyper(p
, &args
->offset
);
598 args
->count
= ntohl(*p
++);
600 return xdr_argsize_check(rqstp
, p
);
604 * XDR encode functions
607 * There must be an encoding function for void results so svc_process
608 * will work properly.
611 nfs3svc_encode_voidres(struct svc_rqst
*rqstp
, u32
*p
, void *dummy
)
613 return xdr_ressize_check(rqstp
, p
);
618 nfs3svc_encode_attrstat(struct svc_rqst
*rqstp
, u32
*p
,
619 struct nfsd3_attrstat
*resp
)
621 if (resp
->status
== 0)
622 p
= encode_fattr3(rqstp
, p
, &resp
->fh
, &resp
->stat
);
623 return xdr_ressize_check(rqstp
, p
);
626 /* SETATTR, REMOVE, RMDIR */
628 nfs3svc_encode_wccstat(struct svc_rqst
*rqstp
, u32
*p
,
629 struct nfsd3_attrstat
*resp
)
631 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
632 return xdr_ressize_check(rqstp
, p
);
637 nfs3svc_encode_diropres(struct svc_rqst
*rqstp
, u32
*p
,
638 struct nfsd3_diropres
*resp
)
640 if (resp
->status
== 0) {
641 p
= encode_fh(p
, &resp
->fh
);
642 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
644 p
= encode_post_op_attr(rqstp
, p
, &resp
->dirfh
);
645 return xdr_ressize_check(rqstp
, p
);
650 nfs3svc_encode_accessres(struct svc_rqst
*rqstp
, u32
*p
,
651 struct nfsd3_accessres
*resp
)
653 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
654 if (resp
->status
== 0)
655 *p
++ = htonl(resp
->access
);
656 return xdr_ressize_check(rqstp
, p
);
661 nfs3svc_encode_readlinkres(struct svc_rqst
*rqstp
, u32
*p
,
662 struct nfsd3_readlinkres
*resp
)
664 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
665 if (resp
->status
== 0) {
666 *p
++ = htonl(resp
->len
);
667 xdr_ressize_check(rqstp
, p
);
668 rqstp
->rq_res
.page_len
= resp
->len
;
670 /* need to pad the tail */
671 rqstp
->rq_restailpage
= 0;
672 rqstp
->rq_res
.tail
[0].iov_base
= p
;
674 rqstp
->rq_res
.tail
[0].iov_len
= 4 - (resp
->len
&3);
678 return xdr_ressize_check(rqstp
, p
);
683 nfs3svc_encode_readres(struct svc_rqst
*rqstp
, u32
*p
,
684 struct nfsd3_readres
*resp
)
686 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
687 if (resp
->status
== 0) {
688 *p
++ = htonl(resp
->count
);
689 *p
++ = htonl(resp
->eof
);
690 *p
++ = htonl(resp
->count
); /* xdr opaque count */
691 xdr_ressize_check(rqstp
, p
);
692 /* now update rqstp->rq_res to reflect data aswell */
693 rqstp
->rq_res
.page_len
= resp
->count
;
694 if (resp
->count
& 3) {
695 /* need to pad the tail */
696 rqstp
->rq_restailpage
= 0;
697 rqstp
->rq_res
.tail
[0].iov_base
= p
;
699 rqstp
->rq_res
.tail
[0].iov_len
= 4 - (resp
->count
& 3);
703 return xdr_ressize_check(rqstp
, p
);
708 nfs3svc_encode_writeres(struct svc_rqst
*rqstp
, u32
*p
,
709 struct nfsd3_writeres
*resp
)
711 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
712 if (resp
->status
== 0) {
713 *p
++ = htonl(resp
->count
);
714 *p
++ = htonl(resp
->committed
);
715 *p
++ = htonl(nfssvc_boot
.tv_sec
);
716 *p
++ = htonl(nfssvc_boot
.tv_usec
);
718 return xdr_ressize_check(rqstp
, p
);
721 /* CREATE, MKDIR, SYMLINK, MKNOD */
723 nfs3svc_encode_createres(struct svc_rqst
*rqstp
, u32
*p
,
724 struct nfsd3_diropres
*resp
)
726 if (resp
->status
== 0) {
728 p
= encode_fh(p
, &resp
->fh
);
729 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
731 p
= encode_wcc_data(rqstp
, p
, &resp
->dirfh
);
732 return xdr_ressize_check(rqstp
, p
);
737 nfs3svc_encode_renameres(struct svc_rqst
*rqstp
, u32
*p
,
738 struct nfsd3_renameres
*resp
)
740 p
= encode_wcc_data(rqstp
, p
, &resp
->ffh
);
741 p
= encode_wcc_data(rqstp
, p
, &resp
->tfh
);
742 return xdr_ressize_check(rqstp
, p
);
747 nfs3svc_encode_linkres(struct svc_rqst
*rqstp
, u32
*p
,
748 struct nfsd3_linkres
*resp
)
750 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
751 p
= encode_wcc_data(rqstp
, p
, &resp
->tfh
);
752 return xdr_ressize_check(rqstp
, p
);
757 nfs3svc_encode_readdirres(struct svc_rqst
*rqstp
, u32
*p
,
758 struct nfsd3_readdirres
*resp
)
760 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
762 if (resp
->status
== 0) {
763 /* stupid readdir cookie */
764 memcpy(p
, resp
->verf
, 8); p
+= 2;
765 xdr_ressize_check(rqstp
, p
);
766 if (rqstp
->rq_res
.head
[0].iov_len
+ (2<<2) > PAGE_SIZE
)
767 return 1; /*No room for trailer */
768 rqstp
->rq_res
.page_len
= (resp
->count
) << 2;
770 /* add the 'tail' to the end of the 'head' page - page 0. */
771 rqstp
->rq_restailpage
= 0;
772 rqstp
->rq_res
.tail
[0].iov_base
= p
;
773 *p
++ = 0; /* no more entries */
774 *p
++ = htonl(resp
->common
.err
== nfserr_eof
);
775 rqstp
->rq_res
.tail
[0].iov_len
= 2<<2;
778 return xdr_ressize_check(rqstp
, p
);
782 encode_entry_baggage(struct nfsd3_readdirres
*cd
, u32
*p
, const char *name
,
783 int namlen
, ino_t ino
)
785 *p
++ = xdr_one
; /* mark entry present */
786 p
= xdr_encode_hyper(p
, ino
); /* file id */
787 p
= xdr_encode_array(p
, name
, namlen
);/* name length & name */
789 cd
->offset
= p
; /* remember pointer */
790 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
);/* offset of next entry */
796 encode_entryplus_baggage(struct nfsd3_readdirres
*cd
, u32
*p
,
799 p
= encode_post_op_attr(cd
->rqstp
, p
, fhp
);
800 *p
++ = xdr_one
; /* yes, a file handle follows */
801 p
= encode_fh(p
, fhp
);
807 compose_entry_fh(struct nfsd3_readdirres
*cd
, struct svc_fh
*fhp
,
808 const char *name
, int namlen
)
810 struct svc_export
*exp
;
811 struct dentry
*dparent
, *dchild
;
814 dparent
= cd
->fh
.fh_dentry
;
815 exp
= cd
->fh
.fh_export
;
817 fh_init(fhp
, NFS3_FHSIZE
);
818 if (isdotent(name
, namlen
)) {
820 dchild
= dget_parent(dparent
);
821 if (dchild
== dparent
) {
822 /* filesystem root - cannot return filehandle for ".." */
827 dchild
= dget(dparent
);
829 dchild
= lookup_one_len(name
, dparent
, namlen
);
832 if (d_mountpoint(dchild
) ||
833 fh_compose(fhp
, exp
, dchild
, &cd
->fh
) != 0 ||
841 * Encode a directory entry. This one works for both normal readdir
843 * The normal readdir reply requires 2 (fileid) + 1 (stringlen)
844 * + string + 2 (cookie) + 1 (next) words, i.e. 6 + strlen.
846 * The readdirplus baggage is 1+21 words for post_op_attr, plus the
850 #define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
851 #define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
853 encode_entry(struct readdir_cd
*ccd
, const char *name
,
854 int namlen
, off_t offset
, ino_t ino
, unsigned int d_type
, int plus
)
856 struct nfsd3_readdirres
*cd
= container_of(ccd
, struct nfsd3_readdirres
,
859 caddr_t curr_page_addr
= NULL
;
860 int pn
; /* current page number */
861 int slen
; /* string (name) length */
862 int elen
; /* estimated entry length in words */
863 int num_entry_words
= 0; /* actual number of words */
866 u64 offset64
= offset
;
868 if (unlikely(cd
->offset1
)) {
869 /* we ended up with offset on a page boundary */
870 *cd
->offset
= htonl(offset64
>> 32);
871 *cd
->offset1
= htonl(offset64
& 0xffffffff);
874 xdr_encode_hyper(cd
->offset
, (u64
) offset
);
879 dprintk("encode_entry(%.*s @%ld%s)\n",
880 namlen, name, (long) offset, plus? " plus" : "");
883 /* truncate filename if too long */
884 if (namlen
> NFS3_MAXNAMLEN
)
885 namlen
= NFS3_MAXNAMLEN
;
887 slen
= XDR_QUADLEN(namlen
);
888 elen
= slen
+ NFS3_ENTRY_BAGGAGE
889 + (plus
? NFS3_ENTRYPLUS_BAGGAGE
: 0);
891 if (cd
->buflen
< elen
) {
892 cd
->common
.err
= nfserr_toosmall
;
896 /* determine which page in rq_respages[] we are currently filling */
897 for (pn
=1; pn
< cd
->rqstp
->rq_resused
; pn
++) {
898 curr_page_addr
= page_address(cd
->rqstp
->rq_respages
[pn
]);
900 if (((caddr_t
)cd
->buffer
>= curr_page_addr
) &&
901 ((caddr_t
)cd
->buffer
< curr_page_addr
+ PAGE_SIZE
))
905 if ((caddr_t
)(cd
->buffer
+ elen
) < (curr_page_addr
+ PAGE_SIZE
)) {
906 /* encode entry in current page */
908 p
= encode_entry_baggage(cd
, p
, name
, namlen
, ino
);
910 /* throw in readdirplus baggage */
914 if (compose_entry_fh(cd
, &fh
, name
, namlen
) > 0) {
918 p
= encode_entryplus_baggage(cd
, p
, &fh
);
920 num_entry_words
= p
- cd
->buffer
;
921 } else if (cd
->rqstp
->rq_respages
[pn
+1] != NULL
) {
922 /* temporarily encode entry into next page, then move back to
923 * current and next page in rq_respages[] */
927 /* grab next page for temporary storage of entry */
928 p1
= tmp
= page_address(cd
->rqstp
->rq_respages
[pn
+1]);
930 p1
= encode_entry_baggage(cd
, p1
, name
, namlen
, ino
);
932 /* throw in readdirplus baggage */
936 if (compose_entry_fh(cd
, &fh
, name
, namlen
) > 0) {
937 /* zero out the filehandle */
941 p1
= encode_entryplus_baggage(cd
, p1
, &fh
);
944 /* determine entry word length and lengths to go in pages */
945 num_entry_words
= p1
- tmp
;
946 len1
= curr_page_addr
+ PAGE_SIZE
- (caddr_t
)cd
->buffer
;
947 if ((num_entry_words
<< 2) < len1
) {
948 /* the actual number of words in the entry is less
949 * than elen and can still fit in the current page
951 memmove(p
, tmp
, num_entry_words
<< 2);
952 p
+= num_entry_words
;
955 cd
->offset
= cd
->buffer
+ (cd
->offset
- tmp
);
957 unsigned int offset_r
= (cd
->offset
- tmp
) << 2;
959 /* update pointer to offset location.
960 * This is a 64bit quantity, so we need to
962 * - entirely in first page
963 * - entirely in second page
964 * - 4 bytes in each page
966 if (offset_r
+ 8 <= len1
) {
967 cd
->offset
= p
+ (cd
->offset
- tmp
);
968 } else if (offset_r
>= len1
) {
969 cd
->offset
-= len1
>> 2;
971 /* sitting on the fence */
972 BUG_ON(offset_r
!= len1
- 4);
973 cd
->offset
= p
+ (cd
->offset
- tmp
);
977 len2
= (num_entry_words
<< 2) - len1
;
979 /* move from temp page to current and next pages */
980 memmove(p
, tmp
, len1
);
981 memmove(tmp
, (caddr_t
)tmp
+len1
, len2
);
983 p
= tmp
+ (len2
>> 2);
987 cd
->common
.err
= nfserr_toosmall
;
991 cd
->buflen
-= num_entry_words
;
993 cd
->common
.err
= nfs_ok
;
999 nfs3svc_encode_entry(struct readdir_cd
*cd
, const char *name
,
1000 int namlen
, loff_t offset
, ino_t ino
, unsigned int d_type
)
1002 return encode_entry(cd
, name
, namlen
, offset
, ino
, d_type
, 0);
1006 nfs3svc_encode_entry_plus(struct readdir_cd
*cd
, const char *name
,
1007 int namlen
, loff_t offset
, ino_t ino
, unsigned int d_type
)
1009 return encode_entry(cd
, name
, namlen
, offset
, ino
, d_type
, 1);
1014 nfs3svc_encode_fsstatres(struct svc_rqst
*rqstp
, u32
*p
,
1015 struct nfsd3_fsstatres
*resp
)
1017 struct kstatfs
*s
= &resp
->stats
;
1018 u64 bs
= s
->f_bsize
;
1020 *p
++ = xdr_zero
; /* no post_op_attr */
1022 if (resp
->status
== 0) {
1023 p
= xdr_encode_hyper(p
, bs
* s
->f_blocks
); /* total bytes */
1024 p
= xdr_encode_hyper(p
, bs
* s
->f_bfree
); /* free bytes */
1025 p
= xdr_encode_hyper(p
, bs
* s
->f_bavail
); /* user available bytes */
1026 p
= xdr_encode_hyper(p
, s
->f_files
); /* total inodes */
1027 p
= xdr_encode_hyper(p
, s
->f_ffree
); /* free inodes */
1028 p
= xdr_encode_hyper(p
, s
->f_ffree
); /* user available inodes */
1029 *p
++ = htonl(resp
->invarsec
); /* mean unchanged time */
1031 return xdr_ressize_check(rqstp
, p
);
1036 nfs3svc_encode_fsinfores(struct svc_rqst
*rqstp
, u32
*p
,
1037 struct nfsd3_fsinfores
*resp
)
1039 *p
++ = xdr_zero
; /* no post_op_attr */
1041 if (resp
->status
== 0) {
1042 *p
++ = htonl(resp
->f_rtmax
);
1043 *p
++ = htonl(resp
->f_rtpref
);
1044 *p
++ = htonl(resp
->f_rtmult
);
1045 *p
++ = htonl(resp
->f_wtmax
);
1046 *p
++ = htonl(resp
->f_wtpref
);
1047 *p
++ = htonl(resp
->f_wtmult
);
1048 *p
++ = htonl(resp
->f_dtpref
);
1049 p
= xdr_encode_hyper(p
, resp
->f_maxfilesize
);
1052 *p
++ = htonl(resp
->f_properties
);
1055 return xdr_ressize_check(rqstp
, p
);
1060 nfs3svc_encode_pathconfres(struct svc_rqst
*rqstp
, u32
*p
,
1061 struct nfsd3_pathconfres
*resp
)
1063 *p
++ = xdr_zero
; /* no post_op_attr */
1065 if (resp
->status
== 0) {
1066 *p
++ = htonl(resp
->p_link_max
);
1067 *p
++ = htonl(resp
->p_name_max
);
1068 *p
++ = htonl(resp
->p_no_trunc
);
1069 *p
++ = htonl(resp
->p_chown_restricted
);
1070 *p
++ = htonl(resp
->p_case_insensitive
);
1071 *p
++ = htonl(resp
->p_case_preserving
);
1074 return xdr_ressize_check(rqstp
, p
);
1079 nfs3svc_encode_commitres(struct svc_rqst
*rqstp
, u32
*p
,
1080 struct nfsd3_commitres
*resp
)
1082 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
1083 /* Write verifier */
1084 if (resp
->status
== 0) {
1085 *p
++ = htonl(nfssvc_boot
.tv_sec
);
1086 *p
++ = htonl(nfssvc_boot
.tv_usec
);
1088 return xdr_ressize_check(rqstp
, p
);
1092 * XDR release functions
1095 nfs3svc_release_fhandle(struct svc_rqst
*rqstp
, u32
*p
,
1096 struct nfsd3_attrstat
*resp
)
1103 nfs3svc_release_fhandle2(struct svc_rqst
*rqstp
, u32
*p
,
1104 struct nfsd3_fhandle_pair
*resp
)