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>
18 * Force construction of an empty post-op attr
20 static const struct svc_fh nfs3svc_null_fh = {
25 * time_delta. {1, 0} means the server is accurate only
26 * to the nearest second.
28 static const struct timespec64 nfs3svc_time_delta = {
34 * Mapping of S_IF* types to NFS file types
36 static const u32 nfs3_ftypes[] = {
37 NF3NON, NF3FIFO, NF3CHR, NF3BAD,
38 NF3DIR, NF3BAD, NF3BLK, NF3BAD,
39 NF3REG, NF3BAD, NF3LNK, NF3BAD,
40 NF3SOCK, NF3BAD, NF3LNK, NF3BAD,
45 * Basic NFSv3 data types (RFC 1813 Sections 2.5 and 2.6)
49 encode_nfstime3(__be32 *p, const struct timespec64 *time)
51 *p++ = cpu_to_be32((u32)time->tv_sec);
52 *p++ = cpu_to_be32(time->tv_nsec);
58 svcxdr_decode_nfstime3(struct xdr_stream *xdr, struct timespec64 *timep)
62 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
65 timep->tv_sec = be32_to_cpup(p++);
66 timep->tv_nsec = be32_to_cpup(p);
72 * svcxdr_decode_nfs_fh3 - Decode an NFSv3 file handle
73 * @xdr: XDR stream positioned at an undecoded NFSv3 FH
74 * @fhp: OUT: filled-in server file handle
77 * %false: The encoded file handle was not valid
78 * %true: @fhp has been initialized
81 svcxdr_decode_nfs_fh3(struct xdr_stream *xdr, struct svc_fh *fhp)
86 if (xdr_stream_decode_u32(xdr, &size) < 0)
88 if (size == 0 || size > NFS3_FHSIZE)
90 p = xdr_inline_decode(xdr, size);
93 fh_init(fhp, NFS3_FHSIZE);
94 fhp->fh_handle.fh_size = size;
95 memcpy(&fhp->fh_handle.fh_base, p, size);
101 * svcxdr_encode_nfsstat3 - Encode an NFSv3 status code
103 * @status: status value to encode
106 * %false: Send buffer space was exhausted
110 svcxdr_encode_nfsstat3(struct xdr_stream *xdr, __be32 status)
114 p = xdr_reserve_space(xdr, sizeof(status));
123 svcxdr_encode_nfs_fh3(struct xdr_stream *xdr, const struct svc_fh *fhp)
125 u32 size = fhp->fh_handle.fh_size;
128 p = xdr_reserve_space(xdr, XDR_UNIT + size);
131 *p++ = cpu_to_be32(size);
133 p[XDR_QUADLEN(size) - 1] = 0;
134 memcpy(p, &fhp->fh_handle.fh_base, size);
140 svcxdr_encode_post_op_fh3(struct xdr_stream *xdr, const struct svc_fh *fhp)
142 if (xdr_stream_encode_item_present(xdr) < 0)
144 if (!svcxdr_encode_nfs_fh3(xdr, fhp))
151 svcxdr_encode_cookieverf3(struct xdr_stream *xdr, const __be32 *verf)
155 p = xdr_reserve_space(xdr, NFS3_COOKIEVERFSIZE);
158 memcpy(p, verf, NFS3_COOKIEVERFSIZE);
164 svcxdr_encode_writeverf3(struct xdr_stream *xdr, const __be32 *verf)
168 p = xdr_reserve_space(xdr, NFS3_WRITEVERFSIZE);
171 memcpy(p, verf, NFS3_WRITEVERFSIZE);
177 svcxdr_decode_filename3(struct xdr_stream *xdr, char **name, unsigned int *len)
183 if (xdr_stream_decode_u32(xdr, &size) < 0)
185 if (size == 0 || size > NFS3_MAXNAMLEN)
187 p = xdr_inline_decode(xdr, size);
193 for (i = 0, c = *name; i < size; i++, c++) {
194 if (*c == '\0' || *c == '/')
202 svcxdr_decode_diropargs3(struct xdr_stream *xdr, struct svc_fh *fhp,
203 char **name, unsigned int *len)
205 return svcxdr_decode_nfs_fh3(xdr, fhp) &&
206 svcxdr_decode_filename3(xdr, name, len);
210 svcxdr_decode_sattr3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
217 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
222 if (xdr_stream_decode_u32(xdr, &mode) < 0)
224 iap->ia_valid |= ATTR_MODE;
227 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
232 if (xdr_stream_decode_u32(xdr, &uid) < 0)
234 iap->ia_uid = make_kuid(nfsd_user_namespace(rqstp), uid);
235 if (uid_valid(iap->ia_uid))
236 iap->ia_valid |= ATTR_UID;
238 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
243 if (xdr_stream_decode_u32(xdr, &gid) < 0)
245 iap->ia_gid = make_kgid(nfsd_user_namespace(rqstp), gid);
246 if (gid_valid(iap->ia_gid))
247 iap->ia_valid |= ATTR_GID;
249 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
254 if (xdr_stream_decode_u64(xdr, &newsize) < 0)
256 iap->ia_valid |= ATTR_SIZE;
257 iap->ia_size = min_t(u64, newsize, NFS_OFFSET_MAX);
259 if (xdr_stream_decode_u32(xdr, &set_it) < 0)
264 case SET_TO_SERVER_TIME:
265 iap->ia_valid |= ATTR_ATIME;
267 case SET_TO_CLIENT_TIME:
268 if (!svcxdr_decode_nfstime3(xdr, &iap->ia_atime))
270 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
275 if (xdr_stream_decode_u32(xdr, &set_it) < 0)
280 case SET_TO_SERVER_TIME:
281 iap->ia_valid |= ATTR_MTIME;
283 case SET_TO_CLIENT_TIME:
284 if (!svcxdr_decode_nfstime3(xdr, &iap->ia_mtime))
286 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
296 svcxdr_decode_sattrguard3(struct xdr_stream *xdr, struct nfsd3_sattrargs *args)
301 if (xdr_stream_decode_bool(xdr, &check) < 0)
304 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
307 args->check_guard = 1;
308 args->guardtime = be32_to_cpup(p);
310 args->check_guard = 0;
316 svcxdr_decode_specdata3(struct xdr_stream *xdr, struct nfsd3_mknodargs *args)
320 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
323 args->major = be32_to_cpup(p++);
324 args->minor = be32_to_cpup(p);
330 svcxdr_decode_devicedata3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
331 struct nfsd3_mknodargs *args)
333 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs) &&
334 svcxdr_decode_specdata3(xdr, args);
338 svcxdr_encode_fattr3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
339 const struct svc_fh *fhp, const struct kstat *stat)
341 struct user_namespace *userns = nfsd_user_namespace(rqstp);
345 p = xdr_reserve_space(xdr, XDR_UNIT * 21);
349 *p++ = cpu_to_be32(nfs3_ftypes[(stat->mode & S_IFMT) >> 12]);
350 *p++ = cpu_to_be32((u32)(stat->mode & S_IALLUGO));
351 *p++ = cpu_to_be32((u32)stat->nlink);
352 *p++ = cpu_to_be32((u32)from_kuid_munged(userns, stat->uid));
353 *p++ = cpu_to_be32((u32)from_kgid_munged(userns, stat->gid));
354 if (S_ISLNK(stat->mode) && stat->size > NFS3_MAXPATHLEN)
355 p = xdr_encode_hyper(p, (u64)NFS3_MAXPATHLEN);
357 p = xdr_encode_hyper(p, (u64)stat->size);
360 p = xdr_encode_hyper(p, ((u64)stat->blocks) << 9);
363 *p++ = cpu_to_be32((u32)MAJOR(stat->rdev));
364 *p++ = cpu_to_be32((u32)MINOR(stat->rdev));
366 switch(fsid_source(fhp)) {
367 case FSIDSOURCE_FSID:
368 fsid = (u64)fhp->fh_export->ex_fsid;
370 case FSIDSOURCE_UUID:
371 fsid = ((u64 *)fhp->fh_export->ex_uuid)[0];
372 fsid ^= ((u64 *)fhp->fh_export->ex_uuid)[1];
375 fsid = (u64)huge_encode_dev(fhp->fh_dentry->d_sb->s_dev);
377 p = xdr_encode_hyper(p, fsid);
380 p = xdr_encode_hyper(p, stat->ino);
382 p = encode_nfstime3(p, &stat->atime);
383 p = encode_nfstime3(p, &stat->mtime);
384 encode_nfstime3(p, &stat->ctime);
390 svcxdr_encode_wcc_attr(struct xdr_stream *xdr, const struct svc_fh *fhp)
394 p = xdr_reserve_space(xdr, XDR_UNIT * 6);
397 p = xdr_encode_hyper(p, (u64)fhp->fh_pre_size);
398 p = encode_nfstime3(p, &fhp->fh_pre_mtime);
399 encode_nfstime3(p, &fhp->fh_pre_ctime);
405 svcxdr_encode_pre_op_attr(struct xdr_stream *xdr, const struct svc_fh *fhp)
407 if (!fhp->fh_pre_saved) {
408 if (xdr_stream_encode_item_absent(xdr) < 0)
413 if (xdr_stream_encode_item_present(xdr) < 0)
415 return svcxdr_encode_wcc_attr(xdr, fhp);
419 * svcxdr_encode_post_op_attr - Encode NFSv3 post-op attributes
420 * @rqstp: Context of a completed RPC transaction
422 * @fhp: File handle to encode
425 * %false: Send buffer space was exhausted
429 svcxdr_encode_post_op_attr(struct svc_rqst *rqstp, struct xdr_stream *xdr,
430 const struct svc_fh *fhp)
432 struct dentry *dentry = fhp->fh_dentry;
436 * The inode may be NULL if the call failed because of a
437 * stale file handle. In this case, no attributes are
440 if (fhp->fh_no_wcc || !dentry || !d_really_is_positive(dentry))
441 goto no_post_op_attrs;
442 if (fh_getattr(fhp, &stat) != nfs_ok)
443 goto no_post_op_attrs;
445 if (xdr_stream_encode_item_present(xdr) < 0)
447 lease_get_mtime(d_inode(dentry), &stat.mtime);
448 if (!svcxdr_encode_fattr3(rqstp, xdr, fhp, &stat))
454 return xdr_stream_encode_item_absent(xdr) > 0;
458 * Encode weak cache consistency data
461 svcxdr_encode_wcc_data(struct svc_rqst *rqstp, struct xdr_stream *xdr,
462 const struct svc_fh *fhp)
464 struct dentry *dentry = fhp->fh_dentry;
466 if (!dentry || !d_really_is_positive(dentry) || !fhp->fh_post_saved)
470 if (!svcxdr_encode_pre_op_attr(xdr, fhp))
474 if (xdr_stream_encode_item_present(xdr) < 0)
476 if (!svcxdr_encode_fattr3(rqstp, xdr, fhp, &fhp->fh_post_attr))
482 if (xdr_stream_encode_item_absent(xdr) < 0)
484 if (!svcxdr_encode_post_op_attr(rqstp, xdr, fhp))
490 static bool fs_supports_change_attribute(struct super_block *sb)
492 return sb->s_flags & SB_I_VERSION || sb->s_export_op->fetch_iversion;
496 * Fill in the pre_op attr for the wcc data
498 void fill_pre_wcc(struct svc_fh *fhp)
502 bool v4 = (fhp->fh_maxsize == NFS4_FHSIZE);
504 if (fhp->fh_no_wcc || fhp->fh_pre_saved)
506 inode = d_inode(fhp->fh_dentry);
507 if (fs_supports_change_attribute(inode->i_sb) || !v4) {
508 __be32 err = fh_getattr(fhp, &stat);
511 /* Grab the times from inode anyway */
512 stat.mtime = inode->i_mtime;
513 stat.ctime = inode->i_ctime;
514 stat.size = inode->i_size;
516 fhp->fh_pre_mtime = stat.mtime;
517 fhp->fh_pre_ctime = stat.ctime;
518 fhp->fh_pre_size = stat.size;
521 fhp->fh_pre_change = nfsd4_change_attribute(&stat, inode);
523 fhp->fh_pre_saved = true;
527 * Fill in the post_op attr for the wcc data
529 void fill_post_wcc(struct svc_fh *fhp)
531 bool v4 = (fhp->fh_maxsize == NFS4_FHSIZE);
532 struct inode *inode = d_inode(fhp->fh_dentry);
537 if (fhp->fh_post_saved)
538 printk("nfsd: inode locked twice during operation.\n");
540 fhp->fh_post_saved = true;
542 if (fs_supports_change_attribute(inode->i_sb) || !v4) {
543 __be32 err = fh_getattr(fhp, &fhp->fh_post_attr);
546 fhp->fh_post_saved = false;
547 fhp->fh_post_attr.ctime = inode->i_ctime;
551 fhp->fh_post_change =
552 nfsd4_change_attribute(&fhp->fh_post_attr, inode);
556 * XDR decode functions
560 nfs3svc_decode_fhandleargs(struct svc_rqst *rqstp, __be32 *p)
562 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
563 struct nfsd_fhandle *args = rqstp->rq_argp;
565 return svcxdr_decode_nfs_fh3(xdr, &args->fh);
569 nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p)
571 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
572 struct nfsd3_sattrargs *args = rqstp->rq_argp;
574 return svcxdr_decode_nfs_fh3(xdr, &args->fh) &&
575 svcxdr_decode_sattr3(rqstp, xdr, &args->attrs) &&
576 svcxdr_decode_sattrguard3(xdr, args);
580 nfs3svc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p)
582 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
583 struct nfsd3_diropargs *args = rqstp->rq_argp;
585 return svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len);
589 nfs3svc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p)
591 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
592 struct nfsd3_accessargs *args = rqstp->rq_argp;
594 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
596 if (xdr_stream_decode_u32(xdr, &args->access) < 0)
603 nfs3svc_decode_readargs(struct svc_rqst *rqstp, __be32 *p)
605 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
606 struct nfsd3_readargs *args = rqstp->rq_argp;
608 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
610 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
612 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
619 nfs3svc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p)
621 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
622 struct nfsd3_writeargs *args = rqstp->rq_argp;
623 u32 max_blocksize = svc_max_payload(rqstp);
624 struct kvec *head = rqstp->rq_arg.head;
625 struct kvec *tail = rqstp->rq_arg.tail;
628 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
630 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
632 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
634 if (xdr_stream_decode_u32(xdr, &args->stable) < 0)
638 if (xdr_stream_decode_u32(xdr, &args->len) < 0)
642 if (args->count != args->len)
644 remaining = head->iov_len + rqstp->rq_arg.page_len + tail->iov_len;
645 remaining -= xdr_stream_pos(xdr);
646 if (remaining < xdr_align_size(args->len))
648 if (args->count > max_blocksize) {
649 args->count = max_blocksize;
650 args->len = max_blocksize;
653 args->first.iov_base = xdr->p;
654 args->first.iov_len = head->iov_len - xdr_stream_pos(xdr);
660 nfs3svc_decode_createargs(struct svc_rqst *rqstp, __be32 *p)
662 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
663 struct nfsd3_createargs *args = rqstp->rq_argp;
665 if (!svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len))
667 if (xdr_stream_decode_u32(xdr, &args->createmode) < 0)
669 switch (args->createmode) {
670 case NFS3_CREATE_UNCHECKED:
671 case NFS3_CREATE_GUARDED:
672 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
673 case NFS3_CREATE_EXCLUSIVE:
674 args->verf = xdr_inline_decode(xdr, NFS3_CREATEVERFSIZE);
685 nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, __be32 *p)
687 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
688 struct nfsd3_createargs *args = rqstp->rq_argp;
690 return svcxdr_decode_diropargs3(xdr, &args->fh,
691 &args->name, &args->len) &&
692 svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
696 nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p)
698 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
699 struct nfsd3_symlinkargs *args = rqstp->rq_argp;
700 struct kvec *head = rqstp->rq_arg.head;
701 struct kvec *tail = rqstp->rq_arg.tail;
704 if (!svcxdr_decode_diropargs3(xdr, &args->ffh, &args->fname, &args->flen))
706 if (!svcxdr_decode_sattr3(rqstp, xdr, &args->attrs))
708 if (xdr_stream_decode_u32(xdr, &args->tlen) < 0)
712 remaining = head->iov_len + rqstp->rq_arg.page_len + tail->iov_len;
713 remaining -= xdr_stream_pos(xdr);
714 if (remaining < xdr_align_size(args->tlen))
717 args->first.iov_base = xdr->p;
718 args->first.iov_len = head->iov_len - xdr_stream_pos(xdr);
724 nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, __be32 *p)
726 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
727 struct nfsd3_mknodargs *args = rqstp->rq_argp;
729 if (!svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len))
731 if (xdr_stream_decode_u32(xdr, &args->ftype) < 0)
733 switch (args->ftype) {
736 return svcxdr_decode_devicedata3(rqstp, xdr, args);
739 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
743 /* Valid XDR but illegal file types */
753 nfs3svc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p)
755 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
756 struct nfsd3_renameargs *args = rqstp->rq_argp;
758 return svcxdr_decode_diropargs3(xdr, &args->ffh,
759 &args->fname, &args->flen) &&
760 svcxdr_decode_diropargs3(xdr, &args->tfh,
761 &args->tname, &args->tlen);
765 nfs3svc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p)
767 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
768 struct nfsd3_linkargs *args = rqstp->rq_argp;
770 return svcxdr_decode_nfs_fh3(xdr, &args->ffh) &&
771 svcxdr_decode_diropargs3(xdr, &args->tfh,
772 &args->tname, &args->tlen);
776 nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p)
778 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
779 struct nfsd3_readdirargs *args = rqstp->rq_argp;
781 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
783 if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
785 args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
788 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
795 nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, __be32 *p)
797 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
798 struct nfsd3_readdirargs *args = rqstp->rq_argp;
801 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
803 if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
805 args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
808 /* dircount is ignored */
809 if (xdr_stream_decode_u32(xdr, &dircount) < 0)
811 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
818 nfs3svc_decode_commitargs(struct svc_rqst *rqstp, __be32 *p)
820 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
821 struct nfsd3_commitargs *args = rqstp->rq_argp;
823 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
825 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
827 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
834 * XDR encode functions
839 nfs3svc_encode_getattrres(struct svc_rqst *rqstp, __be32 *p)
841 struct xdr_stream *xdr = &rqstp->rq_res_stream;
842 struct nfsd3_attrstat *resp = rqstp->rq_resp;
844 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
846 switch (resp->status) {
848 lease_get_mtime(d_inode(resp->fh.fh_dentry), &resp->stat.mtime);
849 if (!svcxdr_encode_fattr3(rqstp, xdr, &resp->fh, &resp->stat))
857 /* SETATTR, REMOVE, RMDIR */
859 nfs3svc_encode_wccstat(struct svc_rqst *rqstp, __be32 *p)
861 struct xdr_stream *xdr = &rqstp->rq_res_stream;
862 struct nfsd3_attrstat *resp = rqstp->rq_resp;
864 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
865 svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh);
869 int nfs3svc_encode_lookupres(struct svc_rqst *rqstp, __be32 *p)
871 struct xdr_stream *xdr = &rqstp->rq_res_stream;
872 struct nfsd3_diropres *resp = rqstp->rq_resp;
874 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
876 switch (resp->status) {
878 if (!svcxdr_encode_nfs_fh3(xdr, &resp->fh))
880 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
882 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->dirfh))
886 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->dirfh))
895 nfs3svc_encode_accessres(struct svc_rqst *rqstp, __be32 *p)
897 struct xdr_stream *xdr = &rqstp->rq_res_stream;
898 struct nfsd3_accessres *resp = rqstp->rq_resp;
900 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
902 switch (resp->status) {
904 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
906 if (xdr_stream_encode_u32(xdr, resp->access) < 0)
910 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
919 nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p)
921 struct xdr_stream *xdr = &rqstp->rq_res_stream;
922 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
923 struct kvec *head = rqstp->rq_res.head;
925 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
927 switch (resp->status) {
929 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
931 if (xdr_stream_encode_u32(xdr, resp->len) < 0)
933 xdr_write_pages(xdr, resp->pages, 0, resp->len);
934 if (svc_encode_result_payload(rqstp, head->iov_len, resp->len) < 0)
938 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
947 nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p)
949 struct xdr_stream *xdr = &rqstp->rq_res_stream;
950 struct nfsd3_readres *resp = rqstp->rq_resp;
951 struct kvec *head = rqstp->rq_res.head;
953 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
955 switch (resp->status) {
957 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
959 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
961 if (xdr_stream_encode_bool(xdr, resp->eof) < 0)
963 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
965 xdr_write_pages(xdr, resp->pages, rqstp->rq_res.page_base,
967 if (svc_encode_result_payload(rqstp, head->iov_len, resp->count) < 0)
971 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
980 nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p)
982 struct xdr_stream *xdr = &rqstp->rq_res_stream;
983 struct nfsd3_writeres *resp = rqstp->rq_resp;
985 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
987 switch (resp->status) {
989 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
991 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
993 if (xdr_stream_encode_u32(xdr, resp->committed) < 0)
995 if (!svcxdr_encode_writeverf3(xdr, resp->verf))
999 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
1006 /* CREATE, MKDIR, SYMLINK, MKNOD */
1008 nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p)
1010 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1011 struct nfsd3_diropres *resp = rqstp->rq_resp;
1013 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1015 switch (resp->status) {
1017 if (!svcxdr_encode_post_op_fh3(xdr, &resp->fh))
1019 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
1021 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->dirfh))
1025 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->dirfh))
1034 nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
1036 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1037 struct nfsd3_renameres *resp = rqstp->rq_resp;
1039 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
1040 svcxdr_encode_wcc_data(rqstp, xdr, &resp->ffh) &&
1041 svcxdr_encode_wcc_data(rqstp, xdr, &resp->tfh);
1046 nfs3svc_encode_linkres(struct svc_rqst *rqstp, __be32 *p)
1048 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1049 struct nfsd3_linkres *resp = rqstp->rq_resp;
1051 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
1052 svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh) &&
1053 svcxdr_encode_wcc_data(rqstp, xdr, &resp->tfh);
1058 nfs3svc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p)
1060 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1061 struct nfsd3_readdirres *resp = rqstp->rq_resp;
1062 struct xdr_buf *dirlist = &resp->dirlist;
1064 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1066 switch (resp->status) {
1068 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
1070 if (!svcxdr_encode_cookieverf3(xdr, resp->verf))
1072 xdr_write_pages(xdr, dirlist->pages, 0, dirlist->len);
1073 /* no more entries */
1074 if (xdr_stream_encode_item_absent(xdr) < 0)
1076 if (xdr_stream_encode_bool(xdr, resp->common.err == nfserr_eof) < 0)
1080 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
1088 compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
1089 const char *name, int namlen, u64 ino)
1091 struct svc_export *exp;
1092 struct dentry *dparent, *dchild;
1093 __be32 rv = nfserr_noent;
1095 dparent = cd->fh.fh_dentry;
1096 exp = cd->fh.fh_export;
1098 if (isdotent(name, namlen)) {
1100 dchild = dget_parent(dparent);
1102 * Don't return filehandle for ".." if we're at
1103 * the filesystem or export root:
1105 if (dchild == dparent)
1107 if (dparent == exp->ex_path.dentry)
1110 dchild = dget(dparent);
1112 dchild = lookup_positive_unlocked(name, dparent, namlen);
1115 if (d_mountpoint(dchild))
1117 if (dchild->d_inode->i_ino != ino)
1119 rv = fh_compose(fhp, exp, dchild, &cd->fh);
1126 * nfs3svc_encode_cookie3 - Encode a directory offset cookie
1127 * @resp: readdir result context
1128 * @offset: offset cookie to encode
1130 * The buffer space for the offset cookie has already been reserved
1131 * by svcxdr_encode_entry3_common().
1133 void nfs3svc_encode_cookie3(struct nfsd3_readdirres *resp, u64 offset)
1135 __be64 cookie = cpu_to_be64(offset);
1137 if (!resp->cookie_offset)
1139 write_bytes_to_xdr_buf(&resp->dirlist, resp->cookie_offset, &cookie,
1141 resp->cookie_offset = 0;
1145 svcxdr_encode_entry3_common(struct nfsd3_readdirres *resp, const char *name,
1146 int namlen, loff_t offset, u64 ino)
1148 struct xdr_buf *dirlist = &resp->dirlist;
1149 struct xdr_stream *xdr = &resp->xdr;
1151 if (xdr_stream_encode_item_present(xdr) < 0)
1154 if (xdr_stream_encode_u64(xdr, ino) < 0)
1157 if (xdr_stream_encode_opaque(xdr, name, min(namlen, NFS3_MAXNAMLEN)) < 0)
1160 resp->cookie_offset = dirlist->len;
1161 if (xdr_stream_encode_u64(xdr, NFS_OFFSET_MAX) < 0)
1168 * nfs3svc_encode_entry3 - encode one NFSv3 READDIR entry
1169 * @data: directory context
1170 * @name: name of the object to be encoded
1171 * @namlen: length of that name, in bytes
1172 * @offset: the offset of the previous entry
1173 * @ino: the fileid of this entry
1177 * %0: Entry was successfully encoded.
1178 * %-EINVAL: An encoding problem occured, secondary status code in resp->common.err
1180 * On exit, the following fields are updated:
1182 * - resp->common.err
1183 * - resp->cookie_offset
1185 int nfs3svc_encode_entry3(void *data, const char *name, int namlen,
1186 loff_t offset, u64 ino, unsigned int d_type)
1188 struct readdir_cd *ccd = data;
1189 struct nfsd3_readdirres *resp = container_of(ccd,
1190 struct nfsd3_readdirres,
1192 unsigned int starting_length = resp->dirlist.len;
1194 /* The offset cookie for the previous entry */
1195 nfs3svc_encode_cookie3(resp, offset);
1197 if (!svcxdr_encode_entry3_common(resp, name, namlen, offset, ino))
1200 xdr_commit_encode(&resp->xdr);
1201 resp->common.err = nfs_ok;
1205 resp->cookie_offset = 0;
1206 resp->common.err = nfserr_toosmall;
1207 resp->dirlist.len = starting_length;
1212 svcxdr_encode_entry3_plus(struct nfsd3_readdirres *resp, const char *name,
1213 int namlen, u64 ino)
1215 struct xdr_stream *xdr = &resp->xdr;
1216 struct svc_fh *fhp = &resp->scratch;
1220 fh_init(fhp, NFS3_FHSIZE);
1221 if (compose_entry_fh(resp, fhp, name, namlen, ino) != nfs_ok)
1224 if (!svcxdr_encode_post_op_attr(resp->rqstp, xdr, fhp))
1226 if (!svcxdr_encode_post_op_fh3(xdr, fhp))
1235 if (xdr_stream_encode_item_absent(xdr) < 0)
1237 if (xdr_stream_encode_item_absent(xdr) < 0)
1243 * nfs3svc_encode_entryplus3 - encode one NFSv3 READDIRPLUS entry
1244 * @data: directory context
1245 * @name: name of the object to be encoded
1246 * @namlen: length of that name, in bytes
1247 * @offset: the offset of the previous entry
1248 * @ino: the fileid of this entry
1252 * %0: Entry was successfully encoded.
1253 * %-EINVAL: An encoding problem occured, secondary status code in resp->common.err
1255 * On exit, the following fields are updated:
1257 * - resp->common.err
1258 * - resp->cookie_offset
1260 int nfs3svc_encode_entryplus3(void *data, const char *name, int namlen,
1261 loff_t offset, u64 ino, unsigned int d_type)
1263 struct readdir_cd *ccd = data;
1264 struct nfsd3_readdirres *resp = container_of(ccd,
1265 struct nfsd3_readdirres,
1267 unsigned int starting_length = resp->dirlist.len;
1269 /* The offset cookie for the previous entry */
1270 nfs3svc_encode_cookie3(resp, offset);
1272 if (!svcxdr_encode_entry3_common(resp, name, namlen, offset, ino))
1274 if (!svcxdr_encode_entry3_plus(resp, name, namlen, ino))
1277 xdr_commit_encode(&resp->xdr);
1278 resp->common.err = nfs_ok;
1282 resp->cookie_offset = 0;
1283 resp->common.err = nfserr_toosmall;
1284 resp->dirlist.len = starting_length;
1289 svcxdr_encode_fsstat3resok(struct xdr_stream *xdr,
1290 const struct nfsd3_fsstatres *resp)
1292 const struct kstatfs *s = &resp->stats;
1293 u64 bs = s->f_bsize;
1296 p = xdr_reserve_space(xdr, XDR_UNIT * 13);
1299 p = xdr_encode_hyper(p, bs * s->f_blocks); /* total bytes */
1300 p = xdr_encode_hyper(p, bs * s->f_bfree); /* free bytes */
1301 p = xdr_encode_hyper(p, bs * s->f_bavail); /* user available bytes */
1302 p = xdr_encode_hyper(p, s->f_files); /* total inodes */
1303 p = xdr_encode_hyper(p, s->f_ffree); /* free inodes */
1304 p = xdr_encode_hyper(p, s->f_ffree); /* user available inodes */
1305 *p = cpu_to_be32(resp->invarsec); /* mean unchanged time */
1312 nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, __be32 *p)
1314 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1315 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
1317 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1319 switch (resp->status) {
1321 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1323 if (!svcxdr_encode_fsstat3resok(xdr, resp))
1327 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1335 svcxdr_encode_fsinfo3resok(struct xdr_stream *xdr,
1336 const struct nfsd3_fsinfores *resp)
1340 p = xdr_reserve_space(xdr, XDR_UNIT * 12);
1343 *p++ = cpu_to_be32(resp->f_rtmax);
1344 *p++ = cpu_to_be32(resp->f_rtpref);
1345 *p++ = cpu_to_be32(resp->f_rtmult);
1346 *p++ = cpu_to_be32(resp->f_wtmax);
1347 *p++ = cpu_to_be32(resp->f_wtpref);
1348 *p++ = cpu_to_be32(resp->f_wtmult);
1349 *p++ = cpu_to_be32(resp->f_dtpref);
1350 p = xdr_encode_hyper(p, resp->f_maxfilesize);
1351 p = encode_nfstime3(p, &nfs3svc_time_delta);
1352 *p = cpu_to_be32(resp->f_properties);
1359 nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, __be32 *p)
1361 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1362 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
1364 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1366 switch (resp->status) {
1368 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1370 if (!svcxdr_encode_fsinfo3resok(xdr, resp))
1374 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1382 svcxdr_encode_pathconf3resok(struct xdr_stream *xdr,
1383 const struct nfsd3_pathconfres *resp)
1387 p = xdr_reserve_space(xdr, XDR_UNIT * 6);
1390 *p++ = cpu_to_be32(resp->p_link_max);
1391 *p++ = cpu_to_be32(resp->p_name_max);
1392 p = xdr_encode_bool(p, resp->p_no_trunc);
1393 p = xdr_encode_bool(p, resp->p_chown_restricted);
1394 p = xdr_encode_bool(p, resp->p_case_insensitive);
1395 xdr_encode_bool(p, resp->p_case_preserving);
1402 nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, __be32 *p)
1404 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1405 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
1407 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1409 switch (resp->status) {
1411 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1413 if (!svcxdr_encode_pathconf3resok(xdr, resp))
1417 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
1426 nfs3svc_encode_commitres(struct svc_rqst *rqstp, __be32 *p)
1428 struct xdr_stream *xdr = &rqstp->rq_res_stream;
1429 struct nfsd3_commitres *resp = rqstp->rq_resp;
1431 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
1433 switch (resp->status) {
1435 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
1437 if (!svcxdr_encode_writeverf3(xdr, resp->verf))
1441 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
1449 * XDR release functions
1452 nfs3svc_release_fhandle(struct svc_rqst *rqstp)
1454 struct nfsd3_attrstat *resp = rqstp->rq_resp;
1460 nfs3svc_release_fhandle2(struct svc_rqst *rqstp)
1462 struct nfsd3_fhandle_pair *resp = rqstp->rq_resp;