blob: 899de438e52901d1509ec270288e8ca12ef49638 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Server-side XDR for NFSv4
3 *
4 * Copyright (c) 2002 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <andros@umich.edu>
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
Christoph Hellwig96bcad52015-06-18 16:45:01 +020036#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/namei.h>
Boaz Harrosh341eb182009-12-03 20:29:12 +020039#include <linux/statfs.h>
Andy Adamson0733d212009-04-03 08:28:01 +030040#include <linux/utsname.h>
Bryan Schumaker17456802011-07-13 10:50:48 -040041#include <linux/pagemap.h>
J. Bruce Fields4796f452007-07-17 04:04:51 -070042#include <linux/sunrpc/svcauth_gss.h>
Olga Kornievskaia84e1b212019-09-13 14:00:57 -040043#include <linux/sunrpc/addr.h>
Frank van der Linden23e50fe2020-06-23 22:39:26 +000044#include <linux/xattr.h>
45#include <uapi/linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020046
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050047#include "idmap.h"
48#include "acl.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020049#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050050#include "vfs.h"
Bryan Schumaker17456802011-07-13 10:50:48 -040051#include "state.h"
J. Bruce Fields10910062011-01-24 12:11:02 -050052#include "cache.h"
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +030053#include "netns.h"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020054#include "pnfs.h"
Jeff Layton5c4583b2019-08-18 14:18:54 -040055#include "filecache.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050056
Chuck Lever08281342020-11-21 11:36:42 -050057#include "trace.h"
58
David Quigley18032ca2013-05-02 13:19:10 -040059#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
60#include <linux/security.h>
61#endif
62
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define NFSDDBG_FACILITY NFSDDBG_XDR
65
J. Bruce Fields5cf23db2017-01-11 20:40:36 -050066const u32 nfsd_suppattrs[3][3] = {
J. Bruce Fields916d2d82016-10-18 14:18:40 -040067 {NFSD4_SUPPORTED_ATTRS_WORD0,
68 NFSD4_SUPPORTED_ATTRS_WORD1,
69 NFSD4_SUPPORTED_ATTRS_WORD2},
70
71 {NFSD4_1_SUPPORTED_ATTRS_WORD0,
72 NFSD4_1_SUPPORTED_ATTRS_WORD1,
73 NFSD4_1_SUPPORTED_ATTRS_WORD2},
74
75 {NFSD4_1_SUPPORTED_ATTRS_WORD0,
76 NFSD4_1_SUPPORTED_ATTRS_WORD1,
77 NFSD4_2_SUPPORTED_ATTRS_WORD2},
78};
79
J.Bruce Fields42ca0992006-10-04 02:16:20 -070080/*
81 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
82 * directory in order to indicate to the client that a filesystem boundary is present
83 * We use a fixed fsid for a referral
84 */
85#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
86#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
87
Al Virob37ad282006-10-19 23:28:59 -070088static __be32
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050089check_filename(char *str, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 int i;
92
93 if (len == 0)
94 return nfserr_inval;
Chuck Lever000dfa12020-11-03 13:24:10 -050095 if (len > NFS4_MAXNAMLEN)
96 return nfserr_nametoolong;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (isdotent(str, len))
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050098 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 for (i = 0; i < len; i++)
100 if (str[i] == '/')
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500101 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 0;
103}
104
Andy Adamson60adfc52009-04-03 08:28:50 +0300105static int zero_clientid(clientid_t *clid)
106{
107 return (clid->cl_boot == 0) && (clid->cl_id == 0);
108}
109
Christoph Hellwig2d8498d2013-11-20 00:24:11 -0800110/**
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400111 * svcxdr_tmpalloc - allocate memory to be freed after compound processing
J. Bruce Fieldsce043ac2014-06-24 16:51:12 -0400112 * @argp: NFSv4 compound argument structure
Trond Myklebusted992752019-08-18 14:18:59 -0400113 * @len: length of buffer to allocate
Christoph Hellwig2d8498d2013-11-20 00:24:11 -0800114 *
Trond Myklebusted992752019-08-18 14:18:59 -0400115 * Allocates a buffer of size @len to be freed when processing the compound
116 * operation described in @argp finishes.
Christoph Hellwig2d8498d2013-11-20 00:24:11 -0800117 */
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400118static void *
119svcxdr_tmpalloc(struct nfsd4_compoundargs *argp, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400121 struct svcxdr_tmpbuf *tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400123 tb = kmalloc(sizeof(*tb) + len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!tb)
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400125 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 tb->next = argp->to_free;
127 argp->to_free = tb;
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400128 return tb->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
J. Bruce Fields29c353b2014-06-24 17:06:51 -0400131/*
132 * For xdr strings that need to be passed to other kernel api's
133 * as null-terminated strings.
134 *
135 * Note null-terminating in place usually isn't safe since the
136 * buffer might end on a page boundary.
137 */
138static char *
139svcxdr_dupstr(struct nfsd4_compoundargs *argp, void *buf, u32 len)
140{
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -0400141 char *p = svcxdr_tmpalloc(argp, len + 1);
J. Bruce Fields29c353b2014-06-24 17:06:51 -0400142
143 if (!p)
144 return NULL;
145 memcpy(p, buf, len);
146 p[len] = '\0';
J. Bruce Fields29c353b2014-06-24 17:06:51 -0400147 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Chuck Lever7b723002020-12-18 12:28:58 -0500150static void *
151svcxdr_savemem(struct nfsd4_compoundargs *argp, __be32 *p, u32 len)
152{
153 __be32 *tmp;
154
155 /*
156 * The location of the decoded data item is stable,
157 * so @p is OK to use. This is the common case.
158 */
159 if (p != argp->xdr->scratch.iov_base)
160 return p;
161
162 tmp = svcxdr_tmpalloc(argp, len);
163 if (!tmp)
164 return NULL;
165 memcpy(tmp, p, len);
166 return tmp;
167}
168
Chuck Lever5dcbfab2020-11-04 11:41:55 -0500169/*
170 * NFSv4 basic data type decoders
171 */
172
Chuck Lever1a994402020-11-03 13:09:34 -0500173/*
174 * This helper handles variable-length opaques which belong to protocol
175 * elements that this implementation does not support.
176 */
177static __be32
178nfsd4_decode_ignored_string(struct nfsd4_compoundargs *argp, u32 maxlen)
179{
180 u32 len;
181
182 if (xdr_stream_decode_u32(argp->xdr, &len) < 0)
183 return nfserr_bad_xdr;
184 if (maxlen && len > maxlen)
185 return nfserr_bad_xdr;
186 if (!xdr_inline_decode(argp->xdr, len))
187 return nfserr_bad_xdr;
188
189 return nfs_ok;
190}
191
Chuck Lever5dcbfab2020-11-04 11:41:55 -0500192static __be32
193nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
194{
195 __be32 *p;
196 u32 len;
197
198 if (xdr_stream_decode_u32(argp->xdr, &len) < 0)
199 return nfserr_bad_xdr;
200 if (len == 0 || len > NFS4_OPAQUE_LIMIT)
201 return nfserr_bad_xdr;
202 p = xdr_inline_decode(argp->xdr, len);
203 if (!p)
204 return nfserr_bad_xdr;
Chuck Lever7b723002020-12-18 12:28:58 -0500205 o->data = svcxdr_savemem(argp, p, len);
Chuck Lever5dcbfab2020-11-04 11:41:55 -0500206 if (!o->data)
207 return nfserr_jukebox;
208 o->len = len;
Chuck Lever5dcbfab2020-11-04 11:41:55 -0500209
210 return nfs_ok;
211}
212
Christoph Hellwig4c94e132015-01-22 12:09:50 +0100213static __be32
Chuck Lever000dfa12020-11-03 13:24:10 -0500214nfsd4_decode_component4(struct nfsd4_compoundargs *argp, char **namp, u32 *lenp)
215{
216 __be32 *p, status;
217
218 if (xdr_stream_decode_u32(argp->xdr, lenp) < 0)
219 return nfserr_bad_xdr;
220 p = xdr_inline_decode(argp->xdr, *lenp);
221 if (!p)
222 return nfserr_bad_xdr;
223 status = check_filename((char *)p, *lenp);
224 if (status)
225 return status;
Chuck Lever7b723002020-12-18 12:28:58 -0500226 *namp = svcxdr_savemem(argp, p, *lenp);
Chuck Lever000dfa12020-11-03 13:24:10 -0500227 if (!*namp)
228 return nfserr_jukebox;
Chuck Lever000dfa12020-11-03 13:24:10 -0500229
230 return nfs_ok;
231}
232
233static __be32
Chuck Lever1c3eff72020-11-19 14:01:08 -0500234nfsd4_decode_nfstime4(struct nfsd4_compoundargs *argp, struct timespec64 *tv)
235{
236 __be32 *p;
237
238 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 3);
239 if (!p)
240 return nfserr_bad_xdr;
241 p = xdr_decode_hyper(p, &tv->tv_sec);
242 tv->tv_nsec = be32_to_cpup(p++);
243 if (tv->tv_nsec >= (u32)1000000000)
244 return nfserr_inval;
245 return nfs_ok;
246}
247
248static __be32
Chuck Lever796dd1c2020-11-16 17:34:01 -0500249nfsd4_decode_verifier4(struct nfsd4_compoundargs *argp, nfs4_verifier *verf)
250{
251 __be32 *p;
252
253 p = xdr_inline_decode(argp->xdr, NFS4_VERIFIER_SIZE);
254 if (!p)
255 return nfserr_bad_xdr;
256 memcpy(verf->data, p, sizeof(verf->data));
257 return nfs_ok;
258}
259
Chuck Leverd1c263a2020-11-03 12:56:05 -0500260/**
261 * nfsd4_decode_bitmap4 - Decode an NFSv4 bitmap4
262 * @argp: NFSv4 compound argument structure
263 * @bmval: pointer to an array of u32's to decode into
264 * @bmlen: size of the @bmval array
265 *
266 * The server needs to return nfs_ok rather than nfserr_bad_xdr when
267 * encountering bitmaps containing bits it does not recognize. This
268 * includes bits in bitmap words past WORDn, where WORDn is the last
269 * bitmap WORD the implementation currently supports. Thus we are
270 * careful here to simply ignore bits in bitmap words that this
271 * implementation has yet to support explicitly.
272 *
273 * Return values:
274 * %nfs_ok: @bmval populated successfully
275 * %nfserr_bad_xdr: the encoded bitmap was invalid
276 */
277static __be32
278nfsd4_decode_bitmap4(struct nfsd4_compoundargs *argp, u32 *bmval, u32 bmlen)
279{
Chuck Levercd2e9992021-12-13 10:20:45 -0500280 ssize_t status;
Chuck Leverd1c263a2020-11-03 12:56:05 -0500281
Chuck Levercd2e9992021-12-13 10:20:45 -0500282 status = xdr_stream_decode_uint32_array(argp->xdr, bmval, bmlen);
283 return status == -EBADMSG ? nfserr_bad_xdr : nfs_ok;
Chuck Leverd1c263a2020-11-03 12:56:05 -0500284}
285
Al Virob37ad282006-10-19 23:28:59 -0700286static __be32
Chuck Leverc941a962020-11-19 13:02:54 -0500287nfsd4_decode_nfsace4(struct nfsd4_compoundargs *argp, struct nfs4_ace *ace)
288{
289 __be32 *p, status;
290 u32 length;
291
292 if (xdr_stream_decode_u32(argp->xdr, &ace->type) < 0)
293 return nfserr_bad_xdr;
294 if (xdr_stream_decode_u32(argp->xdr, &ace->flag) < 0)
295 return nfserr_bad_xdr;
296 if (xdr_stream_decode_u32(argp->xdr, &ace->access_mask) < 0)
297 return nfserr_bad_xdr;
298
299 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
300 return nfserr_bad_xdr;
301 p = xdr_inline_decode(argp->xdr, length);
302 if (!p)
303 return nfserr_bad_xdr;
304 ace->whotype = nfs4_acl_get_whotype((char *)p, length);
305 if (ace->whotype != NFS4_ACL_WHO_NAMED)
306 status = nfs_ok;
307 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
308 status = nfsd_map_name_to_gid(argp->rqstp,
309 (char *)p, length, &ace->who_gid);
310 else
311 status = nfsd_map_name_to_uid(argp->rqstp,
312 (char *)p, length, &ace->who_uid);
313
314 return status;
315}
316
317/* A counted array of nfsace4's */
318static noinline __be32
319nfsd4_decode_acl(struct nfsd4_compoundargs *argp, struct nfs4_acl **acl)
320{
321 struct nfs4_ace *ace;
322 __be32 status;
323 u32 count;
324
325 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
326 return nfserr_bad_xdr;
327
328 if (count > xdr_stream_remaining(argp->xdr) / 20)
329 /*
330 * Even with 4-byte names there wouldn't be
331 * space for that many aces; something fishy is
332 * going on:
333 */
334 return nfserr_fbig;
335
336 *acl = svcxdr_tmpalloc(argp, nfs4_acl_bytes(count));
337 if (*acl == NULL)
338 return nfserr_jukebox;
339
340 (*acl)->naces = count;
341 for (ace = (*acl)->aces; ace < (*acl)->aces + count; ace++) {
342 status = nfsd4_decode_nfsace4(argp, ace);
343 if (status)
344 return status;
345 }
346
347 return nfs_ok;
348}
349
Chuck Leverdabe9182020-11-19 14:05:51 -0500350static noinline __be32
351nfsd4_decode_security_label(struct nfsd4_compoundargs *argp,
352 struct xdr_netobj *label)
353{
354 u32 lfs, pi, length;
355 __be32 *p;
356
357 if (xdr_stream_decode_u32(argp->xdr, &lfs) < 0)
358 return nfserr_bad_xdr;
359 if (xdr_stream_decode_u32(argp->xdr, &pi) < 0)
360 return nfserr_bad_xdr;
361
362 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
363 return nfserr_bad_xdr;
364 if (length > NFS4_MAXLABELLEN)
365 return nfserr_badlabel;
366 p = xdr_inline_decode(argp->xdr, length);
367 if (!p)
368 return nfserr_bad_xdr;
369 label->len = length;
370 label->data = svcxdr_dupstr(argp, p, length);
371 if (!label->data)
372 return nfserr_jukebox;
373
374 return nfs_ok;
375}
376
Chuck Leverc941a962020-11-19 13:02:54 -0500377static __be32
Chuck Leverd1c263a2020-11-03 12:56:05 -0500378nfsd4_decode_fattr4(struct nfsd4_compoundargs *argp, u32 *bmval, u32 bmlen,
379 struct iattr *iattr, struct nfs4_acl **acl,
380 struct xdr_netobj *label, int *umask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Chuck Lever081d53f2020-11-19 13:09:13 -0500382 unsigned int starting_pos;
383 u32 attrlist4_count;
Chuck Leverd1c263a2020-11-03 12:56:05 -0500384 __be32 *p, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 iattr->ia_valid = 0;
Chuck Leverd1c263a2020-11-03 12:56:05 -0500387 status = nfsd4_decode_bitmap4(argp, bmval, bmlen);
388 if (status)
389 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
J. Bruce Fieldse864c182016-06-10 16:56:05 -0400391 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
392 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
393 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2) {
394 if (nfsd_attrs_supported(argp->minorversion, bmval))
395 return nfserr_inval;
396 return nfserr_attrnotsupp;
397 }
398
Chuck Lever081d53f2020-11-19 13:09:13 -0500399 if (xdr_stream_decode_u32(argp->xdr, &attrlist4_count) < 0)
400 return nfserr_bad_xdr;
401 starting_pos = xdr_stream_pos(argp->xdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 if (bmval[0] & FATTR4_WORD0_SIZE) {
Chuck Lever2ac1b9b2020-11-19 13:47:16 -0500404 u64 size;
405
406 if (xdr_stream_decode_u64(argp->xdr, &size) < 0)
407 return nfserr_bad_xdr;
408 iattr->ia_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 iattr->ia_valid |= ATTR_SIZE;
410 }
411 if (bmval[0] & FATTR4_WORD0_ACL) {
Chuck Leverc941a962020-11-19 13:02:54 -0500412 status = nfsd4_decode_acl(argp, acl);
413 if (status)
414 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 } else
416 *acl = NULL;
417 if (bmval[1] & FATTR4_WORD1_MODE) {
Chuck Lever1c8f0ad2020-11-19 13:54:26 -0500418 u32 mode;
419
420 if (xdr_stream_decode_u32(argp->xdr, &mode) < 0)
421 return nfserr_bad_xdr;
422 iattr->ia_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
424 iattr->ia_valid |= ATTR_MODE;
425 }
426 if (bmval[1] & FATTR4_WORD1_OWNER) {
Chuck Lever9853a5a2020-11-19 13:56:42 -0500427 u32 length;
428
429 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
430 return nfserr_bad_xdr;
431 p = xdr_inline_decode(argp->xdr, length);
432 if (!p)
433 return nfserr_bad_xdr;
434 status = nfsd_map_name_to_uid(argp->rqstp, (char *)p, length,
435 &iattr->ia_uid);
436 if (status)
NeilBrown47c85292011-02-16 13:08:35 +1100437 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 iattr->ia_valid |= ATTR_UID;
439 }
440 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
Chuck Lever393c31d2020-11-19 13:58:18 -0500441 u32 length;
442
443 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
444 return nfserr_bad_xdr;
445 p = xdr_inline_decode(argp->xdr, length);
446 if (!p)
447 return nfserr_bad_xdr;
448 status = nfsd_map_name_to_gid(argp->rqstp, (char *)p, length,
449 &iattr->ia_gid);
450 if (status)
NeilBrown47c85292011-02-16 13:08:35 +1100451 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 iattr->ia_valid |= ATTR_GID;
453 }
454 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
Chuck Lever1c3eff72020-11-19 14:01:08 -0500455 u32 set_it;
456
457 if (xdr_stream_decode_u32(argp->xdr, &set_it) < 0)
458 return nfserr_bad_xdr;
459 switch (set_it) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 case NFS4_SET_TO_CLIENT_TIME:
Chuck Lever1c3eff72020-11-19 14:01:08 -0500461 status = nfsd4_decode_nfstime4(argp, &iattr->ia_atime);
Christoph Hellwig4c94e132015-01-22 12:09:50 +0100462 if (status)
463 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
465 break;
466 case NFS4_SET_TO_SERVER_TIME:
467 iattr->ia_valid |= ATTR_ATIME;
468 break;
469 default:
Chuck Lever1c3eff72020-11-19 14:01:08 -0500470 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
Chuck Lever1c3eff72020-11-19 14:01:08 -0500474 u32 set_it;
475
476 if (xdr_stream_decode_u32(argp->xdr, &set_it) < 0)
477 return nfserr_bad_xdr;
478 switch (set_it) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 case NFS4_SET_TO_CLIENT_TIME:
Chuck Lever1c3eff72020-11-19 14:01:08 -0500480 status = nfsd4_decode_nfstime4(argp, &iattr->ia_mtime);
Christoph Hellwig4c94e132015-01-22 12:09:50 +0100481 if (status)
482 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
484 break;
485 case NFS4_SET_TO_SERVER_TIME:
486 iattr->ia_valid |= ATTR_MTIME;
487 break;
488 default:
Chuck Lever1c3eff72020-11-19 14:01:08 -0500489 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 }
David Quigley18032ca2013-05-02 13:19:10 -0400492 label->len = 0;
Arnd Bergmann2285ae72018-01-22 22:09:12 +0100493 if (IS_ENABLED(CONFIG_NFSD_V4_SECURITY_LABEL) &&
494 bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
Chuck Leverdabe9182020-11-19 14:05:51 -0500495 status = nfsd4_decode_security_label(argp, label);
496 if (status)
497 return status;
David Quigley18032ca2013-05-02 13:19:10 -0400498 }
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100499 if (bmval[2] & FATTR4_WORD2_MODE_UMASK) {
Chuck Lever66f04762020-11-19 14:07:43 -0500500 u32 mode, mask;
501
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100502 if (!umask)
Chuck Lever66f04762020-11-19 14:07:43 -0500503 return nfserr_bad_xdr;
504 if (xdr_stream_decode_u32(argp->xdr, &mode) < 0)
505 return nfserr_bad_xdr;
506 iattr->ia_mode = mode & (S_IFMT | S_IALLUGO);
507 if (xdr_stream_decode_u32(argp->xdr, &mask) < 0)
508 return nfserr_bad_xdr;
509 *umask = mask & S_IRWXUGO;
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100510 iattr->ia_valid |= ATTR_MODE;
511 }
Chuck Lever081d53f2020-11-19 13:09:13 -0500512
513 /* request sanity: did attrlist4 contain the expected number of words? */
514 if (attrlist4_count != xdr_stream_pos(argp->xdr) - starting_pos)
515 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Chuck Leverd1c263a2020-11-03 12:56:05 -0500517 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Al Virob37ad282006-10-19 23:28:59 -0700520static __be32
Chuck Leverd3d2f382020-11-03 13:18:23 -0500521nfsd4_decode_stateid4(struct nfsd4_compoundargs *argp, stateid_t *sid)
522{
523 __be32 *p;
524
525 p = xdr_inline_decode(argp->xdr, NFS4_STATEID_SIZE);
526 if (!p)
527 return nfserr_bad_xdr;
528 sid->si_generation = be32_to_cpup(p++);
529 memcpy(&sid->si_opaque, p, sizeof(sid->si_opaque));
530 return nfs_ok;
531}
532
Chuck Lever144e8262020-11-16 17:25:02 -0500533static __be32
534nfsd4_decode_clientid4(struct nfsd4_compoundargs *argp, clientid_t *clientid)
535{
536 __be32 *p;
537
538 p = xdr_inline_decode(argp->xdr, sizeof(__be64));
539 if (!p)
540 return nfserr_bad_xdr;
541 memcpy(clientid, p, sizeof(*clientid));
542 return nfs_ok;
543}
544
545static __be32
546nfsd4_decode_state_owner4(struct nfsd4_compoundargs *argp,
547 clientid_t *clientid, struct xdr_netobj *owner)
548{
549 __be32 status;
550
551 status = nfsd4_decode_clientid4(argp, clientid);
552 if (status)
553 return status;
554 return nfsd4_decode_opaque(argp, owner);
555}
556
Chuck Lever04495972020-11-03 15:03:50 -0500557#ifdef CONFIG_NFSD_PNFS
558static __be32
559nfsd4_decode_deviceid4(struct nfsd4_compoundargs *argp,
560 struct nfsd4_deviceid *devid)
561{
562 __be32 *p;
563
564 p = xdr_inline_decode(argp->xdr, NFS4_DEVICEID4_SIZE);
565 if (!p)
566 return nfserr_bad_xdr;
567 memcpy(devid, p, sizeof(*devid));
568 return nfs_ok;
569}
Chuck Lever51859802020-11-04 10:40:07 -0500570
571static __be32
572nfsd4_decode_layoutupdate4(struct nfsd4_compoundargs *argp,
573 struct nfsd4_layoutcommit *lcp)
574{
575 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_layout_type) < 0)
576 return nfserr_bad_xdr;
577 if (lcp->lc_layout_type < LAYOUT_NFSV4_1_FILES)
578 return nfserr_bad_xdr;
579 if (lcp->lc_layout_type >= LAYOUT_TYPE_MAX)
580 return nfserr_bad_xdr;
581
582 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_up_len) < 0)
583 return nfserr_bad_xdr;
584 if (lcp->lc_up_len > 0) {
585 lcp->lc_up_layout = xdr_inline_decode(argp->xdr, lcp->lc_up_len);
586 if (!lcp->lc_up_layout)
587 return nfserr_bad_xdr;
588 }
589
590 return nfs_ok;
591}
592
Chuck Lever645fcad2020-11-04 10:42:25 -0500593static __be32
594nfsd4_decode_layoutreturn4(struct nfsd4_compoundargs *argp,
595 struct nfsd4_layoutreturn *lrp)
596{
597 __be32 status;
598
599 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_return_type) < 0)
600 return nfserr_bad_xdr;
601 switch (lrp->lr_return_type) {
602 case RETURN_FILE:
603 if (xdr_stream_decode_u64(argp->xdr, &lrp->lr_seg.offset) < 0)
604 return nfserr_bad_xdr;
605 if (xdr_stream_decode_u64(argp->xdr, &lrp->lr_seg.length) < 0)
606 return nfserr_bad_xdr;
607 status = nfsd4_decode_stateid4(argp, &lrp->lr_sid);
608 if (status)
609 return status;
610 if (xdr_stream_decode_u32(argp->xdr, &lrp->lrf_body_len) < 0)
611 return nfserr_bad_xdr;
612 if (lrp->lrf_body_len > 0) {
613 lrp->lrf_body = xdr_inline_decode(argp->xdr, lrp->lrf_body_len);
614 if (!lrp->lrf_body)
615 return nfserr_bad_xdr;
616 }
617 break;
618 case RETURN_FSID:
619 case RETURN_ALL:
620 lrp->lr_seg.offset = 0;
621 lrp->lr_seg.length = NFS4_MAX_UINT64;
622 break;
623 default:
624 return nfserr_bad_xdr;
625 }
626
627 return nfs_ok;
628}
629
Chuck Lever04495972020-11-03 15:03:50 -0500630#endif /* CONFIG_NFSD_PNFS */
631
Chuck Lever571e0452020-11-03 13:16:23 -0500632static __be32
633nfsd4_decode_sessionid4(struct nfsd4_compoundargs *argp,
634 struct nfs4_sessionid *sessionid)
635{
636 __be32 *p;
637
638 p = xdr_inline_decode(argp->xdr, NFS4_MAX_SESSIONID_LEN);
639 if (!p)
640 return nfserr_bad_xdr;
641 memcpy(sessionid->data, p, sizeof(sessionid->data));
642 return nfs_ok;
643}
644
Chuck Lever1a994402020-11-03 13:09:34 -0500645/* Defined in Appendix A of RFC 5531 */
646static __be32
647nfsd4_decode_authsys_parms(struct nfsd4_compoundargs *argp,
648 struct nfsd4_cb_sec *cbs)
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400649{
Chuck Lever1a994402020-11-03 13:09:34 -0500650 u32 stamp, gidcount, uid, gid;
651 __be32 *p, status;
652
653 if (xdr_stream_decode_u32(argp->xdr, &stamp) < 0)
654 return nfserr_bad_xdr;
655 /* machine name */
656 status = nfsd4_decode_ignored_string(argp, 255);
657 if (status)
658 return status;
659 if (xdr_stream_decode_u32(argp->xdr, &uid) < 0)
660 return nfserr_bad_xdr;
661 if (xdr_stream_decode_u32(argp->xdr, &gid) < 0)
662 return nfserr_bad_xdr;
663 if (xdr_stream_decode_u32(argp->xdr, &gidcount) < 0)
664 return nfserr_bad_xdr;
665 if (gidcount > 16)
666 return nfserr_bad_xdr;
667 p = xdr_inline_decode(argp->xdr, gidcount << 2);
668 if (!p)
669 return nfserr_bad_xdr;
670 if (cbs->flavor == (u32)(-1)) {
671 struct user_namespace *userns = nfsd_user_namespace(argp->rqstp);
672
673 kuid_t kuid = make_kuid(userns, uid);
674 kgid_t kgid = make_kgid(userns, gid);
675 if (uid_valid(kuid) && gid_valid(kgid)) {
676 cbs->uid = kuid;
677 cbs->gid = kgid;
678 cbs->flavor = RPC_AUTH_UNIX;
679 } else {
680 dprintk("RPC_AUTH_UNIX with invalid uid or gid, ignoring!\n");
681 }
682 }
683
684 return nfs_ok;
685}
686
687static __be32
688nfsd4_decode_gss_cb_handles4(struct nfsd4_compoundargs *argp,
689 struct nfsd4_cb_sec *cbs)
690{
691 __be32 status;
692 u32 service;
693
694 dprintk("RPC_AUTH_GSS callback secflavor not supported!\n");
695
696 if (xdr_stream_decode_u32(argp->xdr, &service) < 0)
697 return nfserr_bad_xdr;
698 if (service < RPC_GSS_SVC_NONE || service > RPC_GSS_SVC_PRIVACY)
699 return nfserr_bad_xdr;
700 /* gcbp_handle_from_server */
701 status = nfsd4_decode_ignored_string(argp, 0);
702 if (status)
703 return status;
704 /* gcbp_handle_from_client */
705 status = nfsd4_decode_ignored_string(argp, 0);
706 if (status)
707 return status;
708
709 return nfs_ok;
710}
711
712/* a counted array of callback_sec_parms4 items */
713static __be32
714nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
715{
716 u32 i, secflavor, nr_secflavs;
717 __be32 status;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400718
719 /* callback_sec_params4 */
Chuck Lever1a994402020-11-03 13:09:34 -0500720 if (xdr_stream_decode_u32(argp->xdr, &nr_secflavs) < 0)
721 return nfserr_bad_xdr;
J. Bruce Fields57569a72013-05-17 16:25:32 -0400722 if (nr_secflavs)
723 cbs->flavor = (u32)(-1);
724 else
725 /* Is this legal? Be generous, take it to mean AUTH_NONE: */
726 cbs->flavor = 0;
Chuck Lever1a994402020-11-03 13:09:34 -0500727
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400728 for (i = 0; i < nr_secflavs; ++i) {
Chuck Lever1a994402020-11-03 13:09:34 -0500729 if (xdr_stream_decode_u32(argp->xdr, &secflavor) < 0)
730 return nfserr_bad_xdr;
731 switch (secflavor) {
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400732 case RPC_AUTH_NULL:
Chuck Lever1a994402020-11-03 13:09:34 -0500733 /* void */
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500734 if (cbs->flavor == (u32)(-1))
735 cbs->flavor = RPC_AUTH_NULL;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400736 break;
737 case RPC_AUTH_UNIX:
Chuck Lever1a994402020-11-03 13:09:34 -0500738 status = nfsd4_decode_authsys_parms(argp, cbs);
739 if (status)
740 return status;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400741 break;
742 case RPC_AUTH_GSS:
Chuck Lever1a994402020-11-03 13:09:34 -0500743 status = nfsd4_decode_gss_cb_handles4(argp, cbs);
744 if (status)
745 return status;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400746 break;
747 default:
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400748 return nfserr_inval;
749 }
750 }
Chuck Lever1a994402020-11-03 13:09:34 -0500751
752 return nfs_ok;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400753}
754
Chuck Lever1a994402020-11-03 13:09:34 -0500755
Chuck Leverd169a6a2020-11-03 13:12:27 -0500756/*
757 * NFSv4 operation argument decoders
758 */
759
760static __be32
761nfsd4_decode_access(struct nfsd4_compoundargs *argp,
762 struct nfsd4_access *access)
763{
764 if (xdr_stream_decode_u32(argp->xdr, &access->ac_req_access) < 0)
765 return nfserr_bad_xdr;
766 return nfs_ok;
767}
768
Al Virob37ad282006-10-19 23:28:59 -0700769static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
771{
Chuck Leverd3d2f382020-11-03 13:18:23 -0500772 if (xdr_stream_decode_u32(argp->xdr, &close->cl_seqid) < 0)
773 return nfserr_bad_xdr;
774 return nfsd4_decode_stateid4(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
777
Al Virob37ad282006-10-19 23:28:59 -0700778static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
780{
Chuck Levercbd9abb2020-11-03 13:19:51 -0500781 if (xdr_stream_decode_u64(argp->xdr, &commit->co_offset) < 0)
782 return nfserr_bad_xdr;
783 if (xdr_stream_decode_u32(argp->xdr, &commit->co_count) < 0)
784 return nfserr_bad_xdr;
785 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Al Virob37ad282006-10-19 23:28:59 -0700788static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
790{
Chuck Lever000dfa12020-11-03 13:24:10 -0500791 __be32 *p, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Chuck Lever000dfa12020-11-03 13:24:10 -0500793 if (xdr_stream_decode_u32(argp->xdr, &create->cr_type) < 0)
794 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 switch (create->cr_type) {
796 case NF4LNK:
Chuck Lever000dfa12020-11-03 13:24:10 -0500797 if (xdr_stream_decode_u32(argp->xdr, &create->cr_datalen) < 0)
798 return nfserr_bad_xdr;
799 p = xdr_inline_decode(argp->xdr, create->cr_datalen);
800 if (!p)
801 return nfserr_bad_xdr;
J. Bruce Fields29c353b2014-06-24 17:06:51 -0400802 create->cr_data = svcxdr_dupstr(argp, p, create->cr_datalen);
J. Bruce Fields7fb84302014-06-24 15:06:41 -0400803 if (!create->cr_data)
J. Bruce Fields76f471282014-06-19 16:44:48 -0400804 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 break;
806 case NF4BLK:
807 case NF4CHR:
Chuck Lever000dfa12020-11-03 13:24:10 -0500808 if (xdr_stream_decode_u32(argp->xdr, &create->cr_specdata1) < 0)
809 return nfserr_bad_xdr;
810 if (xdr_stream_decode_u32(argp->xdr, &create->cr_specdata2) < 0)
811 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 break;
813 case NF4SOCK:
814 case NF4FIFO:
815 case NF4DIR:
816 default:
817 break;
818 }
Chuck Lever000dfa12020-11-03 13:24:10 -0500819 status = nfsd4_decode_component4(argp, &create->cr_name,
820 &create->cr_namelen);
821 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return status;
Chuck Leverd1c263a2020-11-03 12:56:05 -0500823 status = nfsd4_decode_fattr4(argp, create->cr_bmval,
824 ARRAY_SIZE(create->cr_bmval),
825 &create->cr_iattr, &create->cr_acl,
826 &create->cr_label, &create->cr_umask);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300827 if (status)
Chuck Lever000dfa12020-11-03 13:24:10 -0500828 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Chuck Lever000dfa12020-11-03 13:24:10 -0500830 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Al Virob37ad282006-10-19 23:28:59 -0700833static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
835{
Chuck Lever95e64822020-11-21 14:11:58 -0500836 return nfsd4_decode_stateid4(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Al Virob37ad282006-10-19 23:28:59 -0700839static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
841{
Chuck Leverf759eff2020-11-19 14:40:20 -0500842 return nfsd4_decode_bitmap4(argp, getattr->ga_bmval,
843 ARRAY_SIZE(getattr->ga_bmval));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Al Virob37ad282006-10-19 23:28:59 -0700846static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
848{
Chuck Lever5c505d12020-11-04 15:01:24 -0500849 return nfsd4_decode_component4(argp, &link->li_name, &link->li_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Al Virob37ad282006-10-19 23:28:59 -0700852static __be32
Chuck Lever8918cc02020-11-16 17:16:52 -0500853nfsd4_decode_open_to_lock_owner4(struct nfsd4_compoundargs *argp,
854 struct nfsd4_lock *lock)
855{
856 __be32 status;
857
858 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_new_open_seqid) < 0)
859 return nfserr_bad_xdr;
860 status = nfsd4_decode_stateid4(argp, &lock->lk_new_open_stateid);
861 if (status)
862 return status;
863 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_new_lock_seqid) < 0)
864 return nfserr_bad_xdr;
865 return nfsd4_decode_state_owner4(argp, &lock->lk_new_clientid,
866 &lock->lk_new_owner);
867}
868
869static __be32
870nfsd4_decode_exist_lock_owner4(struct nfsd4_compoundargs *argp,
871 struct nfsd4_lock *lock)
872{
873 __be32 status;
874
875 status = nfsd4_decode_stateid4(argp, &lock->lk_old_lock_stateid);
876 if (status)
877 return status;
878 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_old_lock_seqid) < 0)
879 return nfserr_bad_xdr;
880
881 return nfs_ok;
882}
883
884static __be32
885nfsd4_decode_locker4(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
886{
887 if (xdr_stream_decode_bool(argp->xdr, &lock->lk_is_new) < 0)
888 return nfserr_bad_xdr;
889 if (lock->lk_is_new)
890 return nfsd4_decode_open_to_lock_owner4(argp, lock);
891 return nfsd4_decode_exist_lock_owner4(argp, lock);
892}
893
894static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
896{
Chuck Lever7c59dee2020-11-03 13:29:27 -0500897 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_type) < 0)
898 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
Chuck Lever7c59dee2020-11-03 13:29:27 -0500900 return nfserr_bad_xdr;
901 if (xdr_stream_decode_bool(argp->xdr, &lock->lk_reclaim) < 0)
902 return nfserr_bad_xdr;
903 if (xdr_stream_decode_u64(argp->xdr, &lock->lk_offset) < 0)
904 return nfserr_bad_xdr;
905 if (xdr_stream_decode_u64(argp->xdr, &lock->lk_length) < 0)
906 return nfserr_bad_xdr;
907 return nfsd4_decode_locker4(argp, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Al Virob37ad282006-10-19 23:28:59 -0700910static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
912{
Chuck Lever0a146f02020-11-03 13:31:44 -0500913 if (xdr_stream_decode_u32(argp->xdr, &lockt->lt_type) < 0)
914 return nfserr_bad_xdr;
915 if ((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
916 return nfserr_bad_xdr;
917 if (xdr_stream_decode_u64(argp->xdr, &lockt->lt_offset) < 0)
918 return nfserr_bad_xdr;
919 if (xdr_stream_decode_u64(argp->xdr, &lockt->lt_length) < 0)
920 return nfserr_bad_xdr;
921 return nfsd4_decode_state_owner4(argp, &lockt->lt_clientid,
922 &lockt->lt_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Al Virob37ad282006-10-19 23:28:59 -0700925static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
927{
Chuck Leverca9cf9f2020-11-03 13:33:28 -0500928 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Chuck Leverca9cf9f2020-11-03 13:33:28 -0500930 if (xdr_stream_decode_u32(argp->xdr, &locku->lu_type) < 0)
931 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
Chuck Leverca9cf9f2020-11-03 13:33:28 -0500933 return nfserr_bad_xdr;
934 if (xdr_stream_decode_u32(argp->xdr, &locku->lu_seqid) < 0)
935 return nfserr_bad_xdr;
936 status = nfsd4_decode_stateid4(argp, &locku->lu_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300937 if (status)
938 return status;
Chuck Leverca9cf9f2020-11-03 13:33:28 -0500939 if (xdr_stream_decode_u64(argp->xdr, &locku->lu_offset) < 0)
940 return nfserr_bad_xdr;
941 if (xdr_stream_decode_u64(argp->xdr, &locku->lu_length) < 0)
942 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Chuck Leverca9cf9f2020-11-03 13:33:28 -0500944 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Al Virob37ad282006-10-19 23:28:59 -0700947static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
949{
Chuck Lever3d5877e2020-11-04 15:02:40 -0500950 return nfsd4_decode_component4(argp, &lookup->lo_name, &lookup->lo_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Chuck Leverbf33bab2020-11-16 17:37:42 -0500953static __be32
954nfsd4_decode_createhow4(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
955{
956 __be32 status;
957
958 if (xdr_stream_decode_u32(argp->xdr, &open->op_createmode) < 0)
959 return nfserr_bad_xdr;
960 switch (open->op_createmode) {
961 case NFS4_CREATE_UNCHECKED:
962 case NFS4_CREATE_GUARDED:
963 status = nfsd4_decode_fattr4(argp, open->op_bmval,
964 ARRAY_SIZE(open->op_bmval),
965 &open->op_iattr, &open->op_acl,
966 &open->op_label, &open->op_umask);
967 if (status)
968 return status;
969 break;
970 case NFS4_CREATE_EXCLUSIVE:
971 status = nfsd4_decode_verifier4(argp, &open->op_verf);
972 if (status)
973 return status;
974 break;
975 case NFS4_CREATE_EXCLUSIVE4_1:
976 if (argp->minorversion < 1)
977 return nfserr_bad_xdr;
978 status = nfsd4_decode_verifier4(argp, &open->op_verf);
979 if (status)
980 return status;
981 status = nfsd4_decode_fattr4(argp, open->op_bmval,
982 ARRAY_SIZE(open->op_bmval),
983 &open->op_iattr, &open->op_acl,
984 &open->op_label, &open->op_umask);
985 if (status)
986 return status;
987 break;
988 default:
989 return nfserr_bad_xdr;
990 }
991
992 return nfs_ok;
993}
994
Chuck Levere6ec04b2020-11-16 17:41:21 -0500995static __be32
996nfsd4_decode_openflag4(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
997{
998 __be32 status;
999
1000 if (xdr_stream_decode_u32(argp->xdr, &open->op_create) < 0)
1001 return nfserr_bad_xdr;
1002 switch (open->op_create) {
1003 case NFS4_OPEN_NOCREATE:
1004 break;
1005 case NFS4_OPEN_CREATE:
1006 status = nfsd4_decode_createhow4(argp, open);
1007 if (status)
1008 return status;
1009 break;
1010 default:
1011 return nfserr_bad_xdr;
1012 }
1013
1014 return nfs_ok;
1015}
1016
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001017static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *share_access, u32 *deleg_want, u32 *deleg_when)
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001018{
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001019 u32 w;
1020
Chuck Lever9aa62f52020-11-16 17:54:48 -05001021 if (xdr_stream_decode_u32(argp->xdr, &w) < 0)
1022 return nfserr_bad_xdr;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001023 *share_access = w & NFS4_SHARE_ACCESS_MASK;
1024 *deleg_want = w & NFS4_SHARE_WANT_MASK;
1025 if (deleg_when)
1026 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
1027
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001028 switch (w & NFS4_SHARE_ACCESS_MASK) {
1029 case NFS4_SHARE_ACCESS_READ:
1030 case NFS4_SHARE_ACCESS_WRITE:
1031 case NFS4_SHARE_ACCESS_BOTH:
1032 break;
1033 default:
1034 return nfserr_bad_xdr;
1035 }
Benny Halevyfc0d14f2011-10-27 20:43:01 +02001036 w &= ~NFS4_SHARE_ACCESS_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001037 if (!w)
1038 return nfs_ok;
1039 if (!argp->minorversion)
1040 return nfserr_bad_xdr;
1041 switch (w & NFS4_SHARE_WANT_MASK) {
1042 case NFS4_SHARE_WANT_NO_PREFERENCE:
1043 case NFS4_SHARE_WANT_READ_DELEG:
1044 case NFS4_SHARE_WANT_WRITE_DELEG:
1045 case NFS4_SHARE_WANT_ANY_DELEG:
1046 case NFS4_SHARE_WANT_NO_DELEG:
1047 case NFS4_SHARE_WANT_CANCEL:
1048 break;
1049 default:
1050 return nfserr_bad_xdr;
1051 }
Benny Halevy92bac8c2011-10-19 19:13:29 -07001052 w &= ~NFS4_SHARE_WANT_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001053 if (!w)
1054 return nfs_ok;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001055
1056 if (!deleg_when) /* open_downgrade */
1057 return nfserr_inval;
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001058 switch (w) {
1059 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
1060 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
Benny Halevyc668fc62011-10-19 19:13:13 -07001061 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
1062 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001063 return nfs_ok;
1064 }
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001065 return nfserr_bad_xdr;
1066}
1067
1068static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
1069{
Chuck Leverb07bebd2020-11-16 17:56:17 -05001070 if (xdr_stream_decode_u32(argp->xdr, x) < 0)
1071 return nfserr_bad_xdr;
1072 /* Note: unlike access bits, deny bits may be zero. */
Dan Carpenter01cd4af2011-10-17 10:41:17 +03001073 if (*x & ~NFS4_SHARE_DENY_BOTH)
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001074 return nfserr_bad_xdr;
Chuck Leverb07bebd2020-11-16 17:56:17 -05001075
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001076 return nfs_ok;
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001077}
1078
Al Virob37ad282006-10-19 23:28:59 -07001079static __be32
Chuck Lever1708e502020-11-16 17:45:04 -05001080nfsd4_decode_open_claim4(struct nfsd4_compoundargs *argp,
1081 struct nfsd4_open *open)
1082{
1083 __be32 status;
1084
1085 if (xdr_stream_decode_u32(argp->xdr, &open->op_claim_type) < 0)
1086 return nfserr_bad_xdr;
1087 switch (open->op_claim_type) {
1088 case NFS4_OPEN_CLAIM_NULL:
1089 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1090 status = nfsd4_decode_component4(argp, &open->op_fname,
1091 &open->op_fnamelen);
1092 if (status)
1093 return status;
1094 break;
1095 case NFS4_OPEN_CLAIM_PREVIOUS:
1096 if (xdr_stream_decode_u32(argp->xdr, &open->op_delegate_type) < 0)
1097 return nfserr_bad_xdr;
1098 break;
1099 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1100 status = nfsd4_decode_stateid4(argp, &open->op_delegate_stateid);
1101 if (status)
1102 return status;
1103 status = nfsd4_decode_component4(argp, &open->op_fname,
1104 &open->op_fnamelen);
1105 if (status)
1106 return status;
1107 break;
1108 case NFS4_OPEN_CLAIM_FH:
1109 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1110 if (argp->minorversion < 1)
1111 return nfserr_bad_xdr;
1112 /* void */
1113 break;
1114 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1115 if (argp->minorversion < 1)
1116 return nfserr_bad_xdr;
1117 status = nfsd4_decode_stateid4(argp, &open->op_delegate_stateid);
1118 if (status)
1119 return status;
1120 break;
1121 default:
1122 return nfserr_bad_xdr;
1123 }
1124
1125 return nfs_ok;
1126}
1127
1128static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
1130{
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001131 __be32 status;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001132 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 memset(open->op_bmval, 0, sizeof(open->op_bmval));
1135 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -04001136 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
J. Bruce Fields9d313b12013-02-28 12:51:49 -08001138 open->op_xdr_error = 0;
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001139 if (xdr_stream_decode_u32(argp->xdr, &open->op_seqid) < 0)
1140 return nfserr_bad_xdr;
1141 /* deleg_want is ignored */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001142 status = nfsd4_decode_share_access(argp, &open->op_share_access,
1143 &open->op_deleg_want, &dummy);
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001144 if (status)
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001145 return status;
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001146 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
1147 if (status)
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001148 return status;
1149 status = nfsd4_decode_state_owner4(argp, &open->op_clientid,
1150 &open->op_owner);
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001151 if (status)
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001152 return status;
Chuck Levere6ec04b2020-11-16 17:41:21 -05001153 status = nfsd4_decode_openflag4(argp, open);
1154 if (status)
1155 return status;
Chuck Lever61e5e0b2020-11-01 12:04:06 -05001156 return nfsd4_decode_open_claim4(argp, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Al Virob37ad282006-10-19 23:28:59 -07001159static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
1161{
Chuck Lever06bee692020-11-03 14:18:57 -05001162 __be32 status;
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001163
1164 if (argp->minorversion >= 1)
1165 return nfserr_notsupp;
1166
Chuck Lever06bee692020-11-03 14:18:57 -05001167 status = nfsd4_decode_stateid4(argp, &open_conf->oc_req_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +03001168 if (status)
1169 return status;
Chuck Lever06bee692020-11-03 14:18:57 -05001170 if (xdr_stream_decode_u32(argp->xdr, &open_conf->oc_seqid) < 0)
1171 return nfserr_bad_xdr;
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001172
Chuck Lever06bee692020-11-03 14:18:57 -05001173 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Al Virob37ad282006-10-19 23:28:59 -07001176static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
1178{
Chuck Leverdca716512020-11-03 14:21:01 -05001179 __be32 status;
1180
1181 status = nfsd4_decode_stateid4(argp, &open_down->od_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +03001182 if (status)
1183 return status;
Chuck Leverdca716512020-11-03 14:21:01 -05001184 if (xdr_stream_decode_u32(argp->xdr, &open_down->od_seqid) < 0)
1185 return nfserr_bad_xdr;
1186 /* deleg_want is ignored */
Benny Halevy2c8bd7e2012-02-16 20:57:09 +02001187 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
1188 &open_down->od_deleg_want, NULL);
J. Bruce Fields04f9e662011-10-10 14:37:13 -04001189 if (status)
1190 return status;
Chuck Leverdca716512020-11-03 14:21:01 -05001191 return nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
Al Virob37ad282006-10-19 23:28:59 -07001194static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
1196{
Chuck Levera73bed92020-11-03 14:23:02 -05001197 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Chuck Levera73bed92020-11-03 14:23:02 -05001199 if (xdr_stream_decode_u32(argp->xdr, &putfh->pf_fhlen) < 0)
1200 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (putfh->pf_fhlen > NFS4_FHSIZE)
Chuck Levera73bed92020-11-03 14:23:02 -05001202 return nfserr_bad_xdr;
1203 p = xdr_inline_decode(argp->xdr, putfh->pf_fhlen);
1204 if (!p)
1205 return nfserr_bad_xdr;
Chuck Lever7b723002020-12-18 12:28:58 -05001206 putfh->pf_fhval = svcxdr_savemem(argp, p, putfh->pf_fhlen);
Chuck Levera73bed92020-11-03 14:23:02 -05001207 if (!putfh->pf_fhval)
1208 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Chuck Levera73bed92020-11-03 14:23:02 -05001210 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Al Virob37ad282006-10-19 23:28:59 -07001213static __be32
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001214nfsd4_decode_putpubfh(struct nfsd4_compoundargs *argp, void *p)
1215{
1216 if (argp->minorversion == 0)
1217 return nfs_ok;
1218 return nfserr_notsupp;
1219}
1220
1221static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
1223{
Chuck Lever3909c3b2020-11-03 14:28:24 -05001224 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Chuck Lever3909c3b2020-11-03 14:28:24 -05001226 status = nfsd4_decode_stateid4(argp, &read->rd_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +03001227 if (status)
1228 return status;
Chuck Lever3909c3b2020-11-03 14:28:24 -05001229 if (xdr_stream_decode_u64(argp->xdr, &read->rd_offset) < 0)
1230 return nfserr_bad_xdr;
1231 if (xdr_stream_decode_u32(argp->xdr, &read->rd_length) < 0)
1232 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Chuck Lever3909c3b2020-11-03 14:28:24 -05001234 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Al Virob37ad282006-10-19 23:28:59 -07001237static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
1239{
Chuck Lever0dfaf2a2020-11-03 14:30:59 -05001240 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Chuck Lever0dfaf2a2020-11-03 14:30:59 -05001242 if (xdr_stream_decode_u64(argp->xdr, &readdir->rd_cookie) < 0)
1243 return nfserr_bad_xdr;
1244 status = nfsd4_decode_verifier4(argp, &readdir->rd_verf);
1245 if (status)
1246 return status;
1247 if (xdr_stream_decode_u32(argp->xdr, &readdir->rd_dircount) < 0)
1248 return nfserr_bad_xdr;
1249 if (xdr_stream_decode_u32(argp->xdr, &readdir->rd_maxcount) < 0)
1250 return nfserr_bad_xdr;
1251 if (xdr_stream_decode_uint32_array(argp->xdr, readdir->rd_bmval,
1252 ARRAY_SIZE(readdir->rd_bmval)) < 0)
1253 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Chuck Lever0dfaf2a2020-11-03 14:30:59 -05001255 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Al Virob37ad282006-10-19 23:28:59 -07001258static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
1260{
Chuck Leverb7f5fbf2020-11-04 15:04:36 -05001261 return nfsd4_decode_component4(argp, &remove->rm_name, &remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Al Virob37ad282006-10-19 23:28:59 -07001264static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
1266{
Chuck Leverba881a02020-11-04 15:05:58 -05001267 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Chuck Leverba881a02020-11-04 15:05:58 -05001269 status = nfsd4_decode_component4(argp, &rename->rn_sname, &rename->rn_snamelen);
1270 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return status;
Chuck Leverba881a02020-11-04 15:05:58 -05001272 return nfsd4_decode_component4(argp, &rename->rn_tname, &rename->rn_tnamelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
Al Virob37ad282006-10-19 23:28:59 -07001275static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1277{
Chuck Leverd12f9042020-11-04 15:08:50 -05001278 return nfsd4_decode_clientid4(argp, clientid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Al Virob37ad282006-10-19 23:28:59 -07001281static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -07001282nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1283 struct nfsd4_secinfo *secinfo)
1284{
Chuck Leverd0abdae2020-11-04 15:09:42 -05001285 return nfsd4_decode_component4(argp, &secinfo->si_name, &secinfo->si_namelen);
Andy Adamsondcb488a32007-07-17 04:04:51 -07001286}
1287
1288static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1290{
Benny Halevye31a1b62008-08-12 20:46:18 +03001291 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Chuck Lever44592fe2020-11-21 14:14:59 -05001293 status = nfsd4_decode_stateid4(argp, &setattr->sa_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +03001294 if (status)
1295 return status;
Chuck Leverd1c263a2020-11-03 12:56:05 -05001296 return nfsd4_decode_fattr4(argp, setattr->sa_bmval,
1297 ARRAY_SIZE(setattr->sa_bmval),
1298 &setattr->sa_iattr, &setattr->sa_acl,
1299 &setattr->sa_label, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Al Virob37ad282006-10-19 23:28:59 -07001302static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1304{
Chuck Lever92fa6c02020-11-03 14:35:02 -05001305 __be32 *p, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001307 if (argp->minorversion >= 1)
1308 return nfserr_notsupp;
1309
Chuck Lever92fa6c02020-11-03 14:35:02 -05001310 status = nfsd4_decode_verifier4(argp, &setclientid->se_verf);
1311 if (status)
1312 return status;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001313 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1314 if (status)
Chuck Lever92fa6c02020-11-03 14:35:02 -05001315 return status;
1316 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_prog) < 0)
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001317 return nfserr_bad_xdr;
Chuck Lever92fa6c02020-11-03 14:35:02 -05001318 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_netid_len) < 0)
1319 return nfserr_bad_xdr;
1320 p = xdr_inline_decode(argp->xdr, setclientid->se_callback_netid_len);
1321 if (!p)
1322 return nfserr_bad_xdr;
Chuck Lever7b723002020-12-18 12:28:58 -05001323 setclientid->se_callback_netid_val = svcxdr_savemem(argp, p,
Chuck Lever92fa6c02020-11-03 14:35:02 -05001324 setclientid->se_callback_netid_len);
1325 if (!setclientid->se_callback_netid_val)
1326 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Chuck Lever92fa6c02020-11-03 14:35:02 -05001328 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_addr_len) < 0)
1329 return nfserr_bad_xdr;
1330 p = xdr_inline_decode(argp->xdr, setclientid->se_callback_addr_len);
1331 if (!p)
1332 return nfserr_bad_xdr;
Chuck Lever7b723002020-12-18 12:28:58 -05001333 setclientid->se_callback_addr_val = svcxdr_savemem(argp, p,
Chuck Lever92fa6c02020-11-03 14:35:02 -05001334 setclientid->se_callback_addr_len);
1335 if (!setclientid->se_callback_addr_val)
1336 return nfserr_jukebox;
Chuck Lever92fa6c02020-11-03 14:35:02 -05001337 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_ident) < 0)
1338 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Chuck Lever92fa6c02020-11-03 14:35:02 -05001340 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
Al Virob37ad282006-10-19 23:28:59 -07001343static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1345{
Chuck Leverd1ca5512020-11-04 15:12:33 -05001346 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001348 if (argp->minorversion >= 1)
1349 return nfserr_notsupp;
1350
Chuck Leverd1ca5512020-11-04 15:12:33 -05001351 status = nfsd4_decode_clientid4(argp, &scd_c->sc_clientid);
1352 if (status)
1353 return status;
1354 return nfsd4_decode_verifier4(argp, &scd_c->sc_confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -07001358static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1360{
Chuck Lever67cd4532020-11-03 14:40:32 -05001361 __be32 *p, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Chuck Lever67cd4532020-11-03 14:40:32 -05001363 status = nfsd4_decode_bitmap4(argp, verify->ve_bmval,
1364 ARRAY_SIZE(verify->ve_bmval));
1365 if (status)
1366 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /* For convenience's sake, we compare raw xdr'd attributes in
J. Bruce Fieldse5f95702012-11-30 17:24:18 -05001369 * nfsd4_proc_verify */
1370
Chuck Lever67cd4532020-11-03 14:40:32 -05001371 if (xdr_stream_decode_u32(argp->xdr, &verify->ve_attrlen) < 0)
1372 return nfserr_bad_xdr;
1373 p = xdr_inline_decode(argp->xdr, verify->ve_attrlen);
1374 if (!p)
1375 return nfserr_bad_xdr;
Chuck Lever7b723002020-12-18 12:28:58 -05001376 verify->ve_attrval = svcxdr_savemem(argp, p, verify->ve_attrlen);
Chuck Lever67cd4532020-11-03 14:40:32 -05001377 if (!verify->ve_attrval)
1378 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Chuck Lever67cd4532020-11-03 14:40:32 -05001380 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Al Virob37ad282006-10-19 23:28:59 -07001383static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1385{
Chuck Lever244e2be2020-11-03 14:44:28 -05001386 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Chuck Lever244e2be2020-11-03 14:44:28 -05001388 status = nfsd4_decode_stateid4(argp, &write->wr_stateid);
Benny Halevye31a1b62008-08-12 20:46:18 +03001389 if (status)
1390 return status;
Chuck Lever244e2be2020-11-03 14:44:28 -05001391 if (xdr_stream_decode_u64(argp->xdr, &write->wr_offset) < 0)
1392 return nfserr_bad_xdr;
1393 if (xdr_stream_decode_u32(argp->xdr, &write->wr_stable_how) < 0)
1394 return nfserr_bad_xdr;
Kinglong Mee54bbb7d2016-12-31 20:59:53 +08001395 if (write->wr_stable_how > NFS_FILE_SYNC)
Chuck Lever244e2be2020-11-03 14:44:28 -05001396 return nfserr_bad_xdr;
1397 if (xdr_stream_decode_u32(argp->xdr, &write->wr_buflen) < 0)
1398 return nfserr_bad_xdr;
Chuck Leverc1346a122020-11-03 11:54:23 -05001399 if (!xdr_stream_subsegment(argp->xdr, &write->wr_payload, write->wr_buflen))
Chuck Lever244e2be2020-11-03 14:44:28 -05001400 return nfserr_bad_xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Chuck Lever244e2be2020-11-03 14:44:28 -05001402 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Al Virob37ad282006-10-19 23:28:59 -07001405static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1407{
Chuck Levera4a80c12020-11-04 13:42:25 -05001408 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001410 if (argp->minorversion >= 1)
1411 return nfserr_notsupp;
1412
Chuck Levera4a80c12020-11-04 13:42:25 -05001413 status = nfsd4_decode_state_owner4(argp, &rlockowner->rl_clientid,
1414 &rlockowner->rl_owner);
1415 if (status)
1416 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Andy Adamson60adfc52009-04-03 08:28:50 +03001418 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1419 return nfserr_inval;
Chuck Levera4a80c12020-11-04 13:42:25 -05001420
1421 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Chuck Lever0f81d962020-11-03 13:14:35 -05001424static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
1425{
1426 if (xdr_stream_decode_u32(argp->xdr, &bc->bc_cb_program) < 0)
1427 return nfserr_bad_xdr;
1428 return nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
1429}
1430
Chuck Lever571e0452020-11-03 13:16:23 -05001431static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
1432{
1433 u32 use_conn_in_rdma_mode;
1434 __be32 status;
1435
1436 status = nfsd4_decode_sessionid4(argp, &bcts->sessionid);
1437 if (status)
1438 return status;
1439 if (xdr_stream_decode_u32(argp->xdr, &bcts->dir) < 0)
1440 return nfserr_bad_xdr;
1441 if (xdr_stream_decode_u32(argp->xdr, &use_conn_in_rdma_mode) < 0)
1442 return nfserr_bad_xdr;
1443
1444 return nfs_ok;
1445}
1446
Al Virob37ad282006-10-19 23:28:59 -07001447static __be32
Chuck Lever2548aa72020-11-03 11:13:00 -05001448nfsd4_decode_state_protect_ops(struct nfsd4_compoundargs *argp,
1449 struct nfsd4_exchange_id *exid)
1450{
1451 __be32 status;
1452
1453 status = nfsd4_decode_bitmap4(argp, exid->spo_must_enforce,
1454 ARRAY_SIZE(exid->spo_must_enforce));
1455 if (status)
1456 return nfserr_bad_xdr;
1457 status = nfsd4_decode_bitmap4(argp, exid->spo_must_allow,
1458 ARRAY_SIZE(exid->spo_must_allow));
1459 if (status)
1460 return nfserr_bad_xdr;
1461
1462 return nfs_ok;
1463}
1464
Chuck Lever547bfeb2020-11-03 11:17:50 -05001465/*
1466 * This implementation currently does not support SP4_SSV.
1467 * This decoder simply skips over these arguments.
1468 */
1469static noinline __be32
1470nfsd4_decode_ssv_sp_parms(struct nfsd4_compoundargs *argp,
1471 struct nfsd4_exchange_id *exid)
1472{
1473 u32 count, window, num_gss_handles;
1474 __be32 status;
1475
1476 /* ssp_ops */
1477 status = nfsd4_decode_state_protect_ops(argp, exid);
1478 if (status)
1479 return status;
1480
1481 /* ssp_hash_algs<> */
1482 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1483 return nfserr_bad_xdr;
1484 while (count--) {
1485 status = nfsd4_decode_ignored_string(argp, 0);
1486 if (status)
1487 return status;
1488 }
1489
1490 /* ssp_encr_algs<> */
1491 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1492 return nfserr_bad_xdr;
1493 while (count--) {
1494 status = nfsd4_decode_ignored_string(argp, 0);
1495 if (status)
1496 return status;
1497 }
1498
1499 if (xdr_stream_decode_u32(argp->xdr, &window) < 0)
1500 return nfserr_bad_xdr;
1501 if (xdr_stream_decode_u32(argp->xdr, &num_gss_handles) < 0)
1502 return nfserr_bad_xdr;
1503
1504 return nfs_ok;
1505}
1506
Chuck Lever2548aa72020-11-03 11:13:00 -05001507static __be32
Chuck Lever523ec6e2020-11-02 15:19:12 -05001508nfsd4_decode_state_protect4_a(struct nfsd4_compoundargs *argp,
1509 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001510{
Chuck Lever523ec6e2020-11-02 15:19:12 -05001511 __be32 status;
Andy Adamson0733d212009-04-03 08:28:01 +03001512
Chuck Lever523ec6e2020-11-02 15:19:12 -05001513 if (xdr_stream_decode_u32(argp->xdr, &exid->spa_how) < 0)
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001514 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001515 switch (exid->spa_how) {
1516 case SP4_NONE:
1517 break;
1518 case SP4_MACH_CRED:
Chuck Lever2548aa72020-11-03 11:13:00 -05001519 status = nfsd4_decode_state_protect_ops(argp, exid);
Andrew Elbleed941642016-06-15 12:52:09 -04001520 if (status)
Chuck Lever2548aa72020-11-03 11:13:00 -05001521 return status;
Andy Adamson0733d212009-04-03 08:28:01 +03001522 break;
1523 case SP4_SSV:
Chuck Lever547bfeb2020-11-03 11:17:50 -05001524 status = nfsd4_decode_ssv_sp_parms(argp, exid);
Chuck Lever2548aa72020-11-03 11:13:00 -05001525 if (status)
1526 return status;
Andy Adamson0733d212009-04-03 08:28:01 +03001527 break;
1528 default:
Chuck Lever523ec6e2020-11-02 15:19:12 -05001529 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001530 }
1531
Chuck Lever523ec6e2020-11-02 15:19:12 -05001532 return nfs_ok;
1533}
1534
1535static __be32
Chuck Lever10ff8422020-11-16 15:21:55 -05001536nfsd4_decode_nfs_impl_id4(struct nfsd4_compoundargs *argp,
1537 struct nfsd4_exchange_id *exid)
1538{
1539 __be32 status;
1540 u32 count;
1541
1542 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1543 return nfserr_bad_xdr;
1544 switch (count) {
1545 case 0:
1546 break;
1547 case 1:
1548 /* Note that RFC 8881 places no length limit on
1549 * nii_domain, but this implementation permits no
1550 * more than NFS4_OPAQUE_LIMIT bytes */
1551 status = nfsd4_decode_opaque(argp, &exid->nii_domain);
1552 if (status)
1553 return status;
1554 /* Note that RFC 8881 places no length limit on
1555 * nii_name, but this implementation permits no
1556 * more than NFS4_OPAQUE_LIMIT bytes */
1557 status = nfsd4_decode_opaque(argp, &exid->nii_name);
1558 if (status)
1559 return status;
1560 status = nfsd4_decode_nfstime4(argp, &exid->nii_time);
1561 if (status)
1562 return status;
1563 break;
1564 default:
1565 return nfserr_bad_xdr;
1566 }
1567
1568 return nfs_ok;
1569}
1570
1571static __be32
Chuck Lever523ec6e2020-11-02 15:19:12 -05001572nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
1573 struct nfsd4_exchange_id *exid)
1574{
Chuck Lever10ff8422020-11-16 15:21:55 -05001575 __be32 status;
Chuck Lever523ec6e2020-11-02 15:19:12 -05001576
1577 status = nfsd4_decode_verifier4(argp, &exid->verifier);
1578 if (status)
1579 return status;
1580 status = nfsd4_decode_opaque(argp, &exid->clname);
1581 if (status)
1582 return status;
1583 if (xdr_stream_decode_u32(argp->xdr, &exid->flags) < 0)
1584 return nfserr_bad_xdr;
1585 status = nfsd4_decode_state_protect4_a(argp, exid);
1586 if (status)
1587 return status;
Chuck Lever10ff8422020-11-16 15:21:55 -05001588 return nfsd4_decode_nfs_impl_id4(argp, exid);
Andy Adamson2db134e2009-04-03 08:27:55 +03001589}
1590
1591static __be32
Chuck Lever3a3f1fb2020-11-16 15:35:05 -05001592nfsd4_decode_channel_attrs4(struct nfsd4_compoundargs *argp,
1593 struct nfsd4_channel_attrs *ca)
1594{
1595 __be32 *p;
1596
1597 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 7);
1598 if (!p)
1599 return nfserr_bad_xdr;
1600
1601 /* headerpadsz is ignored */
1602 p++;
1603 ca->maxreq_sz = be32_to_cpup(p++);
1604 ca->maxresp_sz = be32_to_cpup(p++);
1605 ca->maxresp_cached = be32_to_cpup(p++);
1606 ca->maxops = be32_to_cpup(p++);
1607 ca->maxreqs = be32_to_cpup(p++);
1608 ca->nr_rdma_attrs = be32_to_cpup(p);
1609 switch (ca->nr_rdma_attrs) {
1610 case 0:
1611 break;
1612 case 1:
1613 if (xdr_stream_decode_u32(argp->xdr, &ca->rdma_attrs) < 0)
1614 return nfserr_bad_xdr;
1615 break;
1616 default:
1617 return nfserr_bad_xdr;
1618 }
1619
1620 return nfs_ok;
1621}
1622
1623static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001624nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1625 struct nfsd4_create_session *sess)
1626{
Chuck Lever81243e32020-11-03 14:52:44 -05001627 __be32 status;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001628
Chuck Lever81243e32020-11-03 14:52:44 -05001629 status = nfsd4_decode_clientid4(argp, &sess->clientid);
1630 if (status)
1631 return status;
1632 if (xdr_stream_decode_u32(argp->xdr, &sess->seqid) < 0)
1633 return nfserr_bad_xdr;
1634 if (xdr_stream_decode_u32(argp->xdr, &sess->flags) < 0)
1635 return nfserr_bad_xdr;
Chuck Lever3a3f1fb2020-11-16 15:35:05 -05001636 status = nfsd4_decode_channel_attrs4(argp, &sess->fore_channel);
1637 if (status)
1638 return status;
1639 status = nfsd4_decode_channel_attrs4(argp, &sess->back_channel);
1640 if (status)
1641 return status;
Chuck Lever81243e32020-11-03 14:52:44 -05001642 if (xdr_stream_decode_u32(argp->xdr, &sess->callback_prog) < 0)
1643 return nfserr_bad_xdr;
1644 status = nfsd4_decode_cb_sec(argp, &sess->cb_sec);
1645 if (status)
1646 return status;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001647
Chuck Lever81243e32020-11-03 14:52:44 -05001648 return nfs_ok;
Andy Adamson2db134e2009-04-03 08:27:55 +03001649}
1650
1651static __be32
1652nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1653 struct nfsd4_destroy_session *destroy_session)
1654{
Chuck Lever94e254a2020-11-04 13:50:55 -05001655 return nfsd4_decode_sessionid4(argp, &destroy_session->sessionid);
Andy Adamson2db134e2009-04-03 08:27:55 +03001656}
1657
1658static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001659nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1660 struct nfsd4_free_stateid *free_stateid)
1661{
Chuck Leveraec387d2020-11-01 13:38:27 -05001662 return nfsd4_decode_stateid4(argp, &free_stateid->fr_stateid);
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001663}
1664
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001665#ifdef CONFIG_NFSD_PNFS
1666static __be32
1667nfsd4_decode_getdeviceinfo(struct nfsd4_compoundargs *argp,
1668 struct nfsd4_getdeviceinfo *gdev)
1669{
Chuck Lever04495972020-11-03 15:03:50 -05001670 __be32 status;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001671
Chuck Lever04495972020-11-03 15:03:50 -05001672 status = nfsd4_decode_deviceid4(argp, &gdev->gd_devid);
1673 if (status)
1674 return status;
1675 if (xdr_stream_decode_u32(argp->xdr, &gdev->gd_layout_type) < 0)
1676 return nfserr_bad_xdr;
1677 if (xdr_stream_decode_u32(argp->xdr, &gdev->gd_maxcount) < 0)
1678 return nfserr_bad_xdr;
1679 if (xdr_stream_decode_uint32_array(argp->xdr,
1680 &gdev->gd_notify_types, 1) < 0)
1681 return nfserr_bad_xdr;
1682
1683 return nfs_ok;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001684}
1685
1686static __be32
Chuck Lever51859802020-11-04 10:40:07 -05001687nfsd4_decode_layoutcommit(struct nfsd4_compoundargs *argp,
1688 struct nfsd4_layoutcommit *lcp)
1689{
1690 __be32 *p, status;
1691
1692 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_seg.offset) < 0)
1693 return nfserr_bad_xdr;
1694 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_seg.length) < 0)
1695 return nfserr_bad_xdr;
1696 if (xdr_stream_decode_bool(argp->xdr, &lcp->lc_reclaim) < 0)
1697 return nfserr_bad_xdr;
1698 status = nfsd4_decode_stateid4(argp, &lcp->lc_sid);
1699 if (status)
1700 return status;
1701 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_newoffset) < 0)
1702 return nfserr_bad_xdr;
1703 if (lcp->lc_newoffset) {
1704 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_last_wr) < 0)
1705 return nfserr_bad_xdr;
1706 } else
1707 lcp->lc_last_wr = 0;
1708 p = xdr_inline_decode(argp->xdr, XDR_UNIT);
1709 if (!p)
1710 return nfserr_bad_xdr;
1711 if (xdr_item_is_present(p)) {
1712 status = nfsd4_decode_nfstime4(argp, &lcp->lc_mtime);
1713 if (status)
1714 return status;
1715 } else {
1716 lcp->lc_mtime.tv_nsec = UTIME_NOW;
1717 }
1718 return nfsd4_decode_layoutupdate4(argp, lcp);
1719}
1720
1721static __be32
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001722nfsd4_decode_layoutget(struct nfsd4_compoundargs *argp,
1723 struct nfsd4_layoutget *lgp)
1724{
Chuck Leverc8e88e32020-11-03 15:06:04 -05001725 __be32 status;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001726
Chuck Leverc8e88e32020-11-03 15:06:04 -05001727 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_signal) < 0)
1728 return nfserr_bad_xdr;
1729 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_layout_type) < 0)
1730 return nfserr_bad_xdr;
1731 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_seg.iomode) < 0)
1732 return nfserr_bad_xdr;
1733 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_seg.offset) < 0)
1734 return nfserr_bad_xdr;
1735 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_seg.length) < 0)
1736 return nfserr_bad_xdr;
1737 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_minlength) < 0)
1738 return nfserr_bad_xdr;
1739 status = nfsd4_decode_stateid4(argp, &lgp->lg_sid);
Kinglong Meedb59c0e2015-03-19 19:04:41 +08001740 if (status)
1741 return status;
Chuck Leverc8e88e32020-11-03 15:06:04 -05001742 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_maxcount) < 0)
1743 return nfserr_bad_xdr;
Kinglong Meedb59c0e2015-03-19 19:04:41 +08001744
Chuck Leverc8e88e32020-11-03 15:06:04 -05001745 return nfs_ok;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001746}
1747
1748static __be32
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001749nfsd4_decode_layoutreturn(struct nfsd4_compoundargs *argp,
1750 struct nfsd4_layoutreturn *lrp)
1751{
Chuck Lever645fcad2020-11-04 10:42:25 -05001752 if (xdr_stream_decode_bool(argp->xdr, &lrp->lr_reclaim) < 0)
1753 return nfserr_bad_xdr;
1754 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_layout_type) < 0)
1755 return nfserr_bad_xdr;
1756 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_seg.iomode) < 0)
1757 return nfserr_bad_xdr;
1758 return nfsd4_decode_layoutreturn4(argp, lrp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001759}
1760#endif /* CONFIG_NFSD_PNFS */
1761
Chuck Lever53d70872020-11-03 14:33:12 -05001762static __be32 nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1763 struct nfsd4_secinfo_no_name *sin)
1764{
1765 if (xdr_stream_decode_u32(argp->xdr, &sin->sin_style) < 0)
1766 return nfserr_bad_xdr;
1767 return nfs_ok;
1768}
1769
Andy Adamson2db134e2009-04-03 08:27:55 +03001770static __be32
Chuck Levercf907b12020-11-03 14:55:19 -05001771nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1772 struct nfsd4_sequence *seq)
1773{
1774 __be32 *p, status;
1775
1776 status = nfsd4_decode_sessionid4(argp, &seq->sessionid);
1777 if (status)
1778 return status;
1779 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 4);
1780 if (!p)
1781 return nfserr_bad_xdr;
1782 seq->seqid = be32_to_cpup(p++);
1783 seq->slotid = be32_to_cpup(p++);
1784 seq->maxslots = be32_to_cpup(p++);
1785 seq->cachethis = be32_to_cpup(p);
1786
1787 return nfs_ok;
1788}
1789
1790static __be32
Chuck Leverb7a0c8f2020-11-03 14:57:44 -05001791nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1792{
1793 struct nfsd4_test_stateid_id *stateid;
1794 __be32 status;
1795 u32 i;
1796
1797 if (xdr_stream_decode_u32(argp->xdr, &test_stateid->ts_num_ids) < 0)
1798 return nfserr_bad_xdr;
1799
1800 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
1801 for (i = 0; i < test_stateid->ts_num_ids; i++) {
1802 stateid = svcxdr_tmpalloc(argp, sizeof(*stateid));
1803 if (!stateid)
1804 return nfserrno(-ENOMEM); /* XXX: not jukebox? */
1805 INIT_LIST_HEAD(&stateid->ts_id_list);
1806 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1807 status = nfsd4_decode_stateid4(argp, &stateid->ts_id_stateid);
1808 if (status)
1809 return status;
1810 }
1811
1812 return nfs_ok;
1813}
1814
Chuck Leverc95f2ec2020-11-04 15:15:09 -05001815static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp,
1816 struct nfsd4_destroy_clientid *dc)
1817{
1818 return nfsd4_decode_clientid4(argp, &dc->clientid);
1819}
1820
Chuck Lever0d646782020-11-03 15:02:11 -05001821static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp,
1822 struct nfsd4_reclaim_complete *rc)
1823{
1824 if (xdr_stream_decode_bool(argp->xdr, &rc->rca_one_fs) < 0)
1825 return nfserr_bad_xdr;
1826 return nfs_ok;
1827}
1828
Chuck Leverb7a0c8f2020-11-03 14:57:44 -05001829static __be32
Anna Schumaker95d871f2014-11-07 14:44:26 -05001830nfsd4_decode_fallocate(struct nfsd4_compoundargs *argp,
1831 struct nfsd4_fallocate *fallocate)
1832{
Chuck Lever6aef27a2020-11-04 10:44:05 -05001833 __be32 status;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001834
Chuck Lever6aef27a2020-11-04 10:44:05 -05001835 status = nfsd4_decode_stateid4(argp, &fallocate->falloc_stateid);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001836 if (status)
1837 return status;
Chuck Lever6aef27a2020-11-04 10:44:05 -05001838 if (xdr_stream_decode_u64(argp->xdr, &fallocate->falloc_offset) < 0)
1839 return nfserr_bad_xdr;
1840 if (xdr_stream_decode_u64(argp->xdr, &fallocate->falloc_length) < 0)
1841 return nfserr_bad_xdr;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001842
Chuck Lever6aef27a2020-11-04 10:44:05 -05001843 return nfs_ok;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001844}
1845
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001846static __be32 nfsd4_decode_nl4_server(struct nfsd4_compoundargs *argp,
1847 struct nl4_server *ns)
1848{
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001849 struct nfs42_netaddr *naddr;
Chuck Leverf49e4b42020-11-16 18:05:06 -05001850 __be32 *p;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001851
Chuck Leverf49e4b42020-11-16 18:05:06 -05001852 if (xdr_stream_decode_u32(argp->xdr, &ns->nl4_type) < 0)
1853 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001854
1855 /* currently support for 1 inter-server source server */
1856 switch (ns->nl4_type) {
1857 case NL4_NETADDR:
1858 naddr = &ns->u.nl4_addr;
1859
Chuck Leverf49e4b42020-11-16 18:05:06 -05001860 if (xdr_stream_decode_u32(argp->xdr, &naddr->netid_len) < 0)
1861 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001862 if (naddr->netid_len > RPCBIND_MAXNETIDLEN)
Chuck Leverf49e4b42020-11-16 18:05:06 -05001863 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001864
Chuck Leverf49e4b42020-11-16 18:05:06 -05001865 p = xdr_inline_decode(argp->xdr, naddr->netid_len);
1866 if (!p)
1867 return nfserr_bad_xdr;
1868 memcpy(naddr->netid, p, naddr->netid_len);
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001869
Chuck Leverf49e4b42020-11-16 18:05:06 -05001870 if (xdr_stream_decode_u32(argp->xdr, &naddr->addr_len) < 0)
1871 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001872 if (naddr->addr_len > RPCBIND_MAXUADDRLEN)
Chuck Leverf49e4b42020-11-16 18:05:06 -05001873 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001874
Chuck Leverf49e4b42020-11-16 18:05:06 -05001875 p = xdr_inline_decode(argp->xdr, naddr->addr_len);
1876 if (!p)
1877 return nfserr_bad_xdr;
1878 memcpy(naddr->addr, p, naddr->addr_len);
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001879 break;
1880 default:
Chuck Leverf49e4b42020-11-16 18:05:06 -05001881 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001882 }
Chuck Leverf49e4b42020-11-16 18:05:06 -05001883
1884 return nfs_ok;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001885}
1886
Christoph Hellwigffa01602015-12-03 12:59:52 +01001887static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001888nfsd4_decode_copy(struct nfsd4_compoundargs *argp, struct nfsd4_copy *copy)
1889{
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001890 struct nl4_server *ns_dummy;
Chuck Levere8febea2020-11-04 10:49:37 -05001891 u32 consecutive, i, count;
1892 __be32 status;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001893
Chuck Levere8febea2020-11-04 10:49:37 -05001894 status = nfsd4_decode_stateid4(argp, &copy->cp_src_stateid);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001895 if (status)
1896 return status;
Chuck Levere8febea2020-11-04 10:49:37 -05001897 status = nfsd4_decode_stateid4(argp, &copy->cp_dst_stateid);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001898 if (status)
1899 return status;
Chuck Levere8febea2020-11-04 10:49:37 -05001900 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_src_pos) < 0)
1901 return nfserr_bad_xdr;
1902 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_dst_pos) < 0)
1903 return nfserr_bad_xdr;
1904 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_count) < 0)
1905 return nfserr_bad_xdr;
1906 /* ca_consecutive: we always do consecutive copies */
1907 if (xdr_stream_decode_u32(argp->xdr, &consecutive) < 0)
1908 return nfserr_bad_xdr;
1909 if (xdr_stream_decode_u32(argp->xdr, &copy->cp_synchronous) < 0)
1910 return nfserr_bad_xdr;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001911
Chuck Levere8febea2020-11-04 10:49:37 -05001912 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1913 return nfserr_bad_xdr;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001914 copy->cp_intra = false;
1915 if (count == 0) { /* intra-server copy */
1916 copy->cp_intra = true;
Chuck Levere8febea2020-11-04 10:49:37 -05001917 return nfs_ok;
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001918 }
1919
Chuck Levere8febea2020-11-04 10:49:37 -05001920 /* decode all the supplied server addresses but use only the first */
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001921 status = nfsd4_decode_nl4_server(argp, &copy->cp_src);
1922 if (status)
1923 return status;
1924
1925 ns_dummy = kmalloc(sizeof(struct nl4_server), GFP_KERNEL);
1926 if (ns_dummy == NULL)
Chuck Levere8febea2020-11-04 10:49:37 -05001927 return nfserrno(-ENOMEM); /* XXX: jukebox? */
Olga Kornievskaia84e1b212019-09-13 14:00:57 -04001928 for (i = 0; i < count - 1; i++) {
1929 status = nfsd4_decode_nl4_server(argp, ns_dummy);
1930 if (status) {
1931 kfree(ns_dummy);
1932 return status;
1933 }
1934 }
1935 kfree(ns_dummy);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001936
Chuck Levere8febea2020-11-04 10:49:37 -05001937 return nfs_ok;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001938}
1939
1940static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04001941nfsd4_decode_copy_notify(struct nfsd4_compoundargs *argp,
1942 struct nfsd4_copy_notify *cn)
1943{
Chuck Lever5aff7d02020-09-11 14:47:59 -04001944 __be32 status;
Olga Kornievskaia51911862019-08-08 11:14:59 -04001945
Chuck Leverf9a953f2020-11-21 14:19:24 -05001946 status = nfsd4_decode_stateid4(argp, &cn->cpn_src_stateid);
Olga Kornievskaia51911862019-08-08 11:14:59 -04001947 if (status)
1948 return status;
1949 return nfsd4_decode_nl4_server(argp, &cn->cpn_dst);
1950}
1951
1952static __be32
Chuck Leverf9a953f2020-11-21 14:19:24 -05001953nfsd4_decode_offload_status(struct nfsd4_compoundargs *argp,
1954 struct nfsd4_offload_status *os)
1955{
Chuck Lever2846bb052020-11-21 14:21:25 -05001956 return nfsd4_decode_stateid4(argp, &os->stateid);
Chuck Leverf9a953f2020-11-21 14:19:24 -05001957}
1958
1959static __be32
Anna Schumaker24bab492014-09-26 13:58:27 -04001960nfsd4_decode_seek(struct nfsd4_compoundargs *argp, struct nfsd4_seek *seek)
1961{
Chuck Lever9d32b412020-11-04 10:54:47 -05001962 __be32 status;
Anna Schumaker24bab492014-09-26 13:58:27 -04001963
Chuck Lever9d32b412020-11-04 10:54:47 -05001964 status = nfsd4_decode_stateid4(argp, &seek->seek_stateid);
Anna Schumaker24bab492014-09-26 13:58:27 -04001965 if (status)
1966 return status;
Chuck Lever9d32b412020-11-04 10:54:47 -05001967 if (xdr_stream_decode_u64(argp->xdr, &seek->seek_offset) < 0)
1968 return nfserr_bad_xdr;
1969 if (xdr_stream_decode_u32(argp->xdr, &seek->seek_whence) < 0)
1970 return nfserr_bad_xdr;
Anna Schumaker24bab492014-09-26 13:58:27 -04001971
Chuck Lever9d32b412020-11-04 10:54:47 -05001972 return nfs_ok;
Anna Schumaker24bab492014-09-26 13:58:27 -04001973}
1974
Chuck Lever3dfd0b02020-11-04 10:46:46 -05001975static __be32
1976nfsd4_decode_clone(struct nfsd4_compoundargs *argp, struct nfsd4_clone *clone)
1977{
1978 __be32 status;
1979
1980 status = nfsd4_decode_stateid4(argp, &clone->cl_src_stateid);
1981 if (status)
1982 return status;
1983 status = nfsd4_decode_stateid4(argp, &clone->cl_dst_stateid);
1984 if (status)
1985 return status;
1986 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_src_pos) < 0)
1987 return nfserr_bad_xdr;
1988 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_dst_pos) < 0)
1989 return nfserr_bad_xdr;
1990 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_count) < 0)
1991 return nfserr_bad_xdr;
1992
1993 return nfs_ok;
1994}
1995
Frank van der Linden23e50fe2020-06-23 22:39:26 +00001996/*
1997 * XDR data that is more than PAGE_SIZE in size is normally part of a
1998 * read or write. However, the size of extended attributes is limited
1999 * by the maximum request size, and then further limited by the underlying
2000 * filesystem limits. This can exceed PAGE_SIZE (currently, XATTR_SIZE_MAX
2001 * is 64k). Since there is no kvec- or page-based interface to xattrs,
2002 * and we're not dealing with contiguous pages, we need to do some copying.
2003 */
2004
2005/*
Chuck Leverc1346a122020-11-03 11:54:23 -05002006 * Decode data into buffer.
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002007 */
2008static __be32
Chuck Leverc1346a122020-11-03 11:54:23 -05002009nfsd4_vbuf_from_vector(struct nfsd4_compoundargs *argp, struct xdr_buf *xdr,
2010 char **bufp, u32 buflen)
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002011{
Chuck Leverc1346a122020-11-03 11:54:23 -05002012 struct page **pages = xdr->pages;
2013 struct kvec *head = xdr->head;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002014 char *tmp, *dp;
2015 u32 len;
2016
2017 if (buflen <= head->iov_len) {
2018 /*
2019 * We're in luck, the head has enough space. Just return
2020 * the head, no need for copying.
2021 */
2022 *bufp = head->iov_base;
2023 return 0;
2024 }
2025
2026 tmp = svcxdr_tmpalloc(argp, buflen);
2027 if (tmp == NULL)
2028 return nfserr_jukebox;
2029
2030 dp = tmp;
2031 memcpy(dp, head->iov_base, head->iov_len);
2032 buflen -= head->iov_len;
2033 dp += head->iov_len;
2034
2035 while (buflen > 0) {
2036 len = min_t(u32, buflen, PAGE_SIZE);
2037 memcpy(dp, page_address(*pages), len);
2038
2039 buflen -= len;
2040 dp += len;
2041 pages++;
2042 }
2043
2044 *bufp = tmp;
2045 return 0;
2046}
2047
2048/*
2049 * Get a user extended attribute name from the XDR buffer.
2050 * It will not have the "user." prefix, so prepend it.
2051 * Lastly, check for nul characters in the name.
2052 */
2053static __be32
2054nfsd4_decode_xattr_name(struct nfsd4_compoundargs *argp, char **namep)
2055{
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002056 char *name, *sp, *dp;
2057 u32 namelen, cnt;
Chuck Lever830c7152020-11-04 10:56:52 -05002058 __be32 *p;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002059
Chuck Lever830c7152020-11-04 10:56:52 -05002060 if (xdr_stream_decode_u32(argp->xdr, &namelen) < 0)
2061 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002062 if (namelen > (XATTR_NAME_MAX - XATTR_USER_PREFIX_LEN))
2063 return nfserr_nametoolong;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002064 if (namelen == 0)
Chuck Lever830c7152020-11-04 10:56:52 -05002065 return nfserr_bad_xdr;
2066 p = xdr_inline_decode(argp->xdr, namelen);
2067 if (!p)
2068 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002069 name = svcxdr_tmpalloc(argp, namelen + XATTR_USER_PREFIX_LEN + 1);
2070 if (!name)
2071 return nfserr_jukebox;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002072 memcpy(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
2073
2074 /*
2075 * Copy the extended attribute name over while checking for 0
2076 * characters.
2077 */
2078 sp = (char *)p;
2079 dp = name + XATTR_USER_PREFIX_LEN;
2080 cnt = namelen;
2081
2082 while (cnt-- > 0) {
2083 if (*sp == '\0')
Chuck Lever830c7152020-11-04 10:56:52 -05002084 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002085 *dp++ = *sp++;
2086 }
2087 *dp = '\0';
2088
2089 *namep = name;
2090
Chuck Lever830c7152020-11-04 10:56:52 -05002091 return nfs_ok;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002092}
2093
2094/*
2095 * A GETXATTR op request comes without a length specifier. We just set the
2096 * maximum length for the reply based on XATTR_SIZE_MAX and the maximum
2097 * channel reply size. nfsd_getxattr will probe the length of the xattr,
2098 * check it against getxa_len, and allocate + return the value.
2099 */
2100static __be32
2101nfsd4_decode_getxattr(struct nfsd4_compoundargs *argp,
2102 struct nfsd4_getxattr *getxattr)
2103{
2104 __be32 status;
2105 u32 maxcount;
2106
2107 status = nfsd4_decode_xattr_name(argp, &getxattr->getxa_name);
2108 if (status)
2109 return status;
2110
2111 maxcount = svc_max_payload(argp->rqstp);
2112 maxcount = min_t(u32, XATTR_SIZE_MAX, maxcount);
2113
2114 getxattr->getxa_len = maxcount;
2115
2116 return status;
2117}
2118
2119static __be32
2120nfsd4_decode_setxattr(struct nfsd4_compoundargs *argp,
2121 struct nfsd4_setxattr *setxattr)
2122{
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002123 u32 flags, maxcount, size;
Chuck Lever403366a2020-11-04 10:59:57 -05002124 __be32 status;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002125
Chuck Lever403366a2020-11-04 10:59:57 -05002126 if (xdr_stream_decode_u32(argp->xdr, &flags) < 0)
2127 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002128
2129 if (flags > SETXATTR4_REPLACE)
2130 return nfserr_inval;
2131 setxattr->setxa_flags = flags;
2132
2133 status = nfsd4_decode_xattr_name(argp, &setxattr->setxa_name);
2134 if (status)
2135 return status;
2136
2137 maxcount = svc_max_payload(argp->rqstp);
2138 maxcount = min_t(u32, XATTR_SIZE_MAX, maxcount);
2139
Chuck Lever403366a2020-11-04 10:59:57 -05002140 if (xdr_stream_decode_u32(argp->xdr, &size) < 0)
2141 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002142 if (size > maxcount)
2143 return nfserr_xattr2big;
2144
2145 setxattr->setxa_len = size;
2146 if (size > 0) {
Chuck Leverc1346a122020-11-03 11:54:23 -05002147 struct xdr_buf payload;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002148
Chuck Leverc1346a122020-11-03 11:54:23 -05002149 if (!xdr_stream_subsegment(argp->xdr, &payload, size))
Chuck Lever403366a2020-11-04 10:59:57 -05002150 return nfserr_bad_xdr;
Chuck Leverc1346a122020-11-03 11:54:23 -05002151 status = nfsd4_vbuf_from_vector(argp, &payload,
2152 &setxattr->setxa_buf, size);
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002153 }
2154
Chuck Lever403366a2020-11-04 10:59:57 -05002155 return nfs_ok;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002156}
2157
2158static __be32
2159nfsd4_decode_listxattrs(struct nfsd4_compoundargs *argp,
2160 struct nfsd4_listxattrs *listxattrs)
2161{
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002162 u32 maxcount;
2163
Chuck Lever22120362020-11-04 11:04:02 -05002164 if (xdr_stream_decode_u64(argp->xdr, &listxattrs->lsxa_cookie) < 0)
2165 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002166
2167 /*
2168 * If the cookie is too large to have even one user.x attribute
2169 * plus trailing '\0' left in a maximum size buffer, it's invalid.
2170 */
2171 if (listxattrs->lsxa_cookie >=
2172 (XATTR_LIST_MAX / (XATTR_USER_PREFIX_LEN + 2)))
2173 return nfserr_badcookie;
2174
Chuck Lever22120362020-11-04 11:04:02 -05002175 if (xdr_stream_decode_u32(argp->xdr, &maxcount) < 0)
2176 return nfserr_bad_xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002177 if (maxcount < 8)
2178 /* Always need at least 2 words (length and one character) */
2179 return nfserr_inval;
2180
2181 maxcount = min(maxcount, svc_max_payload(argp->rqstp));
2182 listxattrs->lsxa_maxcount = maxcount;
2183
Chuck Lever22120362020-11-04 11:04:02 -05002184 return nfs_ok;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002185}
2186
2187static __be32
2188nfsd4_decode_removexattr(struct nfsd4_compoundargs *argp,
2189 struct nfsd4_removexattr *removexattr)
2190{
2191 return nfsd4_decode_xattr_name(argp, &removexattr->rmxa_name);
2192}
2193
Anna Schumaker24bab492014-09-26 13:58:27 -04002194static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03002195nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
2196{
2197 return nfs_ok;
2198}
2199
Benny Halevy3c375c62008-07-02 11:14:01 +03002200static __be32
2201nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
2202{
Benny Halevy1e685ec2009-03-04 23:06:06 +02002203 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03002204}
2205
Benny Halevy347e0ad2008-07-02 11:13:41 +03002206typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
2207
Chuck Leverc1df6092017-08-01 11:59:58 -04002208static const nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04002209 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
2210 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
2211 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
2212 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
2213 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
2214 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
2215 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
2216 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
2217 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
2218 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
2219 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
2220 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
2221 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
2222 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
2223 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
2224 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
2225 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
2226 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
2227 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
2228 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002229 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_putpubfh,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04002230 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
2231 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
2232 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
2233 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
2234 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
2235 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
2236 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
2237 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
2238 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
2239 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
2240 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
2241 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
2242 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
2243 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
2244 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
2245 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Andy Adamson2db134e2009-04-03 08:27:55 +03002246
2247 /* new operations for NFSv4.1 */
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002248 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002249 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07002250 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
2251 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
2252 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04002253 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07002254 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002255#ifdef CONFIG_NFSD_PNFS
2256 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_getdeviceinfo,
2257 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
2258 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_layoutcommit,
2259 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_layoutget,
2260 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_layoutreturn,
2261#else
Randy Dunlap9064caa2009-04-28 16:48:25 -07002262 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
2263 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
2264 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
2265 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
2266 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002267#endif
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05002268 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07002269 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
2270 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04002271 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07002272 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Mi Jinlong345c2842011-10-20 17:51:39 +08002273 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002274 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Anna Schumaker87a15a82014-09-26 13:58:26 -04002275
2276 /* new operations for NFSv4.2 */
Anna Schumaker95d871f2014-11-07 14:44:26 -05002277 [OP_ALLOCATE] = (nfsd4_dec)nfsd4_decode_fallocate,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04002278 [OP_COPY] = (nfsd4_dec)nfsd4_decode_copy,
Olga Kornievskaia51911862019-08-08 11:14:59 -04002279 [OP_COPY_NOTIFY] = (nfsd4_dec)nfsd4_decode_copy_notify,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05002280 [OP_DEALLOCATE] = (nfsd4_dec)nfsd4_decode_fallocate,
Anna Schumaker87a15a82014-09-26 13:58:26 -04002281 [OP_IO_ADVISE] = (nfsd4_dec)nfsd4_decode_notsupp,
2282 [OP_LAYOUTERROR] = (nfsd4_dec)nfsd4_decode_notsupp,
2283 [OP_LAYOUTSTATS] = (nfsd4_dec)nfsd4_decode_notsupp,
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04002284 [OP_OFFLOAD_CANCEL] = (nfsd4_dec)nfsd4_decode_offload_status,
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04002285 [OP_OFFLOAD_STATUS] = (nfsd4_dec)nfsd4_decode_offload_status,
Anna Schumaker528b8492020-09-28 13:08:58 -04002286 [OP_READ_PLUS] = (nfsd4_dec)nfsd4_decode_read,
Anna Schumaker24bab492014-09-26 13:58:27 -04002287 [OP_SEEK] = (nfsd4_dec)nfsd4_decode_seek,
Anna Schumaker87a15a82014-09-26 13:58:26 -04002288 [OP_WRITE_SAME] = (nfsd4_dec)nfsd4_decode_notsupp,
Christoph Hellwigffa01602015-12-03 12:59:52 +01002289 [OP_CLONE] = (nfsd4_dec)nfsd4_decode_clone,
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002290 /* RFC 8276 extended atributes operations */
2291 [OP_GETXATTR] = (nfsd4_dec)nfsd4_decode_getxattr,
2292 [OP_SETXATTR] = (nfsd4_dec)nfsd4_decode_setxattr,
2293 [OP_LISTXATTRS] = (nfsd4_dec)nfsd4_decode_listxattrs,
2294 [OP_REMOVEXATTR] = (nfsd4_dec)nfsd4_decode_removexattr,
Andy Adamson2db134e2009-04-03 08:27:55 +03002295};
2296
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002297static inline bool
2298nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op)
2299{
Anna Schumaker8217d142013-10-30 13:38:13 -04002300 if (op->opnum < FIRST_NFS4_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002301 return false;
Anna Schumaker8217d142013-10-30 13:38:13 -04002302 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002303 return false;
Anna Schumaker8217d142013-10-30 13:38:13 -04002304 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP)
2305 return false;
2306 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002307 return false;
2308 return true;
2309}
Benny Halevyf2feb962008-07-02 11:14:22 +03002310
Chuck Leverc44b31c2021-10-12 11:57:28 -04002311static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
2313{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 struct nfsd4_op *op;
J. Bruce Fields10910062011-01-24 12:11:02 -05002315 bool cachethis = false;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002316 int auth_slack= argp->rqstp->rq_auth_slack;
2317 int max_reply = auth_slack + 8; /* opcnt, status */
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05002318 int readcount = 0;
2319 int readbytes = 0;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002320 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 int i;
2322
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002323 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002324 return false;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002325 max_reply += XDR_UNIT;
2326 argp->tag = NULL;
2327 if (unlikely(argp->taglen)) {
2328 if (argp->taglen > NFSD4_MAX_TAGLEN)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002329 return false;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002330 p = xdr_inline_decode(argp->xdr, argp->taglen);
2331 if (!p)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002332 return false;
Chuck Lever7b723002020-12-18 12:28:58 -05002333 argp->tag = svcxdr_savemem(argp, p, argp->taglen);
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002334 if (!argp->tag)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002335 return false;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002336 max_reply += xdr_align_size(argp->taglen);
2337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002339 if (xdr_stream_decode_u32(argp->xdr, &argp->minorversion) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002340 return false;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002341 if (xdr_stream_decode_u32(argp->xdr, &argp->opcnt) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002342 return false;
Chuck Leverd9b74bd2020-11-04 11:07:06 -05002343
J. Bruce Fields00781172017-11-15 12:30:27 -05002344 /*
2345 * NFS4ERR_RESOURCE is a more helpful error than GARBAGE_ARGS
2346 * here, so we return success at the xdr level so that
2347 * nfsd4_proc can handle this is an NFS-level error.
2348 */
2349 if (argp->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002350 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Tobias Klausere8c96f82006-03-24 03:15:34 -08002352 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
J. Bruce Fields5d6031c2014-07-17 16:20:39 -04002353 argp->ops = kzalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (!argp->ops) {
2355 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04002356 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Chuck Leverc44b31c2021-10-12 11:57:28 -04002357 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359 }
2360
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002361 if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
Benny Halevy30cff1f2008-07-02 11:13:18 +03002362 argp->opcnt = 0;
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 for (i = 0; i < argp->opcnt; i++) {
2365 op = &argp->ops[i];
2366 op->replay = NULL;
2367
Chuck Lever3a237b42020-11-22 12:49:52 -05002368 if (xdr_stream_decode_u32(argp->xdr, &op->opnum) < 0)
Chuck Leverc44b31c2021-10-12 11:57:28 -04002369 return false;
Chuck Lever08281342020-11-21 11:36:42 -05002370 if (nfsd4_opnum_in_range(argp, op)) {
Anna Schumakere1a90eb2013-10-30 10:00:20 -04002371 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u);
Chuck Lever08281342020-11-21 11:36:42 -05002372 if (op->status != nfs_ok)
2373 trace_nfsd_compound_decode_err(argp->rqstp,
2374 argp->opcnt, i,
2375 op->opnum,
2376 op->status);
2377 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 op->opnum = OP_ILLEGAL;
2379 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002381 op->opdesc = OPDESC(op);
J. Bruce Fields10910062011-01-24 12:11:02 -05002382 /*
2383 * We'll try to cache the result in the DRC if any one
2384 * op in the compound wants to be cached:
2385 */
2386 cachethis |= nfsd4_cache_this_op(op);
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05002387
Anna Schumaker528b8492020-09-28 13:08:58 -04002388 if (op->opnum == OP_READ || op->opnum == OP_READ_PLUS) {
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05002389 readcount++;
2390 readbytes += nfsd4_max_reply(argp->rqstp, op);
2391 } else
2392 max_reply += nfsd4_max_reply(argp->rqstp, op);
J. Bruce Fieldsf7b43d02014-08-12 11:41:40 -04002393 /*
Kinglong Mee7323f0d2017-02-03 22:51:46 +08002394 * OP_LOCK and OP_LOCKT may return a conflicting lock.
2395 * (Special case because it will just skip encoding this
2396 * if it runs out of xdr buffer space, and it is the only
2397 * operation that behaves this way.)
J. Bruce Fieldsf7b43d02014-08-12 11:41:40 -04002398 */
Kinglong Mee7323f0d2017-02-03 22:51:46 +08002399 if (op->opnum == OP_LOCK || op->opnum == OP_LOCKT)
J. Bruce Fieldsf7b43d02014-08-12 11:41:40 -04002400 max_reply += NFS4_OPAQUE_LIMIT;
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04002401
2402 if (op->status) {
2403 argp->opcnt = i+1;
2404 break;
2405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
J. Bruce Fields10910062011-01-24 12:11:02 -05002407 /* Sessions make the DRC unnecessary: */
2408 if (argp->minorversion)
2409 cachethis = false;
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05002410 svc_reserve(argp->rqstp, max_reply + readbytes);
J. Bruce Fields10910062011-01-24 12:11:02 -05002411 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002413 if (readcount > 1 || max_reply > PAGE_SIZE - auth_slack)
Jeff Layton779fb0f2014-11-19 07:51:18 -05002414 clear_bit(RQ_SPLICE_OK, &argp->rqstp->rq_flags);
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05002415
Chuck Leverc44b31c2021-10-12 11:57:28 -04002416 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
NeilBrownb8800922017-01-30 17:17:00 +11002419static __be32 *encode_change(__be32 *p, struct kstat *stat, struct inode *inode,
2420 struct svc_export *exp)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002421{
NeilBrownb8800922017-01-30 17:17:00 +11002422 if (exp->ex_flags & NFSEXP_V4ROOT) {
2423 *p++ = cpu_to_be32(convert_to_wallclock(exp->cd->flush_time));
2424 *p++ = 0;
J. Bruce Fields70b87f72020-11-30 17:46:14 -05002425 } else
Amir Goldstein39ca1bf2018-01-03 17:14:35 +02002426 p = xdr_encode_hyper(p, nfsd4_change_attribute(stat, inode));
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002427 return p;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002428}
2429
J. Bruce Fields16945142018-04-25 14:34:11 -04002430/*
2431 * ctime (in NFSv4, time_metadata) is not writeable, and the client
2432 * doesn't really care what resolution could theoretically be stored by
2433 * the filesystem.
2434 *
2435 * The client cares how close together changes can be while still
2436 * guaranteeing ctime changes. For most filesystems (which have
2437 * timestamps with nanosecond fields) that is limited by the resolution
2438 * of the time returned from current_time() (which I'm assuming to be
2439 * 1/HZ).
2440 */
2441static __be32 *encode_time_delta(__be32 *p, struct inode *inode)
2442{
Arnd Bergmanne4598e32019-10-31 15:14:03 +01002443 struct timespec64 ts;
J. Bruce Fields16945142018-04-25 14:34:11 -04002444 u32 ns;
2445
2446 ns = max_t(u32, NSEC_PER_SEC/HZ, inode->i_sb->s_time_gran);
Arnd Bergmanne4598e32019-10-31 15:14:03 +01002447 ts = ns_to_timespec64(ns);
J. Bruce Fields16945142018-04-25 14:34:11 -04002448
2449 p = xdr_encode_hyper(p, ts.tv_sec);
2450 *p++ = cpu_to_be32(ts.tv_nsec);
2451
2452 return p;
2453}
2454
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002455static __be32 *encode_cinfo(__be32 *p, struct nfsd4_change_info *c)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002456{
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002457 *p++ = cpu_to_be32(c->atomic);
J. Bruce Fieldsb2140332020-11-30 17:46:15 -05002458 p = xdr_encode_hyper(p, c->before_change);
2459 p = xdr_encode_hyper(p, c->after_change);
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002460 return p;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002463/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002464 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002465 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002466static __be32 nfsd4_encode_components_esc(struct xdr_stream *xdr, char sep,
2467 char *components, char esc_enter,
2468 char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002469{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002470 __be32 *p;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002471 __be32 pathlen;
2472 int pathlen_offset;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002473 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002474 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002475
2476 dprintk("nfsd4_encode_components(%s)\n", components);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002477
2478 pathlen_offset = xdr->buf->len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002479 p = xdr_reserve_space(xdr, 4);
2480 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002481 return nfserr_resource;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002482 p++; /* We will fill this in with @count later */
2483
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002484 end = str = components;
2485 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002486 bool found_esc = false;
2487
2488 /* try to parse as esc_start, ..., esc_end, sep */
2489 if (*str == esc_enter) {
2490 for (; *end && (*end != esc_exit); end++)
2491 /* find esc_exit or end of string */;
2492 next = end + 1;
2493 if (*end && (!*next || *next == sep)) {
2494 str++;
2495 found_esc = true;
2496 }
2497 }
2498
2499 if (!found_esc)
2500 for (; *end && (*end != sep); end++)
2501 /* find sep or end of string */;
2502
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002503 strlen = end - str;
2504 if (strlen) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002505 p = xdr_reserve_space(xdr, strlen + 4);
2506 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002507 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002508 p = xdr_encode_opaque(p, str, strlen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002509 count++;
2510 }
2511 else
2512 end++;
Benjamin Coddington5a64e562014-12-07 16:05:47 -05002513 if (found_esc)
2514 end = next;
2515
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002516 str = end;
2517 }
Benjamin Coddingtonbf7491f2014-12-07 16:05:48 -05002518 pathlen = htonl(count);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002519 write_bytes_to_xdr_buf(xdr->buf, pathlen_offset, &pathlen, 4);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002520 return 0;
2521}
2522
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002523/* Encode as an array of strings the string given with components
2524 * separated @sep.
2525 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002526static __be32 nfsd4_encode_components(struct xdr_stream *xdr, char sep,
2527 char *components)
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002528{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002529 return nfsd4_encode_components_esc(xdr, sep, components, 0, 0);
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002530}
2531
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002532/*
2533 * encode a location element of a fs_locations structure
2534 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002535static __be32 nfsd4_encode_fs_location4(struct xdr_stream *xdr,
2536 struct nfsd4_fs_location *location)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002537{
Al Virob37ad282006-10-19 23:28:59 -07002538 __be32 status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002539
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002540 status = nfsd4_encode_components_esc(xdr, ':', location->hosts,
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04002541 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002542 if (status)
2543 return status;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002544 status = nfsd4_encode_components(xdr, '/', location->path);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002545 if (status)
2546 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002547 return 0;
2548}
2549
2550/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04002551 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002552 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002553static __be32 nfsd4_encode_path(struct xdr_stream *xdr,
2554 const struct path *root,
2555 const struct path *path)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002556{
Al Viro301f0262013-09-01 16:06:39 -04002557 struct path cur = *path;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002558 __be32 *p;
Trond Myklebusted748aa2011-09-12 19:37:06 -04002559 struct dentry **components = NULL;
2560 unsigned int ncomponents = 0;
2561 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002562
Trond Myklebusted748aa2011-09-12 19:37:06 -04002563 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002564
Trond Myklebusted748aa2011-09-12 19:37:06 -04002565 path_get(&cur);
2566 /* First walk the path up to the nfsd root, and store the
2567 * dentries/path components in an array.
2568 */
2569 for (;;) {
Kinglong Meeb77a4b22015-03-15 23:13:32 +08002570 if (path_equal(&cur, root))
Trond Myklebusted748aa2011-09-12 19:37:06 -04002571 break;
2572 if (cur.dentry == cur.mnt->mnt_root) {
2573 if (follow_up(&cur))
2574 continue;
2575 goto out_free;
2576 }
2577 if ((ncomponents & 15) == 0) {
2578 struct dentry **new;
2579 new = krealloc(components,
2580 sizeof(*new) * (ncomponents + 16),
2581 GFP_KERNEL);
2582 if (!new)
2583 goto out_free;
2584 components = new;
2585 }
2586 components[ncomponents++] = cur.dentry;
2587 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002588 }
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002589 err = nfserr_resource;
2590 p = xdr_reserve_space(xdr, 4);
2591 if (!p)
Trond Myklebusted748aa2011-09-12 19:37:06 -04002592 goto out_free;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002593 *p++ = cpu_to_be32(ncomponents);
Trond Myklebusted748aa2011-09-12 19:37:06 -04002594
2595 while (ncomponents) {
2596 struct dentry *dentry = components[ncomponents - 1];
Al Viro301f0262013-09-01 16:06:39 -04002597 unsigned int len;
Trond Myklebusted748aa2011-09-12 19:37:06 -04002598
Al Viro301f0262013-09-01 16:06:39 -04002599 spin_lock(&dentry->d_lock);
2600 len = dentry->d_name.len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002601 p = xdr_reserve_space(xdr, len + 4);
2602 if (!p) {
Al Viro301f0262013-09-01 16:06:39 -04002603 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04002604 goto out_free;
Al Viro301f0262013-09-01 16:06:39 -04002605 }
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002606 p = xdr_encode_opaque(p, dentry->d_name.name, len);
Al Viroa4555892014-10-21 20:11:25 -04002607 dprintk("/%pd", dentry);
Al Viro301f0262013-09-01 16:06:39 -04002608 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04002609 dput(dentry);
2610 ncomponents--;
2611 }
2612
Trond Myklebusted748aa2011-09-12 19:37:06 -04002613 err = 0;
2614out_free:
2615 dprintk(")\n");
2616 while (ncomponents)
2617 dput(components[--ncomponents]);
2618 kfree(components);
2619 path_put(&cur);
2620 return err;
2621}
2622
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002623static __be32 nfsd4_encode_fsloc_fsroot(struct xdr_stream *xdr,
2624 struct svc_rqst *rqstp, const struct path *path)
Trond Myklebusted748aa2011-09-12 19:37:06 -04002625{
2626 struct svc_export *exp_ps;
2627 __be32 res;
2628
2629 exp_ps = rqst_find_fsidzero_export(rqstp);
2630 if (IS_ERR(exp_ps))
2631 return nfserrno(PTR_ERR(exp_ps));
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002632 res = nfsd4_encode_path(xdr, &exp_ps->ex_path, path);
Trond Myklebusted748aa2011-09-12 19:37:06 -04002633 exp_put(exp_ps);
2634 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002635}
2636
2637/*
2638 * encode a fs_locations structure
2639 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002640static __be32 nfsd4_encode_fs_locations(struct xdr_stream *xdr,
2641 struct svc_rqst *rqstp, struct svc_export *exp)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002642{
Al Virob37ad282006-10-19 23:28:59 -07002643 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07002644 int i;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002645 __be32 *p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002646 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002647
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002648 status = nfsd4_encode_fsloc_fsroot(xdr, rqstp, &exp->ex_path);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002649 if (status)
2650 return status;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002651 p = xdr_reserve_space(xdr, 4);
2652 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002653 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002654 *p++ = cpu_to_be32(fslocs->locations_count);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002655 for (i=0; i<fslocs->locations_count; i++) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002656 status = nfsd4_encode_fs_location4(xdr, &fslocs->locations[i]);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002657 if (status)
2658 return status;
2659 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002660 return 0;
2661}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002663static u32 nfs4_file_type(umode_t mode)
2664{
2665 switch (mode & S_IFMT) {
2666 case S_IFIFO: return NF4FIFO;
2667 case S_IFCHR: return NF4CHR;
2668 case S_IFDIR: return NF4DIR;
2669 case S_IFBLK: return NF4BLK;
2670 case S_IFLNK: return NF4LNK;
2671 case S_IFREG: return NF4REG;
2672 case S_IFSOCK: return NF4SOCK;
2673 default: return NF4BAD;
Tom Rix25fef482020-11-01 07:32:34 -08002674 }
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002675}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Al Virob37ad282006-10-19 23:28:59 -07002677static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002678nfsd4_encode_aclname(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2679 struct nfs4_ace *ace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
J. Bruce Fields35541162014-01-08 09:49:01 -05002681 if (ace->whotype != NFS4_ACL_WHO_NAMED)
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002682 return nfs4_acl_write_who(xdr, ace->whotype);
J. Bruce Fields35541162014-01-08 09:49:01 -05002683 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002684 return nfsd4_encode_group(xdr, rqstp, ace->who_gid);
J. Bruce Fields35541162014-01-08 09:49:01 -05002685 else
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002686 return nfsd4_encode_user(xdr, rqstp, ace->who_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687}
2688
Kinglong Mee6896f152015-07-30 21:52:44 +08002689static inline __be32
Jeff Layton8a4c3922016-07-10 15:55:58 -04002690nfsd4_encode_layout_types(struct xdr_stream *xdr, u32 layout_types)
Kinglong Mee6896f152015-07-30 21:52:44 +08002691{
Jeff Layton8a4c3922016-07-10 15:55:58 -04002692 __be32 *p;
2693 unsigned long i = hweight_long(layout_types);
Kinglong Mee6896f152015-07-30 21:52:44 +08002694
Jeff Layton8a4c3922016-07-10 15:55:58 -04002695 p = xdr_reserve_space(xdr, 4 + 4 * i);
2696 if (!p)
2697 return nfserr_resource;
2698
2699 *p++ = cpu_to_be32(i);
2700
2701 for (i = LAYOUT_NFSV4_1_FILES; i < LAYOUT_TYPE_MAX; ++i)
2702 if (layout_types & (1 << i))
2703 *p++ = cpu_to_be32(i);
Kinglong Mee6896f152015-07-30 21:52:44 +08002704
2705 return 0;
2706}
2707
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002708#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
2709 FATTR4_WORD0_RDATTR_ERROR)
2710#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
Kinglong Meec2227a32015-07-07 10:16:37 +08002711#define WORD2_ABSENT_FS_ATTRS 0
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002712
David Quigley18032ca2013-05-02 13:19:10 -04002713#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2714static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002715nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2716 void *context, int len)
David Quigley18032ca2013-05-02 13:19:10 -04002717{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002718 __be32 *p;
David Quigley18032ca2013-05-02 13:19:10 -04002719
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002720 p = xdr_reserve_space(xdr, len + 4 + 4 + 4);
2721 if (!p)
David Quigley18032ca2013-05-02 13:19:10 -04002722 return nfserr_resource;
2723
2724 /*
2725 * For now we use a 0 here to indicate the null translation; in
2726 * the future we may place a call to translation code here.
2727 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002728 *p++ = cpu_to_be32(0); /* lfs */
2729 *p++ = cpu_to_be32(0); /* pi */
David Quigley18032ca2013-05-02 13:19:10 -04002730 p = xdr_encode_opaque(p, context, len);
David Quigley18032ca2013-05-02 13:19:10 -04002731 return 0;
2732}
2733#else
2734static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002735nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2736 void *context, int len)
David Quigley18032ca2013-05-02 13:19:10 -04002737{ return 0; }
2738#endif
2739
Kinglong Meec2227a32015-07-07 10:16:37 +08002740static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *bmval2, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002741{
2742 /* As per referral draft: */
2743 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
2744 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
2745 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
2746 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
2747 *rdattr_err = NFSERR_MOVED;
2748 else
2749 return nfserr_moved;
2750 }
2751 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
2752 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
Kinglong Meec2227a32015-07-07 10:16:37 +08002753 *bmval2 &= WORD2_ABSENT_FS_ATTRS;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002754 return 0;
2755}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002757
2758static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
2759{
2760 struct path path = exp->ex_path;
2761 int err;
2762
2763 path_get(&path);
2764 while (follow_up(&path)) {
2765 if (path.dentry != path.mnt->mnt_root)
2766 break;
2767 }
David Howellsa528d352017-01-31 16:46:22 +00002768 err = vfs_getattr(&path, stat, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002769 path_put(&path);
2770 return err;
2771}
2772
Kinglong Mee75976de2015-07-30 21:55:30 +08002773static __be32
2774nfsd4_encode_bitmap(struct xdr_stream *xdr, u32 bmval0, u32 bmval1, u32 bmval2)
2775{
2776 __be32 *p;
2777
2778 if (bmval2) {
2779 p = xdr_reserve_space(xdr, 16);
2780 if (!p)
2781 goto out_resource;
2782 *p++ = cpu_to_be32(3);
2783 *p++ = cpu_to_be32(bmval0);
2784 *p++ = cpu_to_be32(bmval1);
2785 *p++ = cpu_to_be32(bmval2);
2786 } else if (bmval1) {
2787 p = xdr_reserve_space(xdr, 12);
2788 if (!p)
2789 goto out_resource;
2790 *p++ = cpu_to_be32(2);
2791 *p++ = cpu_to_be32(bmval0);
2792 *p++ = cpu_to_be32(bmval1);
2793 } else {
2794 p = xdr_reserve_space(xdr, 8);
2795 if (!p)
2796 goto out_resource;
2797 *p++ = cpu_to_be32(1);
2798 *p++ = cpu_to_be32(bmval0);
2799 }
2800
2801 return 0;
2802out_resource:
2803 return nfserr_resource;
2804}
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806/*
2807 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2808 * ourselves.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 */
Jeff Laytonda2ebce2014-05-30 09:09:25 -04002810static __be32
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002811nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
2812 struct svc_export *exp,
2813 struct dentry *dentry, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002814 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
2816 u32 bmval0 = bmval[0];
2817 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002818 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct kstat stat;
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002820 struct svc_fh *tempfh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 struct kstatfs statfs;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002822 __be32 *p;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05002823 int starting_len = xdr->buf->len;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002824 int attrlen_offset;
2825 __be32 attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 u32 dummy;
2827 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002828 u32 rdattr_err = 0;
Al Virob37ad282006-10-19 23:28:59 -07002829 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002830 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 struct nfs4_acl *acl = NULL;
Arnd Bergmann0ab88ca2019-03-22 15:07:11 +01002832#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
David Quigley18032ca2013-05-02 13:19:10 -04002833 void *context = NULL;
2834 int contextlen;
Arnd Bergmann0ab88ca2019-03-22 15:07:11 +01002835#endif
David Quigley18032ca2013-05-02 13:19:10 -04002836 bool contextsupport = false;
Andy Adamson7e705702009-04-03 08:29:11 +03002837 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2838 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002839 struct path path = {
2840 .mnt = exp->ex_path.mnt,
2841 .dentry = dentry,
2842 };
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002843 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
J. Bruce Fields916d2d82016-10-18 14:18:40 -04002846 BUG_ON(!nfsd_attrs_supported(minorversion, bmval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002848 if (exp->ex_fslocs.migrated) {
Kinglong Meec2227a32015-07-07 10:16:37 +08002849 status = fattr_handle_absent_fs(&bmval0, &bmval1, &bmval2, &rdattr_err);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002850 if (status)
2851 goto out;
2852 }
2853
David Howellsa528d352017-01-31 16:46:22 +00002854 err = vfs_getattr(&path, &stat, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
Al Virob8dd7b92006-10-19 23:29:01 -07002855 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 goto out_nfserr;
Christoph Hellwig12337902014-05-28 10:46:13 +02002857 if ((bmval0 & (FATTR4_WORD0_FILES_AVAIL | FATTR4_WORD0_FILES_FREE |
2858 FATTR4_WORD0_FILES_TOTAL | FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2860 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002861 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002862 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 goto out_nfserr;
2864 }
2865 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002866 tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
2867 status = nfserr_jukebox;
2868 if (!tempfh)
2869 goto out;
2870 fh_init(tempfh, NFS4_FHSIZE);
2871 status = fh_compose(tempfh, exp, dentry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (status)
2873 goto out;
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002874 fhp = tempfh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 }
Andreas Gruenbacher0c9d65e2015-04-24 13:04:00 +02002876 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002877 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
Andreas Gruenbacher0c9d65e2015-04-24 13:04:00 +02002878 if (err == -EOPNOTSUPP)
2879 bmval0 &= ~FATTR4_WORD0_ACL;
2880 else if (err == -EINVAL) {
2881 status = nfserr_attrnotsupp;
2882 goto out;
2883 } else if (err != 0)
2884 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
David Quigley18032ca2013-05-02 13:19:10 -04002887#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
Kinglong Meec2227a32015-07-07 10:16:37 +08002888 if ((bmval2 & FATTR4_WORD2_SECURITY_LABEL) ||
2889 bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
J. Bruce Fields32ddd942017-01-03 12:30:11 -05002890 if (exp->ex_flags & NFSEXP_SECURITY_LABEL)
2891 err = security_inode_getsecctx(d_inode(dentry),
David Quigley18032ca2013-05-02 13:19:10 -04002892 &context, &contextlen);
J. Bruce Fields32ddd942017-01-03 12:30:11 -05002893 else
2894 err = -EOPNOTSUPP;
David Quigley18032ca2013-05-02 13:19:10 -04002895 contextsupport = (err == 0);
2896 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2897 if (err == -EOPNOTSUPP)
2898 bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2899 else if (err)
2900 goto out_nfserr;
2901 }
2902 }
2903#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2904
Kinglong Mee75976de2015-07-30 21:55:30 +08002905 status = nfsd4_encode_bitmap(xdr, bmval0, bmval1, bmval2);
2906 if (status)
2907 goto out;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002908
2909 attrlen_offset = xdr->buf->len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002910 p = xdr_reserve_space(xdr, 4);
2911 if (!p)
2912 goto out_resource;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002913 p++; /* to be backfilled later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
2915 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
J. Bruce Fieldsdcd208692017-01-11 20:34:50 -05002916 u32 supp[3];
2917
2918 memcpy(supp, nfsd_suppattrs[minorversion], sizeof(supp));
Andy Adamson7e705702009-04-03 08:29:11 +03002919
Andreas Gruenbacher0c9d65e2015-04-24 13:04:00 +02002920 if (!IS_POSIXACL(dentry->d_inode))
J. Bruce Fields916d2d82016-10-18 14:18:40 -04002921 supp[0] &= ~FATTR4_WORD0_ACL;
David Quigley18032ca2013-05-02 13:19:10 -04002922 if (!contextsupport)
J. Bruce Fields916d2d82016-10-18 14:18:40 -04002923 supp[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
2924 if (!supp[2]) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002925 p = xdr_reserve_space(xdr, 12);
2926 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002927 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002928 *p++ = cpu_to_be32(2);
J. Bruce Fields916d2d82016-10-18 14:18:40 -04002929 *p++ = cpu_to_be32(supp[0]);
2930 *p++ = cpu_to_be32(supp[1]);
Andy Adamson7e705702009-04-03 08:29:11 +03002931 } else {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002932 p = xdr_reserve_space(xdr, 16);
2933 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002934 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002935 *p++ = cpu_to_be32(3);
J. Bruce Fields916d2d82016-10-18 14:18:40 -04002936 *p++ = cpu_to_be32(supp[0]);
2937 *p++ = cpu_to_be32(supp[1]);
2938 *p++ = cpu_to_be32(supp[2]);
Andy Adamson7e705702009-04-03 08:29:11 +03002939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
2941 if (bmval0 & FATTR4_WORD0_TYPE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002942 p = xdr_reserve_space(xdr, 4);
2943 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002945 dummy = nfs4_file_type(stat.mode);
J. Bruce Fields6b6d81372013-01-16 17:11:11 -05002946 if (dummy == NF4BAD) {
2947 status = nfserr_serverfault;
2948 goto out;
2949 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002950 *p++ = cpu_to_be32(dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 }
2952 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002953 p = xdr_reserve_space(xdr, 4);
2954 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002956 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002957 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002958 else
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002959 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT|
2960 NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 }
2962 if (bmval0 & FATTR4_WORD0_CHANGE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002963 p = xdr_reserve_space(xdr, 8);
2964 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 goto out_resource;
NeilBrownb8800922017-01-30 17:17:00 +11002966 p = encode_change(p, &stat, d_inode(dentry), exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
2968 if (bmval0 & FATTR4_WORD0_SIZE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002969 p = xdr_reserve_space(xdr, 8);
2970 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002972 p = xdr_encode_hyper(p, stat.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002975 p = xdr_reserve_space(xdr, 4);
2976 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002978 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 }
2980 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002981 p = xdr_reserve_space(xdr, 4);
2982 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002984 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002987 p = xdr_reserve_space(xdr, 4);
2988 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002990 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
2992 if (bmval0 & FATTR4_WORD0_FSID) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002993 p = xdr_reserve_space(xdr, 16);
2994 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002996 if (exp->ex_fslocs.migrated) {
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002997 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MAJOR);
2998 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002999 } else switch(fsid_source(fhp)) {
3000 case FSIDSOURCE_FSID:
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003001 p = xdr_encode_hyper(p, (u64)exp->ex_fsid);
3002 p = xdr_encode_hyper(p, (u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08003003 break;
3004 case FSIDSOURCE_DEV:
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003005 *p++ = cpu_to_be32(0);
3006 *p++ = cpu_to_be32(MAJOR(stat.dev));
3007 *p++ = cpu_to_be32(0);
3008 *p++ = cpu_to_be32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08003009 break;
3010 case FSIDSOURCE_UUID:
Kinglong Mee94eb3682014-05-23 20:00:19 +08003011 p = xdr_encode_opaque_fixed(p, exp->ex_uuid,
3012 EX_UUID_LEN);
NeilBrownaf6a4e22007-02-14 00:33:12 -08003013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 }
3015 }
3016 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003017 p = xdr_reserve_space(xdr, 4);
3018 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003020 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
3022 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003023 p = xdr_reserve_space(xdr, 4);
3024 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003026 *p++ = cpu_to_be32(nn->nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 }
3028 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003029 p = xdr_reserve_space(xdr, 4);
3030 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003032 *p++ = cpu_to_be32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 }
3034 if (bmval0 & FATTR4_WORD0_ACL) {
3035 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 if (acl == NULL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003038 p = xdr_reserve_space(xdr, 4);
3039 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 goto out_resource;
3041
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003042 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 goto out_acl;
3044 }
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003045 p = xdr_reserve_space(xdr, 4);
3046 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003048 *p++ = cpu_to_be32(acl->naces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08003050 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003051 p = xdr_reserve_space(xdr, 4*3);
3052 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003054 *p++ = cpu_to_be32(ace->type);
3055 *p++ = cpu_to_be32(ace->flag);
3056 *p++ = cpu_to_be32(ace->access_mask &
3057 NFS4_ACE_MASK_ALL);
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003058 status = nfsd4_encode_aclname(xdr, rqstp, ace);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (status)
3060 goto out;
3061 }
3062 }
3063out_acl:
3064 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003065 p = xdr_reserve_space(xdr, 4);
3066 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 goto out_resource;
Andreas Gruenbacher0c9d65e2015-04-24 13:04:00 +02003068 *p++ = cpu_to_be32(IS_POSIXACL(dentry->d_inode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
3070 }
3071 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003072 p = xdr_reserve_space(xdr, 4);
3073 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003075 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
3077 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003078 p = xdr_reserve_space(xdr, 4);
3079 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003081 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003084 p = xdr_reserve_space(xdr, 4);
3085 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003087 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 }
3089 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003090 p = xdr_reserve_space(xdr, 4);
3091 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003093 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
3095 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003096 p = xdr_reserve_space(xdr, fhp->fh_handle.fh_size + 4);
3097 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 goto out_resource;
NeilBrownd8b26072021-09-02 11:16:32 +10003099 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_raw,
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003100 fhp->fh_handle.fh_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 }
3102 if (bmval0 & FATTR4_WORD0_FILEID) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003103 p = xdr_reserve_space(xdr, 8);
3104 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003106 p = xdr_encode_hyper(p, stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
3108 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003109 p = xdr_reserve_space(xdr, 8);
3110 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003112 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 }
3114 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003115 p = xdr_reserve_space(xdr, 8);
3116 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003118 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 }
3120 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003121 p = xdr_reserve_space(xdr, 8);
3122 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003124 p = xdr_encode_hyper(p, (u64) statfs.f_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07003126 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003127 status = nfsd4_encode_fs_locations(xdr, rqstp, exp);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07003128 if (status)
3129 goto out;
3130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003132 p = xdr_reserve_space(xdr, 4);
3133 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003135 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 }
3137 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003138 p = xdr_reserve_space(xdr, 8);
3139 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003141 p = xdr_encode_hyper(p, exp->ex_path.mnt->mnt_sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 }
3143 if (bmval0 & FATTR4_WORD0_MAXLINK) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003144 p = xdr_reserve_space(xdr, 4);
3145 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003147 *p++ = cpu_to_be32(255);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
3149 if (bmval0 & FATTR4_WORD0_MAXNAME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003150 p = xdr_reserve_space(xdr, 4);
3151 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003153 *p++ = cpu_to_be32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
3155 if (bmval0 & FATTR4_WORD0_MAXREAD) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003156 p = xdr_reserve_space(xdr, 8);
3157 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003159 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 }
3161 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003162 p = xdr_reserve_space(xdr, 8);
3163 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003165 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 }
3167 if (bmval1 & FATTR4_WORD1_MODE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003168 p = xdr_reserve_space(xdr, 4);
3169 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003171 *p++ = cpu_to_be32(stat.mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 }
3173 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003174 p = xdr_reserve_space(xdr, 4);
3175 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003177 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 }
3179 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003180 p = xdr_reserve_space(xdr, 4);
3181 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003183 *p++ = cpu_to_be32(stat.nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185 if (bmval1 & FATTR4_WORD1_OWNER) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003186 status = nfsd4_encode_user(xdr, rqstp, stat.uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 if (status)
3188 goto out;
3189 }
3190 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003191 status = nfsd4_encode_group(xdr, rqstp, stat.gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (status)
3193 goto out;
3194 }
3195 if (bmval1 & FATTR4_WORD1_RAWDEV) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003196 p = xdr_reserve_space(xdr, 8);
3197 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003199 *p++ = cpu_to_be32((u32) MAJOR(stat.rdev));
3200 *p++ = cpu_to_be32((u32) MINOR(stat.rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 }
3202 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003203 p = xdr_reserve_space(xdr, 8);
3204 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 goto out_resource;
3206 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003207 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 }
3209 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003210 p = xdr_reserve_space(xdr, 8);
3211 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 goto out_resource;
3213 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003214 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 }
3216 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003217 p = xdr_reserve_space(xdr, 8);
3218 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 goto out_resource;
3220 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003221 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 }
3223 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003224 p = xdr_reserve_space(xdr, 8);
3225 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 goto out_resource;
3227 dummy64 = (u64)stat.blocks << 9;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003228 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
3230 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003231 p = xdr_reserve_space(xdr, 12);
3232 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003234 p = xdr_encode_hyper(p, (s64)stat.atime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003235 *p++ = cpu_to_be32(stat.atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 }
3237 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003238 p = xdr_reserve_space(xdr, 12);
3239 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 goto out_resource;
J. Bruce Fields16945142018-04-25 14:34:11 -04003241 p = encode_time_delta(p, d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 }
3243 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003244 p = xdr_reserve_space(xdr, 12);
3245 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003247 p = xdr_encode_hyper(p, (s64)stat.ctime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003248 *p++ = cpu_to_be32(stat.ctime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 }
3250 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003251 p = xdr_reserve_space(xdr, 12);
3252 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003254 p = xdr_encode_hyper(p, (s64)stat.mtime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003255 *p++ = cpu_to_be32(stat.mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 }
3257 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Kinglong Mee0a2050d2015-07-30 21:51:54 +08003258 struct kstat parent_stat;
3259 u64 ino = stat.ino;
3260
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003261 p = xdr_reserve_space(xdr, 8);
3262 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08003264 /*
3265 * Get parent's attributes if not ignoring crossmount
3266 * and this is the root of a cross-mounted filesystem.
3267 */
3268 if (ignore_crossmnt == 0 &&
Kinglong Mee0a2050d2015-07-30 21:51:54 +08003269 dentry == exp->ex_path.mnt->mnt_root) {
3270 err = get_parent_attributes(exp, &parent_stat);
3271 if (err)
3272 goto out_nfserr;
3273 ino = parent_stat.ino;
3274 }
3275 p = xdr_encode_hyper(p, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003277#ifdef CONFIG_NFSD_PNFS
Kinglong Mee6896f152015-07-30 21:52:44 +08003278 if (bmval1 & FATTR4_WORD1_FS_LAYOUT_TYPES) {
Jeff Layton8a4c3922016-07-10 15:55:58 -04003279 status = nfsd4_encode_layout_types(xdr, exp->ex_layout_types);
Kinglong Mee6896f152015-07-30 21:52:44 +08003280 if (status)
3281 goto out;
3282 }
3283
3284 if (bmval2 & FATTR4_WORD2_LAYOUT_TYPES) {
Jeff Layton8a4c3922016-07-10 15:55:58 -04003285 status = nfsd4_encode_layout_types(xdr, exp->ex_layout_types);
Kinglong Mee6896f152015-07-30 21:52:44 +08003286 if (status)
3287 goto out;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003288 }
3289
3290 if (bmval2 & FATTR4_WORD2_LAYOUT_BLKSIZE) {
3291 p = xdr_reserve_space(xdr, 4);
3292 if (!p)
3293 goto out_resource;
3294 *p++ = cpu_to_be32(stat.blksize);
3295 }
3296#endif /* CONFIG_NFSD_PNFS */
Benny Halevy8c18f202009-04-03 08:29:14 +03003297 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
Trond Myklebustb26b78c2017-05-09 16:24:59 -04003298 u32 supp[3];
3299
3300 memcpy(supp, nfsd_suppattrs[minorversion], sizeof(supp));
3301 supp[0] &= NFSD_SUPPATTR_EXCLCREAT_WORD0;
3302 supp[1] &= NFSD_SUPPATTR_EXCLCREAT_WORD1;
3303 supp[2] &= NFSD_SUPPATTR_EXCLCREAT_WORD2;
3304
3305 status = nfsd4_encode_bitmap(xdr, supp[0], supp[1], supp[2]);
Kinglong Mee75976de2015-07-30 21:55:30 +08003306 if (status)
3307 goto out;
Benny Halevy8c18f202009-04-03 08:29:14 +03003308 }
Andy Adamson7e705702009-04-03 08:29:11 +03003309
Arnd Bergmann0ab88ca2019-03-22 15:07:11 +01003310#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
Kinglong Mee7d580722015-07-30 21:54:26 +08003311 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
3312 status = nfsd4_encode_security_label(xdr, rqstp, context,
3313 contextlen);
3314 if (status)
3315 goto out;
3316 }
Arnd Bergmann0ab88ca2019-03-22 15:07:11 +01003317#endif
Kinglong Mee7d580722015-07-30 21:54:26 +08003318
Frank van der Linden0e885e82020-06-23 22:39:27 +00003319 if (bmval2 & FATTR4_WORD2_XATTR_SUPPORT) {
3320 p = xdr_reserve_space(xdr, 4);
3321 if (!p)
3322 goto out_resource;
3323 err = xattr_supported_namespace(d_inode(dentry),
3324 XATTR_USER_PREFIX);
3325 *p++ = cpu_to_be32(err == 0);
3326 }
3327
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003328 attrlen = htonl(xdr->buf->len - attrlen_offset - 4);
3329 write_bytes_to_xdr_buf(xdr->buf, attrlen_offset, &attrlen, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 status = nfs_ok;
3331
3332out:
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04003333#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
David Quigley18032ca2013-05-02 13:19:10 -04003334 if (context)
3335 security_release_secctx(context, contextlen);
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04003336#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08003337 kfree(acl);
Yan, Zheng18df11d02014-03-10 12:52:07 +08003338 if (tempfh) {
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05003339 fh_put(tempfh);
Yan, Zheng18df11d02014-03-10 12:52:07 +08003340 kfree(tempfh);
3341 }
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05003342 if (status)
3343 xdr_truncate_encode(xdr, starting_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 return status;
3345out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07003346 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 goto out;
3348out_resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 status = nfserr_resource;
3350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351}
3352
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04003353static void svcxdr_init_encode_from_buffer(struct xdr_stream *xdr,
3354 struct xdr_buf *buf, __be32 *p, int bytes)
3355{
3356 xdr->scratch.iov_len = 0;
3357 memset(buf, 0, sizeof(struct xdr_buf));
3358 buf->head[0].iov_base = p;
3359 buf->head[0].iov_len = 0;
3360 buf->len = 0;
3361 xdr->buf = buf;
3362 xdr->iov = buf->head;
3363 xdr->p = p;
3364 xdr->end = (void *)p + bytes;
3365 buf->buflen = bytes;
3366}
3367
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04003368__be32 nfsd4_encode_fattr_to_buf(__be32 **p, int words,
3369 struct svc_fh *fhp, struct svc_export *exp,
3370 struct dentry *dentry, u32 *bmval,
3371 struct svc_rqst *rqstp, int ignore_crossmnt)
3372{
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04003373 struct xdr_buf dummy;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04003374 struct xdr_stream xdr;
3375 __be32 ret;
3376
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04003377 svcxdr_init_encode_from_buffer(&xdr, &dummy, *p, words << 2);
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04003378 ret = nfsd4_encode_fattr(&xdr, fhp, exp, dentry, bmval, rqstp,
3379 ignore_crossmnt);
3380 *p = xdr.p;
3381 return ret;
3382}
3383
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05003384static inline int attributes_need_mount(u32 *bmval)
3385{
3386 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
3387 return 1;
3388 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
3389 return 1;
3390 return 0;
3391}
3392
Al Virob37ad282006-10-19 23:28:59 -07003393static __be32
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003394nfsd4_encode_dirent_fattr(struct xdr_stream *xdr, struct nfsd4_readdir *cd,
3395 const char *name, int namlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
3397 struct svc_export *exp = cd->rd_fhp->fh_export;
3398 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07003399 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08003400 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Al Viro6c2d47982019-10-31 01:21:58 -04003402 dentry = lookup_positive_unlocked(name, cd->rd_fhp->fh_dentry, namlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 if (IS_ERR(dentry))
3404 return nfserrno(PTR_ERR(dentry));
3405
3406 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08003407 /*
3408 * In the case of a mountpoint, the client may be asking for
3409 * attributes that are only properties of the underlying filesystem
3410 * as opposed to the cross-mounted file system. In such a case,
3411 * we will not follow the cross mount and will fill the attribtutes
3412 * directly from the mountpoint dentry.
3413 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04003414 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08003415 int err;
3416
J. Bruce Fields3227fa42009-10-25 21:43:01 -04003417 if (!(exp->ex_flags & NFSEXP_V4ROOT)
3418 && !attributes_need_mount(cd->rd_bmval)) {
3419 ignore_crossmnt = 1;
3420 goto out_encode;
3421 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07003422 /*
3423 * Why the heck aren't we just using nfsd_lookup??
3424 * Different "."/".." handling? Something else?
3425 * At least, add a comment here to explain....
3426 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08003427 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
3428 if (err) {
3429 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 goto out_put;
3431 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07003432 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
3433 if (nfserr)
3434 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04003437out_encode:
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003438 nfserr = nfsd4_encode_fattr(xdr, NULL, exp, dentry, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08003439 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440out_put:
3441 dput(dentry);
3442 exp_put(exp);
3443 return nfserr;
3444}
3445
Al Viro2ebbc012006-10-19 23:28:58 -07003446static __be32 *
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003447nfsd4_encode_rdattr_error(struct xdr_stream *xdr, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448{
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003449 __be32 *p;
3450
Kinglong Meec3a45612014-07-06 11:34:43 +08003451 p = xdr_reserve_space(xdr, 20);
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003452 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 return NULL;
3454 *p++ = htonl(2);
3455 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
3456 *p++ = htonl(0); /* bmval1 */
3457
J. Bruce Fields87915c62013-01-16 17:33:28 -05003458 *p++ = htonl(4); /* attribute length */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 *p++ = nfserr; /* no htonl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 return p;
3461}
3462
3463static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08003464nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
3465 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466{
NeilBrowna0ad13e2007-01-26 00:57:10 -08003467 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003469 struct xdr_stream *xdr = cd->xdr;
3470 int start_offset = xdr->buf->len;
3471 int cookie_offset;
J. Bruce Fieldsaee37762014-08-20 14:49:50 -04003472 u32 name_and_cookie;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003473 int entry_bytes;
Al Virob37ad282006-10-19 23:28:59 -07003474 __be32 nfserr = nfserr_toosmall;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003475 __be64 wire_offset;
3476 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478 /* In nfsv4, "." and ".." never make it onto the wire.. */
3479 if (name && isdotent(name, namlen)) {
3480 cd->common.err = nfs_ok;
3481 return 0;
3482 }
3483
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003484 if (cd->cookie_offset) {
3485 wire_offset = cpu_to_be64(offset);
3486 write_bytes_to_xdr_buf(xdr->buf, cd->cookie_offset,
3487 &wire_offset, 8);
3488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003490 p = xdr_reserve_space(xdr, 4);
3491 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 *p++ = xdr_one; /* mark entry present */
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003494 cookie_offset = xdr->buf->len;
3495 p = xdr_reserve_space(xdr, 3*4 + namlen);
3496 if (!p)
3497 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
3499 p = xdr_encode_array(p, name, namlen); /* name length & name */
3500
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003501 nfserr = nfsd4_encode_dirent_fattr(xdr, cd, name, namlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 switch (nfserr) {
3503 case nfs_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 break;
3505 case nfserr_resource:
3506 nfserr = nfserr_toosmall;
3507 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04003508 case nfserr_noent:
Kinglong Meef41c5ad2014-06-13 17:32:42 +08003509 xdr_truncate_encode(xdr, start_offset);
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04003510 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 default:
3512 /*
3513 * If the client requested the RDATTR_ERROR attribute,
3514 * we stuff the error code into this attribute
3515 * and continue. If this attribute was not requested,
3516 * then in accordance with the spec, we fail the
3517 * entire READDIR operation(!)
3518 */
3519 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
3520 goto fail;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003521 p = nfsd4_encode_rdattr_error(xdr, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08003522 if (p == NULL) {
3523 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08003525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 }
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003527 nfserr = nfserr_toosmall;
3528 entry_bytes = xdr->buf->len - start_offset;
3529 if (entry_bytes > cd->rd_maxcount)
3530 goto fail;
3531 cd->rd_maxcount -= entry_bytes;
J. Bruce Fieldsaee37762014-08-20 14:49:50 -04003532 /*
Trond Myklebustf2e717d2021-09-30 15:44:41 -04003533 * RFC 3530 14.2.24 describes rd_dircount as only a "hint", and
3534 * notes that it could be zero. If it is zero, then the server
3535 * should enforce only the rd_maxcount value.
J. Bruce Fieldsaee37762014-08-20 14:49:50 -04003536 */
Trond Myklebustf2e717d2021-09-30 15:44:41 -04003537 if (cd->rd_dircount) {
3538 name_and_cookie = 4 + 4 * XDR_QUADLEN(namlen) + 8;
3539 if (name_and_cookie > cd->rd_dircount && cd->cookie_offset)
3540 goto fail;
3541 cd->rd_dircount -= min(cd->rd_dircount, name_and_cookie);
3542 if (!cd->rd_dircount)
3543 cd->rd_maxcount = 0;
3544 }
J. Bruce Fields0ec016e2014-12-19 18:01:35 -05003545
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003546 cd->cookie_offset = cookie_offset;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04003547skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 cd->common.err = nfs_ok;
3549 return 0;
3550fail:
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003551 xdr_truncate_encode(xdr, start_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 cd->common.err = nfserr;
3553 return -EINVAL;
3554}
3555
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003556static __be32
3557nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid)
Benny Halevye2f282b2008-08-12 20:45:07 +03003558{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003559 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03003560
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003561 p = xdr_reserve_space(xdr, sizeof(stateid_t));
3562 if (!p)
3563 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003564 *p++ = cpu_to_be32(sid->si_generation);
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003565 p = xdr_encode_opaque_fixed(p, &sid->si_opaque,
3566 sizeof(stateid_opaque_t));
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003567 return 0;
Benny Halevye2f282b2008-08-12 20:45:07 +03003568}
3569
Benny Halevy695e12f2008-07-04 14:38:33 +03003570static __be32
Al Virob37ad282006-10-19 23:28:59 -07003571nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003573 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003574 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003576 p = xdr_reserve_space(xdr, 8);
3577 if (!p)
3578 return nfserr_resource;
3579 *p++ = cpu_to_be32(access->ac_supported);
3580 *p++ = cpu_to_be32(access->ac_resp_access);
3581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582}
3583
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003584static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
3585{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003586 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003587 __be32 *p;
3588
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003589 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 8);
3590 if (!p)
3591 return nfserr_resource;
3592 p = xdr_encode_opaque_fixed(p, bcts->sessionid.data,
3593 NFS4_MAX_SESSIONID_LEN);
3594 *p++ = cpu_to_be32(bcts->dir);
3595 /* Upshifting from TCP to RDMA is not supported */
3596 *p++ = cpu_to_be32(0);
3597 return 0;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003598}
3599
Benny Halevy695e12f2008-07-04 14:38:33 +03003600static __be32
Al Virob37ad282006-10-19 23:28:59 -07003601nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003603 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003604
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003605 return nfsd4_encode_stateid(xdr, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606}
3607
3608
Benny Halevy695e12f2008-07-04 14:38:33 +03003609static __be32
Al Virob37ad282006-10-19 23:28:59 -07003610nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003612 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003613 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003615 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
3616 if (!p)
3617 return nfserr_resource;
3618 p = xdr_encode_opaque_fixed(p, commit->co_verf.data,
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003619 NFS4_VERIFIER_SIZE);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621}
3622
Benny Halevy695e12f2008-07-04 14:38:33 +03003623static __be32
Al Virob37ad282006-10-19 23:28:59 -07003624nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003626 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003627 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003629 p = xdr_reserve_space(xdr, 20);
3630 if (!p)
3631 return nfserr_resource;
3632 encode_cinfo(p, &create->cr_cinfo);
Trond Myklebustb96811c2019-08-18 14:18:58 -04003633 return nfsd4_encode_bitmap(xdr, create->cr_bmval[0],
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003634 create->cr_bmval[1], create->cr_bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635}
3636
Al Virob37ad282006-10-19 23:28:59 -07003637static __be32
3638nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639{
3640 struct svc_fh *fhp = getattr->ga_fhp;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003641 struct xdr_stream *xdr = resp->xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003643 return nfsd4_encode_fattr(xdr, fhp, fhp->fh_export, fhp->fh_dentry,
3644 getattr->ga_bmval, resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645}
3646
Benny Halevy695e12f2008-07-04 14:38:33 +03003647static __be32
3648nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003650 struct xdr_stream *xdr = resp->xdr;
Benny Halevy695e12f2008-07-04 14:38:33 +03003651 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003653 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003655 len = fhp->fh_handle.fh_size;
3656 p = xdr_reserve_space(xdr, len + 4);
3657 if (!p)
3658 return nfserr_resource;
NeilBrownd8b26072021-09-02 11:16:32 +10003659 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_raw, len);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
3662
3663/*
3664* Including all fields other than the name, a LOCK4denied structure requires
3665* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
3666*/
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003667static __be32
3668nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04003670 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003671 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04003673again:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003674 p = xdr_reserve_space(xdr, 32 + XDR_LEN(conf->len));
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04003675 if (!p) {
3676 /*
3677 * Don't fail to return the result just because we can't
3678 * return the conflicting open:
3679 */
3680 if (conf->len) {
Kinglong Meef98bac52014-07-07 22:10:56 +08003681 kfree(conf->data);
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04003682 conf->len = 0;
3683 conf->data = NULL;
3684 goto again;
3685 }
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003686 return nfserr_resource;
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04003687 }
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003688 p = xdr_encode_hyper(p, ld->ld_start);
3689 p = xdr_encode_hyper(p, ld->ld_length);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003690 *p++ = cpu_to_be32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04003691 if (conf->len) {
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003692 p = xdr_encode_opaque_fixed(p, &ld->ld_clientid, 8);
3693 p = xdr_encode_opaque(p, conf->data, conf->len);
Kinglong Meef98bac52014-07-07 22:10:56 +08003694 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003696 p = xdr_encode_hyper(p, (u64)0); /* clientid */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003697 *p++ = cpu_to_be32(0); /* length of owner name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 }
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003699 return nfserr_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700}
3701
Benny Halevy695e12f2008-07-04 14:38:33 +03003702static __be32
Al Virob37ad282006-10-19 23:28:59 -07003703nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003705 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003706
Benny Halevye2f282b2008-08-12 20:45:07 +03003707 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003708 nfserr = nfsd4_encode_stateid(xdr, &lock->lk_resp_stateid);
Benny Halevye2f282b2008-08-12 20:45:07 +03003709 else if (nfserr == nfserr_denied)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003710 nfserr = nfsd4_encode_lock_denied(xdr, &lock->lk_denied);
Kinglong Meef98bac52014-07-07 22:10:56 +08003711
Benny Halevy695e12f2008-07-04 14:38:33 +03003712 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713}
3714
Benny Halevy695e12f2008-07-04 14:38:33 +03003715static __be32
Al Virob37ad282006-10-19 23:28:59 -07003716nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003718 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 if (nfserr == nfserr_denied)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003721 nfsd4_encode_lock_denied(xdr, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03003722 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723}
3724
Benny Halevy695e12f2008-07-04 14:38:33 +03003725static __be32
Al Virob37ad282006-10-19 23:28:59 -07003726nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003728 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003729
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003730 return nfsd4_encode_stateid(xdr, &locku->lu_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732
3733
Benny Halevy695e12f2008-07-04 14:38:33 +03003734static __be32
Al Virob37ad282006-10-19 23:28:59 -07003735nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003737 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003738 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003740 p = xdr_reserve_space(xdr, 20);
3741 if (!p)
3742 return nfserr_resource;
3743 p = encode_cinfo(p, &link->li_cinfo);
3744 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745}
3746
3747
Benny Halevy695e12f2008-07-04 14:38:33 +03003748static __be32
Al Virob37ad282006-10-19 23:28:59 -07003749nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003751 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003752 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003754 nfserr = nfsd4_encode_stateid(xdr, &open->op_stateid);
3755 if (nfserr)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003756 return nfserr;
Kinglong Mee75976de2015-07-30 21:55:30 +08003757 p = xdr_reserve_space(xdr, 24);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003758 if (!p)
3759 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04003760 p = encode_cinfo(p, &open->op_cinfo);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003761 *p++ = cpu_to_be32(open->op_rflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Kinglong Mee75976de2015-07-30 21:55:30 +08003763 nfserr = nfsd4_encode_bitmap(xdr, open->op_bmval[0], open->op_bmval[1],
3764 open->op_bmval[2]);
3765 if (nfserr)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003766 return nfserr;
Kinglong Mee75976de2015-07-30 21:55:30 +08003767
3768 p = xdr_reserve_space(xdr, 4);
3769 if (!p)
3770 return nfserr_resource;
3771
3772 *p++ = cpu_to_be32(open->op_delegate_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 switch (open->op_delegate_type) {
3774 case NFS4_OPEN_DELEGATE_NONE:
3775 break;
3776 case NFS4_OPEN_DELEGATE_READ:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003777 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
3778 if (nfserr)
3779 return nfserr;
3780 p = xdr_reserve_space(xdr, 20);
3781 if (!p)
3782 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003783 *p++ = cpu_to_be32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 /*
3786 * TODO: ACE's in delegations
3787 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003788 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
3789 *p++ = cpu_to_be32(0);
3790 *p++ = cpu_to_be32(0);
3791 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 break;
3793 case NFS4_OPEN_DELEGATE_WRITE:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003794 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
3795 if (nfserr)
3796 return nfserr;
3797 p = xdr_reserve_space(xdr, 32);
3798 if (!p)
3799 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003800 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
3802 /*
3803 * TODO: space_limit's in delegations
3804 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003805 *p++ = cpu_to_be32(NFS4_LIMIT_SIZE);
3806 *p++ = cpu_to_be32(~(u32)0);
3807 *p++ = cpu_to_be32(~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809 /*
3810 * TODO: ACE's in delegations
3811 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003812 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
3813 *p++ = cpu_to_be32(0);
3814 *p++ = cpu_to_be32(0);
3815 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02003817 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
3818 switch (open->op_why_no_deleg) {
3819 case WND4_CONTENTION:
3820 case WND4_RESOURCE:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003821 p = xdr_reserve_space(xdr, 8);
3822 if (!p)
3823 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003824 *p++ = cpu_to_be32(open->op_why_no_deleg);
3825 /* deleg signaling not supported yet: */
3826 *p++ = cpu_to_be32(0);
Benny Halevyd24433c2012-02-16 20:57:17 +02003827 break;
3828 default:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003829 p = xdr_reserve_space(xdr, 4);
3830 if (!p)
3831 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003832 *p++ = cpu_to_be32(open->op_why_no_deleg);
Benny Halevyd24433c2012-02-16 20:57:17 +02003833 }
Benny Halevyd24433c2012-02-16 20:57:17 +02003834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 default:
3836 BUG();
3837 }
3838 /* XXX save filehandle here */
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840}
3841
Benny Halevy695e12f2008-07-04 14:38:33 +03003842static __be32
Al Virob37ad282006-10-19 23:28:59 -07003843nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003845 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003846
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003847 return nfsd4_encode_stateid(xdr, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848}
3849
Benny Halevy695e12f2008-07-04 14:38:33 +03003850static __be32
Al Virob37ad282006-10-19 23:28:59 -07003851nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003853 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003854
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003855 return nfsd4_encode_stateid(xdr, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856}
3857
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003858static __be32 nfsd4_encode_splice_read(
3859 struct nfsd4_compoundres *resp,
3860 struct nfsd4_read *read,
3861 struct file *file, unsigned long maxcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003863 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fields34a78b482014-05-13 16:32:04 -04003864 struct xdr_buf *buf = xdr->buf;
Chuck Lever76e54922020-11-05 10:24:19 -05003865 int status, space_left;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003866 u32 eof;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003867 __be32 nfserr;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003868 __be32 *p = xdr->p - 2;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003869
Kinglong Meed5d5c302014-07-09 21:51:27 +08003870 /* Make sure there will be room for padding if needed */
3871 if (xdr->end - xdr->p < 1)
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003872 return nfserr_resource;
3873
Chuck Lever87c59422018-03-28 13:29:11 -04003874 nfserr = nfsd_splice_read(read->rd_rqstp, read->rd_fhp,
Trond Myklebust83a63072019-08-26 13:03:11 -04003875 file, read->rd_offset, &maxcount, &eof);
Chuck Lever87c59422018-03-28 13:29:11 -04003876 read->rd_length = maxcount;
Chuck Lever76e54922020-11-05 10:24:19 -05003877 if (nfserr)
3878 goto out_err;
3879 status = svc_encode_result_payload(read->rd_rqstp,
3880 buf->head[0].iov_len, maxcount);
3881 if (status) {
3882 nfserr = nfserrno(status);
3883 goto out_err;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003884 }
3885
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003886 *(p++) = htonl(eof);
3887 *(p++) = htonl(maxcount);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003888
J. Bruce Fields34a78b482014-05-13 16:32:04 -04003889 buf->page_len = maxcount;
3890 buf->len += maxcount;
J. Bruce Fields15b23ef2014-09-24 16:32:34 -04003891 xdr->page_ptr += (buf->page_base + maxcount + PAGE_SIZE - 1)
3892 / PAGE_SIZE;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003893
3894 /* Use rest of head for padding and remaining ops: */
J. Bruce Fields34a78b482014-05-13 16:32:04 -04003895 buf->tail[0].iov_base = xdr->p;
3896 buf->tail[0].iov_len = 0;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003897 xdr->iov = buf->tail;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003898 if (maxcount&3) {
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003899 int pad = 4 - (maxcount&3);
3900
3901 *(xdr->p++) = 0;
3902
J. Bruce Fields34a78b482014-05-13 16:32:04 -04003903 buf->tail[0].iov_base += maxcount&3;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003904 buf->tail[0].iov_len = pad;
3905 buf->len += pad;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003906 }
3907
3908 space_left = min_t(int, (void *)xdr->end - (void *)xdr->p,
J. Bruce Fields34a78b482014-05-13 16:32:04 -04003909 buf->buflen - buf->len);
3910 buf->buflen = buf->len + space_left;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003911 xdr->end = (__be32 *)((void *)xdr->end + space_left);
3912
3913 return 0;
Chuck Lever76e54922020-11-05 10:24:19 -05003914
3915out_err:
3916 /*
3917 * nfsd_splice_actor may have already messed with the
3918 * page length; reset it so as not to confuse
3919 * xdr_truncate_encode in our caller.
3920 */
3921 buf->page_len = 0;
3922 return nfserr;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003923}
3924
3925static __be32 nfsd4_encode_readv(struct nfsd4_compoundres *resp,
3926 struct nfsd4_read *read,
3927 struct file *file, unsigned long maxcount)
3928{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003929 struct xdr_stream *xdr = resp->xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 u32 eof;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003931 int starting_len = xdr->buf->len - 8;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003932 __be32 nfserr;
3933 __be32 tmp;
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003934 int pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Anna Schumaker403217f2020-08-17 12:53:06 -04003936 read->rd_vlen = xdr_reserve_space_vec(xdr, resp->rqstp->rq_vec, maxcount);
3937 if (read->rd_vlen < 0)
3938 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Chuck Lever87c59422018-03-28 13:29:11 -04003940 nfserr = nfsd_readv(resp->rqstp, read->rd_fhp, file, read->rd_offset,
Trond Myklebust83a63072019-08-26 13:03:11 -04003941 resp->rqstp->rq_vec, read->rd_vlen, &maxcount,
3942 &eof);
Chuck Lever87c59422018-03-28 13:29:11 -04003943 read->rd_length = maxcount;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003944 if (nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 return nfserr;
Chuck Lever03493bc2020-06-10 10:36:42 -04003946 if (svc_encode_result_payload(resp->rqstp, starting_len + 8, maxcount))
Chuck Lever41205532020-03-02 14:45:53 -05003947 return nfserr_io;
Chuck Lever7dcf4ab2020-03-02 15:00:04 -05003948 xdr_truncate_encode(xdr, starting_len + 8 + xdr_align_size(maxcount));
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003949
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003950 tmp = htonl(eof);
3951 write_bytes_to_xdr_buf(xdr->buf, starting_len , &tmp, 4);
3952 tmp = htonl(maxcount);
3953 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4);
3954
Chuck Lever7dcf4ab2020-03-02 15:00:04 -05003955 tmp = xdr_zero;
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003956 pad = (maxcount&3) ? 4 - (maxcount&3) : 0;
3957 write_bytes_to_xdr_buf(xdr->buf, starting_len + 8 + maxcount,
Chuck Lever7dcf4ab2020-03-02 15:00:04 -05003958 &tmp, pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return 0;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003960
3961}
3962
3963static __be32
3964nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
3965 struct nfsd4_read *read)
3966{
3967 unsigned long maxcount;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003968 struct xdr_stream *xdr = resp->xdr;
Jeff Layton5c4583b2019-08-18 14:18:54 -04003969 struct file *file;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003970 int starting_len = xdr->buf->len;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003971 __be32 *p;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003972
Jeff Layton5c4583b2019-08-18 14:18:54 -04003973 if (nfserr)
3974 return nfserr;
3975 file = read->rd_nf->nf_file;
3976
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003977 p = xdr_reserve_space(xdr, 8); /* eof flag and byte count */
3978 if (!p) {
Jeff Layton779fb0f2014-11-19 07:51:18 -05003979 WARN_ON_ONCE(test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags));
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003980 return nfserr_resource;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003981 }
Chuck Leverbddfdbc2020-10-27 15:53:42 -04003982 if (resp->xdr->buf->page_len &&
Christoph Hellwig68e8bb02015-06-18 16:45:02 +02003983 test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags)) {
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003984 WARN_ON_ONCE(1);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04003985 return nfserr_resource;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003986 }
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003987 xdr_commit_encode(xdr);
3988
3989 maxcount = svc_max_payload(resp->rqstp);
Christoph Hellwig68e8bb02015-06-18 16:45:02 +02003990 maxcount = min_t(unsigned long, maxcount,
3991 (xdr->buf->buflen - xdr->buf->len));
Kinglong Mee3c7aa152014-06-10 18:08:19 +08003992 maxcount = min_t(unsigned long, maxcount, read->rd_length);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003993
Christoph Hellwig68e8bb02015-06-18 16:45:02 +02003994 if (file->f_op->splice_read &&
3995 test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags))
Christoph Hellwig96bcad52015-06-18 16:45:01 +02003996 nfserr = nfsd4_encode_splice_read(resp, read, file, maxcount);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003997 else
Christoph Hellwig96bcad52015-06-18 16:45:01 +02003998 nfserr = nfsd4_encode_readv(resp, read, file, maxcount);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003999
Christoph Hellwig96bcad52015-06-18 16:45:01 +02004000 if (nfserr)
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04004001 xdr_truncate_encode(xdr, starting_len);
Christoph Hellwig96bcad52015-06-18 16:45:01 +02004002
Christoph Hellwig96bcad52015-06-18 16:45:01 +02004003 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004}
4005
Al Virob37ad282006-10-19 23:28:59 -07004006static __be32
4007nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008{
4009 int maxcount;
J. Bruce Fields476a7b12014-01-20 17:08:27 -05004010 __be32 wire_count;
4011 int zero = 0;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004012 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05004013 int length_offset = xdr->buf->len;
Chuck Lever76e54922020-11-05 10:24:19 -05004014 int status;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004015 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04004017 p = xdr_reserve_space(xdr, 4);
4018 if (!p)
4019 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 maxcount = PAGE_SIZE;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004021
J. Bruce Fields476a7b12014-01-20 17:08:27 -05004022 p = xdr_reserve_space(xdr, maxcount);
4023 if (!p)
J. Bruce Fields4e21ac42014-03-22 15:15:11 -04004024 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 /*
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004026 * XXX: By default, vfs_readlink() will truncate symlinks if they
4027 * would overflow the buffer. Is this kosher in NFSv4? If not, one
4028 * easy fix is: if vfs_readlink() precisely fills the buffer, assume
4029 * that truncation occurred, and return NFS4ERR_RESOURCE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 */
J. Bruce Fields476a7b12014-01-20 17:08:27 -05004031 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp,
4032 (char *)p, &maxcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 if (nfserr == nfserr_isdir)
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05004034 nfserr = nfserr_inval;
Chuck Lever76e54922020-11-05 10:24:19 -05004035 if (nfserr)
4036 goto out_err;
4037 status = svc_encode_result_payload(readlink->rl_rqstp, length_offset,
4038 maxcount);
4039 if (status) {
4040 nfserr = nfserrno(status);
4041 goto out_err;
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05004042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
J. Bruce Fields476a7b12014-01-20 17:08:27 -05004044 wire_count = htonl(maxcount);
4045 write_bytes_to_xdr_buf(xdr->buf, length_offset, &wire_count, 4);
Avi Kivity69bbd9c2014-06-26 17:23:12 +03004046 xdr_truncate_encode(xdr, length_offset + 4 + ALIGN(maxcount, 4));
J. Bruce Fields476a7b12014-01-20 17:08:27 -05004047 if (maxcount & 3)
4048 write_bytes_to_xdr_buf(xdr->buf, length_offset + 4 + maxcount,
4049 &zero, 4 - (maxcount&3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 return 0;
Chuck Lever76e54922020-11-05 10:24:19 -05004051
4052out_err:
4053 xdr_truncate_encode(xdr, length_offset);
4054 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
4056
Al Virob37ad282006-10-19 23:28:59 -07004057static __be32
4058nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059{
4060 int maxcount;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004061 int bytes_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 loff_t offset;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004063 __be64 wire_offset;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004064 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05004065 int starting_len = xdr->buf->len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004066 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004068 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
4069 if (!p)
4070 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
4072 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004073 *p++ = cpu_to_be32(0);
4074 *p++ = cpu_to_be32(0);
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004075 xdr->buf->head[0].iov_len = (char *)xdr->p -
4076 (char *)xdr->buf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
4078 /*
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004079 * Number of bytes left for directory entries allowing for the
4080 * final 8 bytes of the readdir and a following failed op:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 */
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004082 bytes_left = xdr->buf->buflen - xdr->buf->len
4083 - COMPOUND_ERR_SLACK_SPACE - 8;
4084 if (bytes_left < 0) {
4085 nfserr = nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 goto err_no_verf;
4087 }
Scott Mayhew9c2ece62018-05-07 09:01:08 -04004088 maxcount = svc_max_payload(resp->rqstp);
4089 maxcount = min_t(u32, readdir->rd_maxcount, maxcount);
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004090 /*
4091 * Note the rfc defines rd_maxcount as the size of the
4092 * READDIR4resok structure, which includes the verifier above
4093 * and the 8 bytes encoded at the end of this function:
4094 */
4095 if (maxcount < 16) {
4096 nfserr = nfserr_toosmall;
4097 goto err_no_verf;
4098 }
4099 maxcount = min_t(int, maxcount-16, bytes_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
J. Bruce Fieldsaee37762014-08-20 14:49:50 -04004101 /* RFC 3530 14.2.24 allows us to ignore dircount when it's 0: */
4102 if (!readdir->rd_dircount)
Scott Mayhew9c2ece62018-05-07 09:01:08 -04004103 readdir->rd_dircount = svc_max_payload(resp->rqstp);
J. Bruce Fieldsaee37762014-08-20 14:49:50 -04004104
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004105 readdir->xdr = xdr;
4106 readdir->rd_maxcount = maxcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 readdir->common.err = 0;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004108 readdir->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110 offset = readdir->rd_cookie;
4111 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
4112 &offset,
4113 &readdir->common, nfsd4_encode_dirent);
4114 if (nfserr == nfs_ok &&
4115 readdir->common.err == nfserr_toosmall &&
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004116 xdr->buf->len == starting_len + 8) {
4117 /* nothing encoded; which limit did we hit?: */
4118 if (maxcount - 16 < bytes_left)
4119 /* It was the fault of rd_maxcount: */
4120 nfserr = nfserr_toosmall;
4121 else
4122 /* We ran out of buffer space: */
4123 nfserr = nfserr_resource;
4124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 if (nfserr)
4126 goto err_no_verf;
4127
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004128 if (readdir->cookie_offset) {
4129 wire_offset = cpu_to_be64(offset);
4130 write_bytes_to_xdr_buf(xdr->buf, readdir->cookie_offset,
4131 &wire_offset, 8);
4132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05004134 p = xdr_reserve_space(xdr, 8);
4135 if (!p) {
4136 WARN_ON_ONCE(1);
4137 goto err_no_verf;
4138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 *p++ = 0; /* no more entries */
4140 *p++ = htonl(readdir->common.err == nfserr_eof);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
4142 return 0;
4143err_no_verf:
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05004144 xdr_truncate_encode(xdr, starting_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 return nfserr;
4146}
4147
Benny Halevy695e12f2008-07-04 14:38:33 +03004148static __be32
Al Virob37ad282006-10-19 23:28:59 -07004149nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004151 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004152 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004154 p = xdr_reserve_space(xdr, 20);
4155 if (!p)
4156 return nfserr_resource;
4157 p = encode_cinfo(p, &remove->rm_cinfo);
4158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159}
4160
Benny Halevy695e12f2008-07-04 14:38:33 +03004161static __be32
Al Virob37ad282006-10-19 23:28:59 -07004162nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004164 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004165 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004167 p = xdr_reserve_space(xdr, 40);
4168 if (!p)
4169 return nfserr_resource;
4170 p = encode_cinfo(p, &rename->rn_sinfo);
4171 p = encode_cinfo(p, &rename->rn_tinfo);
4172 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173}
4174
Benny Halevy695e12f2008-07-04 14:38:33 +03004175static __be32
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004176nfsd4_do_encode_secinfo(struct xdr_stream *xdr, struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07004177{
Chuck Lever676e4eb2013-04-30 18:48:54 -04004178 u32 i, nflavs, supported;
J. Bruce Fields4796f452007-07-17 04:04:51 -07004179 struct exp_flavor_info *flavs;
4180 struct exp_flavor_info def_flavs[2];
Chuck Lever676e4eb2013-04-30 18:48:54 -04004181 __be32 *p, *flavorsp;
4182 static bool report = true;
Andy Adamsondcb488a32007-07-17 04:04:51 -07004183
J. Bruce Fields4796f452007-07-17 04:04:51 -07004184 if (exp->ex_nflavors) {
4185 flavs = exp->ex_flavors;
4186 nflavs = exp->ex_nflavors;
4187 } else { /* Handling of some defaults in absence of real secinfo: */
4188 flavs = def_flavs;
4189 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
4190 nflavs = 2;
4191 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
4192 flavs[1].pseudoflavor = RPC_AUTH_NULL;
4193 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
4194 nflavs = 1;
4195 flavs[0].pseudoflavor
4196 = svcauth_gss_flavor(exp->ex_client);
4197 } else {
4198 nflavs = 1;
4199 flavs[0].pseudoflavor
4200 = exp->ex_client->flavour->flavour;
4201 }
4202 }
4203
Chuck Lever676e4eb2013-04-30 18:48:54 -04004204 supported = 0;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004205 p = xdr_reserve_space(xdr, 4);
4206 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004207 return nfserr_resource;
Chuck Lever676e4eb2013-04-30 18:48:54 -04004208 flavorsp = p++; /* to be backfilled later */
Chuck Lever676e4eb2013-04-30 18:48:54 -04004209
J. Bruce Fields4796f452007-07-17 04:04:51 -07004210 for (i = 0; i < nflavs; i++) {
Chuck Lever676e4eb2013-04-30 18:48:54 -04004211 rpc_authflavor_t pf = flavs[i].pseudoflavor;
Chuck Levera77c8062013-03-16 15:55:10 -04004212 struct rpcsec_gss_info info;
Andy Adamsondcb488a32007-07-17 04:04:51 -07004213
Chuck Lever676e4eb2013-04-30 18:48:54 -04004214 if (rpcauth_get_gssinfo(pf, &info) == 0) {
4215 supported++;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004216 p = xdr_reserve_space(xdr, 4 + 4 +
4217 XDR_LEN(info.oid.len) + 4 + 4);
4218 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004219 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004220 *p++ = cpu_to_be32(RPC_AUTH_GSS);
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004221 p = xdr_encode_opaque(p, info.oid.data, info.oid.len);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004222 *p++ = cpu_to_be32(info.qop);
4223 *p++ = cpu_to_be32(info.service);
Chuck Lever676e4eb2013-04-30 18:48:54 -04004224 } else if (pf < RPC_AUTH_MAXFLAVOR) {
4225 supported++;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004226 p = xdr_reserve_space(xdr, 4);
4227 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004228 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004229 *p++ = cpu_to_be32(pf);
Chuck Lever676e4eb2013-04-30 18:48:54 -04004230 } else {
4231 if (report)
4232 pr_warn("NFS: SECINFO: security flavor %u "
4233 "is not supported\n", pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07004234 }
4235 }
Chuck Levera77c8062013-03-16 15:55:10 -04004236
Chuck Lever676e4eb2013-04-30 18:48:54 -04004237 if (nflavs != supported)
4238 report = false;
4239 *flavorsp = htonl(supported);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004240 return 0;
Andy Adamsondcb488a32007-07-17 04:04:51 -07004241}
4242
Mi Jinlong22b6dee2010-12-27 14:29:57 +08004243static __be32
4244nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
4245 struct nfsd4_secinfo *secinfo)
4246{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004247 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004248
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004249 return nfsd4_do_encode_secinfo(xdr, secinfo->si_exp);
Mi Jinlong22b6dee2010-12-27 14:29:57 +08004250}
4251
4252static __be32
4253nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
4254 struct nfsd4_secinfo_no_name *secinfo)
4255{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004256 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004257
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004258 return nfsd4_do_encode_secinfo(xdr, secinfo->sin_exp);
Mi Jinlong22b6dee2010-12-27 14:29:57 +08004259}
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261/*
4262 * The SETATTR encode routine is special -- it always encodes a bitmap,
4263 * regardless of the error status.
4264 */
Benny Halevy695e12f2008-07-04 14:38:33 +03004265static __be32
Al Virob37ad282006-10-19 23:28:59 -07004266nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004268 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004269 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004271 p = xdr_reserve_space(xdr, 16);
4272 if (!p)
4273 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 if (nfserr) {
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004275 *p++ = cpu_to_be32(3);
4276 *p++ = cpu_to_be32(0);
4277 *p++ = cpu_to_be32(0);
4278 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 }
4280 else {
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004281 *p++ = cpu_to_be32(3);
4282 *p++ = cpu_to_be32(setattr->sa_bmval[0]);
4283 *p++ = cpu_to_be32(setattr->sa_bmval[1]);
4284 *p++ = cpu_to_be32(setattr->sa_bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 }
Benny Halevy695e12f2008-07-04 14:38:33 +03004286 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287}
4288
Benny Halevy695e12f2008-07-04 14:38:33 +03004289static __be32
Al Virob37ad282006-10-19 23:28:59 -07004290nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004292 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004293 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
4295 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004296 p = xdr_reserve_space(xdr, 8 + NFS4_VERIFIER_SIZE);
4297 if (!p)
4298 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004299 p = xdr_encode_opaque_fixed(p, &scd->se_clientid, 8);
4300 p = xdr_encode_opaque_fixed(p, &scd->se_confirm,
4301 NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 }
4303 else if (nfserr == nfserr_clid_inuse) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004304 p = xdr_reserve_space(xdr, 8);
4305 if (!p)
4306 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004307 *p++ = cpu_to_be32(0);
4308 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 }
Benny Halevy695e12f2008-07-04 14:38:33 +03004310 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311}
4312
Benny Halevy695e12f2008-07-04 14:38:33 +03004313static __be32
Al Virob37ad282006-10-19 23:28:59 -07004314nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004316 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004317 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004319 p = xdr_reserve_space(xdr, 16);
4320 if (!p)
4321 return nfserr_resource;
4322 *p++ = cpu_to_be32(write->wr_bytes_written);
4323 *p++ = cpu_to_be32(write->wr_how_written);
4324 p = xdr_encode_opaque_fixed(p, write->wr_verifier.data,
4325 NFS4_VERIFIER_SIZE);
4326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327}
4328
Benny Halevy695e12f2008-07-04 14:38:33 +03004329static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004330nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03004331 struct nfsd4_exchange_id *exid)
4332{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004333 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004334 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03004335 char *major_id;
4336 char *server_scope;
4337 int major_id_sz;
4338 int server_scope_sz;
4339 uint64_t minor_id = 0;
Scott Mayhew7627d7d2020-02-19 15:52:15 -05004340 struct nfsd_net *nn = net_generic(SVC_NET(resp->rqstp), nfsd_net_id);
Andy Adamson0733d212009-04-03 08:28:01 +03004341
Scott Mayhew7627d7d2020-02-19 15:52:15 -05004342 major_id = nn->nfsd_name;
4343 major_id_sz = strlen(nn->nfsd_name);
4344 server_scope = nn->nfsd_name;
4345 server_scope_sz = strlen(nn->nfsd_name);
Andy Adamson0733d212009-04-03 08:28:01 +03004346
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004347 p = xdr_reserve_space(xdr,
Andy Adamson0733d212009-04-03 08:28:01 +03004348 8 /* eir_clientid */ +
4349 4 /* eir_sequenceid */ +
4350 4 /* eir_flags */ +
Kinglong Meea8bb84b2013-12-10 15:24:36 +08004351 4 /* spr_how */);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004352 if (!p)
4353 return nfserr_resource;
Andy Adamson0733d212009-04-03 08:28:01 +03004354
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004355 p = xdr_encode_opaque_fixed(p, &exid->clientid, 8);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004356 *p++ = cpu_to_be32(exid->seqid);
4357 *p++ = cpu_to_be32(exid->flags);
Andy Adamson0733d212009-04-03 08:28:01 +03004358
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004359 *p++ = cpu_to_be32(exid->spa_how);
Kinglong Meea8bb84b2013-12-10 15:24:36 +08004360
J. Bruce Fields57266a62013-04-13 14:27:29 -04004361 switch (exid->spa_how) {
4362 case SP4_NONE:
4363 break;
4364 case SP4_MACH_CRED:
4365 /* spo_must_enforce bitmap: */
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004366 nfserr = nfsd4_encode_bitmap(xdr,
Andrew Elbleed941642016-06-15 12:52:09 -04004367 exid->spo_must_enforce[0],
4368 exid->spo_must_enforce[1],
4369 exid->spo_must_enforce[2]);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004370 if (nfserr)
4371 return nfserr;
Andrew Elbleed941642016-06-15 12:52:09 -04004372 /* spo_must_allow bitmap: */
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004373 nfserr = nfsd4_encode_bitmap(xdr,
Andrew Elbleed941642016-06-15 12:52:09 -04004374 exid->spo_must_allow[0],
4375 exid->spo_must_allow[1],
4376 exid->spo_must_allow[2]);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004377 if (nfserr)
4378 return nfserr;
J. Bruce Fields57266a62013-04-13 14:27:29 -04004379 break;
4380 default:
4381 WARN_ON_ONCE(1);
4382 }
Andy Adamson0733d212009-04-03 08:28:01 +03004383
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004384 p = xdr_reserve_space(xdr,
Kinglong Meea8bb84b2013-12-10 15:24:36 +08004385 8 /* so_minor_id */ +
4386 4 /* so_major_id.len */ +
4387 (XDR_QUADLEN(major_id_sz) * 4) +
4388 4 /* eir_server_scope.len */ +
4389 (XDR_QUADLEN(server_scope_sz) * 4) +
4390 4 /* eir_server_impl_id.count (0) */);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004391 if (!p)
4392 return nfserr_resource;
Kinglong Meea8bb84b2013-12-10 15:24:36 +08004393
Andy Adamson0733d212009-04-03 08:28:01 +03004394 /* The server_owner struct */
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04004395 p = xdr_encode_hyper(p, minor_id); /* Minor id */
Andy Adamson0733d212009-04-03 08:28:01 +03004396 /* major id */
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004397 p = xdr_encode_opaque(p, major_id, major_id_sz);
Andy Adamson0733d212009-04-03 08:28:01 +03004398
4399 /* Server scope */
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004400 p = xdr_encode_opaque(p, server_scope, server_scope_sz);
Andy Adamson0733d212009-04-03 08:28:01 +03004401
4402 /* Implementation id */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004403 *p++ = cpu_to_be32(0); /* zero length nfs_impl_id4 array */
Andy Adamson0733d212009-04-03 08:28:01 +03004404 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03004405}
4406
4407static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004408nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03004409 struct nfsd4_create_session *sess)
4410{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004411 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004412 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004413
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004414 p = xdr_reserve_space(xdr, 24);
4415 if (!p)
4416 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004417 p = xdr_encode_opaque_fixed(p, sess->sessionid.data,
4418 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004419 *p++ = cpu_to_be32(sess->seqid);
4420 *p++ = cpu_to_be32(sess->flags);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004421
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004422 p = xdr_reserve_space(xdr, 28);
4423 if (!p)
4424 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004425 *p++ = cpu_to_be32(0); /* headerpadsz */
4426 *p++ = cpu_to_be32(sess->fore_channel.maxreq_sz);
4427 *p++ = cpu_to_be32(sess->fore_channel.maxresp_sz);
4428 *p++ = cpu_to_be32(sess->fore_channel.maxresp_cached);
4429 *p++ = cpu_to_be32(sess->fore_channel.maxops);
4430 *p++ = cpu_to_be32(sess->fore_channel.maxreqs);
4431 *p++ = cpu_to_be32(sess->fore_channel.nr_rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004432
4433 if (sess->fore_channel.nr_rdma_attrs) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004434 p = xdr_reserve_space(xdr, 4);
4435 if (!p)
4436 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004437 *p++ = cpu_to_be32(sess->fore_channel.rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004438 }
4439
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004440 p = xdr_reserve_space(xdr, 28);
4441 if (!p)
4442 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004443 *p++ = cpu_to_be32(0); /* headerpadsz */
4444 *p++ = cpu_to_be32(sess->back_channel.maxreq_sz);
4445 *p++ = cpu_to_be32(sess->back_channel.maxresp_sz);
4446 *p++ = cpu_to_be32(sess->back_channel.maxresp_cached);
4447 *p++ = cpu_to_be32(sess->back_channel.maxops);
4448 *p++ = cpu_to_be32(sess->back_channel.maxreqs);
4449 *p++ = cpu_to_be32(sess->back_channel.nr_rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004450
4451 if (sess->back_channel.nr_rdma_attrs) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004452 p = xdr_reserve_space(xdr, 4);
4453 if (!p)
4454 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004455 *p++ = cpu_to_be32(sess->back_channel.rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03004456 }
4457 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03004458}
4459
4460static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004461nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03004462 struct nfsd4_sequence *seq)
4463{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004464 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07004465 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03004466
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004467 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 20);
4468 if (!p)
4469 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04004470 p = xdr_encode_opaque_fixed(p, seq->sessionid.data,
4471 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004472 *p++ = cpu_to_be32(seq->seqid);
4473 *p++ = cpu_to_be32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04004474 /* Note slotid's are numbered from zero: */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04004475 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_highest_slotid */
4476 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_target_highest_slotid */
4477 *p++ = cpu_to_be32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03004478
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04004479 resp->cstate.data_offset = xdr->buf->len; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03004480 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03004481}
4482
J. Bruce Fields2355c592012-04-25 16:56:22 -04004483static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04004484nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04004485 struct nfsd4_test_stateid *test_stateid)
4486{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004487 struct xdr_stream *xdr = resp->xdr;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004488 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04004489 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04004490
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05004491 p = xdr_reserve_space(xdr, 4 + (4 * test_stateid->ts_num_ids));
4492 if (!p)
4493 return nfserr_resource;
Bryan Schumaker17456802011-07-13 10:50:48 -04004494 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04004495
Bryan Schumaker03cfb422012-01-27 10:22:49 -05004496 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04004497 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04004498 }
Bryan Schumaker17456802011-07-13 10:50:48 -04004499
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004500 return 0;
Bryan Schumaker17456802011-07-13 10:50:48 -04004501}
4502
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004503#ifdef CONFIG_NFSD_PNFS
4504static __be32
4505nfsd4_encode_getdeviceinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
4506 struct nfsd4_getdeviceinfo *gdev)
4507{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004508 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsf961e3f2017-05-05 16:17:57 -04004509 const struct nfsd4_layout_ops *ops;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004510 u32 starting_len = xdr->buf->len, needed_len;
4511 __be32 *p;
4512
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004513 p = xdr_reserve_space(xdr, 4);
4514 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004515 return nfserr_resource;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004516
4517 *p++ = cpu_to_be32(gdev->gd_layout_type);
4518
4519 /* If maxcount is 0 then just update notifications */
4520 if (gdev->gd_maxcount != 0) {
J. Bruce Fieldsf961e3f2017-05-05 16:17:57 -04004521 ops = nfsd4_layout_ops[gdev->gd_layout_type];
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004522 nfserr = ops->encode_getdeviceinfo(xdr, gdev);
4523 if (nfserr) {
4524 /*
4525 * We don't bother to burden the layout drivers with
4526 * enforcing gd_maxcount, just tell the client to
4527 * come back with a bigger buffer if it's not enough.
4528 */
4529 if (xdr->buf->len + 4 > gdev->gd_maxcount)
4530 goto toosmall;
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004531 return nfserr;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004532 }
4533 }
4534
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004535 if (gdev->gd_notify_types) {
4536 p = xdr_reserve_space(xdr, 4 + 4);
4537 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004538 return nfserr_resource;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004539 *p++ = cpu_to_be32(1); /* bitmap length */
4540 *p++ = cpu_to_be32(gdev->gd_notify_types);
4541 } else {
4542 p = xdr_reserve_space(xdr, 4);
4543 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004544 return nfserr_resource;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004545 *p++ = 0;
4546 }
4547
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004548 return 0;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004549toosmall:
4550 dprintk("%s: maxcount too small\n", __func__);
4551 needed_len = xdr->buf->len + 4 /* notifications */;
4552 xdr_truncate_encode(xdr, starting_len);
4553 p = xdr_reserve_space(xdr, 4);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004554 if (!p)
4555 return nfserr_resource;
4556 *p++ = cpu_to_be32(needed_len);
4557 return nfserr_toosmall;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004558}
4559
4560static __be32
4561nfsd4_encode_layoutget(struct nfsd4_compoundres *resp, __be32 nfserr,
4562 struct nfsd4_layoutget *lgp)
4563{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004564 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fieldsf961e3f2017-05-05 16:17:57 -04004565 const struct nfsd4_layout_ops *ops;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004566 __be32 *p;
4567
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004568 p = xdr_reserve_space(xdr, 36 + sizeof(stateid_opaque_t));
4569 if (!p)
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004570 return nfserr_resource;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004571
4572 *p++ = cpu_to_be32(1); /* we always set return-on-close */
4573 *p++ = cpu_to_be32(lgp->lg_sid.si_generation);
4574 p = xdr_encode_opaque_fixed(p, &lgp->lg_sid.si_opaque,
4575 sizeof(stateid_opaque_t));
4576
4577 *p++ = cpu_to_be32(1); /* we always return a single layout */
4578 p = xdr_encode_hyper(p, lgp->lg_seg.offset);
4579 p = xdr_encode_hyper(p, lgp->lg_seg.length);
4580 *p++ = cpu_to_be32(lgp->lg_seg.iomode);
4581 *p++ = cpu_to_be32(lgp->lg_layout_type);
4582
J. Bruce Fieldsf961e3f2017-05-05 16:17:57 -04004583 ops = nfsd4_layout_ops[lgp->lg_layout_type];
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004584 return ops->encode_layoutget(xdr, lgp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004585}
4586
4587static __be32
4588nfsd4_encode_layoutcommit(struct nfsd4_compoundres *resp, __be32 nfserr,
4589 struct nfsd4_layoutcommit *lcp)
4590{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004591 struct xdr_stream *xdr = resp->xdr;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004592 __be32 *p;
4593
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004594 p = xdr_reserve_space(xdr, 4);
4595 if (!p)
4596 return nfserr_resource;
4597 *p++ = cpu_to_be32(lcp->lc_size_chg);
4598 if (lcp->lc_size_chg) {
4599 p = xdr_reserve_space(xdr, 8);
4600 if (!p)
4601 return nfserr_resource;
4602 p = xdr_encode_hyper(p, lcp->lc_newsize);
4603 }
4604
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004605 return 0;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004606}
4607
4608static __be32
4609nfsd4_encode_layoutreturn(struct nfsd4_compoundres *resp, __be32 nfserr,
4610 struct nfsd4_layoutreturn *lrp)
4611{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004612 struct xdr_stream *xdr = resp->xdr;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004613 __be32 *p;
4614
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004615 p = xdr_reserve_space(xdr, 4);
4616 if (!p)
4617 return nfserr_resource;
4618 *p++ = cpu_to_be32(lrp->lrs_present);
4619 if (lrp->lrs_present)
Kinglong Mee376675d2015-03-22 22:17:10 +08004620 return nfsd4_encode_stateid(xdr, &lrp->lr_sid);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004621 return 0;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02004622}
4623#endif /* CONFIG_NFSD_PNFS */
4624
Andy Adamson2db134e2009-04-03 08:27:55 +03004625static __be32
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04004626nfsd42_encode_write_res(struct nfsd4_compoundres *resp,
4627 struct nfsd42_write_res *write, bool sync)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004628{
4629 __be32 *p;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004630 p = xdr_reserve_space(resp->xdr, 4);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004631 if (!p)
4632 return nfserr_resource;
4633
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04004634 if (sync)
4635 *p++ = cpu_to_be32(0);
4636 else {
4637 __be32 nfserr;
4638 *p++ = cpu_to_be32(1);
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004639 nfserr = nfsd4_encode_stateid(resp->xdr, &write->cb_stateid);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04004640 if (nfserr)
4641 return nfserr;
4642 }
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004643 p = xdr_reserve_space(resp->xdr, 8 + 4 + NFS4_VERIFIER_SIZE);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04004644 if (!p)
4645 return nfserr_resource;
4646
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004647 p = xdr_encode_hyper(p, write->wr_bytes_written);
4648 *p++ = cpu_to_be32(write->wr_stable_how);
4649 p = xdr_encode_opaque_fixed(p, write->wr_verifier.data,
4650 NFS4_VERIFIER_SIZE);
4651 return nfs_ok;
4652}
4653
4654static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04004655nfsd42_encode_nl4_server(struct nfsd4_compoundres *resp, struct nl4_server *ns)
4656{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004657 struct xdr_stream *xdr = resp->xdr;
Olga Kornievskaia51911862019-08-08 11:14:59 -04004658 struct nfs42_netaddr *addr;
4659 __be32 *p;
4660
4661 p = xdr_reserve_space(xdr, 4);
4662 *p++ = cpu_to_be32(ns->nl4_type);
4663
4664 switch (ns->nl4_type) {
4665 case NL4_NETADDR:
4666 addr = &ns->u.nl4_addr;
4667
4668 /* netid_len, netid, uaddr_len, uaddr (port included
4669 * in RPCBIND_MAXUADDRLEN)
4670 */
4671 p = xdr_reserve_space(xdr,
4672 4 /* netid len */ +
4673 (XDR_QUADLEN(addr->netid_len) * 4) +
4674 4 /* uaddr len */ +
4675 (XDR_QUADLEN(addr->addr_len) * 4));
4676 if (!p)
4677 return nfserr_resource;
4678
4679 *p++ = cpu_to_be32(addr->netid_len);
4680 p = xdr_encode_opaque_fixed(p, addr->netid,
4681 addr->netid_len);
4682 *p++ = cpu_to_be32(addr->addr_len);
4683 p = xdr_encode_opaque_fixed(p, addr->addr,
4684 addr->addr_len);
4685 break;
4686 default:
4687 WARN_ON_ONCE(ns->nl4_type != NL4_NETADDR);
4688 return nfserr_inval;
4689 }
4690
4691 return 0;
4692}
4693
4694static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004695nfsd4_encode_copy(struct nfsd4_compoundres *resp, __be32 nfserr,
4696 struct nfsd4_copy *copy)
4697{
4698 __be32 *p;
4699
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04004700 nfserr = nfsd42_encode_write_res(resp, &copy->cp_res,
Chuck Levere8febea2020-11-04 10:49:37 -05004701 !!copy->cp_synchronous);
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004702 if (nfserr)
4703 return nfserr;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004704
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004705 p = xdr_reserve_space(resp->xdr, 4 + 4);
J. Bruce Fieldsedcc8452018-03-07 15:37:35 -05004706 *p++ = xdr_one; /* cr_consecutive */
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004707 *p++ = cpu_to_be32(copy->cp_synchronous);
4708 return 0;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04004709}
4710
4711static __be32
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04004712nfsd4_encode_offload_status(struct nfsd4_compoundres *resp, __be32 nfserr,
4713 struct nfsd4_offload_status *os)
4714{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004715 struct xdr_stream *xdr = resp->xdr;
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04004716 __be32 *p;
4717
4718 p = xdr_reserve_space(xdr, 8 + 4);
4719 if (!p)
4720 return nfserr_resource;
4721 p = xdr_encode_hyper(p, os->count);
4722 *p++ = cpu_to_be32(0);
Anna Schumaker528b8492020-09-28 13:08:58 -04004723 return nfserr;
4724}
4725
4726static __be32
4727nfsd4_encode_read_plus_data(struct nfsd4_compoundres *resp,
4728 struct nfsd4_read *read,
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004729 unsigned long *maxcount, u32 *eof,
4730 loff_t *pos)
Anna Schumaker528b8492020-09-28 13:08:58 -04004731{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004732 struct xdr_stream *xdr = resp->xdr;
Anna Schumaker528b8492020-09-28 13:08:58 -04004733 struct file *file = read->rd_nf->nf_file;
4734 int starting_len = xdr->buf->len;
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004735 loff_t hole_pos;
Anna Schumaker528b8492020-09-28 13:08:58 -04004736 __be32 nfserr;
4737 __be32 *p, tmp;
4738 __be64 tmp64;
4739
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004740 hole_pos = pos ? *pos : vfs_llseek(file, read->rd_offset, SEEK_HOLE);
Anna Schumaker2db27992020-09-28 13:08:59 -04004741 if (hole_pos > read->rd_offset)
Anna Schumaker278765e2020-09-28 13:09:00 -04004742 *maxcount = min_t(unsigned long, *maxcount, hole_pos - read->rd_offset);
4743 *maxcount = min_t(unsigned long, *maxcount, (xdr->buf->buflen - xdr->buf->len));
Anna Schumaker528b8492020-09-28 13:08:58 -04004744
4745 /* Content type, offset, byte count */
4746 p = xdr_reserve_space(xdr, 4 + 8 + 4);
4747 if (!p)
4748 return nfserr_resource;
4749
Anna Schumaker278765e2020-09-28 13:09:00 -04004750 read->rd_vlen = xdr_reserve_space_vec(xdr, resp->rqstp->rq_vec, *maxcount);
Anna Schumaker528b8492020-09-28 13:08:58 -04004751 if (read->rd_vlen < 0)
4752 return nfserr_resource;
4753
4754 nfserr = nfsd_readv(resp->rqstp, read->rd_fhp, file, read->rd_offset,
Anna Schumaker278765e2020-09-28 13:09:00 -04004755 resp->rqstp->rq_vec, read->rd_vlen, maxcount, eof);
Anna Schumaker528b8492020-09-28 13:08:58 -04004756 if (nfserr)
4757 return nfserr;
Trond Myklebust72d78712020-12-11 12:26:14 -05004758 xdr_truncate_encode(xdr, starting_len + 16 + xdr_align_size(*maxcount));
Anna Schumaker528b8492020-09-28 13:08:58 -04004759
4760 tmp = htonl(NFS4_CONTENT_DATA);
4761 write_bytes_to_xdr_buf(xdr->buf, starting_len, &tmp, 4);
4762 tmp64 = cpu_to_be64(read->rd_offset);
4763 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp64, 8);
Anna Schumaker278765e2020-09-28 13:09:00 -04004764 tmp = htonl(*maxcount);
Anna Schumaker528b8492020-09-28 13:08:58 -04004765 write_bytes_to_xdr_buf(xdr->buf, starting_len + 12, &tmp, 4);
Trond Myklebust72d78712020-12-11 12:26:14 -05004766
4767 tmp = xdr_zero;
4768 write_bytes_to_xdr_buf(xdr->buf, starting_len + 16 + *maxcount, &tmp,
4769 xdr_pad_size(*maxcount));
Anna Schumaker528b8492020-09-28 13:08:58 -04004770 return nfs_ok;
4771}
4772
4773static __be32
Anna Schumaker2db27992020-09-28 13:08:59 -04004774nfsd4_encode_read_plus_hole(struct nfsd4_compoundres *resp,
4775 struct nfsd4_read *read,
Anna Schumaker278765e2020-09-28 13:09:00 -04004776 unsigned long *maxcount, u32 *eof)
Anna Schumaker2db27992020-09-28 13:08:59 -04004777{
4778 struct file *file = read->rd_nf->nf_file;
Anna Schumaker278765e2020-09-28 13:09:00 -04004779 loff_t data_pos = vfs_llseek(file, read->rd_offset, SEEK_DATA);
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004780 loff_t f_size = i_size_read(file_inode(file));
Anna Schumaker278765e2020-09-28 13:09:00 -04004781 unsigned long count;
Anna Schumaker2db27992020-09-28 13:08:59 -04004782 __be32 *p;
4783
Anna Schumaker278765e2020-09-28 13:09:00 -04004784 if (data_pos == -ENXIO)
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004785 data_pos = f_size;
4786 else if (data_pos <= read->rd_offset || (data_pos < f_size && data_pos % PAGE_SIZE))
4787 return nfsd4_encode_read_plus_data(resp, read, maxcount, eof, &f_size);
Anna Schumaker278765e2020-09-28 13:09:00 -04004788 count = data_pos - read->rd_offset;
4789
Anna Schumaker2db27992020-09-28 13:08:59 -04004790 /* Content type, offset, byte count */
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004791 p = xdr_reserve_space(resp->xdr, 4 + 8 + 8);
Anna Schumaker2db27992020-09-28 13:08:59 -04004792 if (!p)
4793 return nfserr_resource;
4794
4795 *p++ = htonl(NFS4_CONTENT_HOLE);
Jiapeng Chong1e37d0e2021-12-02 16:35:42 +08004796 p = xdr_encode_hyper(p, read->rd_offset);
4797 p = xdr_encode_hyper(p, count);
Anna Schumaker2db27992020-09-28 13:08:59 -04004798
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004799 *eof = (read->rd_offset + count) >= f_size;
Anna Schumaker278765e2020-09-28 13:09:00 -04004800 *maxcount = min_t(unsigned long, count, *maxcount);
Anna Schumaker2db27992020-09-28 13:08:59 -04004801 return nfs_ok;
4802}
4803
4804static __be32
Anna Schumaker528b8492020-09-28 13:08:58 -04004805nfsd4_encode_read_plus(struct nfsd4_compoundres *resp, __be32 nfserr,
4806 struct nfsd4_read *read)
4807{
Anna Schumaker278765e2020-09-28 13:09:00 -04004808 unsigned long maxcount, count;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004809 struct xdr_stream *xdr = resp->xdr;
Anna Schumaker528b8492020-09-28 13:08:58 -04004810 struct file *file;
4811 int starting_len = xdr->buf->len;
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004812 int last_segment = xdr->buf->len;
Anna Schumaker528b8492020-09-28 13:08:58 -04004813 int segments = 0;
4814 __be32 *p, tmp;
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004815 bool is_data;
Anna Schumaker2db27992020-09-28 13:08:59 -04004816 loff_t pos;
Anna Schumaker528b8492020-09-28 13:08:58 -04004817 u32 eof;
4818
4819 if (nfserr)
4820 return nfserr;
4821 file = read->rd_nf->nf_file;
4822
4823 /* eof flag, segment count */
4824 p = xdr_reserve_space(xdr, 4 + 4);
4825 if (!p)
4826 return nfserr_resource;
4827 xdr_commit_encode(xdr);
4828
4829 maxcount = svc_max_payload(resp->rqstp);
4830 maxcount = min_t(unsigned long, maxcount,
4831 (xdr->buf->buflen - xdr->buf->len));
4832 maxcount = min_t(unsigned long, maxcount, read->rd_length);
Anna Schumaker278765e2020-09-28 13:09:00 -04004833 count = maxcount;
Anna Schumaker528b8492020-09-28 13:08:58 -04004834
4835 eof = read->rd_offset >= i_size_read(file_inode(file));
Anna Schumaker2db27992020-09-28 13:08:59 -04004836 if (eof)
4837 goto out;
4838
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004839 pos = vfs_llseek(file, read->rd_offset, SEEK_HOLE);
4840 is_data = pos > read->rd_offset;
Anna Schumaker2db27992020-09-28 13:08:59 -04004841
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004842 while (count > 0 && !eof) {
Anna Schumaker278765e2020-09-28 13:09:00 -04004843 maxcount = count;
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004844 if (is_data)
4845 nfserr = nfsd4_encode_read_plus_data(resp, read, &maxcount, &eof,
4846 segments == 0 ? &pos : NULL);
4847 else
4848 nfserr = nfsd4_encode_read_plus_hole(resp, read, &maxcount, &eof);
Anna Schumaker278765e2020-09-28 13:09:00 -04004849 if (nfserr)
4850 goto out;
4851 count -= maxcount;
4852 read->rd_offset += maxcount;
Anna Schumaker9f0b5792020-09-28 13:09:01 -04004853 is_data = !is_data;
4854 last_segment = xdr->buf->len;
Anna Schumaker528b8492020-09-28 13:08:58 -04004855 segments++;
4856 }
4857
Anna Schumaker2db27992020-09-28 13:08:59 -04004858out:
Anna Schumaker278765e2020-09-28 13:09:00 -04004859 if (nfserr && segments == 0)
Anna Schumaker528b8492020-09-28 13:08:58 -04004860 xdr_truncate_encode(xdr, starting_len);
4861 else {
Trond Myklebustb68f0cb2020-12-11 12:26:15 -05004862 if (nfserr) {
4863 xdr_truncate_encode(xdr, last_segment);
4864 nfserr = nfs_ok;
4865 eof = 0;
4866 }
Anna Schumaker528b8492020-09-28 13:08:58 -04004867 tmp = htonl(eof);
4868 write_bytes_to_xdr_buf(xdr->buf, starting_len, &tmp, 4);
4869 tmp = htonl(segments);
4870 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4);
4871 }
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04004872
4873 return nfserr;
4874}
4875
4876static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04004877nfsd4_encode_copy_notify(struct nfsd4_compoundres *resp, __be32 nfserr,
4878 struct nfsd4_copy_notify *cn)
4879{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004880 struct xdr_stream *xdr = resp->xdr;
Olga Kornievskaia51911862019-08-08 11:14:59 -04004881 __be32 *p;
4882
4883 if (nfserr)
4884 return nfserr;
4885
4886 /* 8 sec, 4 nsec */
4887 p = xdr_reserve_space(xdr, 12);
4888 if (!p)
4889 return nfserr_resource;
4890
4891 /* cnr_lease_time */
4892 p = xdr_encode_hyper(p, cn->cpn_sec);
4893 *p++ = cpu_to_be32(cn->cpn_nsec);
4894
4895 /* cnr_stateid */
4896 nfserr = nfsd4_encode_stateid(xdr, &cn->cpn_cnr_stateid);
4897 if (nfserr)
4898 return nfserr;
4899
4900 /* cnr_src.nl_nsvr */
4901 p = xdr_reserve_space(xdr, 4);
4902 if (!p)
4903 return nfserr_resource;
4904
4905 *p++ = cpu_to_be32(1);
4906
4907 return nfsd42_encode_nl4_server(resp, &cn->cpn_src);
4908}
4909
4910static __be32
Anna Schumaker24bab492014-09-26 13:58:27 -04004911nfsd4_encode_seek(struct nfsd4_compoundres *resp, __be32 nfserr,
4912 struct nfsd4_seek *seek)
4913{
4914 __be32 *p;
4915
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004916 p = xdr_reserve_space(resp->xdr, 4 + 8);
Anna Schumaker24bab492014-09-26 13:58:27 -04004917 *p++ = cpu_to_be32(seek->seek_eof);
4918 p = xdr_encode_hyper(p, seek->seek_pos);
4919
J. Bruce Fieldsbac966d2017-05-06 11:12:04 -04004920 return 0;
Anna Schumaker24bab492014-09-26 13:58:27 -04004921}
4922
4923static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03004924nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
4925{
4926 return nfserr;
4927}
4928
Frank van der Linden23e50fe2020-06-23 22:39:26 +00004929/*
4930 * Encode kmalloc-ed buffer in to XDR stream.
4931 */
Chuck Leverb9a49232020-09-11 14:47:53 -04004932static __be32
Frank van der Linden23e50fe2020-06-23 22:39:26 +00004933nfsd4_vbuf_to_stream(struct xdr_stream *xdr, char *buf, u32 buflen)
4934{
4935 u32 cplen;
4936 __be32 *p;
4937
4938 cplen = min_t(unsigned long, buflen,
4939 ((void *)xdr->end - (void *)xdr->p));
4940 p = xdr_reserve_space(xdr, cplen);
4941 if (!p)
4942 return nfserr_resource;
4943
4944 memcpy(p, buf, cplen);
4945 buf += cplen;
4946 buflen -= cplen;
4947
4948 while (buflen) {
4949 cplen = min_t(u32, buflen, PAGE_SIZE);
4950 p = xdr_reserve_space(xdr, cplen);
4951 if (!p)
4952 return nfserr_resource;
4953
4954 memcpy(p, buf, cplen);
4955
4956 if (cplen < PAGE_SIZE) {
4957 /*
4958 * We're done, with a length that wasn't page
4959 * aligned, so possibly not word aligned. Pad
4960 * any trailing bytes with 0.
4961 */
4962 xdr_encode_opaque_fixed(p, NULL, cplen);
4963 break;
4964 }
4965
4966 buflen -= PAGE_SIZE;
4967 buf += PAGE_SIZE;
4968 }
4969
4970 return 0;
4971}
4972
4973static __be32
4974nfsd4_encode_getxattr(struct nfsd4_compoundres *resp, __be32 nfserr,
4975 struct nfsd4_getxattr *getxattr)
4976{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04004977 struct xdr_stream *xdr = resp->xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00004978 __be32 *p, err;
4979
4980 p = xdr_reserve_space(xdr, 4);
4981 if (!p)
4982 return nfserr_resource;
4983
4984 *p = cpu_to_be32(getxattr->getxa_len);
4985
4986 if (getxattr->getxa_len == 0)
4987 return 0;
4988
4989 err = nfsd4_vbuf_to_stream(xdr, getxattr->getxa_buf,
4990 getxattr->getxa_len);
4991
4992 kvfree(getxattr->getxa_buf);
4993
4994 return err;
4995}
4996
4997static __be32
4998nfsd4_encode_setxattr(struct nfsd4_compoundres *resp, __be32 nfserr,
4999 struct nfsd4_setxattr *setxattr)
5000{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04005001 struct xdr_stream *xdr = resp->xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005002 __be32 *p;
5003
5004 p = xdr_reserve_space(xdr, 20);
5005 if (!p)
5006 return nfserr_resource;
5007
5008 encode_cinfo(p, &setxattr->setxa_cinfo);
5009
5010 return 0;
5011}
5012
5013/*
5014 * See if there are cookie values that can be rejected outright.
5015 */
5016static __be32
5017nfsd4_listxattr_validate_cookie(struct nfsd4_listxattrs *listxattrs,
5018 u32 *offsetp)
5019{
5020 u64 cookie = listxattrs->lsxa_cookie;
5021
5022 /*
5023 * If the cookie is larger than the maximum number we can fit
5024 * in either the buffer we just got back from vfs_listxattr, or,
5025 * XDR-encoded, in the return buffer, it's invalid.
5026 */
5027 if (cookie > (listxattrs->lsxa_len) / (XATTR_USER_PREFIX_LEN + 2))
5028 return nfserr_badcookie;
5029
5030 if (cookie > (listxattrs->lsxa_maxcount /
5031 (XDR_QUADLEN(XATTR_USER_PREFIX_LEN + 2) + 4)))
5032 return nfserr_badcookie;
5033
5034 *offsetp = (u32)cookie;
5035 return 0;
5036}
5037
5038static __be32
5039nfsd4_encode_listxattrs(struct nfsd4_compoundres *resp, __be32 nfserr,
5040 struct nfsd4_listxattrs *listxattrs)
5041{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04005042 struct xdr_stream *xdr = resp->xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005043 u32 cookie_offset, count_offset, eof;
5044 u32 left, xdrleft, slen, count;
5045 u32 xdrlen, offset;
5046 u64 cookie;
5047 char *sp;
Chuck Leverb9a49232020-09-11 14:47:53 -04005048 __be32 status, tmp;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005049 __be32 *p;
5050 u32 nuser;
5051
5052 eof = 1;
5053
5054 status = nfsd4_listxattr_validate_cookie(listxattrs, &offset);
5055 if (status)
5056 goto out;
5057
5058 /*
5059 * Reserve space for the cookie and the name array count. Record
5060 * the offsets to save them later.
5061 */
5062 cookie_offset = xdr->buf->len;
5063 count_offset = cookie_offset + 8;
5064 p = xdr_reserve_space(xdr, 12);
5065 if (!p) {
5066 status = nfserr_resource;
5067 goto out;
5068 }
5069
5070 count = 0;
5071 left = listxattrs->lsxa_len;
5072 sp = listxattrs->lsxa_buf;
5073 nuser = 0;
5074
5075 xdrleft = listxattrs->lsxa_maxcount;
5076
5077 while (left > 0 && xdrleft > 0) {
5078 slen = strlen(sp);
5079
5080 /*
Alex Dewar4cce11fa2020-08-17 18:51:26 +01005081 * Check if this is a "user." attribute, skip it if not.
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005082 */
5083 if (strncmp(sp, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
5084 goto contloop;
5085
5086 slen -= XATTR_USER_PREFIX_LEN;
5087 xdrlen = 4 + ((slen + 3) & ~3);
5088 if (xdrlen > xdrleft) {
5089 if (count == 0) {
5090 /*
5091 * Can't even fit the first attribute name.
5092 */
5093 status = nfserr_toosmall;
5094 goto out;
5095 }
5096 eof = 0;
5097 goto wreof;
5098 }
5099
5100 left -= XATTR_USER_PREFIX_LEN;
5101 sp += XATTR_USER_PREFIX_LEN;
5102 if (nuser++ < offset)
5103 goto contloop;
5104
5105
5106 p = xdr_reserve_space(xdr, xdrlen);
5107 if (!p) {
5108 status = nfserr_resource;
5109 goto out;
5110 }
5111
Alex Deware2a18402020-08-12 15:12:51 +01005112 xdr_encode_opaque(p, sp, slen);
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005113
5114 xdrleft -= xdrlen;
5115 count++;
5116contloop:
5117 sp += slen + 1;
5118 left -= slen + 1;
5119 }
5120
5121 /*
5122 * If there were user attributes to copy, but we didn't copy
5123 * any, the offset was too large (e.g. the cookie was invalid).
5124 */
5125 if (nuser > 0 && count == 0) {
5126 status = nfserr_badcookie;
5127 goto out;
5128 }
5129
5130wreof:
5131 p = xdr_reserve_space(xdr, 4);
5132 if (!p) {
5133 status = nfserr_resource;
5134 goto out;
5135 }
5136 *p = cpu_to_be32(eof);
5137
5138 cookie = offset + count;
5139
5140 write_bytes_to_xdr_buf(xdr->buf, cookie_offset, &cookie, 8);
Chuck Leverb9a49232020-09-11 14:47:53 -04005141 tmp = cpu_to_be32(count);
5142 write_bytes_to_xdr_buf(xdr->buf, count_offset, &tmp, 4);
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005143out:
5144 if (listxattrs->lsxa_len)
5145 kvfree(listxattrs->lsxa_buf);
5146 return status;
5147}
5148
5149static __be32
5150nfsd4_encode_removexattr(struct nfsd4_compoundres *resp, __be32 nfserr,
5151 struct nfsd4_removexattr *removexattr)
5152{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04005153 struct xdr_stream *xdr = resp->xdr;
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005154 __be32 *p;
5155
5156 p = xdr_reserve_space(xdr, 20);
5157 if (!p)
5158 return nfserr_resource;
5159
5160 p = encode_cinfo(p, &removexattr->rmxa_cinfo);
5161 return 0;
5162}
5163
Benny Halevy695e12f2008-07-04 14:38:33 +03005164typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
5165
Andy Adamson2db134e2009-04-03 08:27:55 +03005166/*
5167 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
5168 * since we don't need to filter out obsolete ops as this is
5169 * done in the decoding phase.
5170 */
Chuck Leverc1df6092017-08-01 11:59:58 -04005171static const nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04005172 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
5173 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
5174 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
5175 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
5176 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
5177 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
5178 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
5179 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
5180 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
5181 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
5182 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
5183 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
5184 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
5185 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
5186 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
5187 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02005188 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04005189 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
5190 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
5191 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
5192 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
5193 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
5194 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
5195 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
5196 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
5197 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
5198 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
5199 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
5200 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
5201 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
5202 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
5203 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
5204 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
5205 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
5206 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
5207 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
5208 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03005209
5210 /* NFSv4.1 operations */
5211 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04005212 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03005213 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
5214 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
Kinglong Mee43212cc2013-12-09 19:04:23 +08005215 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
5216 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03005217 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02005218#ifdef CONFIG_NFSD_PNFS
5219 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_getdeviceinfo,
5220 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
5221 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_layoutcommit,
5222 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_layoutget,
5223 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_layoutreturn,
5224#else
Andy Adamson2db134e2009-04-03 08:27:55 +03005225 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
5226 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
5227 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
5228 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
5229 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02005230#endif
Mi Jinlong22b6dee2010-12-27 14:29:57 +08005231 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03005232 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
5233 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04005234 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03005235 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
5236 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
5237 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Anna Schumaker87a15a82014-09-26 13:58:26 -04005238
5239 /* NFSv4.2 operations */
5240 [OP_ALLOCATE] = (nfsd4_enc)nfsd4_encode_noop,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04005241 [OP_COPY] = (nfsd4_enc)nfsd4_encode_copy,
Olga Kornievskaia51911862019-08-08 11:14:59 -04005242 [OP_COPY_NOTIFY] = (nfsd4_enc)nfsd4_encode_copy_notify,
Anna Schumaker87a15a82014-09-26 13:58:26 -04005243 [OP_DEALLOCATE] = (nfsd4_enc)nfsd4_encode_noop,
5244 [OP_IO_ADVISE] = (nfsd4_enc)nfsd4_encode_noop,
5245 [OP_LAYOUTERROR] = (nfsd4_enc)nfsd4_encode_noop,
5246 [OP_LAYOUTSTATS] = (nfsd4_enc)nfsd4_encode_noop,
5247 [OP_OFFLOAD_CANCEL] = (nfsd4_enc)nfsd4_encode_noop,
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04005248 [OP_OFFLOAD_STATUS] = (nfsd4_enc)nfsd4_encode_offload_status,
Anna Schumaker528b8492020-09-28 13:08:58 -04005249 [OP_READ_PLUS] = (nfsd4_enc)nfsd4_encode_read_plus,
Anna Schumaker24bab492014-09-26 13:58:27 -04005250 [OP_SEEK] = (nfsd4_enc)nfsd4_encode_seek,
Anna Schumaker87a15a82014-09-26 13:58:26 -04005251 [OP_WRITE_SAME] = (nfsd4_enc)nfsd4_encode_noop,
Christoph Hellwigffa01602015-12-03 12:59:52 +01005252 [OP_CLONE] = (nfsd4_enc)nfsd4_encode_noop,
Frank van der Linden23e50fe2020-06-23 22:39:26 +00005253
5254 /* RFC 8276 extended atributes operations */
5255 [OP_GETXATTR] = (nfsd4_enc)nfsd4_encode_getxattr,
5256 [OP_SETXATTR] = (nfsd4_enc)nfsd4_encode_setxattr,
5257 [OP_LISTXATTRS] = (nfsd4_enc)nfsd4_encode_listxattrs,
5258 [OP_REMOVEXATTR] = (nfsd4_enc)nfsd4_encode_removexattr,
Benny Halevy695e12f2008-07-04 14:38:33 +03005259};
5260
Andy Adamson496c2622009-04-03 08:28:48 +03005261/*
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04005262 * Calculate whether we still have space to encode repsize bytes.
5263 * There are two considerations:
5264 * - For NFS versions >=4.1, the size of the reply must stay within
5265 * session limits
5266 * - For all NFS versions, we must stay within limited preallocated
5267 * buffer space.
Andy Adamson496c2622009-04-03 08:28:48 +03005268 *
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04005269 * This is called before the operation is processed, so can only provide
5270 * an upper estimate. For some nonidempotent operations (such as
5271 * getattr), it's not necessarily a problem if that estimate is wrong,
5272 * as we can fail it after processing without significant side effects.
Andy Adamson496c2622009-04-03 08:28:48 +03005273 */
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04005274__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 respsize)
Andy Adamson496c2622009-04-03 08:28:48 +03005275{
J. Bruce Fields67492c92014-03-08 16:42:05 -05005276 struct xdr_buf *buf = &resp->rqstp->rq_res;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04005277 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson496c2622009-04-03 08:28:48 +03005278
J. Bruce Fields47ee5292014-03-12 21:39:35 -04005279 if (buf->len + respsize <= buf->buflen)
5280 return nfs_ok;
5281 if (!nfsd4_has_session(&resp->cstate))
J. Bruce Fieldsea8d7722014-03-08 17:19:55 -05005282 return nfserr_resource;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04005283 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS) {
5284 WARN_ON_ONCE(1);
5285 return nfserr_rep_too_big_to_cache;
J. Bruce Fieldsea8d7722014-03-08 17:19:55 -05005286 }
J. Bruce Fields47ee5292014-03-12 21:39:35 -04005287 return nfserr_rep_too_big;
Andy Adamson496c2622009-04-03 08:28:48 +03005288}
5289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290void
5291nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
5292{
Chuck Leverbddfdbc2020-10-27 15:53:42 -04005293 struct xdr_stream *xdr = resp->xdr;
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005294 struct nfs4_stateowner *so = resp->cstate.replay_owner;
J. Bruce Fields5f4ab942014-03-07 11:01:37 -05005295 struct svc_rqst *rqstp = resp->rqstp;
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04005296 const struct nfsd4_operation *opdesc = op->opdesc;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005297 int post_err_offset;
J. Bruce Fields07d1f802014-03-06 20:39:29 -05005298 nfsd4_enc encoder;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07005299 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05005301 p = xdr_reserve_space(xdr, 8);
5302 if (!p) {
5303 WARN_ON_ONCE(1);
5304 return;
5305 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04005306 *p++ = cpu_to_be32(op->opnum);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005307 post_err_offset = xdr->buf->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308
Benny Halevy695e12f2008-07-04 14:38:33 +03005309 if (op->opnum == OP_ILLEGAL)
5310 goto status;
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04005311 if (op->status && opdesc &&
5312 !(opdesc->op_flags & OP_NONTRIVIAL_ERROR_ENCODE))
5313 goto status;
Chuck Lever3a237b42020-11-22 12:49:52 -05005314 BUG_ON(op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
Benny Halevy695e12f2008-07-04 14:38:33 +03005315 !nfsd4_enc_ops[op->opnum]);
J. Bruce Fields07d1f802014-03-06 20:39:29 -05005316 encoder = nfsd4_enc_ops[op->opnum];
5317 op->status = encoder(resp, op->status, &op->u);
Chuck Lever08281342020-11-21 11:36:42 -05005318 if (op->status)
5319 trace_nfsd_compound_encode_err(rqstp, op->opnum, op->status);
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04005320 if (opdesc && opdesc->op_release)
5321 opdesc->op_release(&op->u);
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04005322 xdr_commit_encode(xdr);
5323
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04005324 /* nfsd4_check_resp_size guarantees enough room for error status */
J. Bruce Fields5f4ab942014-03-07 11:01:37 -05005325 if (!op->status) {
5326 int space_needed = 0;
5327 if (!nfsd4_last_compound_op(rqstp))
5328 space_needed = COMPOUND_ERR_SLACK_SPACE;
5329 op->status = nfsd4_check_resp_size(resp, space_needed);
5330 }
J. Bruce Fieldsc8f13d92014-05-08 17:38:18 -04005331 if (op->status == nfserr_resource && nfsd4_has_session(&resp->cstate)) {
5332 struct nfsd4_slot *slot = resp->cstate.slot;
5333
5334 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS)
5335 op->status = nfserr_rep_too_big_to_cache;
5336 else
5337 op->status = nfserr_rep_too_big;
5338 }
J. Bruce Fields07d1f802014-03-06 20:39:29 -05005339 if (op->status == nfserr_resource ||
5340 op->status == nfserr_rep_too_big ||
5341 op->status == nfserr_rep_too_big_to_cache) {
5342 /*
5343 * The operation may have already been encoded or
5344 * partially encoded. No op returns anything additional
5345 * in the case of one of these three errors, so we can
5346 * just truncate back to after the status. But it's a
5347 * bug if we had to do this on a non-idempotent op:
5348 */
5349 warn_on_nonidempotent_op(op);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005350 xdr_truncate_encode(xdr, post_err_offset);
J. Bruce Fields07d1f802014-03-06 20:39:29 -05005351 }
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005352 if (so) {
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005353 int len = xdr->buf->len - post_err_offset;
5354
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005355 so->so_replay.rp_status = op->status;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005356 so->so_replay.rp_buflen = len;
5357 read_bytes_from_xdr_buf(xdr->buf, post_err_offset,
5358 so->so_replay.rp_buf, len);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04005359 }
Benny Halevy695e12f2008-07-04 14:38:33 +03005360status:
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04005361 /* Note that op->status is already in network byte order: */
5362 write_bytes_to_xdr_buf(xdr->buf, post_err_offset - 4, &op->status, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363}
5364
5365/*
5366 * Encode the reply stored in the stateowner reply cache
5367 *
5368 * XDR note: do not encode rp->rp_buflen: the buffer contains the
5369 * previously sent already encoded operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 */
5371void
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05005372nfsd4_encode_replay(struct xdr_stream *xdr, struct nfsd4_op *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07005374 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 struct nfs4_replay *rp = op->replay;
5376
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05005377 p = xdr_reserve_space(xdr, 8 + rp->rp_buflen);
5378 if (!p) {
5379 WARN_ON_ONCE(1);
5380 return;
5381 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04005382 *p++ = cpu_to_be32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 *p++ = rp->rp_status; /* already xdr'ed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04005385 p = xdr_encode_opaque_fixed(p, rp->rp_buf, rp->rp_buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386}
5387
Christoph Hellwig85374882017-05-08 18:48:24 +02005388void nfsd4_release_compoundargs(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04005390 struct nfsd4_compoundargs *args = rqstp->rq_argp;
5391
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392 if (args->ops != args->iops) {
5393 kfree(args->ops);
5394 args->ops = args->iops;
5395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 while (args->to_free) {
J. Bruce Fieldsd5e23382014-06-24 17:43:45 -04005397 struct svcxdr_tmpbuf *tb = args->to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 args->to_free = tb->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 kfree(tb);
5400 }
5401}
5402
Chuck Leverc44b31c2021-10-12 11:57:28 -04005403bool
Chuck Lever16c66362021-10-12 11:57:22 -04005404nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405{
Christoph Hellwig026fec72017-05-08 19:01:48 +02005406 struct nfsd4_compoundargs *args = rqstp->rq_argp;
5407
Chuck Leverc1346a122020-11-03 11:54:23 -05005408 /* svcxdr_tmp_alloc */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 args->to_free = NULL;
Chuck Leverc1346a122020-11-03 11:54:23 -05005410
Chuck Lever16c66362021-10-12 11:57:22 -04005411 args->xdr = xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 args->ops = args->iops;
5413 args->rqstp = rqstp;
5414
Chuck Leverd9b74bd2020-11-04 11:07:06 -05005415 return nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416}
5417
Chuck Lever130e2052021-10-13 10:41:13 -04005418bool
Chuck Leverfda49442021-10-13 10:41:06 -04005419nfs4svc_encode_compoundres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420{
Christoph Hellwig63f8de32017-05-08 19:42:02 +02005421 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Chuck Leverfda49442021-10-13 10:41:06 -04005422 struct xdr_buf *buf = xdr->buf;
5423 __be32 *p;
J. Bruce Fields6ac90392014-02-26 17:39:35 -05005424
5425 WARN_ON_ONCE(buf->len != buf->head[0].iov_len + buf->page_len +
5426 buf->tail[0].iov_len);
J. Bruce Fieldsdd97fdd2014-02-26 17:16:27 -05005427
Chuck Lever3b0ebb22021-10-13 10:40:59 -04005428 /*
5429 * Send buffer space for the following items is reserved
5430 * at the top of nfsd4_proc_compound().
5431 */
5432 p = resp->statusp;
Chuck Levercc028a12020-10-02 15:52:44 -04005433
Chuck Lever3b0ebb22021-10-13 10:40:59 -04005434 *p++ = resp->cstate.status;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04005435
Chuck Leverfda49442021-10-13 10:41:06 -04005436 rqstp->rq_next_page = xdr->page_ptr + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 *p++ = htonl(resp->taglen);
5439 memcpy(p, resp->tag, resp->taglen);
5440 p += XDR_QUADLEN(resp->taglen);
5441 *p++ = htonl(resp->opcnt);
5442
Trond Myklebustb6076642014-06-30 11:48:35 -04005443 nfsd4_sequence_done(resp);
Chuck Lever130e2052021-10-13 10:41:13 -04005444 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445}