blob: fcf31822c74c0b6e04616e45fbe915eacd9fc3ac [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * XDR support for nfsd/protocol version 3.
4 *
5 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
6 *
7 * 2003-08-09 Jamie Lokier: Use htonl() for nanoseconds, not htons()!
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/namei.h>
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +030011#include <linux/sunrpc/svc_xprt.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020012#include "xdr3.h"
J. Bruce Fields2e8138a2007-11-15 17:05:43 -050013#include "auth.h"
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +030014#include "netns.h"
Al Viro3dadecc2013-01-24 02:18:08 -050015#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#define NFSDDBG_FACILITY NFSDDBG_XDR
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * Mapping of S_IF* types to NFS file types
22 */
23static u32 nfs3_ftypes[] = {
24 NF3NON, NF3FIFO, NF3CHR, NF3BAD,
25 NF3DIR, NF3BAD, NF3BLK, NF3BAD,
26 NF3REG, NF3BAD, NF3LNK, NF3BAD,
27 NF3SOCK, NF3BAD, NF3LNK, NF3BAD,
28};
29
30/*
31 * XDR functions for basic NFS types
32 */
Adrian Bunk3ee6f612006-12-06 20:40:23 -080033static __be32 *
Al Viro91f07162006-10-19 23:28:57 -070034encode_time3(__be32 *p, struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 *p++ = htonl((u32) time->tv_sec); *p++ = htonl(time->tv_nsec);
37 return p;
38}
39
Adrian Bunk3ee6f612006-12-06 20:40:23 -080040static __be32 *
Al Viro91f07162006-10-19 23:28:57 -070041decode_time3(__be32 *p, struct timespec *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 time->tv_sec = ntohl(*p++);
44 time->tv_nsec = ntohl(*p++);
45 return p;
46}
47
Adrian Bunk3ee6f612006-12-06 20:40:23 -080048static __be32 *
Al Viro91f07162006-10-19 23:28:57 -070049decode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 unsigned int size;
52 fh_init(fhp, NFS3_FHSIZE);
53 size = ntohl(*p++);
54 if (size > NFS3_FHSIZE)
55 return NULL;
56
57 memcpy(&fhp->fh_handle.fh_base, p, size);
58 fhp->fh_handle.fh_size = size;
59 return p + XDR_QUADLEN(size);
60}
61
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000062/* Helper function for NFSv3 ACL code */
Al Viro91f07162006-10-19 23:28:57 -070063__be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000064{
65 return decode_fh(p, fhp);
66}
67
Adrian Bunk3ee6f612006-12-06 20:40:23 -080068static __be32 *
Al Viro91f07162006-10-19 23:28:57 -070069encode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 unsigned int size = fhp->fh_handle.fh_size;
72 *p++ = htonl(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);
76}
77
78/*
79 * Decode a file name and make sure that the path contains
80 * no slashes or null bytes.
81 */
Adrian Bunk3ee6f612006-12-06 20:40:23 -080082static __be32 *
Chuck Leveree1a95b2007-11-01 16:56:58 -040083decode_filename(__be32 *p, char **namp, unsigned int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 char *name;
Chuck Leveree1a95b2007-11-01 16:56:58 -040086 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
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 == '/')
91 return NULL;
92 }
93 }
94
95 return p;
96}
97
Adrian Bunk3ee6f612006-12-06 20:40:23 -080098static __be32 *
Trond Myklebuste45d1a12019-04-09 12:13:42 -040099decode_sattr3(__be32 *p, struct iattr *iap, struct user_namespace *userns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 u32 tmp;
102
103 iap->ia_valid = 0;
104
105 if (*p++) {
106 iap->ia_valid |= ATTR_MODE;
107 iap->ia_mode = ntohl(*p++);
108 }
109 if (*p++) {
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400110 iap->ia_uid = make_kuid(userns, ntohl(*p++));
Eric W. Biederman458878a2013-02-02 04:16:08 -0800111 if (uid_valid(iap->ia_uid))
112 iap->ia_valid |= ATTR_UID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 if (*p++) {
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400115 iap->ia_gid = make_kgid(userns, ntohl(*p++));
Eric W. Biederman458878a2013-02-02 04:16:08 -0800116 if (gid_valid(iap->ia_gid))
117 iap->ia_valid |= ATTR_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119 if (*p++) {
120 u64 newsize;
121
122 iap->ia_valid |= ATTR_SIZE;
123 p = xdr_decode_hyper(p, &newsize);
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800124 iap->ia_size = min_t(u64, newsize, NFS_OFFSET_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
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++);
132 }
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++);
139 }
140 return p;
141}
142
NeilBrownaf6a4e22007-02-14 00:33:12 -0800143static __be32 *encode_fsid(__be32 *p, struct svc_fh *fhp)
144{
145 u64 f;
146 switch(fsid_source(fhp)) {
147 default:
148 case FSIDSOURCE_DEV:
149 p = xdr_encode_hyper(p, (u64)huge_encode_dev
Al Virofc640052016-04-10 01:33:30 -0400150 (fhp->fh_dentry->d_sb->s_dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -0800151 break;
152 case FSIDSOURCE_FSID:
153 p = xdr_encode_hyper(p, (u64) fhp->fh_export->ex_fsid);
154 break;
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);
159 break;
160 }
161 return p;
162}
163
Adrian Bunk3ee6f612006-12-06 20:40:23 -0800164static __be32 *
Al Viro91f07162006-10-19 23:28:57 -0700165encode_fattr3(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
David Shawa334de22006-01-06 00:19:58 -0800166 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400168 struct user_namespace *userns = nfsd_user_namespace(rqstp);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700169 struct timespec ts;
David Shawa334de22006-01-06 00:19:58 -0800170 *p++ = htonl(nfs3_ftypes[(stat->mode & S_IFMT) >> 12]);
Albert Fluegel6e14b462013-11-18 12:18:01 -0500171 *p++ = htonl((u32) (stat->mode & S_IALLUGO));
David Shawa334de22006-01-06 00:19:58 -0800172 *p++ = htonl((u32) stat->nlink);
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400173 *p++ = htonl((u32) from_kuid_munged(userns, stat->uid));
174 *p++ = htonl((u32) from_kgid_munged(userns, stat->gid));
David Shawa334de22006-01-06 00:19:58 -0800175 if (S_ISLNK(stat->mode) && stat->size > NFS3_MAXPATHLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 p = xdr_encode_hyper(p, (u64) NFS3_MAXPATHLEN);
177 } else {
David Shawa334de22006-01-06 00:19:58 -0800178 p = xdr_encode_hyper(p, (u64) stat->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
David Shawa334de22006-01-06 00:19:58 -0800180 p = xdr_encode_hyper(p, ((u64)stat->blocks) << 9);
181 *p++ = htonl((u32) MAJOR(stat->rdev));
182 *p++ = htonl((u32) MINOR(stat->rdev));
NeilBrownaf6a4e22007-02-14 00:33:12 -0800183 p = encode_fsid(p, fhp);
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400184 p = xdr_encode_hyper(p, stat->ino);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700185 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 return p;
193}
194
Adrian Bunk3ee6f612006-12-06 20:40:23 -0800195static __be32 *
Al Viro91f07162006-10-19 23:28:57 -0700196encode_saved_post_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* Attributes to follow */
199 *p++ = xdr_one;
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400200 return encode_fattr3(rqstp, p, fhp, &fhp->fh_post_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
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.
207 */
Al Viro91f07162006-10-19 23:28:57 -0700208static __be32 *
209encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct dentry *dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000212 if (dentry && d_really_is_positive(dentry)) {
Al Viro3dadecc2013-01-24 02:18:08 -0500213 __be32 err;
David Shawa334de22006-01-06 00:19:58 -0800214 struct kstat stat;
215
Al Viro3dadecc2013-01-24 02:18:08 -0500216 err = fh_getattr(fhp, &stat);
David Shawa334de22006-01-06 00:19:58 -0800217 if (!err) {
218 *p++ = xdr_one; /* attributes follow */
David Howells2b0143b2015-03-17 22:25:59 +0000219 lease_get_mtime(d_inode(dentry), &stat.mtime);
David Shawa334de22006-01-06 00:19:58 -0800220 return encode_fattr3(rqstp, p, fhp, &stat);
221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223 *p++ = xdr_zero;
224 return p;
225}
226
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000227/* Helper for NFSv3 ACLs */
Al Viro91f07162006-10-19 23:28:57 -0700228__be32 *
229nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000230{
231 return encode_post_op_attr(rqstp, p, fhp);
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*
235 * Enocde weak cache consistency data
236 */
Al Viro91f07162006-10-19 23:28:57 -0700237static __be32 *
238encode_wcc_data(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 struct dentry *dentry = fhp->fh_dentry;
241
David Howells2b0143b2015-03-17 22:25:59 +0000242 if (dentry && d_really_is_positive(dentry) && fhp->fh_post_saved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (fhp->fh_pre_saved) {
244 *p++ = xdr_one;
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);
248 } else {
249 *p++ = xdr_zero;
250 }
251 return encode_saved_post_attr(rqstp, p, fhp);
252 }
253 /* no pre- or post-attrs */
254 *p++ = xdr_zero;
255 return encode_post_op_attr(rqstp, p, fhp);
256}
257
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400258/*
Amir Goldstein39ca1bf2018-01-03 17:14:35 +0200259 * Fill in the pre_op attr for the wcc data
260 */
261void fill_pre_wcc(struct svc_fh *fhp)
262{
263 struct inode *inode;
264 struct kstat stat;
265 __be32 err;
266
267 if (fhp->fh_pre_saved)
268 return;
269
270 inode = d_inode(fhp->fh_dentry);
271 err = fh_getattr(fhp, &stat);
272 if (err) {
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;
277 }
278
Deepa Dinamani95582b02018-05-08 19:36:02 -0700279 fhp->fh_pre_mtime = timespec64_to_timespec(stat.mtime);
280 fhp->fh_pre_ctime = timespec64_to_timespec(stat.ctime);
Amir Goldstein39ca1bf2018-01-03 17:14:35 +0200281 fhp->fh_pre_size = stat.size;
282 fhp->fh_pre_change = nfsd4_change_attribute(&stat, inode);
283 fhp->fh_pre_saved = true;
284}
285
286/*
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400287 * Fill in the post_op attr for the wcc data
288 */
289void fill_post_wcc(struct svc_fh *fhp)
290{
Al Viro3dadecc2013-01-24 02:18:08 -0500291 __be32 err;
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400292
293 if (fhp->fh_post_saved)
294 printk("nfsd: inode locked twice during operation.\n");
295
Al Viro3dadecc2013-01-24 02:18:08 -0500296 err = fh_getattr(fhp, &fhp->fh_post_attr);
Amir Goldstein39ca1bf2018-01-03 17:14:35 +0200297 fhp->fh_post_change = nfsd4_change_attribute(&fhp->fh_post_attr,
298 d_inode(fhp->fh_dentry));
Neil Brownc1ac3ff2010-12-02 11:14:30 +1100299 if (err) {
Jeff Laytonaaf91ec2015-09-17 08:28:39 -0400300 fhp->fh_post_saved = false;
Neil Brownc1ac3ff2010-12-02 11:14:30 +1100301 /* Grab the ctime anyway - set_change_info might use it */
David Howells2b0143b2015-03-17 22:25:59 +0000302 fhp->fh_post_attr.ctime = d_inode(fhp->fh_dentry)->i_ctime;
Neil Brownc1ac3ff2010-12-02 11:14:30 +1100303 } else
Jeff Laytonaaf91ec2015-09-17 08:28:39 -0400304 fhp->fh_post_saved = true;
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/*
308 * XDR decode functions
309 */
310int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200311nfs3svc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200313 struct nfsd_fhandle *args = rqstp->rq_argp;
314
Benoit Tained40aa332014-05-22 16:32:30 +0200315 p = decode_fh(p, &args->fh);
316 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
318 return xdr_argsize_check(rqstp, p);
319}
320
321int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200322nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200324 struct nfsd3_sattrargs *args = rqstp->rq_argp;
325
Benoit Tained40aa332014-05-22 16:32:30 +0200326 p = decode_fh(p, &args->fh);
327 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400329 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if ((args->check_guard = ntohl(*p++)) != 0) {
332 struct timespec time;
333 p = decode_time3(p, &time);
334 args->guardtime = time.tv_sec;
335 }
336
337 return xdr_argsize_check(rqstp, p);
338}
339
340int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200341nfs3svc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200343 struct nfsd3_diropargs *args = rqstp->rq_argp;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (!(p = decode_fh(p, &args->fh))
346 || !(p = decode_filename(p, &args->name, &args->len)))
347 return 0;
348
349 return xdr_argsize_check(rqstp, p);
350}
351
352int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200353nfs3svc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200355 struct nfsd3_accessargs *args = rqstp->rq_argp;
356
Benoit Tained40aa332014-05-22 16:32:30 +0200357 p = decode_fh(p, &args->fh);
358 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360 args->access = ntohl(*p++);
361
362 return xdr_argsize_check(rqstp, p);
363}
364
365int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200366nfs3svc_decode_readargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200368 struct nfsd3_readargs *args = rqstp->rq_argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 unsigned int len;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500370 int v;
Greg Banks7adae482006-10-04 02:15:47 -0700371 u32 max_blocksize = svc_max_payload(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Benoit Tained40aa332014-05-22 16:32:30 +0200373 p = decode_fh(p, &args->fh);
374 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700376 p = xdr_decode_hyper(p, &args->offset);
J. Bruce Fields9512a162017-05-16 15:57:42 -0400377
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800378 args->count = ntohl(*p++);
379 len = min(args->count, max_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* set up the kvec */
382 v=0;
383 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500384 struct page *p = *(rqstp->rq_next_page++);
385
386 rqstp->rq_vec[v].iov_base = page_address(p);
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800387 rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE);
NeilBrown3cc03b12006-10-04 02:15:47 -0700388 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 v++;
390 }
391 args->vlen = v;
J. Bruce Fields9512a162017-05-16 15:57:42 -0400392 return xdr_argsize_check(rqstp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200396nfs3svc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200398 struct nfsd3_writeargs *args = rqstp->rq_argp;
Chuck Lever8154ef22018-03-27 10:54:07 -0400399 unsigned int len, hdr, dlen;
Greg Banks7adae482006-10-04 02:15:47 -0700400 u32 max_blocksize = svc_max_payload(rqstp);
J. Bruce Fieldsdb44bac2017-04-25 16:21:34 -0400401 struct kvec *head = rqstp->rq_arg.head;
402 struct kvec *tail = rqstp->rq_arg.tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Benoit Tained40aa332014-05-22 16:32:30 +0200404 p = decode_fh(p, &args->fh);
405 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700407 p = xdr_decode_hyper(p, &args->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 args->count = ntohl(*p++);
410 args->stable = ntohl(*p++);
411 len = args->len = ntohl(*p++);
J. Bruce Fields13bf9fb2017-04-21 15:26:30 -0400412 if ((void *)p > head->iov_base + head->iov_len)
413 return 0;
Peter Staubachf34b9562007-05-09 02:34:48 -0700414 /*
415 * The count must equal the amount of data passed.
416 */
417 if (args->count != args->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return 0;
419
Peter Staubachf34b9562007-05-09 02:34:48 -0700420 /*
421 * Check to make sure that we got the right number of
422 * bytes.
Peter Staubachf34b9562007-05-09 02:34:48 -0700423 */
J. Bruce Fieldsdb44bac2017-04-25 16:21:34 -0400424 hdr = (void*)p - head->iov_base;
425 dlen = head->iov_len + rqstp->rq_arg.page_len + tail->iov_len - hdr;
Peter Staubachf34b9562007-05-09 02:34:48 -0700426 /*
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.
NeilBrownba67a392008-01-11 17:06:52 -0500430 * 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.
Peter Staubachf34b9562007-05-09 02:34:48 -0700433 */
NeilBrownba67a392008-01-11 17:06:52 -0500434 if (dlen < XDR_QUADLEN(len)*4)
Peter Staubachf34b9562007-05-09 02:34:48 -0700435 return 0;
436
437 if (args->count > max_blocksize) {
438 args->count = max_blocksize;
439 len = args->len = max_blocksize;
440 }
Chuck Lever8154ef22018-03-27 10:54:07 -0400441
442 args->first.iov_base = (void *)p;
443 args->first.iov_len = head->iov_len - hdr;
Peter Staubachf34b9562007-05-09 02:34:48 -0700444 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200448nfs3svc_decode_createargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200450 struct nfsd3_createargs *args = rqstp->rq_argp;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (!(p = decode_fh(p, &args->fh))
453 || !(p = decode_filename(p, &args->name, &args->len)))
454 return 0;
455
456 switch (args->createmode = ntohl(*p++)) {
457 case NFS3_CREATE_UNCHECKED:
458 case NFS3_CREATE_GUARDED:
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400459 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
461 case NFS3_CREATE_EXCLUSIVE:
462 args->verf = p;
463 p += 2;
464 break;
465 default:
466 return 0;
467 }
468
469 return xdr_argsize_check(rqstp, p);
470}
Christoph Hellwig026fec72017-05-08 19:01:48 +0200471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200473nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200475 struct nfsd3_createargs *args = rqstp->rq_argp;
476
NeilBrown072f62e2007-05-09 02:34:57 -0700477 if (!(p = decode_fh(p, &args->fh)) ||
478 !(p = decode_filename(p, &args->name, &args->len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400480 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 return xdr_argsize_check(rqstp, p);
483}
484
485int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200486nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200488 struct nfsd3_symlinkargs *args = rqstp->rq_argp;
Chuck Lever38a70312018-03-27 10:54:21 -0400489 char *base = (char *)p;
490 size_t dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
NeilBrown072f62e2007-05-09 02:34:57 -0700492 if (!(p = decode_fh(p, &args->ffh)) ||
Chuck Lever38a70312018-03-27 10:54:21 -0400493 !(p = decode_filename(p, &args->fname, &args->flen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400495 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
NeilBrown072f62e2007-05-09 02:34:57 -0700496
Chuck Lever38a70312018-03-27 10:54:21 -0400497 args->tlen = ntohl(*p++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Chuck Lever38a70312018-03-27 10:54:21 -0400499 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;
502
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)
506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return 1;
508}
509
510int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200511nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200513 struct nfsd3_mknodargs *args = rqstp->rq_argp;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (!(p = decode_fh(p, &args->fh))
516 || !(p = decode_filename(p, &args->name, &args->len)))
517 return 0;
518
519 args->ftype = ntohl(*p++);
520
521 if (args->ftype == NF3BLK || args->ftype == NF3CHR
NeilBrown072f62e2007-05-09 02:34:57 -0700522 || args->ftype == NF3SOCK || args->ftype == NF3FIFO)
Trond Myklebuste45d1a12019-04-09 12:13:42 -0400523 p = decode_sattr3(p, &args->attrs, nfsd_user_namespace(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (args->ftype == NF3BLK || args->ftype == NF3CHR) {
526 args->major = ntohl(*p++);
527 args->minor = ntohl(*p++);
528 }
529
530 return xdr_argsize_check(rqstp, p);
531}
532
533int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200534nfs3svc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200536 struct nfsd3_renameargs *args = rqstp->rq_argp;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 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)))
542 return 0;
543
544 return xdr_argsize_check(rqstp, p);
545}
546
547int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200548nfs3svc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200550 struct nfsd3_readlinkargs *args = rqstp->rq_argp;
551
Benoit Tained40aa332014-05-22 16:32:30 +0200552 p = decode_fh(p, &args->fh);
553 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 0;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500555 args->buffer = page_address(*(rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
J. Bruce Fields9512a162017-05-16 15:57:42 -0400557 return xdr_argsize_check(rqstp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200561nfs3svc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200563 struct nfsd3_linkargs *args = rqstp->rq_argp;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (!(p = decode_fh(p, &args->ffh))
566 || !(p = decode_fh(p, &args->tfh))
567 || !(p = decode_filename(p, &args->tname, &args->tlen)))
568 return 0;
569
570 return xdr_argsize_check(rqstp, p);
571}
572
573int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200574nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200576 struct nfsd3_readdirargs *args = rqstp->rq_argp;
Murphy Zhou3c867942019-04-04 14:57:11 +0800577 int len;
NeilBrownf875a792019-03-07 09:49:46 +1100578 u32 max_blocksize = svc_max_payload(rqstp);
579
Benoit Tained40aa332014-05-22 16:32:30 +0200580 p = decode_fh(p, &args->fh);
581 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583 p = xdr_decode_hyper(p, &args->cookie);
584 args->verf = p; p += 2;
585 args->dircount = ~0;
586 args->count = ntohl(*p++);
Murphy Zhou3c867942019-04-04 14:57:11 +0800587 len = args->count = min_t(u32, args->count, max_blocksize);
588
589 while (len > 0) {
590 struct page *p = *(rqstp->rq_next_page++);
591 if (!args->buffer)
592 args->buffer = page_address(p);
593 len -= PAGE_SIZE;
594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
J. Bruce Fields9512a162017-05-16 15:57:42 -0400596 return xdr_argsize_check(rqstp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200600nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200602 struct nfsd3_readdirargs *args = rqstp->rq_argp;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500603 int len;
Greg Banks7adae482006-10-04 02:15:47 -0700604 u32 max_blocksize = svc_max_payload(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Benoit Tained40aa332014-05-22 16:32:30 +0200606 p = decode_fh(p, &args->fh);
607 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 0;
609 p = xdr_decode_hyper(p, &args->cookie);
610 args->verf = p; p += 2;
611 args->dircount = ntohl(*p++);
612 args->count = ntohl(*p++);
613
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800614 len = args->count = min(args->count, max_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500616 struct page *p = *(rqstp->rq_next_page++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!args->buffer)
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500618 args->buffer = page_address(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 len -= PAGE_SIZE;
620 }
J. Bruce Fields9512a162017-05-16 15:57:42 -0400621
622 return xdr_argsize_check(rqstp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625int
Christoph Hellwig026fec72017-05-08 19:01:48 +0200626nfs3svc_decode_commitargs(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200628 struct nfsd3_commitargs *args = rqstp->rq_argp;
Benoit Tained40aa332014-05-22 16:32:30 +0200629 p = decode_fh(p, &args->fh);
630 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 0;
632 p = xdr_decode_hyper(p, &args->offset);
633 args->count = ntohl(*p++);
634
635 return xdr_argsize_check(rqstp, p);
636}
637
638/*
639 * XDR encode functions
640 */
641/*
642 * There must be an encoding function for void results so svc_process
643 * will work properly.
644 */
645int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200646nfs3svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 return xdr_ressize_check(rqstp, p);
649}
650
651/* GETATTR */
652int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200653nfs3svc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200655 struct nfsd3_attrstat *resp = rqstp->rq_resp;
656
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400657 if (resp->status == 0) {
David Howells2b0143b2015-03-17 22:25:59 +0000658 lease_get_mtime(d_inode(resp->fh.fh_dentry),
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400659 &resp->stat.mtime);
David Shawa334de22006-01-06 00:19:58 -0800660 p = encode_fattr3(rqstp, p, &resp->fh, &resp->stat);
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return xdr_ressize_check(rqstp, p);
663}
664
665/* SETATTR, REMOVE, RMDIR */
666int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200667nfs3svc_encode_wccstat(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200669 struct nfsd3_attrstat *resp = rqstp->rq_resp;
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 p = encode_wcc_data(rqstp, p, &resp->fh);
672 return xdr_ressize_check(rqstp, p);
673}
674
675/* LOOKUP */
676int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200677nfs3svc_encode_diropres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200679 struct nfsd3_diropres *resp = rqstp->rq_resp;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (resp->status == 0) {
682 p = encode_fh(p, &resp->fh);
683 p = encode_post_op_attr(rqstp, p, &resp->fh);
684 }
685 p = encode_post_op_attr(rqstp, p, &resp->dirfh);
686 return xdr_ressize_check(rqstp, p);
687}
688
689/* ACCESS */
690int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200691nfs3svc_encode_accessres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200693 struct nfsd3_accessres *resp = rqstp->rq_resp;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 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);
699}
700
701/* READLINK */
702int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200703nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200705 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 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;
712 if (resp->len & 3) {
713 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 rqstp->rq_res.tail[0].iov_base = p;
715 *p = 0;
716 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
717 }
718 return 1;
719 } else
720 return xdr_ressize_check(rqstp, p);
721}
722
723/* READ */
724int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200725nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200727 struct nfsd3_readres *resp = rqstp->rq_resp;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 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);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300735 /* now update rqstp->rq_res to reflect data as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 rqstp->rq_res.page_len = resp->count;
737 if (resp->count & 3) {
738 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 rqstp->rq_res.tail[0].iov_base = p;
740 *p = 0;
741 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count & 3);
742 }
743 return 1;
744 } else
745 return xdr_ressize_check(rqstp, p);
746}
747
748/* WRITE */
749int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200750nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200752 struct nfsd3_writeres *resp = rqstp->rq_resp;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300753 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 p = encode_wcc_data(rqstp, p, &resp->fh);
756 if (resp->status == 0) {
757 *p++ = htonl(resp->count);
758 *p++ = htonl(resp->committed);
Arnd Bergmann256a89f2017-10-19 12:04:11 +0200759 /* unique identifier, y2038 overflow can be ignored */
760 *p++ = htonl((u32)nn->nfssvc_boot.tv_sec);
761 *p++ = htonl(nn->nfssvc_boot.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 return xdr_ressize_check(rqstp, p);
764}
765
766/* CREATE, MKDIR, SYMLINK, MKNOD */
767int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200768nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200770 struct nfsd3_diropres *resp = rqstp->rq_resp;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (resp->status == 0) {
773 *p++ = xdr_one;
774 p = encode_fh(p, &resp->fh);
775 p = encode_post_op_attr(rqstp, p, &resp->fh);
776 }
777 p = encode_wcc_data(rqstp, p, &resp->dirfh);
778 return xdr_ressize_check(rqstp, p);
779}
780
781/* RENAME */
782int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200783nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200785 struct nfsd3_renameres *resp = rqstp->rq_resp;
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 p = encode_wcc_data(rqstp, p, &resp->ffh);
788 p = encode_wcc_data(rqstp, p, &resp->tfh);
789 return xdr_ressize_check(rqstp, p);
790}
791
792/* LINK */
793int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200794nfs3svc_encode_linkres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200796 struct nfsd3_linkres *resp = rqstp->rq_resp;
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 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);
801}
802
803/* READDIR */
804int
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200805nfs3svc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200807 struct nfsd3_readdirres *resp = rqstp->rq_resp;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 p = encode_post_op_attr(rqstp, p, &resp->fh);
810
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;
818
819 /* add the 'tail' to the end of the 'head' page - page 0. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 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;
824 return 1;
825 } else
826 return xdr_ressize_check(rqstp, p);
827}
828
Adrian Bunk3ee6f612006-12-06 20:40:23 -0800829static __be32 *
Al Viro91f07162006-10-19 23:28:57 -0700830encode_entry_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name,
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400831 int namlen, u64 ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
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 */
836
837 cd->offset = p; /* remember pointer */
838 p = xdr_encode_hyper(p, NFS_OFFSET_MAX);/* offset of next entry */
839
840 return p;
841}
842
Al Viroefe39652012-04-13 00:32:14 -0400843static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
NeilBrown43b0e7e2015-05-03 09:16:53 +1000845 const char *name, int namlen, u64 ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 struct svc_export *exp;
848 struct dentry *dparent, *dchild;
Al Viroefe39652012-04-13 00:32:14 -0400849 __be32 rv = nfserr_noent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 dparent = cd->fh.fh_dentry;
852 exp = cd->fh.fh_export;
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (isdotent(name, namlen)) {
855 if (namlen == 2) {
856 dchild = dget_parent(dparent);
Al Viroefe39652012-04-13 00:32:14 -0400857 /* filesystem root - cannot return filehandle for ".." */
858 if (dchild == dparent)
859 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 } else
861 dchild = dget(dparent);
862 } else
NeilBrownbbddca82016-01-07 16:08:20 -0500863 dchild = lookup_one_len_unlocked(name, dparent, namlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (IS_ERR(dchild))
Al Viroefe39652012-04-13 00:32:14 -0400865 return rv;
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400866 if (d_mountpoint(dchild))
867 goto out;
David Howells2b0143b2015-03-17 22:25:59 +0000868 if (d_really_is_negative(dchild))
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400869 goto out;
NeilBrown43b0e7e2015-05-03 09:16:53 +1000870 if (dchild->d_inode->i_ino != ino)
871 goto out;
Al Viroefe39652012-04-13 00:32:14 -0400872 rv = fh_compose(fhp, exp, dchild, &cd->fh);
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400873out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 dput(dchild);
875 return rv;
876}
877
NeilBrown43b0e7e2015-05-03 09:16:53 +1000878static __be32 *encode_entryplus_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name, int namlen, u64 ino)
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400879{
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500880 struct svc_fh *fh = &cd->scratch;
Al Viroefe39652012-04-13 00:32:14 -0400881 __be32 err;
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400882
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500883 fh_init(fh, NFS3_FHSIZE);
NeilBrown43b0e7e2015-05-03 09:16:53 +1000884 err = compose_entry_fh(cd, fh, name, namlen, ino);
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400885 if (err) {
886 *p++ = 0;
887 *p++ = 0;
J. Bruce Fieldsaed100f2009-09-04 14:40:36 -0400888 goto out;
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400889 }
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500890 p = encode_post_op_attr(cd->rqstp, p, fh);
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400891 *p++ = xdr_one; /* yes, a file handle follows */
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500892 p = encode_fh(p, fh);
J. Bruce Fieldsaed100f2009-09-04 14:40:36 -0400893out:
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500894 fh_put(fh);
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400895 return p;
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/*
899 * Encode a directory entry. This one works for both normal readdir
900 * and readdirplus.
901 * The normal readdir reply requires 2 (fileid) + 1 (stringlen)
902 * + string + 2 (cookie) + 1 (next) words, i.e. 6 + strlen.
903 *
904 * The readdirplus baggage is 1+21 words for post_op_attr, plus the
905 * file handle.
906 */
907
908#define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
909#define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
910static int
NeilBrown598b9a52007-03-26 21:32:08 -0800911encode_entry(struct readdir_cd *ccd, const char *name, int namlen,
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400912 loff_t offset, u64 ino, unsigned int d_type, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 struct nfsd3_readdirres *cd = container_of(ccd, struct nfsd3_readdirres,
915 common);
Al Viro91f07162006-10-19 23:28:57 -0700916 __be32 *p = cd->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 caddr_t curr_page_addr = NULL;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500918 struct page ** page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int slen; /* string (name) length */
920 int elen; /* estimated entry length in words */
921 int num_entry_words = 0; /* actual number of words */
922
923 if (cd->offset) {
924 u64 offset64 = offset;
925
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);
930 cd->offset1 = NULL;
931 } else {
NeilBrown598b9a52007-03-26 21:32:08 -0800932 xdr_encode_hyper(cd->offset, offset64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
NeilBrownb6023452019-03-04 14:08:22 +1100934 cd->offset = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
937 /*
938 dprintk("encode_entry(%.*s @%ld%s)\n",
939 namlen, name, (long) offset, plus? " plus" : "");
940 */
941
942 /* truncate filename if too long */
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800943 namlen = min(namlen, NFS3_MAXNAMLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 slen = XDR_QUADLEN(namlen);
946 elen = slen + NFS3_ENTRY_BAGGAGE
947 + (plus? NFS3_ENTRYPLUS_BAGGAGE : 0);
948
949 if (cd->buflen < elen) {
950 cd->common.err = nfserr_toosmall;
951 return -EINVAL;
952 }
953
954 /* determine which page in rq_respages[] we are currently filling */
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500955 for (page = cd->rqstp->rq_respages + 1;
956 page < cd->rqstp->rq_next_page; page++) {
957 curr_page_addr = page_address(*page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 if (((caddr_t)cd->buffer >= curr_page_addr) &&
960 ((caddr_t)cd->buffer < curr_page_addr + PAGE_SIZE))
961 break;
962 }
963
964 if ((caddr_t)(cd->buffer + elen) < (curr_page_addr + PAGE_SIZE)) {
965 /* encode entry in current page */
966
967 p = encode_entry_baggage(cd, p, name, namlen, ino);
968
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400969 if (plus)
NeilBrown43b0e7e2015-05-03 09:16:53 +1000970 p = encode_entryplus_baggage(cd, p, name, namlen, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 num_entry_words = p - cd->buffer;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500972 } else if (*(page+1) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /* temporarily encode entry into next page, then move back to
974 * current and next page in rq_respages[] */
Al Viro91f07162006-10-19 23:28:57 -0700975 __be32 *p1, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int len1, len2;
977
978 /* grab next page for temporary storage of entry */
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500979 p1 = tmp = page_address(*(page+1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 p1 = encode_entry_baggage(cd, p1, name, namlen, ino);
982
J. Bruce Fields8177e6d2009-09-04 14:13:09 -0400983 if (plus)
NeilBrown43b0e7e2015-05-03 09:16:53 +1000984 p1 = encode_entryplus_baggage(cd, p1, name, namlen, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
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
992 */
993 memmove(p, tmp, num_entry_words << 2);
994 p += num_entry_words;
995
996 /* update offset */
997 cd->offset = cd->buffer + (cd->offset - tmp);
998 } else {
999 unsigned int offset_r = (cd->offset - tmp) << 2;
1000
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
1007 */
1008 if (offset_r + 8 <= len1) {
1009 cd->offset = p + (cd->offset - tmp);
1010 } else if (offset_r >= len1) {
1011 cd->offset -= len1 >> 2;
1012 } else {
1013 /* sitting on the fence */
1014 BUG_ON(offset_r != len1 - 4);
1015 cd->offset = p + (cd->offset - tmp);
1016 cd->offset1 = tmp;
1017 }
1018
1019 len2 = (num_entry_words << 2) - len1;
1020
1021 /* move from temp page to current and next pages */
1022 memmove(p, tmp, len1);
1023 memmove(tmp, (caddr_t)tmp+len1, len2);
1024
1025 p = tmp + (len2 >> 2);
1026 }
1027 }
1028 else {
1029 cd->common.err = nfserr_toosmall;
1030 return -EINVAL;
1031 }
1032
1033 cd->buflen -= num_entry_words;
1034 cd->buffer = p;
1035 cd->common.err = nfs_ok;
1036 return 0;
1037
1038}
1039
1040int
NeilBrowna0ad13e2007-01-26 00:57:10 -08001041nfs3svc_encode_entry(void *cd, const char *name,
1042 int namlen, loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 return encode_entry(cd, name, namlen, offset, ino, d_type, 0);
1045}
1046
1047int
NeilBrowna0ad13e2007-01-26 00:57:10 -08001048nfs3svc_encode_entry_plus(void *cd, const char *name,
1049 int namlen, loff_t offset, u64 ino,
1050 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 return encode_entry(cd, name, namlen, offset, ino, d_type, 1);
1053}
1054
1055/* FSSTAT */
1056int
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001057nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001059 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct kstatfs *s = &resp->stats;
1061 u64 bs = s->f_bsize;
1062
1063 *p++ = xdr_zero; /* no post_op_attr */
1064
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 */
1073 }
1074 return xdr_ressize_check(rqstp, p);
1075}
1076
1077/* FSINFO */
1078int
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001079nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001081 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 *p++ = xdr_zero; /* no post_op_attr */
1084
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);
1094 *p++ = xdr_one;
1095 *p++ = xdr_zero;
1096 *p++ = htonl(resp->f_properties);
1097 }
1098
1099 return xdr_ressize_check(rqstp, p);
1100}
1101
1102/* PATHCONF */
1103int
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001104nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001106 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 *p++ = xdr_zero; /* no post_op_attr */
1109
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);
1117 }
1118
1119 return xdr_ressize_check(rqstp, p);
1120}
1121
1122/* COMMIT */
1123int
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001124nfs3svc_encode_commitres(struct svc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001126 struct nfsd3_commitres *resp = rqstp->rq_resp;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +03001127 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 p = encode_wcc_data(rqstp, p, &resp->fh);
1130 /* Write verifier */
1131 if (resp->status == 0) {
Arnd Bergmann256a89f2017-10-19 12:04:11 +02001132 /* unique identifier, y2038 overflow can be ignored */
1133 *p++ = htonl((u32)nn->nfssvc_boot.tv_sec);
1134 *p++ = htonl(nn->nfssvc_boot.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136 return xdr_ressize_check(rqstp, p);
1137}
1138
1139/*
1140 * XDR release functions
1141 */
Christoph Hellwig85374882017-05-08 18:48:24 +02001142void
1143nfs3svc_release_fhandle(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Christoph Hellwig85374882017-05-08 18:48:24 +02001145 struct nfsd3_attrstat *resp = rqstp->rq_resp;
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 fh_put(&resp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Christoph Hellwig85374882017-05-08 18:48:24 +02001150void
1151nfs3svc_release_fhandle2(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Christoph Hellwig85374882017-05-08 18:48:24 +02001153 struct nfsd3_fhandle_pair *resp = rqstp->rq_resp;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 fh_put(&resp->fh1);
1156 fh_put(&resp->fh2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}