blob: 0293b8d65f10fc948c212f653dd9f3e4121a3b48 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
Chuck Lever8b704492020-11-06 13:08:45 -050018 * Force construction of an empty post-op attr
19 */
20static const struct svc_fh nfs3svc_null_fh = {
21 .fh_no_wcc = true,
22};
23
24/*
Chuck Lever0a139d12020-10-22 13:42:13 -040025 * time_delta. {1, 0} means the server is accurate only
26 * to the nearest second.
27 */
28static const struct timespec64 nfs3svc_time_delta = {
29 .tv_sec = 1,
30 .tv_nsec = 0,
31};
32
33/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * Mapping of S_IF* types to NFS file types
35 */
Chuck Lever2c42f802020-10-21 11:58:41 -040036static const u32 nfs3_ftypes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 NF3NON, NF3FIFO, NF3CHR, NF3BAD,
38 NF3DIR, NF3BAD, NF3BLK, NF3BAD,
39 NF3REG, NF3BAD, NF3LNK, NF3BAD,
40 NF3SOCK, NF3BAD, NF3LNK, NF3BAD,
41};
42
Trond Myklebust27c438f2019-09-02 13:02:56 -040043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
Chuck Lever95753632020-10-20 14:30:02 -040045 * Basic NFSv3 data types (RFC 1813 Sections 2.5 and 2.6)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
Chuck Lever95753632020-10-20 14:30:02 -040047
Adrian Bunk3ee6f612006-12-06 20:40:23 -080048static __be32 *
Chuck Lever2c42f802020-10-21 11:58:41 -040049encode_nfstime3(__be32 *p, const struct timespec64 *time)
50{
51 *p++ = cpu_to_be32((u32)time->tv_sec);
52 *p++ = cpu_to_be32(time->tv_nsec);
53
54 return p;
55}
56
Chuck Lever9cde9362020-10-20 15:48:22 -040057static bool
58svcxdr_decode_nfstime3(struct xdr_stream *xdr, struct timespec64 *timep)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Chuck Lever9cde9362020-10-20 15:48:22 -040060 __be32 *p;
61
62 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
63 if (!p)
64 return false;
65 timep->tv_sec = be32_to_cpup(p++);
66 timep->tv_nsec = be32_to_cpup(p);
67
68 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Chuck Lever05027ea2020-11-17 11:52:04 -050071/**
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
75 *
76 * Return values:
77 * %false: The encoded file handle was not valid
78 * %true: @fhp has been initialized
79 */
80bool
Chuck Lever95753632020-10-20 14:30:02 -040081svcxdr_decode_nfs_fh3(struct xdr_stream *xdr, struct svc_fh *fhp)
82{
83 __be32 *p;
84 u32 size;
85
86 if (xdr_stream_decode_u32(xdr, &size) < 0)
87 return false;
88 if (size == 0 || size > NFS3_FHSIZE)
89 return false;
90 p = xdr_inline_decode(xdr, size);
91 if (!p)
92 return false;
93 fh_init(fhp, NFS3_FHSIZE);
94 fhp->fh_handle.fh_size = size;
NeilBrownd8b26072021-09-02 11:16:32 +100095 memcpy(&fhp->fh_handle.fh_raw, p, size);
Chuck Lever95753632020-10-20 14:30:02 -040096
97 return true;
98}
99
Chuck Lever20798df2020-11-18 16:11:42 -0500100/**
101 * svcxdr_encode_nfsstat3 - Encode an NFSv3 status code
102 * @xdr: XDR stream
103 * @status: status value to encode
104 *
105 * Return values:
106 * %false: Send buffer space was exhausted
107 * %true: Success
108 */
109bool
Chuck Lever2c42f802020-10-21 11:58:41 -0400110svcxdr_encode_nfsstat3(struct xdr_stream *xdr, __be32 status)
111{
112 __be32 *p;
113
114 p = xdr_reserve_space(xdr, sizeof(status));
115 if (!p)
116 return false;
117 *p = status;
118
119 return true;
120}
121
Chuck Lever5cf35332020-10-22 14:46:58 -0400122static bool
123svcxdr_encode_nfs_fh3(struct xdr_stream *xdr, const struct svc_fh *fhp)
124{
125 u32 size = fhp->fh_handle.fh_size;
126 __be32 *p;
127
128 p = xdr_reserve_space(xdr, XDR_UNIT + size);
129 if (!p)
130 return false;
131 *p++ = cpu_to_be32(size);
132 if (size)
133 p[XDR_QUADLEN(size) - 1] = 0;
NeilBrownd8b26072021-09-02 11:16:32 +1000134 memcpy(p, &fhp->fh_handle.fh_raw, size);
Chuck Lever5cf35332020-10-22 14:46:58 -0400135
136 return true;
137}
138
Chuck Lever78315b32020-10-22 15:27:23 -0400139static bool
140svcxdr_encode_post_op_fh3(struct xdr_stream *xdr, const struct svc_fh *fhp)
141{
142 if (xdr_stream_encode_item_present(xdr) < 0)
143 return false;
144 if (!svcxdr_encode_nfs_fh3(xdr, fhp))
145 return false;
146
147 return true;
148}
149
Chuck Lever54d1d432020-10-20 15:42:33 -0400150static bool
Chuck Levere4ccfe32020-10-22 19:31:48 -0400151svcxdr_encode_cookieverf3(struct xdr_stream *xdr, const __be32 *verf)
152{
153 __be32 *p;
154
155 p = xdr_reserve_space(xdr, NFS3_COOKIEVERFSIZE);
156 if (!p)
157 return false;
158 memcpy(p, verf, NFS3_COOKIEVERFSIZE);
159
160 return true;
161}
162
163static bool
Chuck Leverecb7a082020-10-22 15:26:31 -0400164svcxdr_encode_writeverf3(struct xdr_stream *xdr, const __be32 *verf)
165{
166 __be32 *p;
167
168 p = xdr_reserve_space(xdr, NFS3_WRITEVERFSIZE);
169 if (!p)
170 return false;
171 memcpy(p, verf, NFS3_WRITEVERFSIZE);
172
173 return true;
174}
175
176static bool
Chuck Lever54d1d432020-10-20 15:42:33 -0400177svcxdr_decode_filename3(struct xdr_stream *xdr, char **name, unsigned int *len)
178{
179 u32 size, i;
180 __be32 *p;
181 char *c;
182
183 if (xdr_stream_decode_u32(xdr, &size) < 0)
184 return false;
185 if (size == 0 || size > NFS3_MAXNAMLEN)
186 return false;
187 p = xdr_inline_decode(xdr, size);
188 if (!p)
189 return false;
190
191 *len = size;
192 *name = (char *)p;
193 for (i = 0, c = *name; i < size; i++, c++) {
194 if (*c == '\0' || *c == '/')
195 return false;
196 }
197
198 return true;
199}
200
201static bool
202svcxdr_decode_diropargs3(struct xdr_stream *xdr, struct svc_fh *fhp,
203 char **name, unsigned int *len)
204{
205 return svcxdr_decode_nfs_fh3(xdr, fhp) &&
206 svcxdr_decode_filename3(xdr, name, len);
207}
208
Chuck Lever9cde9362020-10-20 15:48:22 -0400209static bool
210svcxdr_decode_sattr3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
211 struct iattr *iap)
212{
213 u32 set_it;
214
215 iap->ia_valid = 0;
216
217 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
218 return false;
219 if (set_it) {
220 u32 mode;
221
222 if (xdr_stream_decode_u32(xdr, &mode) < 0)
223 return false;
224 iap->ia_valid |= ATTR_MODE;
225 iap->ia_mode = mode;
226 }
227 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
228 return false;
229 if (set_it) {
230 u32 uid;
231
232 if (xdr_stream_decode_u32(xdr, &uid) < 0)
233 return false;
234 iap->ia_uid = make_kuid(nfsd_user_namespace(rqstp), uid);
235 if (uid_valid(iap->ia_uid))
236 iap->ia_valid |= ATTR_UID;
237 }
238 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
239 return false;
240 if (set_it) {
241 u32 gid;
242
243 if (xdr_stream_decode_u32(xdr, &gid) < 0)
244 return false;
245 iap->ia_gid = make_kgid(nfsd_user_namespace(rqstp), gid);
246 if (gid_valid(iap->ia_gid))
247 iap->ia_valid |= ATTR_GID;
248 }
249 if (xdr_stream_decode_bool(xdr, &set_it) < 0)
250 return false;
251 if (set_it) {
252 u64 newsize;
253
254 if (xdr_stream_decode_u64(xdr, &newsize) < 0)
255 return false;
256 iap->ia_valid |= ATTR_SIZE;
Chuck Levera648fde2022-01-25 15:59:57 -0500257 iap->ia_size = newsize;
Chuck Lever9cde9362020-10-20 15:48:22 -0400258 }
259 if (xdr_stream_decode_u32(xdr, &set_it) < 0)
260 return false;
261 switch (set_it) {
262 case DONT_CHANGE:
263 break;
264 case SET_TO_SERVER_TIME:
265 iap->ia_valid |= ATTR_ATIME;
266 break;
267 case SET_TO_CLIENT_TIME:
268 if (!svcxdr_decode_nfstime3(xdr, &iap->ia_atime))
269 return false;
270 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
271 break;
272 default:
273 return false;
274 }
275 if (xdr_stream_decode_u32(xdr, &set_it) < 0)
276 return false;
277 switch (set_it) {
278 case DONT_CHANGE:
279 break;
280 case SET_TO_SERVER_TIME:
281 iap->ia_valid |= ATTR_MTIME;
282 break;
283 case SET_TO_CLIENT_TIME:
284 if (!svcxdr_decode_nfstime3(xdr, &iap->ia_mtime))
285 return false;
286 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
287 break;
288 default:
289 return false;
290 }
291
292 return true;
293}
294
295static bool
296svcxdr_decode_sattrguard3(struct xdr_stream *xdr, struct nfsd3_sattrargs *args)
297{
298 __be32 *p;
299 u32 check;
300
301 if (xdr_stream_decode_bool(xdr, &check) < 0)
302 return false;
303 if (check) {
304 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
305 if (!p)
306 return false;
307 args->check_guard = 1;
308 args->guardtime = be32_to_cpup(p);
309 } else
310 args->check_guard = 0;
311
312 return true;
313}
314
Chuck Leverf8a38e22020-10-20 17:04:03 -0400315static bool
316svcxdr_decode_specdata3(struct xdr_stream *xdr, struct nfsd3_mknodargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Chuck Leverf8a38e22020-10-20 17:04:03 -0400318 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Chuck Leverf8a38e22020-10-20 17:04:03 -0400320 p = xdr_inline_decode(xdr, XDR_UNIT * 2);
321 if (!p)
322 return false;
323 args->major = be32_to_cpup(p++);
324 args->minor = be32_to_cpup(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Chuck Leverf8a38e22020-10-20 17:04:03 -0400326 return true;
327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Chuck Leverf8a38e22020-10-20 17:04:03 -0400329static bool
330svcxdr_decode_devicedata3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
331 struct nfsd3_mknodargs *args)
332{
333 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs) &&
334 svcxdr_decode_specdata3(xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Chuck Lever2c42f802020-10-21 11:58:41 -0400337static bool
338svcxdr_encode_fattr3(struct svc_rqst *rqstp, struct xdr_stream *xdr,
339 const struct svc_fh *fhp, const struct kstat *stat)
340{
341 struct user_namespace *userns = nfsd_user_namespace(rqstp);
342 __be32 *p;
343 u64 fsid;
344
345 p = xdr_reserve_space(xdr, XDR_UNIT * 21);
346 if (!p)
347 return false;
348
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);
356 else
357 p = xdr_encode_hyper(p, (u64)stat->size);
358
359 /* used */
360 p = xdr_encode_hyper(p, ((u64)stat->blocks) << 9);
361
362 /* rdev */
363 *p++ = cpu_to_be32((u32)MAJOR(stat->rdev));
364 *p++ = cpu_to_be32((u32)MINOR(stat->rdev));
365
366 switch(fsid_source(fhp)) {
367 case FSIDSOURCE_FSID:
368 fsid = (u64)fhp->fh_export->ex_fsid;
369 break;
370 case FSIDSOURCE_UUID:
371 fsid = ((u64 *)fhp->fh_export->ex_uuid)[0];
372 fsid ^= ((u64 *)fhp->fh_export->ex_uuid)[1];
373 break;
374 default:
375 fsid = (u64)huge_encode_dev(fhp->fh_dentry->d_sb->s_dev);
376 }
377 p = xdr_encode_hyper(p, fsid);
378
379 /* fileid */
380 p = xdr_encode_hyper(p, stat->ino);
381
382 p = encode_nfstime3(p, &stat->atime);
383 p = encode_nfstime3(p, &stat->mtime);
384 encode_nfstime3(p, &stat->ctime);
385
386 return true;
387}
388
Chuck Lever907c3822020-10-22 13:56:58 -0400389static bool
Chuck Lever70f8e832020-10-22 15:12:38 -0400390svcxdr_encode_wcc_attr(struct xdr_stream *xdr, const struct svc_fh *fhp)
391{
392 __be32 *p;
393
394 p = xdr_reserve_space(xdr, XDR_UNIT * 6);
395 if (!p)
396 return false;
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);
400
401 return true;
402}
403
404static bool
405svcxdr_encode_pre_op_attr(struct xdr_stream *xdr, const struct svc_fh *fhp)
406{
407 if (!fhp->fh_pre_saved) {
408 if (xdr_stream_encode_item_absent(xdr) < 0)
409 return false;
410 return true;
411 }
412
413 if (xdr_stream_encode_item_present(xdr) < 0)
414 return false;
415 return svcxdr_encode_wcc_attr(xdr, fhp);
416}
417
Chuck Lever20798df2020-11-18 16:11:42 -0500418/**
419 * svcxdr_encode_post_op_attr - Encode NFSv3 post-op attributes
420 * @rqstp: Context of a completed RPC transaction
421 * @xdr: XDR stream
422 * @fhp: File handle to encode
423 *
424 * Return values:
425 * %false: Send buffer space was exhausted
426 * %true: Success
427 */
428bool
Chuck Lever907c3822020-10-22 13:56:58 -0400429svcxdr_encode_post_op_attr(struct svc_rqst *rqstp, struct xdr_stream *xdr,
430 const struct svc_fh *fhp)
431{
432 struct dentry *dentry = fhp->fh_dentry;
433 struct kstat stat;
434
435 /*
436 * The inode may be NULL if the call failed because of a
437 * stale file handle. In this case, no attributes are
438 * returned.
439 */
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;
444
445 if (xdr_stream_encode_item_present(xdr) < 0)
446 return false;
447 lease_get_mtime(d_inode(dentry), &stat.mtime);
448 if (!svcxdr_encode_fattr3(rqstp, xdr, fhp, &stat))
449 return false;
450
451 return true;
452
453no_post_op_attrs:
454 return xdr_stream_encode_item_absent(xdr) > 0;
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/*
Chuck Lever70f8e832020-10-22 15:12:38 -0400458 * Encode weak cache consistency data
459 */
460static bool
461svcxdr_encode_wcc_data(struct svc_rqst *rqstp, struct xdr_stream *xdr,
462 const struct svc_fh *fhp)
463{
464 struct dentry *dentry = fhp->fh_dentry;
465
466 if (!dentry || !d_really_is_positive(dentry) || !fhp->fh_post_saved)
467 goto neither;
468
469 /* before */
470 if (!svcxdr_encode_pre_op_attr(xdr, fhp))
471 return false;
472
473 /* after */
474 if (xdr_stream_encode_item_present(xdr) < 0)
475 return false;
476 if (!svcxdr_encode_fattr3(rqstp, xdr, fhp, &fhp->fh_post_attr))
477 return false;
478
479 return true;
480
481neither:
482 if (xdr_stream_encode_item_absent(xdr) < 0)
483 return false;
484 if (!svcxdr_encode_post_op_attr(rqstp, xdr, fhp))
485 return false;
486
487 return true;
488}
489
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400490/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 * XDR decode functions
492 */
Chuck Leverdcc46992020-10-01 18:59:12 -0400493
Chuck Leverc44b31c2021-10-12 11:57:28 -0400494bool
Chuck Lever16c66362021-10-12 11:57:22 -0400495nfs3svc_decode_fhandleargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200497 struct nfsd_fhandle *args = rqstp->rq_argp;
498
Chuck Lever95753632020-10-20 14:30:02 -0400499 return svcxdr_decode_nfs_fh3(xdr, &args->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Chuck Leverc44b31c2021-10-12 11:57:28 -0400502bool
Chuck Lever16c66362021-10-12 11:57:22 -0400503nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200505 struct nfsd3_sattrargs *args = rqstp->rq_argp;
506
Chuck Lever9cde9362020-10-20 15:48:22 -0400507 return svcxdr_decode_nfs_fh3(xdr, &args->fh) &&
508 svcxdr_decode_sattr3(rqstp, xdr, &args->attrs) &&
509 svcxdr_decode_sattrguard3(xdr, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Chuck Leverc44b31c2021-10-12 11:57:28 -0400512bool
Chuck Lever16c66362021-10-12 11:57:22 -0400513nfs3svc_decode_diropargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200515 struct nfsd3_diropargs *args = rqstp->rq_argp;
516
Chuck Lever54d1d432020-10-20 15:42:33 -0400517 return svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Chuck Leverc44b31c2021-10-12 11:57:28 -0400520bool
Chuck Lever16c66362021-10-12 11:57:22 -0400521nfs3svc_decode_accessargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200523 struct nfsd3_accessargs *args = rqstp->rq_argp;
524
Chuck Lever3b921a22020-10-20 14:32:04 -0400525 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400526 return false;
Chuck Lever3b921a22020-10-20 14:32:04 -0400527 if (xdr_stream_decode_u32(xdr, &args->access) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400528 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Chuck Leverc44b31c2021-10-12 11:57:28 -0400530 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Chuck Leverc44b31c2021-10-12 11:57:28 -0400533bool
Chuck Lever16c66362021-10-12 11:57:22 -0400534nfs3svc_decode_readargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200536 struct nfsd3_readargs *args = rqstp->rq_argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Chuck Leverbe63bd22020-10-20 14:34:40 -0400538 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400539 return false;
Chuck Leverbe63bd22020-10-20 14:34:40 -0400540 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400541 return false;
Chuck Leverbe63bd22020-10-20 14:34:40 -0400542 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400543 return false;
J. Bruce Fields9512a162017-05-16 15:57:42 -0400544
Chuck Leverc44b31c2021-10-12 11:57:28 -0400545 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
Chuck Leverc44b31c2021-10-12 11:57:28 -0400548bool
Chuck Lever16c66362021-10-12 11:57:22 -0400549nfs3svc_decode_writeargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200551 struct nfsd3_writeargs *args = rqstp->rq_argp;
Greg Banks7adae482006-10-04 02:15:47 -0700552 u32 max_blocksize = svc_max_payload(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Chuck Leverc43b2f22020-10-22 11:14:55 -0400554 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400555 return false;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400556 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400557 return false;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400558 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400559 return false;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400560 if (xdr_stream_decode_u32(xdr, &args->stable) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400561 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Chuck Leverc43b2f22020-10-22 11:14:55 -0400563 /* opaque data */
564 if (xdr_stream_decode_u32(xdr, &args->len) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400565 return false;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400566
567 /* request sanity */
Peter Staubachf34b95682007-05-09 02:34:48 -0700568 if (args->count != args->len)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400569 return false;
Peter Staubachf34b95682007-05-09 02:34:48 -0700570 if (args->count > max_blocksize) {
571 args->count = max_blocksize;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400572 args->len = max_blocksize;
Peter Staubachf34b95682007-05-09 02:34:48 -0700573 }
Chuck Leverdae9a6c2021-09-30 17:06:21 -0400574 if (!xdr_stream_subsegment(xdr, &args->payload, args->count))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400575 return false;
Chuck Leverc43b2f22020-10-22 11:14:55 -0400576
Chuck Leverc44b31c2021-10-12 11:57:28 -0400577 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Chuck Leverc44b31c2021-10-12 11:57:28 -0400580bool
Chuck Lever16c66362021-10-12 11:57:22 -0400581nfs3svc_decode_createargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200583 struct nfsd3_createargs *args = rqstp->rq_argp;
584
Chuck Lever6b3a1192020-10-20 15:56:11 -0400585 if (!svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400586 return false;
Chuck Lever6b3a1192020-10-20 15:56:11 -0400587 if (xdr_stream_decode_u32(xdr, &args->createmode) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400588 return false;
Chuck Lever6b3a1192020-10-20 15:56:11 -0400589 switch (args->createmode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 case NFS3_CREATE_UNCHECKED:
591 case NFS3_CREATE_GUARDED:
Chuck Lever6b3a1192020-10-20 15:56:11 -0400592 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 case NFS3_CREATE_EXCLUSIVE:
Chuck Lever6b3a1192020-10-20 15:56:11 -0400594 args->verf = xdr_inline_decode(xdr, NFS3_CREATEVERFSIZE);
595 if (!args->verf)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400596 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 default:
Chuck Leverc44b31c2021-10-12 11:57:28 -0400599 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Chuck Leverc44b31c2021-10-12 11:57:28 -0400601 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
Christoph Hellwig026fec72017-05-08 19:01:48 +0200603
Chuck Leverc44b31c2021-10-12 11:57:28 -0400604bool
Chuck Lever16c66362021-10-12 11:57:22 -0400605nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200607 struct nfsd3_createargs *args = rqstp->rq_argp;
608
Chuck Lever83374c22020-10-20 17:02:16 -0400609 return svcxdr_decode_diropargs3(xdr, &args->fh,
610 &args->name, &args->len) &&
611 svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Chuck Leverc44b31c2021-10-12 11:57:28 -0400614bool
Chuck Lever16c66362021-10-12 11:57:22 -0400615nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200617 struct nfsd3_symlinkargs *args = rqstp->rq_argp;
Chuck Leverda392012020-10-20 16:01:16 -0400618 struct kvec *head = rqstp->rq_arg.head;
619 struct kvec *tail = rqstp->rq_arg.tail;
620 size_t remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Chuck Leverda392012020-10-20 16:01:16 -0400622 if (!svcxdr_decode_diropargs3(xdr, &args->ffh, &args->fname, &args->flen))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400623 return false;
Chuck Leverda392012020-10-20 16:01:16 -0400624 if (!svcxdr_decode_sattr3(rqstp, xdr, &args->attrs))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400625 return false;
Chuck Leverda392012020-10-20 16:01:16 -0400626 if (xdr_stream_decode_u32(xdr, &args->tlen) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400627 return false;
Chuck Leverda392012020-10-20 16:01:16 -0400628
629 /* request sanity */
630 remaining = head->iov_len + rqstp->rq_arg.page_len + tail->iov_len;
631 remaining -= xdr_stream_pos(xdr);
632 if (remaining < xdr_align_size(args->tlen))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400633 return false;
Chuck Leverda392012020-10-20 16:01:16 -0400634
635 args->first.iov_base = xdr->p;
636 args->first.iov_len = head->iov_len - xdr_stream_pos(xdr);
637
Chuck Leverc44b31c2021-10-12 11:57:28 -0400638 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Chuck Leverc44b31c2021-10-12 11:57:28 -0400641bool
Chuck Lever16c66362021-10-12 11:57:22 -0400642nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200644 struct nfsd3_mknodargs *args = rqstp->rq_argp;
645
Chuck Leverf8a38e22020-10-20 17:04:03 -0400646 if (!svcxdr_decode_diropargs3(xdr, &args->fh, &args->name, &args->len))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400647 return false;
Chuck Leverf8a38e22020-10-20 17:04:03 -0400648 if (xdr_stream_decode_u32(xdr, &args->ftype) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400649 return false;
Chuck Leverf8a38e22020-10-20 17:04:03 -0400650 switch (args->ftype) {
651 case NF3CHR:
652 case NF3BLK:
653 return svcxdr_decode_devicedata3(rqstp, xdr, args);
654 case NF3SOCK:
655 case NF3FIFO:
656 return svcxdr_decode_sattr3(rqstp, xdr, &args->attrs);
657 case NF3REG:
658 case NF3DIR:
659 case NF3LNK:
660 /* Valid XDR but illegal file types */
661 break;
662 default:
Chuck Leverc44b31c2021-10-12 11:57:28 -0400663 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Chuck Leverc44b31c2021-10-12 11:57:28 -0400666 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Chuck Leverc44b31c2021-10-12 11:57:28 -0400669bool
Chuck Lever16c66362021-10-12 11:57:22 -0400670nfs3svc_decode_renameargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200672 struct nfsd3_renameargs *args = rqstp->rq_argp;
673
Chuck Leverd181e0a2020-10-20 15:44:12 -0400674 return svcxdr_decode_diropargs3(xdr, &args->ffh,
675 &args->fname, &args->flen) &&
676 svcxdr_decode_diropargs3(xdr, &args->tfh,
677 &args->tname, &args->tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Chuck Leverc44b31c2021-10-12 11:57:28 -0400680bool
Chuck Lever16c66362021-10-12 11:57:22 -0400681nfs3svc_decode_linkargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200683 struct nfsd3_linkargs *args = rqstp->rq_argp;
684
Chuck Leverefaa1e72020-10-19 13:26:32 -0400685 return svcxdr_decode_nfs_fh3(xdr, &args->ffh) &&
686 svcxdr_decode_diropargs3(xdr, &args->tfh,
687 &args->tname, &args->tlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Chuck Leverc44b31c2021-10-12 11:57:28 -0400690bool
Chuck Lever16c66362021-10-12 11:57:22 -0400691nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200693 struct nfsd3_readdirargs *args = rqstp->rq_argp;
NeilBrownf875a792019-03-07 09:49:46 +1100694
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400695 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400696 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400697 if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400698 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400699 args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
700 if (!args->verf)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400701 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400702 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400703 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Chuck Leverc44b31c2021-10-12 11:57:28 -0400705 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Chuck Leverc44b31c2021-10-12 11:57:28 -0400708bool
Chuck Lever16c66362021-10-12 11:57:22 -0400709nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200711 struct nfsd3_readdirargs *args = rqstp->rq_argp;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400712 u32 dircount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400714 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400715 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400716 if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400717 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400718 args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
719 if (!args->verf)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400720 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400721 /* dircount is ignored */
722 if (xdr_stream_decode_u32(xdr, &dircount) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400723 return false;
Chuck Lever9cedc2e2020-10-19 13:23:52 -0400724 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400725 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Chuck Leverc44b31c2021-10-12 11:57:28 -0400727 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Chuck Leverc44b31c2021-10-12 11:57:28 -0400730bool
Chuck Lever16c66362021-10-12 11:57:22 -0400731nfs3svc_decode_commitargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200733 struct nfsd3_commitargs *args = rqstp->rq_argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Chuck Leverc8d26a02020-10-20 14:41:56 -0400735 if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
Chuck Leverc44b31c2021-10-12 11:57:28 -0400736 return false;
Chuck Leverc8d26a02020-10-20 14:41:56 -0400737 if (xdr_stream_decode_u64(xdr, &args->offset) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400738 return false;
Chuck Leverc8d26a02020-10-20 14:41:56 -0400739 if (xdr_stream_decode_u32(xdr, &args->count) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -0400740 return false;
Chuck Leverc8d26a02020-10-20 14:41:56 -0400741
Chuck Leverc44b31c2021-10-12 11:57:28 -0400742 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/*
746 * XDR encode functions
747 */
Chuck Levercc028a12020-10-02 15:52:44 -0400748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749/* GETATTR */
Chuck Lever130e2052021-10-13 10:41:13 -0400750bool
Chuck Leverfda49442021-10-13 10:41:06 -0400751nfs3svc_encode_getattrres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200753 struct nfsd3_attrstat *resp = rqstp->rq_resp;
754
Chuck Lever2c42f802020-10-21 11:58:41 -0400755 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400756 return false;
Chuck Lever2c42f802020-10-21 11:58:41 -0400757 switch (resp->status) {
758 case nfs_ok:
759 lease_get_mtime(d_inode(resp->fh.fh_dentry), &resp->stat.mtime);
760 if (!svcxdr_encode_fattr3(rqstp, xdr, &resp->fh, &resp->stat))
Chuck Lever130e2052021-10-13 10:41:13 -0400761 return false;
Chuck Lever2c42f802020-10-21 11:58:41 -0400762 break;
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400763 }
Chuck Lever2c42f802020-10-21 11:58:41 -0400764
Chuck Lever130e2052021-10-13 10:41:13 -0400765 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/* SETATTR, REMOVE, RMDIR */
Chuck Lever130e2052021-10-13 10:41:13 -0400769bool
Chuck Leverfda49442021-10-13 10:41:06 -0400770nfs3svc_encode_wccstat(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200772 struct nfsd3_attrstat *resp = rqstp->rq_resp;
773
Chuck Lever70f8e832020-10-22 15:12:38 -0400774 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
775 svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778/* LOOKUP */
Chuck Lever130e2052021-10-13 10:41:13 -0400779bool
Chuck Leverfda49442021-10-13 10:41:06 -0400780nfs3svc_encode_lookupres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200782 struct nfsd3_diropres *resp = rqstp->rq_resp;
783
Chuck Lever5cf35332020-10-22 14:46:58 -0400784 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400785 return false;
Chuck Lever5cf35332020-10-22 14:46:58 -0400786 switch (resp->status) {
787 case nfs_ok:
788 if (!svcxdr_encode_nfs_fh3(xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400789 return false;
Chuck Lever5cf35332020-10-22 14:46:58 -0400790 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400791 return false;
Chuck Lever5cf35332020-10-22 14:46:58 -0400792 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->dirfh))
Chuck Lever130e2052021-10-13 10:41:13 -0400793 return false;
Chuck Lever5cf35332020-10-22 14:46:58 -0400794 break;
795 default:
796 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->dirfh))
Chuck Lever130e2052021-10-13 10:41:13 -0400797 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
Chuck Lever5cf35332020-10-22 14:46:58 -0400799
Chuck Lever130e2052021-10-13 10:41:13 -0400800 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803/* ACCESS */
Chuck Lever130e2052021-10-13 10:41:13 -0400804bool
Chuck Leverfda49442021-10-13 10:41:06 -0400805nfs3svc_encode_accessres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200807 struct nfsd3_accessres *resp = rqstp->rq_resp;
808
Chuck Lever907c3822020-10-22 13:56:58 -0400809 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400810 return false;
Chuck Lever907c3822020-10-22 13:56:58 -0400811 switch (resp->status) {
812 case nfs_ok:
813 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400814 return false;
Chuck Lever907c3822020-10-22 13:56:58 -0400815 if (xdr_stream_encode_u32(xdr, resp->access) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400816 return false;
Chuck Lever907c3822020-10-22 13:56:58 -0400817 break;
818 default:
819 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400820 return false;
Chuck Lever907c3822020-10-22 13:56:58 -0400821 }
822
Chuck Lever130e2052021-10-13 10:41:13 -0400823 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/* READLINK */
Chuck Lever130e2052021-10-13 10:41:13 -0400827bool
Chuck Leverfda49442021-10-13 10:41:06 -0400828nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200830 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
Chuck Lever76e54922020-11-05 10:24:19 -0500831 struct kvec *head = rqstp->rq_res.head;
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200832
Chuck Lever9a9c8922020-10-22 15:18:40 -0400833 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400834 return false;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400835 switch (resp->status) {
836 case nfs_ok:
837 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400838 return false;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400839 if (xdr_stream_encode_u32(xdr, resp->len) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400840 return false;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400841 xdr_write_pages(xdr, resp->pages, 0, resp->len);
842 if (svc_encode_result_payload(rqstp, head->iov_len, resp->len) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400843 return false;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400844 break;
845 default:
846 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400847 return false;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400848 }
849
Chuck Lever130e2052021-10-13 10:41:13 -0400850 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/* READ */
Chuck Lever130e2052021-10-13 10:41:13 -0400854bool
Chuck Leverfda49442021-10-13 10:41:06 -0400855nfs3svc_encode_readres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200857 struct nfsd3_readres *resp = rqstp->rq_resp;
Chuck Lever76e54922020-11-05 10:24:19 -0500858 struct kvec *head = rqstp->rq_res.head;
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200859
Chuck Levercc9bcda2020-10-22 15:23:50 -0400860 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400861 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400862 switch (resp->status) {
863 case nfs_ok:
864 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400865 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400866 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400867 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400868 if (xdr_stream_encode_bool(xdr, resp->eof) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400869 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400870 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400871 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400872 xdr_write_pages(xdr, resp->pages, rqstp->rq_res.page_base,
873 resp->count);
874 if (svc_encode_result_payload(rqstp, head->iov_len, resp->count) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400875 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400876 break;
877 default:
878 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400879 return false;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400880 }
881
Chuck Lever130e2052021-10-13 10:41:13 -0400882 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/* WRITE */
Chuck Lever130e2052021-10-13 10:41:13 -0400886bool
Chuck Leverfda49442021-10-13 10:41:06 -0400887nfs3svc_encode_writeres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200889 struct nfsd3_writeres *resp = rqstp->rq_resp;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300890
Chuck Leverecb7a082020-10-22 15:26:31 -0400891 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400892 return false;
Chuck Leverecb7a082020-10-22 15:26:31 -0400893 switch (resp->status) {
894 case nfs_ok:
895 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400896 return false;
Chuck Leverecb7a082020-10-22 15:26:31 -0400897 if (xdr_stream_encode_u32(xdr, resp->count) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400898 return false;
Chuck Leverecb7a082020-10-22 15:26:31 -0400899 if (xdr_stream_encode_u32(xdr, resp->committed) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400900 return false;
Chuck Leverecb7a082020-10-22 15:26:31 -0400901 if (!svcxdr_encode_writeverf3(xdr, resp->verf))
Chuck Lever130e2052021-10-13 10:41:13 -0400902 return false;
Chuck Leverecb7a082020-10-22 15:26:31 -0400903 break;
904 default:
905 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400906 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Chuck Leverecb7a082020-10-22 15:26:31 -0400908
Chuck Lever130e2052021-10-13 10:41:13 -0400909 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/* CREATE, MKDIR, SYMLINK, MKNOD */
Chuck Lever130e2052021-10-13 10:41:13 -0400913bool
Chuck Leverfda49442021-10-13 10:41:06 -0400914nfs3svc_encode_createres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200916 struct nfsd3_diropres *resp = rqstp->rq_resp;
917
Chuck Lever78315b32020-10-22 15:27:23 -0400918 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400919 return false;
Chuck Lever78315b32020-10-22 15:27:23 -0400920 switch (resp->status) {
921 case nfs_ok:
922 if (!svcxdr_encode_post_op_fh3(xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400923 return false;
Chuck Lever78315b32020-10-22 15:27:23 -0400924 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400925 return false;
Chuck Lever78315b32020-10-22 15:27:23 -0400926 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->dirfh))
Chuck Lever130e2052021-10-13 10:41:13 -0400927 return false;
Chuck Lever78315b32020-10-22 15:27:23 -0400928 break;
929 default:
930 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->dirfh))
Chuck Lever130e2052021-10-13 10:41:13 -0400931 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Chuck Lever78315b32020-10-22 15:27:23 -0400933
Chuck Lever130e2052021-10-13 10:41:13 -0400934 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937/* RENAME */
Chuck Lever130e2052021-10-13 10:41:13 -0400938bool
Chuck Leverfda49442021-10-13 10:41:06 -0400939nfs3svc_encode_renameres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200941 struct nfsd3_renameres *resp = rqstp->rq_resp;
942
Chuck Lever89d79e92020-10-22 15:33:05 -0400943 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
944 svcxdr_encode_wcc_data(rqstp, xdr, &resp->ffh) &&
945 svcxdr_encode_wcc_data(rqstp, xdr, &resp->tfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948/* LINK */
Chuck Lever130e2052021-10-13 10:41:13 -0400949bool
Chuck Leverfda49442021-10-13 10:41:06 -0400950nfs3svc_encode_linkres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200952 struct nfsd3_linkres *resp = rqstp->rq_resp;
953
Chuck Lever4d743802020-10-22 15:08:29 -0400954 return svcxdr_encode_nfsstat3(xdr, resp->status) &&
955 svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh) &&
956 svcxdr_encode_wcc_data(rqstp, xdr, &resp->tfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959/* READDIR */
Chuck Lever130e2052021-10-13 10:41:13 -0400960bool
Chuck Leverfda49442021-10-13 10:41:06 -0400961nfs3svc_encode_readdirres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200963 struct nfsd3_readdirres *resp = rqstp->rq_resp;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400964 struct xdr_buf *dirlist = &resp->dirlist;
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200965
Chuck Levere4ccfe32020-10-22 19:31:48 -0400966 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -0400967 return false;
Chuck Levere4ccfe32020-10-22 19:31:48 -0400968 switch (resp->status) {
969 case nfs_ok:
970 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400971 return false;
Chuck Levere4ccfe32020-10-22 19:31:48 -0400972 if (!svcxdr_encode_cookieverf3(xdr, resp->verf))
Chuck Lever130e2052021-10-13 10:41:13 -0400973 return false;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400974 xdr_write_pages(xdr, dirlist->pages, 0, dirlist->len);
Chuck Levere4ccfe32020-10-22 19:31:48 -0400975 /* no more entries */
976 if (xdr_stream_encode_item_absent(xdr) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400977 return false;
Chuck Levere4ccfe32020-10-22 19:31:48 -0400978 if (xdr_stream_encode_bool(xdr, resp->common.err == nfserr_eof) < 0)
Chuck Lever130e2052021-10-13 10:41:13 -0400979 return false;
Chuck Levere4ccfe32020-10-22 19:31:48 -0400980 break;
981 default:
982 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -0400983 return false;
Chuck Levere4ccfe32020-10-22 19:31:48 -0400984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Chuck Lever130e2052021-10-13 10:41:13 -0400986 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Al Viroefe39652012-04-13 00:32:14 -0400989static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
NeilBrown43b0e7e2015-05-03 09:16:53 +1000991 const char *name, int namlen, u64 ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 struct svc_export *exp;
994 struct dentry *dparent, *dchild;
Al Viroefe39652012-04-13 00:32:14 -0400995 __be32 rv = nfserr_noent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 dparent = cd->fh.fh_dentry;
998 exp = cd->fh.fh_export;
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (isdotent(name, namlen)) {
1001 if (namlen == 2) {
1002 dchild = dget_parent(dparent);
J. Bruce Fields51b2ee72021-01-11 16:01:29 -05001003 /*
1004 * Don't return filehandle for ".." if we're at
1005 * the filesystem or export root:
1006 */
Al Viroefe39652012-04-13 00:32:14 -04001007 if (dchild == dparent)
1008 goto out;
J. Bruce Fields51b2ee72021-01-11 16:01:29 -05001009 if (dparent == exp->ex_path.dentry)
1010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 } else
1012 dchild = dget(dparent);
1013 } else
Al Viro6c2d47982019-10-31 01:21:58 -04001014 dchild = lookup_positive_unlocked(name, dparent, namlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (IS_ERR(dchild))
Al Viroefe39652012-04-13 00:32:14 -04001016 return rv;
J. Bruce Fields8177e6d2009-09-04 14:13:09 -04001017 if (d_mountpoint(dchild))
1018 goto out;
NeilBrown43b0e7e2015-05-03 09:16:53 +10001019 if (dchild->d_inode->i_ino != ino)
1020 goto out;
Al Viroefe39652012-04-13 00:32:14 -04001021 rv = fh_compose(fhp, exp, dchild, &cd->fh);
J. Bruce Fields8177e6d2009-09-04 14:13:09 -04001022out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 dput(dchild);
1024 return rv;
1025}
1026
Chuck Levera161e6c2020-11-10 09:57:14 -05001027/**
1028 * nfs3svc_encode_cookie3 - Encode a directory offset cookie
1029 * @resp: readdir result context
1030 * @offset: offset cookie to encode
1031 *
Chuck Lever7f87fc22020-10-22 19:46:58 -04001032 * The buffer space for the offset cookie has already been reserved
1033 * by svcxdr_encode_entry3_common().
Chuck Levera161e6c2020-11-10 09:57:14 -05001034 */
1035void nfs3svc_encode_cookie3(struct nfsd3_readdirres *resp, u64 offset)
1036{
Chuck Lever7f87fc22020-10-22 19:46:58 -04001037 __be64 cookie = cpu_to_be64(offset);
Chuck Levera161e6c2020-11-10 09:57:14 -05001038
Chuck Lever7f87fc22020-10-22 19:46:58 -04001039 if (!resp->cookie_offset)
1040 return;
1041 write_bytes_to_xdr_buf(&resp->dirlist, resp->cookie_offset, &cookie,
1042 sizeof(cookie));
1043 resp->cookie_offset = 0;
Chuck Levera161e6c2020-11-10 09:57:14 -05001044}
1045
Chuck Lever8b704492020-11-06 13:08:45 -05001046static bool
Chuck Lever7f87fc22020-10-22 19:46:58 -04001047svcxdr_encode_entry3_common(struct nfsd3_readdirres *resp, const char *name,
1048 int namlen, loff_t offset, u64 ino)
1049{
1050 struct xdr_buf *dirlist = &resp->dirlist;
1051 struct xdr_stream *xdr = &resp->xdr;
1052
1053 if (xdr_stream_encode_item_present(xdr) < 0)
1054 return false;
1055 /* fileid */
1056 if (xdr_stream_encode_u64(xdr, ino) < 0)
1057 return false;
1058 /* name */
1059 if (xdr_stream_encode_opaque(xdr, name, min(namlen, NFS3_MAXNAMLEN)) < 0)
1060 return false;
1061 /* cookie */
1062 resp->cookie_offset = dirlist->len;
Chuck Leverc306d732022-01-25 15:57:45 -05001063 if (xdr_stream_encode_u64(xdr, OFFSET_MAX) < 0)
Chuck Lever7f87fc22020-10-22 19:46:58 -04001064 return false;
1065
1066 return true;
1067}
1068
1069/**
1070 * nfs3svc_encode_entry3 - encode one NFSv3 READDIR entry
1071 * @data: directory context
1072 * @name: name of the object to be encoded
1073 * @namlen: length of that name, in bytes
1074 * @offset: the offset of the previous entry
1075 * @ino: the fileid of this entry
1076 * @d_type: unused
1077 *
1078 * Return values:
1079 * %0: Entry was successfully encoded.
1080 * %-EINVAL: An encoding problem occured, secondary status code in resp->common.err
1081 *
1082 * On exit, the following fields are updated:
1083 * - resp->xdr
1084 * - resp->common.err
1085 * - resp->cookie_offset
1086 */
1087int nfs3svc_encode_entry3(void *data, const char *name, int namlen,
1088 loff_t offset, u64 ino, unsigned int d_type)
1089{
1090 struct readdir_cd *ccd = data;
1091 struct nfsd3_readdirres *resp = container_of(ccd,
1092 struct nfsd3_readdirres,
1093 common);
1094 unsigned int starting_length = resp->dirlist.len;
1095
1096 /* The offset cookie for the previous entry */
1097 nfs3svc_encode_cookie3(resp, offset);
1098
1099 if (!svcxdr_encode_entry3_common(resp, name, namlen, offset, ino))
1100 goto out_toosmall;
1101
1102 xdr_commit_encode(&resp->xdr);
1103 resp->common.err = nfs_ok;
1104 return 0;
1105
1106out_toosmall:
1107 resp->cookie_offset = 0;
1108 resp->common.err = nfserr_toosmall;
1109 resp->dirlist.len = starting_length;
1110 return -EINVAL;
1111}
1112
1113static bool
1114svcxdr_encode_entry3_plus(struct nfsd3_readdirres *resp, const char *name,
1115 int namlen, u64 ino)
1116{
1117 struct xdr_stream *xdr = &resp->xdr;
1118 struct svc_fh *fhp = &resp->scratch;
1119 bool result;
1120
1121 result = false;
1122 fh_init(fhp, NFS3_FHSIZE);
1123 if (compose_entry_fh(resp, fhp, name, namlen, ino) != nfs_ok)
1124 goto out_noattrs;
1125
1126 if (!svcxdr_encode_post_op_attr(resp->rqstp, xdr, fhp))
1127 goto out;
1128 if (!svcxdr_encode_post_op_fh3(xdr, fhp))
1129 goto out;
1130 result = true;
1131
1132out:
1133 fh_put(fhp);
1134 return result;
1135
1136out_noattrs:
1137 if (xdr_stream_encode_item_absent(xdr) < 0)
1138 return false;
1139 if (xdr_stream_encode_item_absent(xdr) < 0)
1140 return false;
1141 return true;
1142}
1143
1144/**
1145 * nfs3svc_encode_entryplus3 - encode one NFSv3 READDIRPLUS entry
1146 * @data: directory context
1147 * @name: name of the object to be encoded
1148 * @namlen: length of that name, in bytes
1149 * @offset: the offset of the previous entry
1150 * @ino: the fileid of this entry
1151 * @d_type: unused
1152 *
1153 * Return values:
1154 * %0: Entry was successfully encoded.
1155 * %-EINVAL: An encoding problem occured, secondary status code in resp->common.err
1156 *
1157 * On exit, the following fields are updated:
1158 * - resp->xdr
1159 * - resp->common.err
1160 * - resp->cookie_offset
1161 */
1162int nfs3svc_encode_entryplus3(void *data, const char *name, int namlen,
1163 loff_t offset, u64 ino, unsigned int d_type)
1164{
1165 struct readdir_cd *ccd = data;
1166 struct nfsd3_readdirres *resp = container_of(ccd,
1167 struct nfsd3_readdirres,
1168 common);
1169 unsigned int starting_length = resp->dirlist.len;
1170
1171 /* The offset cookie for the previous entry */
1172 nfs3svc_encode_cookie3(resp, offset);
1173
1174 if (!svcxdr_encode_entry3_common(resp, name, namlen, offset, ino))
1175 goto out_toosmall;
1176 if (!svcxdr_encode_entry3_plus(resp, name, namlen, ino))
1177 goto out_toosmall;
1178
1179 xdr_commit_encode(&resp->xdr);
1180 resp->common.err = nfs_ok;
1181 return 0;
1182
1183out_toosmall:
1184 resp->cookie_offset = 0;
1185 resp->common.err = nfserr_toosmall;
1186 resp->dirlist.len = starting_length;
1187 return -EINVAL;
1188}
1189
1190static bool
Chuck Lever8b704492020-11-06 13:08:45 -05001191svcxdr_encode_fsstat3resok(struct xdr_stream *xdr,
1192 const struct nfsd3_fsstatres *resp)
1193{
1194 const struct kstatfs *s = &resp->stats;
1195 u64 bs = s->f_bsize;
1196 __be32 *p;
1197
1198 p = xdr_reserve_space(xdr, XDR_UNIT * 13);
1199 if (!p)
1200 return false;
1201 p = xdr_encode_hyper(p, bs * s->f_blocks); /* total bytes */
1202 p = xdr_encode_hyper(p, bs * s->f_bfree); /* free bytes */
1203 p = xdr_encode_hyper(p, bs * s->f_bavail); /* user available bytes */
1204 p = xdr_encode_hyper(p, s->f_files); /* total inodes */
1205 p = xdr_encode_hyper(p, s->f_ffree); /* free inodes */
1206 p = xdr_encode_hyper(p, s->f_ffree); /* user available inodes */
1207 *p = cpu_to_be32(resp->invarsec); /* mean unchanged time */
1208
1209 return true;
1210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212/* FSSTAT */
Chuck Lever130e2052021-10-13 10:41:13 -04001213bool
Chuck Leverfda49442021-10-13 10:41:06 -04001214nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001216 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Chuck Lever8b704492020-11-06 13:08:45 -05001218 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -04001219 return false;
Chuck Lever8b704492020-11-06 13:08:45 -05001220 switch (resp->status) {
1221 case nfs_ok:
1222 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001223 return false;
Chuck Lever8b704492020-11-06 13:08:45 -05001224 if (!svcxdr_encode_fsstat3resok(xdr, resp))
Chuck Lever130e2052021-10-13 10:41:13 -04001225 return false;
Chuck Lever8b704492020-11-06 13:08:45 -05001226 break;
1227 default:
1228 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001229 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Chuck Lever8b704492020-11-06 13:08:45 -05001231
Chuck Lever130e2052021-10-13 10:41:13 -04001232 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
Chuck Lever0a139d12020-10-22 13:42:13 -04001235static bool
1236svcxdr_encode_fsinfo3resok(struct xdr_stream *xdr,
1237 const struct nfsd3_fsinfores *resp)
1238{
1239 __be32 *p;
1240
1241 p = xdr_reserve_space(xdr, XDR_UNIT * 12);
1242 if (!p)
1243 return false;
1244 *p++ = cpu_to_be32(resp->f_rtmax);
1245 *p++ = cpu_to_be32(resp->f_rtpref);
1246 *p++ = cpu_to_be32(resp->f_rtmult);
1247 *p++ = cpu_to_be32(resp->f_wtmax);
1248 *p++ = cpu_to_be32(resp->f_wtpref);
1249 *p++ = cpu_to_be32(resp->f_wtmult);
1250 *p++ = cpu_to_be32(resp->f_dtpref);
1251 p = xdr_encode_hyper(p, resp->f_maxfilesize);
1252 p = encode_nfstime3(p, &nfs3svc_time_delta);
1253 *p = cpu_to_be32(resp->f_properties);
1254
1255 return true;
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258/* FSINFO */
Chuck Lever130e2052021-10-13 10:41:13 -04001259bool
Chuck Leverfda49442021-10-13 10:41:06 -04001260nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001262 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
1263
Chuck Lever0a139d12020-10-22 13:42:13 -04001264 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -04001265 return false;
Chuck Lever0a139d12020-10-22 13:42:13 -04001266 switch (resp->status) {
1267 case nfs_ok:
1268 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001269 return false;
Chuck Lever0a139d12020-10-22 13:42:13 -04001270 if (!svcxdr_encode_fsinfo3resok(xdr, resp))
Chuck Lever130e2052021-10-13 10:41:13 -04001271 return false;
Chuck Lever0a139d12020-10-22 13:42:13 -04001272 break;
1273 default:
1274 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001275 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Chuck Lever130e2052021-10-13 10:41:13 -04001278 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Chuck Leverded04a52020-11-06 13:15:09 -05001281static bool
1282svcxdr_encode_pathconf3resok(struct xdr_stream *xdr,
1283 const struct nfsd3_pathconfres *resp)
1284{
1285 __be32 *p;
1286
1287 p = xdr_reserve_space(xdr, XDR_UNIT * 6);
1288 if (!p)
1289 return false;
1290 *p++ = cpu_to_be32(resp->p_link_max);
1291 *p++ = cpu_to_be32(resp->p_name_max);
1292 p = xdr_encode_bool(p, resp->p_no_trunc);
1293 p = xdr_encode_bool(p, resp->p_chown_restricted);
1294 p = xdr_encode_bool(p, resp->p_case_insensitive);
1295 xdr_encode_bool(p, resp->p_case_preserving);
1296
1297 return true;
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300/* PATHCONF */
Chuck Lever130e2052021-10-13 10:41:13 -04001301bool
Chuck Leverfda49442021-10-13 10:41:06 -04001302nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001304 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
1305
Chuck Leverded04a52020-11-06 13:15:09 -05001306 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -04001307 return false;
Chuck Leverded04a52020-11-06 13:15:09 -05001308 switch (resp->status) {
1309 case nfs_ok:
1310 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001311 return false;
Chuck Leverded04a52020-11-06 13:15:09 -05001312 if (!svcxdr_encode_pathconf3resok(xdr, resp))
Chuck Lever130e2052021-10-13 10:41:13 -04001313 return false;
Chuck Leverded04a52020-11-06 13:15:09 -05001314 break;
1315 default:
1316 if (!svcxdr_encode_post_op_attr(rqstp, xdr, &nfs3svc_null_fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001317 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319
Chuck Lever130e2052021-10-13 10:41:13 -04001320 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323/* COMMIT */
Chuck Lever130e2052021-10-13 10:41:13 -04001324bool
Chuck Leverfda49442021-10-13 10:41:06 -04001325nfs3svc_encode_commitres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02001327 struct nfsd3_commitres *resp = rqstp->rq_resp;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +03001328
Chuck Lever5ef28262020-10-22 15:35:46 -04001329 if (!svcxdr_encode_nfsstat3(xdr, resp->status))
Chuck Lever130e2052021-10-13 10:41:13 -04001330 return false;
Chuck Lever5ef28262020-10-22 15:35:46 -04001331 switch (resp->status) {
1332 case nfs_ok:
1333 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001334 return false;
Chuck Lever5ef28262020-10-22 15:35:46 -04001335 if (!svcxdr_encode_writeverf3(xdr, resp->verf))
Chuck Lever130e2052021-10-13 10:41:13 -04001336 return false;
Chuck Lever5ef28262020-10-22 15:35:46 -04001337 break;
1338 default:
1339 if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
Chuck Lever130e2052021-10-13 10:41:13 -04001340 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Chuck Lever5ef28262020-10-22 15:35:46 -04001342
Chuck Lever130e2052021-10-13 10:41:13 -04001343 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
1346/*
1347 * XDR release functions
1348 */
Christoph Hellwig85374882017-05-08 18:48:24 +02001349void
1350nfs3svc_release_fhandle(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Christoph Hellwig85374882017-05-08 18:48:24 +02001352 struct nfsd3_attrstat *resp = rqstp->rq_resp;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 fh_put(&resp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Christoph Hellwig85374882017-05-08 18:48:24 +02001357void
1358nfs3svc_release_fhandle2(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Christoph Hellwig85374882017-05-08 18:48:24 +02001360 struct nfsd3_fhandle_pair *resp = rqstp->rq_resp;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 fh_put(&resp->fh1);
1363 fh_put(&resp->fh2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}