1 // SPDX-License-Identifier: GPL-2.0
3 * XDR support for nfsd/protocol version 3.
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,
32 * XDR functions for basic NFS types
35 encode_time3(__be32 *p, struct timespec *time)
37 *p++ = htonl((u32) time->tv_sec); *p++ = htonl(time->tv_nsec);
42 decode_time3(__be32 *p, struct timespec *time)
44 time->tv_sec = ntohl(*p++);
45 time->tv_nsec = ntohl(*p++);
50 decode_fh(__be32 *p, struct svc_fh *fhp)
53 fh_init(fhp, NFS3_FHSIZE);
55 if (size > NFS3_FHSIZE)
58 memcpy(&fhp->fh_handle.fh_base, p, size);
59 fhp->fh_handle.fh_size = size;
60 return p + XDR_QUADLEN(size);
63 /* Helper function for NFSv3 ACL code */
64 __be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp)
66 return decode_fh(p, fhp);
70 encode_fh(__be32 *p, struct svc_fh *fhp)
72 unsigned int size = fhp->fh_handle.fh_size;
74 if (size) p[XDR_QUADLEN(size)-1]=0;
75 memcpy(p, &fhp->fh_handle.fh_base, size);
76 return p + XDR_QUADLEN(size);
80 * Decode a file name and make sure that the path contains
81 * no slashes or null bytes.
84 decode_filename(__be32 *p, char **namp, unsigned int *lenp)
89 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS3_MAXNAMLEN)) != NULL) {
90 for (i = 0, name = *namp; i < *lenp; i++, name++) {
91 if (*name == '\0' || *name == '/')
100 decode_sattr3(__be32 *p, struct iattr *iap, struct user_namespace *userns)
107 iap->ia_valid |= ATTR_MODE;
108 iap->ia_mode = ntohl(*p++);
111 iap->ia_uid = make_kuid(userns, ntohl(*p++));
112 if (uid_valid(iap->ia_uid))
113 iap->ia_valid |= ATTR_UID;
116 iap->ia_gid = make_kgid(userns, ntohl(*p++));
117 if (gid_valid(iap->ia_gid))
118 iap->ia_valid |= ATTR_GID;
123 iap->ia_valid |= ATTR_SIZE;
124 p = xdr_decode_hyper(p, &newsize);
125 iap->ia_size = min_t(u64, newsize, NFS_OFFSET_MAX);
127 if ((tmp = ntohl(*p++)) == 1) { /* set to server time */
128 iap->ia_valid |= ATTR_ATIME;
129 } else if (tmp == 2) { /* set to client time */
130 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
131 iap->ia_atime.tv_sec = ntohl(*p++);
132 iap->ia_atime.tv_nsec = ntohl(*p++);
134 if ((tmp = ntohl(*p++)) == 1) { /* set to server time */
135 iap->ia_valid |= ATTR_MTIME;
136 } else if (tmp == 2) { /* set to client time */
137 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
138 iap->ia_mtime.tv_sec = ntohl(*p++);
139 iap->ia_mtime.tv_nsec = ntohl(*p++);
144 static __be32 *encode_fsid(__be32 *p, struct svc_fh *fhp)
147 switch(fsid_source(fhp)) {
150 p = xdr_encode_hyper(p, (u64)huge_encode_dev
151 (fhp->fh_dentry->d_sb->s_dev));
153 case FSIDSOURCE_FSID:
154 p = xdr_encode_hyper(p, (u64) fhp->fh_export->ex_fsid);
156 case FSIDSOURCE_UUID:
157 f = ((u64*)fhp->fh_export->ex_uuid)[0];
158 f ^= ((u64*)fhp->fh_export->ex_uuid)[1];
159 p = xdr_encode_hyper(p, f);
166 encode_fattr3(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
169 struct user_namespace *userns = nfsd_user_namespace(rqstp);
171 *p++ = htonl(nfs3_ftypes[(stat->mode & S_IFMT) >> 12]);
172 *p++ = htonl((u32) (stat->mode & S_IALLUGO));
173 *p++ = htonl((u32) stat->nlink);
174 *p++ = htonl((u32) from_kuid_munged(userns, stat->uid));
175 *p++ = htonl((u32) from_kgid_munged(userns, stat->gid));
176 if (S_ISLNK(stat->mode) && stat->size > NFS3_MAXPATHLEN) {
177 p = xdr_encode_hyper(p, (u64) NFS3_MAXPATHLEN);
179 p = xdr_encode_hyper(p, (u64) stat->size);
181 p = xdr_encode_hyper(p, ((u64)stat->blocks) << 9);
182 *p++ = htonl((u32) MAJOR(stat->rdev));
183 *p++ = htonl((u32) MINOR(stat->rdev));
184 p = encode_fsid(p, fhp);
185 p = xdr_encode_hyper(p, stat->ino);
186 ts = timespec64_to_timespec(stat->atime);
187 p = encode_time3(p, &ts);
188 ts = timespec64_to_timespec(stat->mtime);
189 p = encode_time3(p, &ts);
190 ts = timespec64_to_timespec(stat->ctime);
191 p = encode_time3(p, &ts);
197 encode_saved_post_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
199 /* Attributes to follow */
201 return encode_fattr3(rqstp, p, fhp, &fhp->fh_post_attr);
205 * Encode post-operation attributes.
206 * The inode may be NULL if the call failed because of a stale file
207 * handle. In this case, no attributes are returned.
210 encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
212 struct dentry *dentry = fhp->fh_dentry;
213 if (dentry && d_really_is_positive(dentry)) {
217 err = fh_getattr(fhp, &stat);
219 *p++ = xdr_one; /* attributes follow */
220 lease_get_mtime(d_inode(dentry), &stat.mtime);
221 return encode_fattr3(rqstp, p, fhp, &stat);
228 /* Helper for NFSv3 ACLs */
230 nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
232 return encode_post_op_attr(rqstp, p, fhp);
236 * Enocde weak cache consistency data
239 encode_wcc_data(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
241 struct dentry *dentry = fhp->fh_dentry;
243 if (dentry && d_really_is_positive(dentry) && fhp->fh_post_saved) {
244 if (fhp->fh_pre_saved) {
246 p = xdr_encode_hyper(p, (u64) fhp->fh_pre_size);
247 p = encode_time3(p, &fhp->fh_pre_mtime);
248 p = encode_time3(p, &fhp->fh_pre_ctime);
252 return encode_saved_post_attr(rqstp, p, fhp);
254 /* no pre- or post-attrs */
256 return encode_post_op_attr(rqstp, p, fhp);
260 * Fill in the pre_op attr for the wcc data
262 void fill_pre_wcc(struct svc_fh *fhp)
268 if (fhp->fh_pre_saved)
271 inode = d_inode(fhp->fh_dentry);
272 err = fh_getattr(fhp, &stat);
274 /* Grab the times from inode anyway */
275 stat.mtime = inode->i_mtime;
276 stat.ctime = inode->i_ctime;
277 stat.size = inode->i_size;
280 fhp->fh_pre_mtime = timespec64_to_timespec(stat.mtime);
281 fhp->fh_pre_ctime = timespec64_to_timespec(stat.ctime);
282 fhp->fh_pre_size = stat.size;
283 fhp->fh_pre_change = nfsd4_change_attribute(&stat, inode);
284 fhp->fh_pre_saved = true;
288 * Fill in the post_op attr for the wcc data
290 void fill_post_wcc(struct svc_fh *fhp)
294 if (fhp->fh_post_saved)
295 printk("nfsd: inode locked twice during operation.\n");
297 err = fh_getattr(fhp, &fhp->fh_post_attr);
298 fhp->fh_post_change = nfsd4_change_attribute(&fhp->fh_post_attr,
299 d_inode(fhp->fh_dentry));
301 fhp->fh_post_saved = false;
302 /* Grab the ctime anyway - set_change_info might use it */
303 fhp->fh_post_attr.ctime = d_inode(fhp->fh_dentry)->i_ctime;
305 fhp->fh_post_saved = true;
309 * XDR decode functions
312 nfs3svc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p)
314 struct nfsd_fhandle *args = rqstp->rq_argp;
316 p = decode_fh(p, &args->fh);
319 return xdr_argsize_check(rqstp, p);
323 nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p)
325 struct nfsd3_sattrargs *args = rqstp->rq_argp;
327 p = decode_fh(p, &args->fh);
330 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
332 if ((args->check_guard = ntohl(*p++)) != 0) {
333 struct timespec time;
334 p = decode_time3(p, &time);
335 args->guardtime = time.tv_sec;
338 return xdr_argsize_check(rqstp, p);
342 nfs3svc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p)
344 struct nfsd3_diropargs *args = rqstp->rq_argp;
346 if (!(p = decode_fh(p, &args->fh))
347 || !(p = decode_filename(p, &args->name, &args->len)))
350 return xdr_argsize_check(rqstp, p);
354 nfs3svc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p)
356 struct nfsd3_accessargs *args = rqstp->rq_argp;
358 p = decode_fh(p, &args->fh);
361 args->access = ntohl(*p++);
363 return xdr_argsize_check(rqstp, p);
367 nfs3svc_decode_readargs(struct svc_rqst *rqstp, __be32 *p)
369 struct nfsd3_readargs *args = rqstp->rq_argp;
372 u32 max_blocksize = svc_max_payload(rqstp);
374 p = decode_fh(p, &args->fh);
377 p = xdr_decode_hyper(p, &args->offset);
379 args->count = ntohl(*p++);
380 len = min(args->count, max_blocksize);
382 /* set up the kvec */
385 struct page *p = *(rqstp->rq_next_page++);
387 rqstp->rq_vec[v].iov_base = page_address(p);
388 rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE);
389 len -= rqstp->rq_vec[v].iov_len;
393 return xdr_argsize_check(rqstp, p);
397 nfs3svc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p)
399 struct nfsd3_writeargs *args = rqstp->rq_argp;
400 unsigned int len, hdr, dlen;
401 u32 max_blocksize = svc_max_payload(rqstp);
402 struct kvec *head = rqstp->rq_arg.head;
403 struct kvec *tail = rqstp->rq_arg.tail;
405 p = decode_fh(p, &args->fh);
408 p = xdr_decode_hyper(p, &args->offset);
410 args->count = ntohl(*p++);
411 args->stable = ntohl(*p++);
412 len = args->len = ntohl(*p++);
413 if ((void *)p > head->iov_base + head->iov_len)
416 * The count must equal the amount of data passed.
418 if (args->count != args->len)
422 * Check to make sure that we got the right number of
425 hdr = (void*)p - head->iov_base;
426 dlen = head->iov_len + rqstp->rq_arg.page_len + tail->iov_len - hdr;
428 * Round the length of the data which was specified up to
429 * the next multiple of XDR units and then compare that
430 * against the length which was actually received.
431 * Note that when RPCSEC/GSS (for example) is used, the
432 * data buffer can be padded so dlen might be larger
433 * than required. It must never be smaller.
435 if (dlen < XDR_QUADLEN(len)*4)
438 if (args->count > max_blocksize) {
439 args->count = max_blocksize;
440 len = args->len = max_blocksize;
443 args->first.iov_base = (void *)p;
444 args->first.iov_len = head->iov_len - hdr;
449 nfs3svc_decode_createargs(struct svc_rqst *rqstp, __be32 *p)
451 struct nfsd3_createargs *args = rqstp->rq_argp;
453 if (!(p = decode_fh(p, &args->fh))
454 || !(p = decode_filename(p, &args->name, &args->len)))
457 switch (args->createmode = ntohl(*p++)) {
458 case NFS3_CREATE_UNCHECKED:
459 case NFS3_CREATE_GUARDED:
460 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
462 case NFS3_CREATE_EXCLUSIVE:
470 return xdr_argsize_check(rqstp, p);
474 nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, __be32 *p)
476 struct nfsd3_createargs *args = rqstp->rq_argp;
478 if (!(p = decode_fh(p, &args->fh)) ||
479 !(p = decode_filename(p, &args->name, &args->len)))
481 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
483 return xdr_argsize_check(rqstp, p);
487 nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p)
489 struct nfsd3_symlinkargs *args = rqstp->rq_argp;
490 char *base = (char *)p;
493 if (!(p = decode_fh(p, &args->ffh)) ||
494 !(p = decode_filename(p, &args->fname, &args->flen)))
496 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
498 args->tlen = ntohl(*p++);
500 args->first.iov_base = p;
501 args->first.iov_len = rqstp->rq_arg.head[0].iov_len;
502 args->first.iov_len -= (char *)p - base;
504 dlen = args->first.iov_len + rqstp->rq_arg.page_len +
505 rqstp->rq_arg.tail[0].iov_len;
506 if (dlen < XDR_QUADLEN(args->tlen) << 2)
512 nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, __be32 *p)
514 struct nfsd3_mknodargs *args = rqstp->rq_argp;
516 if (!(p = decode_fh(p, &args->fh))
517 || !(p = decode_filename(p, &args->name, &args->len)))
520 args->ftype = ntohl(*p++);
522 if (args->ftype == NF3BLK || args->ftype == NF3CHR
523 || args->ftype == NF3SOCK || args->ftype == NF3FIFO)
524 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
526 if (args->ftype == NF3BLK || args->ftype == NF3CHR) {
527 args->major = ntohl(*p++);
528 args->minor = ntohl(*p++);
531 return xdr_argsize_check(rqstp, p);
535 nfs3svc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p)
537 struct nfsd3_renameargs *args = rqstp->rq_argp;
539 if (!(p = decode_fh(p, &args->ffh))
540 || !(p = decode_filename(p, &args->fname, &args->flen))
541 || !(p = decode_fh(p, &args->tfh))
542 || !(p = decode_filename(p, &args->tname, &args->tlen)))
545 return xdr_argsize_check(rqstp, p);
549 nfs3svc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p)
551 struct nfsd3_readlinkargs *args = rqstp->rq_argp;
553 p = decode_fh(p, &args->fh);
556 args->buffer = page_address(*(rqstp->rq_next_page++));
558 return xdr_argsize_check(rqstp, p);
562 nfs3svc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p)
564 struct nfsd3_linkargs *args = rqstp->rq_argp;
566 if (!(p = decode_fh(p, &args->ffh))
567 || !(p = decode_fh(p, &args->tfh))
568 || !(p = decode_filename(p, &args->tname, &args->tlen)))
571 return xdr_argsize_check(rqstp, p);
575 nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p)
577 struct nfsd3_readdirargs *args = rqstp->rq_argp;
579 u32 max_blocksize = svc_max_payload(rqstp);
581 p = decode_fh(p, &args->fh);
584 p = xdr_decode_hyper(p, &args->cookie);
585 args->verf = p; p += 2;
587 args->count = ntohl(*p++);
588 len = args->count = min_t(u32, args->count, max_blocksize);
591 struct page *p = *(rqstp->rq_next_page++);
593 args->buffer = page_address(p);
597 return xdr_argsize_check(rqstp, p);
601 nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, __be32 *p)
603 struct nfsd3_readdirargs *args = rqstp->rq_argp;
605 u32 max_blocksize = svc_max_payload(rqstp);
607 p = decode_fh(p, &args->fh);
610 p = xdr_decode_hyper(p, &args->cookie);
611 args->verf = p; p += 2;
612 args->dircount = ntohl(*p++);
613 args->count = ntohl(*p++);
615 len = args->count = min(args->count, max_blocksize);
617 struct page *p = *(rqstp->rq_next_page++);
619 args->buffer = page_address(p);
623 return xdr_argsize_check(rqstp, p);
627 nfs3svc_decode_commitargs(struct svc_rqst *rqstp, __be32 *p)
629 struct nfsd3_commitargs *args = rqstp->rq_argp;
630 p = decode_fh(p, &args->fh);
633 p = xdr_decode_hyper(p, &args->offset);
634 args->count = ntohl(*p++);
636 return xdr_argsize_check(rqstp, p);
640 * XDR encode functions
643 * There must be an encoding function for void results so svc_process
644 * will work properly.
647 nfs3svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p)
649 return xdr_ressize_check(rqstp, p);
654 nfs3svc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p)
656 struct nfsd3_attrstat *resp = rqstp->rq_resp;
658 if (resp->status == 0) {
659 lease_get_mtime(d_inode(resp->fh.fh_dentry),
661 p = encode_fattr3(rqstp, p, &resp->fh, &resp->stat);
663 return xdr_ressize_check(rqstp, p);
666 /* SETATTR, REMOVE, RMDIR */
668 nfs3svc_encode_wccstat(struct svc_rqst *rqstp, __be32 *p)
670 struct nfsd3_attrstat *resp = rqstp->rq_resp;
672 p = encode_wcc_data(rqstp, p, &resp->fh);
673 return xdr_ressize_check(rqstp, p);
678 nfs3svc_encode_diropres(struct svc_rqst *rqstp, __be32 *p)
680 struct nfsd3_diropres *resp = rqstp->rq_resp;
682 if (resp->status == 0) {
683 p = encode_fh(p, &resp->fh);
684 p = encode_post_op_attr(rqstp, p, &resp->fh);
686 p = encode_post_op_attr(rqstp, p, &resp->dirfh);
687 return xdr_ressize_check(rqstp, p);
692 nfs3svc_encode_accessres(struct svc_rqst *rqstp, __be32 *p)
694 struct nfsd3_accessres *resp = rqstp->rq_resp;
696 p = encode_post_op_attr(rqstp, p, &resp->fh);
697 if (resp->status == 0)
698 *p++ = htonl(resp->access);
699 return xdr_ressize_check(rqstp, p);
704 nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p)
706 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
708 p = encode_post_op_attr(rqstp, p, &resp->fh);
709 if (resp->status == 0) {
710 *p++ = htonl(resp->len);
711 xdr_ressize_check(rqstp, p);
712 rqstp->rq_res.page_len = resp->len;
714 /* need to pad the tail */
715 rqstp->rq_res.tail[0].iov_base = p;
717 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
721 return xdr_ressize_check(rqstp, p);
726 nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p)
728 struct nfsd3_readres *resp = rqstp->rq_resp;
730 p = encode_post_op_attr(rqstp, p, &resp->fh);
731 if (resp->status == 0) {
732 *p++ = htonl(resp->count);
733 *p++ = htonl(resp->eof);
734 *p++ = htonl(resp->count); /* xdr opaque count */
735 xdr_ressize_check(rqstp, p);
736 /* now update rqstp->rq_res to reflect data as well */
737 rqstp->rq_res.page_len = resp->count;
738 if (resp->count & 3) {
739 /* need to pad the tail */
740 rqstp->rq_res.tail[0].iov_base = p;
742 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count & 3);
746 return xdr_ressize_check(rqstp, p);
751 nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p)
753 struct nfsd3_writeres *resp = rqstp->rq_resp;
754 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
757 p = encode_wcc_data(rqstp, p, &resp->fh);
758 if (resp->status == 0) {
759 *p++ = htonl(resp->count);
760 *p++ = htonl(resp->committed);
761 /* unique identifier, y2038 overflow can be ignored */
762 nfsd_copy_boot_verifier(verf, nn);
766 return xdr_ressize_check(rqstp, p);
769 /* CREATE, MKDIR, SYMLINK, MKNOD */
771 nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p)
773 struct nfsd3_diropres *resp = rqstp->rq_resp;
775 if (resp->status == 0) {
777 p = encode_fh(p, &resp->fh);
778 p = encode_post_op_attr(rqstp, p, &resp->fh);
780 p = encode_wcc_data(rqstp, p, &resp->dirfh);
781 return xdr_ressize_check(rqstp, p);
786 nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
788 struct nfsd3_renameres *resp = rqstp->rq_resp;
790 p = encode_wcc_data(rqstp, p, &resp->ffh);
791 p = encode_wcc_data(rqstp, p, &resp->tfh);
792 return xdr_ressize_check(rqstp, p);
797 nfs3svc_encode_linkres(struct svc_rqst *rqstp, __be32 *p)
799 struct nfsd3_linkres *resp = rqstp->rq_resp;
801 p = encode_post_op_attr(rqstp, p, &resp->fh);
802 p = encode_wcc_data(rqstp, p, &resp->tfh);
803 return xdr_ressize_check(rqstp, p);
808 nfs3svc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p)
810 struct nfsd3_readdirres *resp = rqstp->rq_resp;
812 p = encode_post_op_attr(rqstp, p, &resp->fh);
814 if (resp->status == 0) {
815 /* stupid readdir cookie */
816 memcpy(p, resp->verf, 8); p += 2;
817 xdr_ressize_check(rqstp, p);
818 if (rqstp->rq_res.head[0].iov_len + (2<<2) > PAGE_SIZE)
819 return 1; /*No room for trailer */
820 rqstp->rq_res.page_len = (resp->count) << 2;
822 /* add the 'tail' to the end of the 'head' page - page 0. */
823 rqstp->rq_res.tail[0].iov_base = p;
824 *p++ = 0; /* no more entries */
825 *p++ = htonl(resp->common.err == nfserr_eof);
826 rqstp->rq_res.tail[0].iov_len = 2<<2;
829 return xdr_ressize_check(rqstp, p);
833 encode_entry_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name,
836 *p++ = xdr_one; /* mark entry present */
837 p = xdr_encode_hyper(p, ino); /* file id */
838 p = xdr_encode_array(p, name, namlen);/* name length & name */
840 cd->offset = p; /* remember pointer */
841 p = xdr_encode_hyper(p, NFS_OFFSET_MAX);/* offset of next entry */
847 compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
848 const char *name, int namlen, u64 ino)
850 struct svc_export *exp;
851 struct dentry *dparent, *dchild;
852 __be32 rv = nfserr_noent;
854 dparent = cd->fh.fh_dentry;
855 exp = cd->fh.fh_export;
857 if (isdotent(name, namlen)) {
859 dchild = dget_parent(dparent);
860 /* filesystem root - cannot return filehandle for ".." */
861 if (dchild == dparent)
864 dchild = dget(dparent);
866 dchild = lookup_positive_unlocked(name, dparent, namlen);
869 if (d_mountpoint(dchild))
871 if (dchild->d_inode->i_ino != ino)
873 rv = fh_compose(fhp, exp, dchild, &cd->fh);
879 static __be32 *encode_entryplus_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name, int namlen, u64 ino)
881 struct svc_fh *fh = &cd->scratch;
884 fh_init(fh, NFS3_FHSIZE);
885 err = compose_entry_fh(cd, fh, name, namlen, ino);
891 p = encode_post_op_attr(cd->rqstp, p, fh);
892 *p++ = xdr_one; /* yes, a file handle follows */
893 p = encode_fh(p, fh);
900 * Encode a directory entry. This one works for both normal readdir
902 * The normal readdir reply requires 2 (fileid) + 1 (stringlen)
903 * + string + 2 (cookie) + 1 (next) words, i.e. 6 + strlen.
905 * The readdirplus baggage is 1+21 words for post_op_attr, plus the
909 #define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
910 #define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
912 encode_entry(struct readdir_cd *ccd, const char *name, int namlen,
913 loff_t offset, u64 ino, unsigned int d_type, int plus)
915 struct nfsd3_readdirres *cd = container_of(ccd, struct nfsd3_readdirres,
917 __be32 *p = cd->buffer;
918 caddr_t curr_page_addr = NULL;
920 int slen; /* string (name) length */
921 int elen; /* estimated entry length in words */
922 int num_entry_words = 0; /* actual number of words */
925 u64 offset64 = offset;
927 if (unlikely(cd->offset1)) {
928 /* we ended up with offset on a page boundary */
929 *cd->offset = htonl(offset64 >> 32);
930 *cd->offset1 = htonl(offset64 & 0xffffffff);
933 xdr_encode_hyper(cd->offset, offset64);
939 dprintk("encode_entry(%.*s @%ld%s)\n",
940 namlen, name, (long) offset, plus? " plus" : "");
943 /* truncate filename if too long */
944 namlen = min(namlen, NFS3_MAXNAMLEN);
946 slen = XDR_QUADLEN(namlen);
947 elen = slen + NFS3_ENTRY_BAGGAGE
948 + (plus? NFS3_ENTRYPLUS_BAGGAGE : 0);
950 if (cd->buflen < elen) {
951 cd->common.err = nfserr_toosmall;
955 /* determine which page in rq_respages[] we are currently filling */
956 for (page = cd->rqstp->rq_respages + 1;
957 page < cd->rqstp->rq_next_page; page++) {
958 curr_page_addr = page_address(*page);
960 if (((caddr_t)cd->buffer >= curr_page_addr) &&
961 ((caddr_t)cd->buffer < curr_page_addr + PAGE_SIZE))
965 if ((caddr_t)(cd->buffer + elen) < (curr_page_addr + PAGE_SIZE)) {
966 /* encode entry in current page */
968 p = encode_entry_baggage(cd, p, name, namlen, ino);
971 p = encode_entryplus_baggage(cd, p, name, namlen, ino);
972 num_entry_words = p - cd->buffer;
973 } else if (*(page+1) != NULL) {
974 /* temporarily encode entry into next page, then move back to
975 * current and next page in rq_respages[] */
979 /* grab next page for temporary storage of entry */
980 p1 = tmp = page_address(*(page+1));
982 p1 = encode_entry_baggage(cd, p1, name, namlen, ino);
985 p1 = encode_entryplus_baggage(cd, p1, name, namlen, ino);
987 /* determine entry word length and lengths to go in pages */
988 num_entry_words = p1 - tmp;
989 len1 = curr_page_addr + PAGE_SIZE - (caddr_t)cd->buffer;
990 if ((num_entry_words << 2) < len1) {
991 /* the actual number of words in the entry is less
992 * than elen and can still fit in the current page
994 memmove(p, tmp, num_entry_words << 2);
995 p += num_entry_words;
998 cd->offset = cd->buffer + (cd->offset - tmp);
1000 unsigned int offset_r = (cd->offset - tmp) << 2;
1002 /* update pointer to offset location.
1003 * This is a 64bit quantity, so we need to
1004 * deal with 3 cases:
1005 * - entirely in first page
1006 * - entirely in second page
1007 * - 4 bytes in each page
1009 if (offset_r + 8 <= len1) {
1010 cd->offset = p + (cd->offset - tmp);
1011 } else if (offset_r >= len1) {
1012 cd->offset -= len1 >> 2;
1014 /* sitting on the fence */
1015 BUG_ON(offset_r != len1 - 4);
1016 cd->offset = p + (cd->offset - tmp);
1020 len2 = (num_entry_words << 2) - len1;
1022 /* move from temp page to current and next pages */
1023 memmove(p, tmp, len1);
1024 memmove(tmp, (caddr_t)tmp+len1, len2);
1026 p = tmp + (len2 >> 2);
1030 cd->common.err = nfserr_toosmall;
1034 cd->buflen -= num_entry_words;
1036 cd->common.err = nfs_ok;
1042 nfs3svc_encode_entry(void *cd, const char *name,
1043 int namlen, loff_t offset, u64 ino, unsigned int d_type)
1045 return encode_entry(cd, name, namlen, offset, ino, d_type, 0);
1049 nfs3svc_encode_entry_plus(void *cd, const char *name,
1050 int namlen, loff_t offset, u64 ino,
1051 unsigned int d_type)
1053 return encode_entry(cd, name, namlen, offset, ino, d_type, 1);
1058 nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, __be32 *p)
1060 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
1061 struct kstatfs *s = &resp->stats;
1062 u64 bs = s->f_bsize;
1064 *p++ = xdr_zero; /* no post_op_attr */
1066 if (resp->status == 0) {
1067 p = xdr_encode_hyper(p, bs * s->f_blocks); /* total bytes */
1068 p = xdr_encode_hyper(p, bs * s->f_bfree); /* free bytes */
1069 p = xdr_encode_hyper(p, bs * s->f_bavail); /* user available bytes */
1070 p = xdr_encode_hyper(p, s->f_files); /* total inodes */
1071 p = xdr_encode_hyper(p, s->f_ffree); /* free inodes */
1072 p = xdr_encode_hyper(p, s->f_ffree); /* user available inodes */
1073 *p++ = htonl(resp->invarsec); /* mean unchanged time */
1075 return xdr_ressize_check(rqstp, p);
1080 nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, __be32 *p)
1082 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
1084 *p++ = xdr_zero; /* no post_op_attr */
1086 if (resp->status == 0) {
1087 *p++ = htonl(resp->f_rtmax);
1088 *p++ = htonl(resp->f_rtpref);
1089 *p++ = htonl(resp->f_rtmult);
1090 *p++ = htonl(resp->f_wtmax);
1091 *p++ = htonl(resp->f_wtpref);
1092 *p++ = htonl(resp->f_wtmult);
1093 *p++ = htonl(resp->f_dtpref);
1094 p = xdr_encode_hyper(p, resp->f_maxfilesize);
1097 *p++ = htonl(resp->f_properties);
1100 return xdr_ressize_check(rqstp, p);
1105 nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, __be32 *p)
1107 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
1109 *p++ = xdr_zero; /* no post_op_attr */
1111 if (resp->status == 0) {
1112 *p++ = htonl(resp->p_link_max);
1113 *p++ = htonl(resp->p_name_max);
1114 *p++ = htonl(resp->p_no_trunc);
1115 *p++ = htonl(resp->p_chown_restricted);
1116 *p++ = htonl(resp->p_case_insensitive);
1117 *p++ = htonl(resp->p_case_preserving);
1120 return xdr_ressize_check(rqstp, p);
1125 nfs3svc_encode_commitres(struct svc_rqst *rqstp, __be32 *p)
1127 struct nfsd3_commitres *resp = rqstp->rq_resp;
1128 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1131 p = encode_wcc_data(rqstp, p, &resp->fh);
1132 /* Write verifier */
1133 if (resp->status == 0) {
1134 /* unique identifier, y2038 overflow can be ignored */
1135 nfsd_copy_boot_verifier(verf, nn);
1139 return xdr_ressize_check(rqstp, p);
1143 * XDR release functions
1146 nfs3svc_release_fhandle(struct svc_rqst *rqstp)
1148 struct nfsd3_attrstat *resp = rqstp->rq_resp;
1154 nfs3svc_release_fhandle2(struct svc_rqst *rqstp)
1156 struct nfsd3_fhandle_pair *resp = rqstp->rq_resp;