1 // SPDX-License-Identifier: GPL-2.0
3 * XDR support for nfsd/protocol version 3.
5 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
7 * 2003-08-09 Jamie Lokier: Use htonl() for nanoseconds, not htons()!
10 #include <linux/namei.h>
11 #include <linux/sunrpc/svc_xprt.h>
17 #define NFSDDBG_FACILITY NFSDDBG_XDR
21 * Mapping of S_IF* types to NFS file types
23 static u32 nfs3_ftypes
[] = {
24 NF3NON
, NF3FIFO
, NF3CHR
, NF3BAD
,
25 NF3DIR
, NF3BAD
, NF3BLK
, NF3BAD
,
26 NF3REG
, NF3BAD
, NF3LNK
, NF3BAD
,
27 NF3SOCK
, NF3BAD
, NF3LNK
, NF3BAD
,
31 * XDR functions for basic NFS types
34 encode_time3(__be32
*p
, struct timespec
*time
)
36 *p
++ = htonl((u32
) time
->tv_sec
); *p
++ = htonl(time
->tv_nsec
);
41 decode_time3(__be32
*p
, struct timespec
*time
)
43 time
->tv_sec
= ntohl(*p
++);
44 time
->tv_nsec
= ntohl(*p
++);
49 decode_fh(__be32
*p
, struct svc_fh
*fhp
)
52 fh_init(fhp
, NFS3_FHSIZE
);
54 if (size
> NFS3_FHSIZE
)
57 memcpy(&fhp
->fh_handle
.fh_base
, p
, size
);
58 fhp
->fh_handle
.fh_size
= size
;
59 return p
+ XDR_QUADLEN(size
);
62 /* Helper function for NFSv3 ACL code */
63 __be32
*nfs3svc_decode_fh(__be32
*p
, struct svc_fh
*fhp
)
65 return decode_fh(p
, fhp
);
69 encode_fh(__be32
*p
, struct svc_fh
*fhp
)
71 unsigned int size
= fhp
->fh_handle
.fh_size
;
73 if (size
) p
[XDR_QUADLEN(size
)-1]=0;
74 memcpy(p
, &fhp
->fh_handle
.fh_base
, size
);
75 return p
+ XDR_QUADLEN(size
);
79 * Decode a file name and make sure that the path contains
80 * no slashes or null bytes.
83 decode_filename(__be32
*p
, char **namp
, unsigned int *lenp
)
88 if ((p
= xdr_decode_string_inplace(p
, namp
, lenp
, NFS3_MAXNAMLEN
)) != NULL
) {
89 for (i
= 0, name
= *namp
; i
< *lenp
; i
++, name
++) {
90 if (*name
== '\0' || *name
== '/')
99 decode_sattr3(__be32
*p
, struct iattr
*iap
, struct user_namespace
*userns
)
106 iap
->ia_valid
|= ATTR_MODE
;
107 iap
->ia_mode
= ntohl(*p
++);
110 iap
->ia_uid
= make_kuid(userns
, ntohl(*p
++));
111 if (uid_valid(iap
->ia_uid
))
112 iap
->ia_valid
|= ATTR_UID
;
115 iap
->ia_gid
= make_kgid(userns
, ntohl(*p
++));
116 if (gid_valid(iap
->ia_gid
))
117 iap
->ia_valid
|= ATTR_GID
;
122 iap
->ia_valid
|= ATTR_SIZE
;
123 p
= xdr_decode_hyper(p
, &newsize
);
124 iap
->ia_size
= min_t(u64
, newsize
, NFS_OFFSET_MAX
);
126 if ((tmp
= ntohl(*p
++)) == 1) { /* set to server time */
127 iap
->ia_valid
|= ATTR_ATIME
;
128 } else if (tmp
== 2) { /* set to client time */
129 iap
->ia_valid
|= ATTR_ATIME
| ATTR_ATIME_SET
;
130 iap
->ia_atime
.tv_sec
= ntohl(*p
++);
131 iap
->ia_atime
.tv_nsec
= ntohl(*p
++);
133 if ((tmp
= ntohl(*p
++)) == 1) { /* set to server time */
134 iap
->ia_valid
|= ATTR_MTIME
;
135 } else if (tmp
== 2) { /* set to client time */
136 iap
->ia_valid
|= ATTR_MTIME
| ATTR_MTIME_SET
;
137 iap
->ia_mtime
.tv_sec
= ntohl(*p
++);
138 iap
->ia_mtime
.tv_nsec
= ntohl(*p
++);
143 static __be32
*encode_fsid(__be32
*p
, struct svc_fh
*fhp
)
146 switch(fsid_source(fhp
)) {
149 p
= xdr_encode_hyper(p
, (u64
)huge_encode_dev
150 (fhp
->fh_dentry
->d_sb
->s_dev
));
152 case FSIDSOURCE_FSID
:
153 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_export
->ex_fsid
);
155 case FSIDSOURCE_UUID
:
156 f
= ((u64
*)fhp
->fh_export
->ex_uuid
)[0];
157 f
^= ((u64
*)fhp
->fh_export
->ex_uuid
)[1];
158 p
= xdr_encode_hyper(p
, f
);
165 encode_fattr3(struct svc_rqst
*rqstp
, __be32
*p
, struct svc_fh
*fhp
,
168 struct user_namespace
*userns
= nfsd_user_namespace(rqstp
);
170 *p
++ = htonl(nfs3_ftypes
[(stat
->mode
& S_IFMT
) >> 12]);
171 *p
++ = htonl((u32
) (stat
->mode
& S_IALLUGO
));
172 *p
++ = htonl((u32
) stat
->nlink
);
173 *p
++ = htonl((u32
) from_kuid_munged(userns
, stat
->uid
));
174 *p
++ = htonl((u32
) from_kgid_munged(userns
, stat
->gid
));
175 if (S_ISLNK(stat
->mode
) && stat
->size
> NFS3_MAXPATHLEN
) {
176 p
= xdr_encode_hyper(p
, (u64
) NFS3_MAXPATHLEN
);
178 p
= xdr_encode_hyper(p
, (u64
) stat
->size
);
180 p
= xdr_encode_hyper(p
, ((u64
)stat
->blocks
) << 9);
181 *p
++ = htonl((u32
) MAJOR(stat
->rdev
));
182 *p
++ = htonl((u32
) MINOR(stat
->rdev
));
183 p
= encode_fsid(p
, fhp
);
184 p
= xdr_encode_hyper(p
, stat
->ino
);
185 ts
= timespec64_to_timespec(stat
->atime
);
186 p
= encode_time3(p
, &ts
);
187 ts
= timespec64_to_timespec(stat
->mtime
);
188 p
= encode_time3(p
, &ts
);
189 ts
= timespec64_to_timespec(stat
->ctime
);
190 p
= encode_time3(p
, &ts
);
196 encode_saved_post_attr(struct svc_rqst
*rqstp
, __be32
*p
, struct svc_fh
*fhp
)
198 /* Attributes to follow */
200 return encode_fattr3(rqstp
, p
, fhp
, &fhp
->fh_post_attr
);
204 * Encode post-operation attributes.
205 * The inode may be NULL if the call failed because of a stale file
206 * handle. In this case, no attributes are returned.
209 encode_post_op_attr(struct svc_rqst
*rqstp
, __be32
*p
, struct svc_fh
*fhp
)
211 struct dentry
*dentry
= fhp
->fh_dentry
;
212 if (dentry
&& d_really_is_positive(dentry
)) {
216 err
= fh_getattr(fhp
, &stat
);
218 *p
++ = xdr_one
; /* attributes follow */
219 lease_get_mtime(d_inode(dentry
), &stat
.mtime
);
220 return encode_fattr3(rqstp
, p
, fhp
, &stat
);
227 /* Helper for NFSv3 ACLs */
229 nfs3svc_encode_post_op_attr(struct svc_rqst
*rqstp
, __be32
*p
, struct svc_fh
*fhp
)
231 return encode_post_op_attr(rqstp
, p
, fhp
);
235 * Enocde weak cache consistency data
238 encode_wcc_data(struct svc_rqst
*rqstp
, __be32
*p
, struct svc_fh
*fhp
)
240 struct dentry
*dentry
= fhp
->fh_dentry
;
242 if (dentry
&& d_really_is_positive(dentry
) && fhp
->fh_post_saved
) {
243 if (fhp
->fh_pre_saved
) {
245 p
= xdr_encode_hyper(p
, (u64
) fhp
->fh_pre_size
);
246 p
= encode_time3(p
, &fhp
->fh_pre_mtime
);
247 p
= encode_time3(p
, &fhp
->fh_pre_ctime
);
251 return encode_saved_post_attr(rqstp
, p
, fhp
);
253 /* no pre- or post-attrs */
255 return encode_post_op_attr(rqstp
, p
, fhp
);
259 * Fill in the pre_op attr for the wcc data
261 void fill_pre_wcc(struct svc_fh
*fhp
)
267 if (fhp
->fh_pre_saved
)
270 inode
= d_inode(fhp
->fh_dentry
);
271 err
= fh_getattr(fhp
, &stat
);
273 /* Grab the times from inode anyway */
274 stat
.mtime
= inode
->i_mtime
;
275 stat
.ctime
= inode
->i_ctime
;
276 stat
.size
= inode
->i_size
;
279 fhp
->fh_pre_mtime
= timespec64_to_timespec(stat
.mtime
);
280 fhp
->fh_pre_ctime
= timespec64_to_timespec(stat
.ctime
);
281 fhp
->fh_pre_size
= stat
.size
;
282 fhp
->fh_pre_change
= nfsd4_change_attribute(&stat
, inode
);
283 fhp
->fh_pre_saved
= true;
287 * Fill in the post_op attr for the wcc data
289 void fill_post_wcc(struct svc_fh
*fhp
)
293 if (fhp
->fh_post_saved
)
294 printk("nfsd: inode locked twice during operation.\n");
296 err
= fh_getattr(fhp
, &fhp
->fh_post_attr
);
297 fhp
->fh_post_change
= nfsd4_change_attribute(&fhp
->fh_post_attr
,
298 d_inode(fhp
->fh_dentry
));
300 fhp
->fh_post_saved
= false;
301 /* Grab the ctime anyway - set_change_info might use it */
302 fhp
->fh_post_attr
.ctime
= d_inode(fhp
->fh_dentry
)->i_ctime
;
304 fhp
->fh_post_saved
= true;
308 * XDR decode functions
311 nfs3svc_decode_fhandle(struct svc_rqst
*rqstp
, __be32
*p
)
313 struct nfsd_fhandle
*args
= rqstp
->rq_argp
;
315 p
= decode_fh(p
, &args
->fh
);
318 return xdr_argsize_check(rqstp
, p
);
322 nfs3svc_decode_sattrargs(struct svc_rqst
*rqstp
, __be32
*p
)
324 struct nfsd3_sattrargs
*args
= rqstp
->rq_argp
;
326 p
= decode_fh(p
, &args
->fh
);
329 p
= decode_sattr3(p
, &args
->attrs
, nfsd_user_namespace(rqstp
));
331 if ((args
->check_guard
= ntohl(*p
++)) != 0) {
332 struct timespec time
;
333 p
= decode_time3(p
, &time
);
334 args
->guardtime
= time
.tv_sec
;
337 return xdr_argsize_check(rqstp
, p
);
341 nfs3svc_decode_diropargs(struct svc_rqst
*rqstp
, __be32
*p
)
343 struct nfsd3_diropargs
*args
= rqstp
->rq_argp
;
345 if (!(p
= decode_fh(p
, &args
->fh
))
346 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
349 return xdr_argsize_check(rqstp
, p
);
353 nfs3svc_decode_accessargs(struct svc_rqst
*rqstp
, __be32
*p
)
355 struct nfsd3_accessargs
*args
= rqstp
->rq_argp
;
357 p
= decode_fh(p
, &args
->fh
);
360 args
->access
= ntohl(*p
++);
362 return xdr_argsize_check(rqstp
, p
);
366 nfs3svc_decode_readargs(struct svc_rqst
*rqstp
, __be32
*p
)
368 struct nfsd3_readargs
*args
= rqstp
->rq_argp
;
371 u32 max_blocksize
= svc_max_payload(rqstp
);
373 p
= decode_fh(p
, &args
->fh
);
376 p
= xdr_decode_hyper(p
, &args
->offset
);
378 args
->count
= ntohl(*p
++);
379 len
= min(args
->count
, max_blocksize
);
381 /* set up the kvec */
384 struct page
*p
= *(rqstp
->rq_next_page
++);
386 rqstp
->rq_vec
[v
].iov_base
= page_address(p
);
387 rqstp
->rq_vec
[v
].iov_len
= min_t(unsigned int, len
, PAGE_SIZE
);
388 len
-= rqstp
->rq_vec
[v
].iov_len
;
392 return xdr_argsize_check(rqstp
, p
);
396 nfs3svc_decode_writeargs(struct svc_rqst
*rqstp
, __be32
*p
)
398 struct nfsd3_writeargs
*args
= rqstp
->rq_argp
;
399 unsigned int len
, hdr
, dlen
;
400 u32 max_blocksize
= svc_max_payload(rqstp
);
401 struct kvec
*head
= rqstp
->rq_arg
.head
;
402 struct kvec
*tail
= rqstp
->rq_arg
.tail
;
404 p
= decode_fh(p
, &args
->fh
);
407 p
= xdr_decode_hyper(p
, &args
->offset
);
409 args
->count
= ntohl(*p
++);
410 args
->stable
= ntohl(*p
++);
411 len
= args
->len
= ntohl(*p
++);
412 if ((void *)p
> head
->iov_base
+ head
->iov_len
)
415 * The count must equal the amount of data passed.
417 if (args
->count
!= args
->len
)
421 * Check to make sure that we got the right number of
424 hdr
= (void*)p
- head
->iov_base
;
425 dlen
= head
->iov_len
+ rqstp
->rq_arg
.page_len
+ tail
->iov_len
- hdr
;
427 * Round the length of the data which was specified up to
428 * the next multiple of XDR units and then compare that
429 * against the length which was actually received.
430 * Note that when RPCSEC/GSS (for example) is used, the
431 * data buffer can be padded so dlen might be larger
432 * than required. It must never be smaller.
434 if (dlen
< XDR_QUADLEN(len
)*4)
437 if (args
->count
> max_blocksize
) {
438 args
->count
= max_blocksize
;
439 len
= args
->len
= max_blocksize
;
442 args
->first
.iov_base
= (void *)p
;
443 args
->first
.iov_len
= head
->iov_len
- hdr
;
448 nfs3svc_decode_createargs(struct svc_rqst
*rqstp
, __be32
*p
)
450 struct nfsd3_createargs
*args
= rqstp
->rq_argp
;
452 if (!(p
= decode_fh(p
, &args
->fh
))
453 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
456 switch (args
->createmode
= ntohl(*p
++)) {
457 case NFS3_CREATE_UNCHECKED
:
458 case NFS3_CREATE_GUARDED
:
459 p
= decode_sattr3(p
, &args
->attrs
, nfsd_user_namespace(rqstp
));
461 case NFS3_CREATE_EXCLUSIVE
:
469 return xdr_argsize_check(rqstp
, p
);
473 nfs3svc_decode_mkdirargs(struct svc_rqst
*rqstp
, __be32
*p
)
475 struct nfsd3_createargs
*args
= rqstp
->rq_argp
;
477 if (!(p
= decode_fh(p
, &args
->fh
)) ||
478 !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
480 p
= decode_sattr3(p
, &args
->attrs
, nfsd_user_namespace(rqstp
));
482 return xdr_argsize_check(rqstp
, p
);
486 nfs3svc_decode_symlinkargs(struct svc_rqst
*rqstp
, __be32
*p
)
488 struct nfsd3_symlinkargs
*args
= rqstp
->rq_argp
;
489 char *base
= (char *)p
;
492 if (!(p
= decode_fh(p
, &args
->ffh
)) ||
493 !(p
= decode_filename(p
, &args
->fname
, &args
->flen
)))
495 p
= decode_sattr3(p
, &args
->attrs
, nfsd_user_namespace(rqstp
));
497 args
->tlen
= ntohl(*p
++);
499 args
->first
.iov_base
= p
;
500 args
->first
.iov_len
= rqstp
->rq_arg
.head
[0].iov_len
;
501 args
->first
.iov_len
-= (char *)p
- base
;
503 dlen
= args
->first
.iov_len
+ rqstp
->rq_arg
.page_len
+
504 rqstp
->rq_arg
.tail
[0].iov_len
;
505 if (dlen
< XDR_QUADLEN(args
->tlen
) << 2)
511 nfs3svc_decode_mknodargs(struct svc_rqst
*rqstp
, __be32
*p
)
513 struct nfsd3_mknodargs
*args
= rqstp
->rq_argp
;
515 if (!(p
= decode_fh(p
, &args
->fh
))
516 || !(p
= decode_filename(p
, &args
->name
, &args
->len
)))
519 args
->ftype
= ntohl(*p
++);
521 if (args
->ftype
== NF3BLK
|| args
->ftype
== NF3CHR
522 || args
->ftype
== NF3SOCK
|| args
->ftype
== NF3FIFO
)
523 p
= decode_sattr3(p
, &args
->attrs
, nfsd_user_namespace(rqstp
));
525 if (args
->ftype
== NF3BLK
|| args
->ftype
== NF3CHR
) {
526 args
->major
= ntohl(*p
++);
527 args
->minor
= ntohl(*p
++);
530 return xdr_argsize_check(rqstp
, p
);
534 nfs3svc_decode_renameargs(struct svc_rqst
*rqstp
, __be32
*p
)
536 struct nfsd3_renameargs
*args
= rqstp
->rq_argp
;
538 if (!(p
= decode_fh(p
, &args
->ffh
))
539 || !(p
= decode_filename(p
, &args
->fname
, &args
->flen
))
540 || !(p
= decode_fh(p
, &args
->tfh
))
541 || !(p
= decode_filename(p
, &args
->tname
, &args
->tlen
)))
544 return xdr_argsize_check(rqstp
, p
);
548 nfs3svc_decode_readlinkargs(struct svc_rqst
*rqstp
, __be32
*p
)
550 struct nfsd3_readlinkargs
*args
= rqstp
->rq_argp
;
552 p
= decode_fh(p
, &args
->fh
);
555 args
->buffer
= page_address(*(rqstp
->rq_next_page
++));
557 return xdr_argsize_check(rqstp
, p
);
561 nfs3svc_decode_linkargs(struct svc_rqst
*rqstp
, __be32
*p
)
563 struct nfsd3_linkargs
*args
= rqstp
->rq_argp
;
565 if (!(p
= decode_fh(p
, &args
->ffh
))
566 || !(p
= decode_fh(p
, &args
->tfh
))
567 || !(p
= decode_filename(p
, &args
->tname
, &args
->tlen
)))
570 return xdr_argsize_check(rqstp
, p
);
574 nfs3svc_decode_readdirargs(struct svc_rqst
*rqstp
, __be32
*p
)
576 struct nfsd3_readdirargs
*args
= rqstp
->rq_argp
;
578 u32 max_blocksize
= svc_max_payload(rqstp
);
580 p
= decode_fh(p
, &args
->fh
);
583 p
= xdr_decode_hyper(p
, &args
->cookie
);
584 args
->verf
= p
; p
+= 2;
586 args
->count
= ntohl(*p
++);
587 len
= args
->count
= min_t(u32
, args
->count
, max_blocksize
);
590 struct page
*p
= *(rqstp
->rq_next_page
++);
592 args
->buffer
= page_address(p
);
596 return xdr_argsize_check(rqstp
, p
);
600 nfs3svc_decode_readdirplusargs(struct svc_rqst
*rqstp
, __be32
*p
)
602 struct nfsd3_readdirargs
*args
= rqstp
->rq_argp
;
604 u32 max_blocksize
= svc_max_payload(rqstp
);
606 p
= decode_fh(p
, &args
->fh
);
609 p
= xdr_decode_hyper(p
, &args
->cookie
);
610 args
->verf
= p
; p
+= 2;
611 args
->dircount
= ntohl(*p
++);
612 args
->count
= ntohl(*p
++);
614 len
= args
->count
= min(args
->count
, max_blocksize
);
616 struct page
*p
= *(rqstp
->rq_next_page
++);
618 args
->buffer
= page_address(p
);
622 return xdr_argsize_check(rqstp
, p
);
626 nfs3svc_decode_commitargs(struct svc_rqst
*rqstp
, __be32
*p
)
628 struct nfsd3_commitargs
*args
= rqstp
->rq_argp
;
629 p
= decode_fh(p
, &args
->fh
);
632 p
= xdr_decode_hyper(p
, &args
->offset
);
633 args
->count
= ntohl(*p
++);
635 return xdr_argsize_check(rqstp
, p
);
639 * XDR encode functions
642 * There must be an encoding function for void results so svc_process
643 * will work properly.
646 nfs3svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
)
648 return xdr_ressize_check(rqstp
, p
);
653 nfs3svc_encode_attrstat(struct svc_rqst
*rqstp
, __be32
*p
)
655 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
657 if (resp
->status
== 0) {
658 lease_get_mtime(d_inode(resp
->fh
.fh_dentry
),
660 p
= encode_fattr3(rqstp
, p
, &resp
->fh
, &resp
->stat
);
662 return xdr_ressize_check(rqstp
, p
);
665 /* SETATTR, REMOVE, RMDIR */
667 nfs3svc_encode_wccstat(struct svc_rqst
*rqstp
, __be32
*p
)
669 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
671 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
672 return xdr_ressize_check(rqstp
, p
);
677 nfs3svc_encode_diropres(struct svc_rqst
*rqstp
, __be32
*p
)
679 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
681 if (resp
->status
== 0) {
682 p
= encode_fh(p
, &resp
->fh
);
683 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
685 p
= encode_post_op_attr(rqstp
, p
, &resp
->dirfh
);
686 return xdr_ressize_check(rqstp
, p
);
691 nfs3svc_encode_accessres(struct svc_rqst
*rqstp
, __be32
*p
)
693 struct nfsd3_accessres
*resp
= rqstp
->rq_resp
;
695 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
696 if (resp
->status
== 0)
697 *p
++ = htonl(resp
->access
);
698 return xdr_ressize_check(rqstp
, p
);
703 nfs3svc_encode_readlinkres(struct svc_rqst
*rqstp
, __be32
*p
)
705 struct nfsd3_readlinkres
*resp
= rqstp
->rq_resp
;
707 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
708 if (resp
->status
== 0) {
709 *p
++ = htonl(resp
->len
);
710 xdr_ressize_check(rqstp
, p
);
711 rqstp
->rq_res
.page_len
= resp
->len
;
713 /* need to pad the tail */
714 rqstp
->rq_res
.tail
[0].iov_base
= p
;
716 rqstp
->rq_res
.tail
[0].iov_len
= 4 - (resp
->len
&3);
720 return xdr_ressize_check(rqstp
, p
);
725 nfs3svc_encode_readres(struct svc_rqst
*rqstp
, __be32
*p
)
727 struct nfsd3_readres
*resp
= rqstp
->rq_resp
;
729 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
730 if (resp
->status
== 0) {
731 *p
++ = htonl(resp
->count
);
732 *p
++ = htonl(resp
->eof
);
733 *p
++ = htonl(resp
->count
); /* xdr opaque count */
734 xdr_ressize_check(rqstp
, p
);
735 /* now update rqstp->rq_res to reflect data as well */
736 rqstp
->rq_res
.page_len
= resp
->count
;
737 if (resp
->count
& 3) {
738 /* need to pad the tail */
739 rqstp
->rq_res
.tail
[0].iov_base
= p
;
741 rqstp
->rq_res
.tail
[0].iov_len
= 4 - (resp
->count
& 3);
745 return xdr_ressize_check(rqstp
, p
);
750 nfs3svc_encode_writeres(struct svc_rqst
*rqstp
, __be32
*p
)
752 struct nfsd3_writeres
*resp
= rqstp
->rq_resp
;
753 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
755 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
756 if (resp
->status
== 0) {
757 *p
++ = htonl(resp
->count
);
758 *p
++ = htonl(resp
->committed
);
759 /* unique identifier, y2038 overflow can be ignored */
760 *p
++ = htonl((u32
)nn
->nfssvc_boot
.tv_sec
);
761 *p
++ = htonl(nn
->nfssvc_boot
.tv_nsec
);
763 return xdr_ressize_check(rqstp
, p
);
766 /* CREATE, MKDIR, SYMLINK, MKNOD */
768 nfs3svc_encode_createres(struct svc_rqst
*rqstp
, __be32
*p
)
770 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
772 if (resp
->status
== 0) {
774 p
= encode_fh(p
, &resp
->fh
);
775 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
777 p
= encode_wcc_data(rqstp
, p
, &resp
->dirfh
);
778 return xdr_ressize_check(rqstp
, p
);
783 nfs3svc_encode_renameres(struct svc_rqst
*rqstp
, __be32
*p
)
785 struct nfsd3_renameres
*resp
= rqstp
->rq_resp
;
787 p
= encode_wcc_data(rqstp
, p
, &resp
->ffh
);
788 p
= encode_wcc_data(rqstp
, p
, &resp
->tfh
);
789 return xdr_ressize_check(rqstp
, p
);
794 nfs3svc_encode_linkres(struct svc_rqst
*rqstp
, __be32
*p
)
796 struct nfsd3_linkres
*resp
= rqstp
->rq_resp
;
798 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
799 p
= encode_wcc_data(rqstp
, p
, &resp
->tfh
);
800 return xdr_ressize_check(rqstp
, p
);
805 nfs3svc_encode_readdirres(struct svc_rqst
*rqstp
, __be32
*p
)
807 struct nfsd3_readdirres
*resp
= rqstp
->rq_resp
;
809 p
= encode_post_op_attr(rqstp
, p
, &resp
->fh
);
811 if (resp
->status
== 0) {
812 /* stupid readdir cookie */
813 memcpy(p
, resp
->verf
, 8); p
+= 2;
814 xdr_ressize_check(rqstp
, p
);
815 if (rqstp
->rq_res
.head
[0].iov_len
+ (2<<2) > PAGE_SIZE
)
816 return 1; /*No room for trailer */
817 rqstp
->rq_res
.page_len
= (resp
->count
) << 2;
819 /* add the 'tail' to the end of the 'head' page - page 0. */
820 rqstp
->rq_res
.tail
[0].iov_base
= p
;
821 *p
++ = 0; /* no more entries */
822 *p
++ = htonl(resp
->common
.err
== nfserr_eof
);
823 rqstp
->rq_res
.tail
[0].iov_len
= 2<<2;
826 return xdr_ressize_check(rqstp
, p
);
830 encode_entry_baggage(struct nfsd3_readdirres
*cd
, __be32
*p
, const char *name
,
833 *p
++ = xdr_one
; /* mark entry present */
834 p
= xdr_encode_hyper(p
, ino
); /* file id */
835 p
= xdr_encode_array(p
, name
, namlen
);/* name length & name */
837 cd
->offset
= p
; /* remember pointer */
838 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
);/* offset of next entry */
844 compose_entry_fh(struct nfsd3_readdirres
*cd
, struct svc_fh
*fhp
,
845 const char *name
, int namlen
, u64 ino
)
847 struct svc_export
*exp
;
848 struct dentry
*dparent
, *dchild
;
849 __be32 rv
= nfserr_noent
;
851 dparent
= cd
->fh
.fh_dentry
;
852 exp
= cd
->fh
.fh_export
;
854 if (isdotent(name
, namlen
)) {
856 dchild
= dget_parent(dparent
);
857 /* filesystem root - cannot return filehandle for ".." */
858 if (dchild
== dparent
)
861 dchild
= dget(dparent
);
863 dchild
= lookup_one_len_unlocked(name
, dparent
, namlen
);
866 if (d_mountpoint(dchild
))
868 if (d_really_is_negative(dchild
))
870 if (dchild
->d_inode
->i_ino
!= ino
)
872 rv
= fh_compose(fhp
, exp
, dchild
, &cd
->fh
);
878 static __be32
*encode_entryplus_baggage(struct nfsd3_readdirres
*cd
, __be32
*p
, const char *name
, int namlen
, u64 ino
)
880 struct svc_fh
*fh
= &cd
->scratch
;
883 fh_init(fh
, NFS3_FHSIZE
);
884 err
= compose_entry_fh(cd
, fh
, name
, namlen
, ino
);
890 p
= encode_post_op_attr(cd
->rqstp
, p
, fh
);
891 *p
++ = xdr_one
; /* yes, a file handle follows */
892 p
= encode_fh(p
, fh
);
899 * Encode a directory entry. This one works for both normal readdir
901 * The normal readdir reply requires 2 (fileid) + 1 (stringlen)
902 * + string + 2 (cookie) + 1 (next) words, i.e. 6 + strlen.
904 * The readdirplus baggage is 1+21 words for post_op_attr, plus the
908 #define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
909 #define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
911 encode_entry(struct readdir_cd
*ccd
, const char *name
, int namlen
,
912 loff_t offset
, u64 ino
, unsigned int d_type
, int plus
)
914 struct nfsd3_readdirres
*cd
= container_of(ccd
, struct nfsd3_readdirres
,
916 __be32
*p
= cd
->buffer
;
917 caddr_t curr_page_addr
= NULL
;
919 int slen
; /* string (name) length */
920 int elen
; /* estimated entry length in words */
921 int num_entry_words
= 0; /* actual number of words */
924 u64 offset64
= offset
;
926 if (unlikely(cd
->offset1
)) {
927 /* we ended up with offset on a page boundary */
928 *cd
->offset
= htonl(offset64
>> 32);
929 *cd
->offset1
= htonl(offset64
& 0xffffffff);
932 xdr_encode_hyper(cd
->offset
, offset64
);
938 dprintk("encode_entry(%.*s @%ld%s)\n",
939 namlen, name, (long) offset, plus? " plus" : "");
942 /* truncate filename if too long */
943 namlen
= min(namlen
, NFS3_MAXNAMLEN
);
945 slen
= XDR_QUADLEN(namlen
);
946 elen
= slen
+ NFS3_ENTRY_BAGGAGE
947 + (plus
? NFS3_ENTRYPLUS_BAGGAGE
: 0);
949 if (cd
->buflen
< elen
) {
950 cd
->common
.err
= nfserr_toosmall
;
954 /* determine which page in rq_respages[] we are currently filling */
955 for (page
= cd
->rqstp
->rq_respages
+ 1;
956 page
< cd
->rqstp
->rq_next_page
; page
++) {
957 curr_page_addr
= page_address(*page
);
959 if (((caddr_t
)cd
->buffer
>= curr_page_addr
) &&
960 ((caddr_t
)cd
->buffer
< curr_page_addr
+ PAGE_SIZE
))
964 if ((caddr_t
)(cd
->buffer
+ elen
) < (curr_page_addr
+ PAGE_SIZE
)) {
965 /* encode entry in current page */
967 p
= encode_entry_baggage(cd
, p
, name
, namlen
, ino
);
970 p
= encode_entryplus_baggage(cd
, p
, name
, namlen
, ino
);
971 num_entry_words
= p
- cd
->buffer
;
972 } else if (*(page
+1) != NULL
) {
973 /* temporarily encode entry into next page, then move back to
974 * current and next page in rq_respages[] */
978 /* grab next page for temporary storage of entry */
979 p1
= tmp
= page_address(*(page
+1));
981 p1
= encode_entry_baggage(cd
, p1
, name
, namlen
, ino
);
984 p1
= encode_entryplus_baggage(cd
, p1
, name
, namlen
, ino
);
986 /* determine entry word length and lengths to go in pages */
987 num_entry_words
= p1
- tmp
;
988 len1
= curr_page_addr
+ PAGE_SIZE
- (caddr_t
)cd
->buffer
;
989 if ((num_entry_words
<< 2) < len1
) {
990 /* the actual number of words in the entry is less
991 * than elen and can still fit in the current page
993 memmove(p
, tmp
, num_entry_words
<< 2);
994 p
+= num_entry_words
;
997 cd
->offset
= cd
->buffer
+ (cd
->offset
- tmp
);
999 unsigned int offset_r
= (cd
->offset
- tmp
) << 2;
1001 /* update pointer to offset location.
1002 * This is a 64bit quantity, so we need to
1003 * deal with 3 cases:
1004 * - entirely in first page
1005 * - entirely in second page
1006 * - 4 bytes in each page
1008 if (offset_r
+ 8 <= len1
) {
1009 cd
->offset
= p
+ (cd
->offset
- tmp
);
1010 } else if (offset_r
>= len1
) {
1011 cd
->offset
-= len1
>> 2;
1013 /* sitting on the fence */
1014 BUG_ON(offset_r
!= len1
- 4);
1015 cd
->offset
= p
+ (cd
->offset
- tmp
);
1019 len2
= (num_entry_words
<< 2) - len1
;
1021 /* move from temp page to current and next pages */
1022 memmove(p
, tmp
, len1
);
1023 memmove(tmp
, (caddr_t
)tmp
+len1
, len2
);
1025 p
= tmp
+ (len2
>> 2);
1029 cd
->common
.err
= nfserr_toosmall
;
1033 cd
->buflen
-= num_entry_words
;
1035 cd
->common
.err
= nfs_ok
;
1041 nfs3svc_encode_entry(void *cd
, const char *name
,
1042 int namlen
, loff_t offset
, u64 ino
, unsigned int d_type
)
1044 return encode_entry(cd
, name
, namlen
, offset
, ino
, d_type
, 0);
1048 nfs3svc_encode_entry_plus(void *cd
, const char *name
,
1049 int namlen
, loff_t offset
, u64 ino
,
1050 unsigned int d_type
)
1052 return encode_entry(cd
, name
, namlen
, offset
, ino
, d_type
, 1);
1057 nfs3svc_encode_fsstatres(struct svc_rqst
*rqstp
, __be32
*p
)
1059 struct nfsd3_fsstatres
*resp
= rqstp
->rq_resp
;
1060 struct kstatfs
*s
= &resp
->stats
;
1061 u64 bs
= s
->f_bsize
;
1063 *p
++ = xdr_zero
; /* no post_op_attr */
1065 if (resp
->status
== 0) {
1066 p
= xdr_encode_hyper(p
, bs
* s
->f_blocks
); /* total bytes */
1067 p
= xdr_encode_hyper(p
, bs
* s
->f_bfree
); /* free bytes */
1068 p
= xdr_encode_hyper(p
, bs
* s
->f_bavail
); /* user available bytes */
1069 p
= xdr_encode_hyper(p
, s
->f_files
); /* total inodes */
1070 p
= xdr_encode_hyper(p
, s
->f_ffree
); /* free inodes */
1071 p
= xdr_encode_hyper(p
, s
->f_ffree
); /* user available inodes */
1072 *p
++ = htonl(resp
->invarsec
); /* mean unchanged time */
1074 return xdr_ressize_check(rqstp
, p
);
1079 nfs3svc_encode_fsinfores(struct svc_rqst
*rqstp
, __be32
*p
)
1081 struct nfsd3_fsinfores
*resp
= rqstp
->rq_resp
;
1083 *p
++ = xdr_zero
; /* no post_op_attr */
1085 if (resp
->status
== 0) {
1086 *p
++ = htonl(resp
->f_rtmax
);
1087 *p
++ = htonl(resp
->f_rtpref
);
1088 *p
++ = htonl(resp
->f_rtmult
);
1089 *p
++ = htonl(resp
->f_wtmax
);
1090 *p
++ = htonl(resp
->f_wtpref
);
1091 *p
++ = htonl(resp
->f_wtmult
);
1092 *p
++ = htonl(resp
->f_dtpref
);
1093 p
= xdr_encode_hyper(p
, resp
->f_maxfilesize
);
1096 *p
++ = htonl(resp
->f_properties
);
1099 return xdr_ressize_check(rqstp
, p
);
1104 nfs3svc_encode_pathconfres(struct svc_rqst
*rqstp
, __be32
*p
)
1106 struct nfsd3_pathconfres
*resp
= rqstp
->rq_resp
;
1108 *p
++ = xdr_zero
; /* no post_op_attr */
1110 if (resp
->status
== 0) {
1111 *p
++ = htonl(resp
->p_link_max
);
1112 *p
++ = htonl(resp
->p_name_max
);
1113 *p
++ = htonl(resp
->p_no_trunc
);
1114 *p
++ = htonl(resp
->p_chown_restricted
);
1115 *p
++ = htonl(resp
->p_case_insensitive
);
1116 *p
++ = htonl(resp
->p_case_preserving
);
1119 return xdr_ressize_check(rqstp
, p
);
1124 nfs3svc_encode_commitres(struct svc_rqst
*rqstp
, __be32
*p
)
1126 struct nfsd3_commitres
*resp
= rqstp
->rq_resp
;
1127 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
1129 p
= encode_wcc_data(rqstp
, p
, &resp
->fh
);
1130 /* Write verifier */
1131 if (resp
->status
== 0) {
1132 /* unique identifier, y2038 overflow can be ignored */
1133 *p
++ = htonl((u32
)nn
->nfssvc_boot
.tv_sec
);
1134 *p
++ = htonl(nn
->nfssvc_boot
.tv_nsec
);
1136 return xdr_ressize_check(rqstp
, p
);
1140 * XDR release functions
1143 nfs3svc_release_fhandle(struct svc_rqst
*rqstp
)
1145 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
1151 nfs3svc_release_fhandle2(struct svc_rqst
*rqstp
)
1153 struct nfsd3_fhandle_pair
*resp
= rqstp
->rq_resp
;